/* CSS Document */
.thumbnail{
	position: relative;
	z-index: 0;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
	text-decoration: none;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #E4E8E3;
	padding: 15px;
	left: -100px;
	border: 1px dashed #333333;
	visibility: hidden;
	color: black;
	background-image: url(../images/backgrounds/BT_LightBache01.jpg);
	background-repeat: repeat;
	width: 0px;
	display: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: -73px; /*position where enlarged image should offset horizontally */
	position: absolute;
	left: 110px;
	z-index: 900;
	width: 400px;
	display: block;

}

.thumbnail:hover span strong {
	text-decoration: underline;
}




