﻿/*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: #800000;
	padding: 7px;
	left: 455px;
	border: 3px outset gray;
	visibility: hidden;
	color: #FFFFFF;
	text-decoration: none;
	font-family: "myriad Pro", arial;
	font-size: 14px;
	top: -600px;
}
.thumbnail span img{
	/*CSS for enlarged image*/
border: 3 inset #000000;
	padding: 3px;
	width: 480px;
	height: 455px;
	left: 900px;
	top: -355px;
}
.thumbnail:hover span{
	/*CSS for enlarged image on hover*/
visibility: visible;
	top: -61;
	left: -95px; /*position where enlarged image should offset horizontally */
}
