.gallerycontainer {
	position: relative;
	font-family: georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #DDD;
}

.thumbnail img {
	border: 1px solid white;
}

.thumbnail:hover {
	background-color: transparent;
}

.thumbnail:visited {
	background-color: transparent;
}

.thumbnail:hover img {
	border: 1px solid white;
}

.thumbnail span {
	position: absolute;
	left: -1000px;
	background-color: #030;
	width:276px;
	padding: 12px;
	border: 1px dashed green;
	visibility: hidden;
	color: white;
	text-decoration: none;
}

.thumbnail span img {
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span {
	visibility: visible;
	top: 0px;
	left: 175px;
	z-index: 50;
}

