/* CSS Document */

.thumbnail{
	position: relative;
	z-index: 0;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
} 

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

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFFFF;
	padding: 5px;
	left: -1000px;
	border: 1px solid silver;
	visibility: hidden;
	color: #999999;
	text-decoration: none;
	font-family: Calibri;
	font-size: 14px;
	font-weight: bold;
	
} 

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	width: 500px;
	height: 500px;
	padding: 2px;
	
} 

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 150px;
	left: 150px; /*position where enlarged image should offset horizontally */
	position: fixed;
} 

