@charset "utf-8";
/* CSS Document */



/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

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

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
border: 1px #FDB813;
visibility: hidden;
color: black;
text-decoration: none;
top: 1000px;
left: 0px;

}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 1px;
border-color:#000000;
padding: 1px;
background-color:#FDB813;

}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 195px;
margin-top: 190px;
left: 0px; /*position where enlarged image should offset horizontally */

}



