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

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

.thumbnail img{
	border: 1px solid #482907;
	padding: 1px;
	margin: 0 2px 2px 0;
}

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


.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: white;
	padding: 2px;
	left: -900px;
	border: 1px solid gray;
	visibility: hidden;
	color: #333333;
	text-decoration: none;
	text-align:center;
	font-family:Helvetica, Verdana, Arial, sans-serif;
	font-size: 11px;
	white-space: nowrap;
}

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

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

.thumbnailgallery img{
	border: 1px solid #482907;
	padding: 1px;
	margin: 0 2px 2px 0;
}

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


.thumbnailgallery span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: white;
	padding: 2px;
	left: -900px;
	border: 1px solid gray;
	visibility: hidden;
	color: #333333;
	text-decoration: none;
	text-align:center;
	font-family:Helvetica, Verdana, Arial, sans-serif;
	font-size: 11px;
	white-space: nowrap;
}

.thumbnailgallery span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
	background-color: #fff;
}

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