/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.thumbnail{
position: relative;
z-index: 0;
}
.thumbnail:hover{
background-color: transparent;
z-index: 100;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
z-index:3;
}
.thumbnail span img{ /*CSS for enlarged image*/
float:left;
position:relative;
top:20px;
left:0px;
border-width: 0;
padding: 2px;
z-index: 2;
}
.thumbnail span div{ /*CSS for enlarged image*/
text-align:left;
width:300px;
background-color:#666666;
top:45px;
position:relative;
border-width: 0;
padding: 2px;
z-index: 3;
clear:both;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top:auto;
margin-top:50px;
left:auto; /*position where enlarged image should offset horizontally */
}
