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

.gallerycontainer {
	position: relative;
	float:left;
	top:30px;
	left:5px;
}

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

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

.thumbnail:hover img {
	border: 1px solid gray;
}

/*CSS for enlarged image*/
.thumbnail span {
	position: absolute;
	background-color: #f0f0f0;
	padding: 5px;
	top:100px;
	left: 285px;
	border: 1px gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail span img { 
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span {
	visibility: visible;
	top: 100px;
	left: 285px; /*position enlarged image*/
	z-index: 50;
}


.gallery-def {
	position:relative;
	float:left;
}
