
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
/*http://www.dynamicdrive.com/style/csslibrary/item/css-image-gallery/*

/*Add a height attribute and set to largest image's height to prevent overlaying*/
.gallerycontainer{
position: relative; 
}

.thumbnail img{
border: 1px solid black;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
/*background-color: transparent;*/
}

.thumbnail:hover img{
border: 1px solid white;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 0px;
/*left: -1000px;*/
top: 250px;
left: 450px; /*position where enlarged image should offset horizontally */
border: 0px /*dashed gray*/;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
left: 450px; /*position where enlarged image should offset horizontally */
z-index: 0;
}

.detail { /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 0px;
/*left: -1000px;*/
top: 250px;
left: 450px; /*position where enlarged image should offset horizontally */
border: 0px /*dashed gray*/;
visibility: visible;
color: black;
text-decoration: none;
}

#detailText{
	vertical-align:bottom;
}

.detailTitle{
	float: none;
	position: relative;
	font-style: italic;
	font-weight: bolder;
}