

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

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

.thumbnail:hover{
margin: 0px;
padding: 0px;
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: lightyellow;
	padding: 3px;
	left: -600px;
	border: 1px solid gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.thumbnail span img{ /*CSS for enlarged image*/

border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/

visibility: visible;
top: 0;
left: -60px; /*position where enlarged image should offset horizontally */
top: 10px; 
}

