a.imageToolTip{
/* use position:relative; to when it is links to other places relative*/
 background-color:White; /*Need these to make it show in IE*/
 color:Black;
}
/*the images have no border*/

a.imageToolTip img {
	border : none;  
	float:left; 
	margin : 0px 10px;
}

a.imageToolTip:hover{
 	background-color:transparent; /*Need for IE*/
	}

a.imageToolTip span{display: none}

a.imageToolTip:hover span{
display:block;
position:absolute;
top:10em;
left:30em;
width:15em;
border:1px solid Black;
background-color:Tan;
color:#000;
text-align: center
}