@charset "utf-8";
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
	position: relative;
	height: 407px;
	width: 215px;/*Add a height attribute and set to largest image's height to prevent overlaying*/
	text-align: center;
}

.thumbnail img{
border: 1px solid black;
margin: 0 1px 0 0;
}

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

.thumbnail:hover img{
	border: 0;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 0px;
left: -1000px;
visibility: hidden;
color: black;
text-decoration: none;
width : 570px;
height : 407px;
text-align : center;
}

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

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

