<style type="text/css">

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 600;
}

.thumbnail span{
	position: absolute;
	background-color: lightyellow;
	padding: 5px;
	left: -138px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	top: 0px;

}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 10;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/

visibility: visible;
left: 210px; /*position where enlarged image should offset horizontally */
top: 120px;


}

</style>

