@charset "UTF-8";
/* CSS Document */

.thumbnail{
	position: relative;
	z-index: 0;
	padding-left: 0px;
}

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

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFFCC;
	padding: 10px;
	left: -1000px;
	border: 1px dashed #E7533D;
	visibility: hidden;
	color: #E7533D;
	text-decoration: none;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.1em;
}

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

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}

</style>
</head>
