/********** mouseover.css - Style Page *********/
.finePrint {
    color:#85a157;
	font-size:10px;
	text-align:right;
}
.redPrint {
    color:#FF0000;
	font-size:10px;
	text-align:right;
	font-style: italic;
}
.boldPrint{
    color:#000000;
	font-size:12px;
	text-align:left;
	font-weight: bold;
}
.normalPrint {
    color:#000000;
	font-size:12px;
	text-align:left;
	font-weight: normal;
}
#photos a{
	margin-right:7px;
}
/********************** Thumbnail Rollover effect ***************************/
.thumbnail {
   position: relative;
   z-index: 0;
} 
.thumbnail:hover{
   background-color: transparent;
   z-index: 50;
}
.thumbnail span{ /*CSS for enlarged image*/
   position: absolute;
   padding: 2px;
   left: -1000px;
   border-color: transparent;
   visibility: hidden;
   color: #000088;
   text-decoration: none;
   width: 200px;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -500;
background-color: #FFFFFF;
left: -120px; /*position where enlarged image should offset horizontally */
}
/* ************* END OF MOUSEOVER. CSS *************** */