@charset "utf-8";
/* CSS Document */

.thumbnail{
position: relative;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color: #002C72;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color: #F2A007;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color:#eeeeee;
	padding: 10px;
	left: -1000px;
	border: 1px solid #999999;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color: #1b2e3b;
	font-weight:normal;
	text-decoration: none;
	display:none;
	top: -200px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -200px;
left: -150px; /*position where enlarged image should offset horizontally */
z-index:99;
display:inline;
}

