/* CSS Document */

/*gallery*/

.gallerycontainer{
	position: relative;
	text-decoration: none;
}

.thumbnail img{
	border: 1px solid white;
	margin: 0 5px 5px 0;
	text-decoration: none;
}

.thumbnail:hover{
	background-color: transparent;
	text-decoration: none;
}

/*CSS for enlarged image*/

.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: 0;
	left: 130px; /*image horizontal position*/
	z-index: 50;
}
