﻿/*
	generic thumbnail popup styles
*/
.thumbnail {
	position: relative;
	z-index: 0;
	text-Decoration: none;
	color: #0033ff;
}
.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
}
.thumbnail span { /*CSS for enlarged image*/
	position: absolute;
	background-color: white;
	padding: 0px;
	left: -10000px;
	border:none;
	visibility: hidden;
	color: black;
	text-decoration: none;
}
.thumbnail span img { /*CSS for enlarged image*/
	border-width: 2px;
	padding: 1px;
}
.thumbnail:hover span { /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	border: solid 1px #333333;
	left: 75px; /*position where enlarged image should offset horizontally */
	padding: 5px;
}
.thumbnail:visited{color: #0033ff;}