﻿/* CSS Document - imagehover.css */

p.subtitlehover {
	clear:both;
	color:#333333;
}
.thumbnail img{
	border: 1px solid white;
	margin: 0 5px 5px 0;
}
.thumbnail:hover{
	background-color: transparent;
}
.thumbnail:hover img{
	border: 1px solid white;
	float: left;
}
.thumbnail span{ 
	/*CSS for enlarged image*/
	position: absolute; 
	padding: 0px; 
	left: -1500px; 
	border: 0; 
	visibility: hidden; 
	text-decoration: none; 
} 
.thumbnail span img{
	/*CSS for enlarged image*/
	border-width: 0px;
	padding: 0px;
}
.thumbnail:hover span{
	/*CSS for enlarged image*/
	visibility: visible;
	position:absolute;
	width: 300px;
	height: 330px;
	padding: 10px;
	left: 150px; 
	z-index: 50;
}
.thumbnail {
	float: left;
	border: 0px;
	margin: 0 2px 2px 10px;
	padding: 1px;
	clear: left;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.thumbnailblank {
	float: left;
	width: 200px;
	height: 500px;
	border: 0px;
	margin: 0 2px 2px 0;
	padding: 1px;
	clear: left;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}