@charset "utf-8";
/* CSS Document */
#infotip {color:#000000}
#infotip a {
	text-decoration: none; color:#000000; 
}

#infotip a:hover {
	position: relative;
}

#infotip a span {
	display: none;
}

#infotip a:hover span {
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
	/* formatting only styles */
	width: 200px;
	padding: 5px;
	margin: 10px;
	z-index: 100;
	border: 1px dotted #c0c0c0;
	opacity: 0.9;
	background-color: #FFFFCC;
	font:Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: left;
	/* end formatting */
}


