

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

body { z-index: 0; }


/* CSS for thumbnail image */

.thumbnail img{
border: 2px solid black;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 2px solid #666;
}


/* CSS for enlarged image */

.thumbnail span{ 
position: absolute;
background-color: black;
padding: 5px;
left: -1000px;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ 
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ 
position: fixed;
visibility: visible;
top: 40px;
left: 120px; /*position where enlarged image should offset horizontally */
z-index: 50;
}


