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

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

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

.thumbnail span{
	/*CSS for enlarged image*/
position: absolute;
	background-color: #000000;
	padding: 7px;
	left: -1000px;
	border: 3px outset gray;
	visibility: hidden;
	color: #FFFFFF;
	text-decoration: none;
	font-family: "myriad Pro", arial;
	font-size: 15px;
	z-index: 65;
}
.thumbnail span img{
	/*CSS for enlarged image*/
border: 3 inset #000000;
	padding: 0px;
	cursor: crosshair;
}
.thumbnail:hover span{
	/*CSS for enlarged image on hover*/
visibility: visible;
	top: 0;
	left: -210px; /*position where enlarged image should offset horizontally */
}
