/* CSS Document */

#hintbox{ /*CSS for pop up hint box */
position:absolute;
top: 0;
background-color: white;
width: 100px; /*Default width of hint.*/ 
padding: 3px;
border:1px solid #CCCCCC;
line-height:18px;
z-index:100;
border-right: 1px solid #CCCCCC;
border-bottom: 1px solid #CCCCCC;
visibility: hidden;
 	font-family: "Arial, Helvetica, SunSans-Regular, sans-serif";
	font-size: 12px;
	text-align: left;
	color: #000000;
	line-height: 16px;
	margin-top: 6px;
}

.hintanchor{ /*CSS for link that shows hint onmouseover*/
font-weight: bold;
color: navy;
margin: 3px 8px;
}