@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;
	margin: 5 5px 5px 5;
}

.thumbnail:hover{
	background-color: transparent;
	text-decoration: none;
}

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

.thumbnail span{ /*CSS for enlarged image*/
	position: fixed;
	background-color: 333333;
	padding: 0px;
	border: 0px;
	visibility: hidden; 
	color: #666666;
	text-decoration: none;
	font-size:14px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}


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

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

</style>



