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

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

.thumbnail span{ /*CSS for enlarged image*/
	display: none;
}

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

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	display: inline;
	position: absolute;
	top: -10px;
	left: 70px;
	background: white;
	padding: 3px;
	text-decoration : none;
	font-weight : normal;
	padding-left : 10px;
	padding-right : 10px;
	color : #000;
	width : 300px;
}

