
body{background: #000; color: rgb(255, 204, 51); font: 12pt arial, sans-serif;}

a:link  {color: rgb(255, 204, 51); background-color: #000; text-decoration: underline;}
a:active  {color: #3f3; background-color: #000; text-decoration: underline;}
a:visited {color: #cc0; background-color: #000; text-decoration: underline;}
a:hover  {color: #e55809; background-color: #000; text-decoration: none;}

.menu {position: absolute; left: 5%; top: 2%; width: 90%;}

.button {position: absolute; left: 90%; top: 84%;}

.thumbnail{
position: relative;
z-index: 0;
font: normal 300 26px arial;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: fixed;
background-color: #000;
padding: 5px;
left: -1000px;
border: 0px;
visibility: hidden;
color: rgb(255, 204, 51);
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
left: 20%; /*position where enlarged image should offset horizontally */
top: 17%;
}

