/* tooltip styling. uses a background image (a black box with an arrow) */
div.tooltip {
	background:Cornsilk;
	border-top:1px solid #aaa;
	border-right:2px solid #999;
	border-bottom:2px solid #999;
	border-left:1px solid #bbb;
	font-size:11px;
	padding:15px;
	width:280px;
	display:none;
	color:#101010;
	z-index:100;
	font-weight:normal;	
}

/* tooltip title element (h3) */
div.tooltip h3 {
	margin:0;
	font-size:18px;
	color:#101010;
}

div.tooltip td {
	color:#101010;
	font-weight:normal;
	border-right:1px solid #aaa;
	border-bottom:1px solid #bbb;
}