/*Gallery enlarging images */
/*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;
background-color: #E6F2FF;
padding: 1px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden; 
color: black;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: auto;
left: 200px; /*position where enlarged image should offset horizontally */
z-index: 0;
}

