@charset "utf-8";
/* CSS Document */

#gallery {
	position: relative;
	width: 370px;
	padding-right: 10px;
	border-right: dashed 1px #bfd040;
}
.thumbnail img {
	border: 1px solid white;
	margin: 2px 8px 0px 0px;
}
.thumbnail:hover {
	background-color: transparent;
}
.thumbnail:hover img {
}
.thumbnail span {
	position: absolute;
	padding: 5px;
	left: -1000px;
	visibility: hidden;
	color: black;
	text-decoration: none;
}
.thumbnail span img {
	border-width: 0;
	padding: 2px;
}
.thumbnail:hover span { 
	visibility: visible;
	top: 55px;
	left: 375px;
	z-index: 50;
}

