/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer {
	position: absolute;
	left: 710px;
	top: 15px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

#thumbcontainer {
	position: absolute;
	left: -15px;
	top: 0x;
	background-color: #fff;
	width: 90px;
	height: 315px;	
	z-index: 1;
	opacity: 0.1;
	filter: alpha(opacity=10);
/* 	background-color: transparent; */
}

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

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

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

.thumbnail span { /*CSS for enlarged image*/
	position: absolute;
	background-color: #fff;
	padding: 5px 0px 5px 5px;
	left: -5000px;
	border: 1px solid white;
	visibility: hidden;
	color: #000;
	text-decoration: none;
}

.thumbnail span img { /*CSS for enlarged image when hidden*/
	height: 0px;
	width: 0px;
}

.thumbnail:hover span img { /*CSS for enlarged image when visible*/
	border-width: 0;
	padding: 2px;
	height: 524px;
	width: 784px;
}

.thumbnail:hover span { /*CSS for enlarged image*/
	background-color: transparent;
	visibility: visible;
	top: -15px;
	left: -710px; /*position where enlarged image should offset horizontally */
	z-index: 0;
}

.thumbnail:hover table { /*CSS for enlarged image*/
	border:0;
	padding:0px;
	margin:0px;
}
