/*
.thumbnail
{
	position: relative;
	z-index: 0;
}  
*/  
.thumbnail:hover
{
	background-color: transparent;
	//z-index: 50;
	position: relative;
}
.thumbnail span
{ 
	position: absolute;
	background-color: #ffffff;
	padding: 5px;
	//left: -1000px;
	border: 1px solid #CCCCCC;
	visibility: hidden;
	color: black;
	text-decoration: none;
}
.thumbnail span img
{ 
	border-width: 0;
	padding: 2px;
}
.thumbnail:hover span img
{ 
	border-width: 0;
	padding: 2px;
	overflow: visible;
}
.thumbnail:hover span
{
	visibility: visible;
	top:  -20px;
	left: 80px; 
}
.highlight img
{
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90);
	-moz-opacity: 0.9;
}
.highlight:hover img
{
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	-moz-opacity: 1;
}      
