.gallerycontainer{
	position: relative;
	height: 750px;
}

.thumbnail img{
	margin: 570px 11px 11px 0;
}

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

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	padding: 5px;
	top: -550px;
	left: -1000px;
	visibility: hidden;
	text-align: center;
	font-family: Verdana;
	font-size: 12px;
	display: inline;
	color: #818181;
	font-weight: 100;
	text-decoration: none;
}

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

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

