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

.gallerycontainer{
position: relative;
height: 368px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

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

.thumbnail:hover img{

}

.thumbnail span{ /*CSS for enlarged image*/
position: fixed;
background-color: white;
left: -1000px;
visibility: hidden;
color: black;
color: #333333; font-weight: bold ; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;

}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 125px;
left: 350px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
