/* CSS Document */

#hintbox { /*CSS for pop up hint box */
		position: absolute;
		background-image: url(../imgs/help_earth_48.gif);
		background-position: right top;
		background-repeat: no-repeat;
		/*margin: 50px 50px ;*/
		top: 0;
		background-color: lightyellow;
		width: 250px; /*Default width of hint.*/
		min-height: 45px;
		padding: 5px;
		padding-right: 20px;
		border: 1px solid black;
		font: normal 11px Verdana;
		line-height: 18px;
		z-index: 100;
		border-right: 3px solid black;
		border-bottom: 3px solid black;
		visibility: hidden;
	}

#errorbox { /*CSS for pop up hint box */
		position: absolute;
		background-image: url(../imgs/information_48.gif);
		background-position: right top;
		background-repeat: no-repeat;
		/*margin: 50px 50px ;*/
		top: 0;
		background-color: lightyellow;
		width: 250px; /*Default width of hint.*/
		min-height: 45px;
		min-width: 200px;
		padding: 5px;
		padding-right: 30px;
		border: 1px solid black;
		font: normal 11px Verdana;
		line-height: 18px;
		z-index: 100;
		border-right: 3px solid black;
		border-bottom: 3px solid black;
		visibility: hidden;
	}

.hintanchor { /*CSS for link that shows hint onmouseover*/
		font-weight: bold;
		color: navy;
		margin: 3px 8px;
	}
