@charset "utf-8";
/* CSS Document */

/* 
Change colors in the attributes below to any common color name, hex value #000000, 
or rgb value, such as rgb(255,255,255). Use http://www.colorpicker.com/ to select colors. 
*/

 body {
     background-color:teal;
}
 #container {
}
 #content h2, #content h3, #content h4 {
     background: -webkit-linear-gradient(left, #FFD700, rgba(255,255,255,0));
    /* For Safari 5.1 to 6.0 */
     background: -o-linear-gradient(right, #FFD700, rgba(255,255,255,0));
    /* For Opera 11.1 to 12.0 */
     background: -moz-linear-gradient(right, #FFD700, rgba(255,255,255,0));
    /* For Firefox 3.6 to 15 */
     background: linear-gradient(to right, #FFD700, rgba(255,255,255,0));
    /* Standard syntax (must be last) */
     color:#777777;
     padding:3px;
}
 