/*THUMBNAIL HOVERPOPUPS*/

.thumbnail span { /*CSS for enlarged image*/
	position: fixed;
	//background-color: #e5e5e5;
	padding: 5px;
	margin-left: -305px;
	//border: 1px solid #666;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail span img { /*CSS for enlarged image*/
	border-width: 0px; 
	/*padding: 2px;*/
}

.thumbnail:hover span { /*CSS for enlarged image on hover*/
	visibility: visible; 
	width: 200px;
	top: 5px; /* use IF IE6 style to correct IE6 positions of larger image relative to thumb */
	left: 300px;/*position where enlarged image should offset horizontally */
}


#tooltip1 { position: relative; }

#tooltip1 a span { 
display: none; 
color: #FFFFFF; 
}

#tooltip1 a:hover span {
display: block;
position: absolute;
width: 200px;
background: #aaa url(images/horses200x50.jpg);
height: 50px;
left: 100px;
top: -10px;
color: #FFFFFF;
padding: 0 5px;
}
