/* CSS Document */
.thumbnail{
	position: relative;
	z-index: 10;}

.thumbnail:hover{
	background-color: transparent;
	z-index: 100;}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #B0DFDD;
	visibility: hidden;
	color: black;
	text-decoration: none;
	width: 150px;
	font-size: 10px;
	line-height: 12px;}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	right: 25px; 
	top: 20px;}     /*position where enlarged image should offset horizontally */
