#hintbox{ /*CSS for pop up hint box */
position:absolute;
top: 0;
margin-top:-10px;
background-color: #fff;
width: 150px; /*Default width of hint.*/ 
padding: 3px;
border:1px solid #EC9E0B;
border-bottom:2px solid #EC9E0B;
border-right:2px solid #EC9E0B;
z-index:100;
visibility: hidden;
text-align: justify;
color: #005218;
}

.hintanchor{ /*CSS for link that shows hint onmouseover*/
font-weight: bold;
color: navy;
margin: 3px 8px;
}

#tooltip {
	position: absolute;
	z-index: 9999;
	background-color: #FBDF5F;
	padding: 10px;
	opacity: 1;
	font-size: 11px;
	color: #333;
	font-family: helvetica, verdana, arial, sans-serif;
}

#tooltip h3, #tooltip div { margin: 0; }



