body {
/* IE10 Consumer Preview */ 
background-image: -ms-linear-gradient(top, #FFFFFF 0%, #FECD00 100%);
/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(top, #FFFFFF 0%, #FECD00 100%);
/* Opera */ 
background-image: -o-linear-gradient(top, #FFFFFF 0%, #FECD00 100%);
/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, #FECD00));
/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #FECD00 100%);
/* W3C Markup, IE10 Release Preview */ 
background-image: linear-gradient(to bottom, #FFFFFF 0%, #FECD00 100%);
}

a:link {
text-decoration: none;
color: red;	
}

a:visited {
text-decoration: none;
color: purple;
}

a:hover {
text-decoration: underline;
color: green;
}

a:active {
text-decoration: underline;
color: blue;
}

td.gallery {
background-color: #000000;
color: #FFFFFF;
vertical-align: top;
font-family: verdana, arial, sans-serif;
font-size: medium;
padding: 10px;
}