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



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

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

.thumbnail2 img{
	border: 4px solid #000000;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 0;
}

.thumbnail2:hover{
background-color: transparent;
}

.thumbnail2:hover img{
	border: 4px solid #000000;
}

.thumbnail2 span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFACD;
	padding: 5px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail2 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail2:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	margin-bottom:50px;/*position where enlarged image should offset horizontally */
	z-index: 50;
	position: absolute;
	left: 0px;
	bottom: 92px;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}

