.gallerycontainer{
position: relative;
height: 305px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.gallerycontainer2 {
	height: 420px;
	position: relative;
}


.thumbnail img{
	border: 1px solid #202959;
	margin: 0 5px 5px 0;
}



.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFFFF;
	left: -1000px;
	visibility: hidden;
	color: #202959;
	text-decoration: none;
	border: 2px solid #202959;
	width: 455px;
	padding-top: 5px;
	padding-right: 4px;
	padding-bottom: 5px;
	padding-left: 4px;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	top: 0;
	left: 230px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	text-decoration: none;
}
