/* CSS Document */

<style type="text/css">

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: top;
	position: inherit;
	text-align: left;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #000000;
	padding: 0px;
	border: 0px dashed gray;
	visibility: hidden;
	color: #FFFFFF;
	text-decoration: none;
	width: 202px;
	z-index: top;
	height: 200px;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 0px;
	text-align: left;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 512px;
	right: 60%;
	text-align: left;
}
body {
	background-color: #CCC;
	background-image: url(images/bdy-bg.gif);
	background-repeat: repeat-x;
}
</style>

