
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
FONT-WEIGHT: bold;
FONT-SIZE: 12px;
COLOR: #000000;
FONT-FAMILY: Verdana, Arial;
TEXT-DECORATION: none
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: Gray;
padding: 1px;
left: -1000px;
border: 0px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 30px;
left: -400px; /*position where enlarged image should offset horizontally */

}

