
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}



.thumbnail:hover{
background-color: transparent;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
border: solid 4px #000;
left: -1000px;
visibility: hidden;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -71;
left: -444px; /*position where enlarged image should offset horizontally */
z-index: 1500;
}

