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

.gallerycontainer{
	position: relative;
	margin: 275px 0px 0px 0px;
	min-height: 40px;
	height:auto;
	float:left;/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	/*border: 1px solid #000;*/
	border:none;
	padding:0px;
	margin-top: 7px;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 0px;
}

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

.thumbnail:hover img{
	border:none;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	padding: 0px;
	left: 0px;
	visibility: hidden;
	text-decoration: none;
	border:none;
}

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

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

.mainImage {
	position:absolute;
	top: -280px;
	left: -10px;
}

