@charset "utf-8";
/* CSS Document */


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

#gallerycontainer{
	border:0px solid black;
	height:auto;
	width: auto;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

#gallerycontainer .thumbnail img{
border: 0px solid gray;
margin: 0 3px 3px 0;
}

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

#gallerycontainer .thumbnail:hover img{
border: 0px solid gray;
}

#gallerycontainer .thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
padding: 0px;
left: 225px;
top: 300px;
width:445px;
height:300px;
border: 1px solid #aba095;
visibility:hidden;
color: #9a9084;
text-align:center;
text-decoration: none;
}

#gallerycontainer .thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 20px 0 0 20px;
}

#gallerycontainer .thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
/*top: 385px;
left: 262px; /*position where enlarged image should offset horizontally */
z-index: 999999;
}

