.image-on-hover{
	position: relative;
	z-index: 0;
	line-height: 150%;
	color: #ff0000;
	cursor:crosshair;}

.image-on-hover:hover{
	background-color: transparent;
	z-index: 0;
	background-color: #ff0000;
	color: #fff;
}

.image-on-hover span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #fff;
	padding: 2px;
	left: -9999px;
	border: 1px #ccc solid;
	visibility: hidden;
	text-decoration: none;
}

.image-on-hover span img{ /*CSS for enlarged image*/
	border-width: 0;
}

.image-on-hover:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: -295px;
	left: 0px;
}
