<style type="text/css">

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	margin: 0 5px 5px 0;
	border-top: 1px;
	border-right: 1px;
	border-bottom: 1px;
	border-left: 1px;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFFFF;
	visibility: hidden;
	color: #999999;
	font-style: normal;
	font-size: x-small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	left: -1000px;
	text-transform: uppercase;
}

.thumbnail span img{ /*CSS for enlarged image*/
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	left: 400px
.px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	position: absolute;
	top: 115%;
	left: 400px;
}

</style>
