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

<style type="text/css">


.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	border: 0px solid white;
	margin: 3px 3px 3px 3px;
}

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

.thumbnail:hover img{
border: 0px solid blue;
}

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

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

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



</style>

