/* CSS Document */

/* Easy CSS Tooltip - by Koller Juergen [www.kollermedia.at] */
a:tooltip {
	font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size:10px; }

a:hover tooltip {
background-color:#99CCFF; 
	text-decoration:none;
	font-size: 99%; /* this is just for IE */
	} /*BG color is a must for IE6*/

a.tooltip span {
	display:none; 
	padding:2px 3px; 
	margin-left:0px;
	width:110px;
	}
a.tooltip:hover span {
	position: absolute;
	display: inline;
	background-color:#3399CC;
	color:#FFFFFF;
	}


