/* CSS Document */

#dhtmltooltip
{
	position: absolute;
	width: expression( document.body.clientWidth < 50 ? "50px" : "auto" ); /* set min-width for IE */
	width: expression( document.body.clientWidth > 160 ? "160px" : "auto" ); /* sets max-width for IE */
	min-width: 50px;
   	max-width: 160px;
	
	border: 2px solid black;
	padding: 2px;
	background-color: #DCDCDC;
	visibility: hidden;
	z-index: 100;
	/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
	filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}

A:link
	{
	color:black;
	font-style:normal;
	text-decoration:underline;
	cursor:hand;
	font-variant:normal;
	text-transform:normal;
	}
A:hover
	{
	color:red;
	font-style:normal;
	text-decoration:none;
	cursor:hand;
	font-variant:normal;
	}
	
#subMenu a:link { font-family:"Courier New", Courier, monospace; }
#subMenu a:visited { font-family:"Courier New", Courier, monospace; }
#subMenu a:active { font-family:"Courier New", Courier, monospace; }
#subMenu a:hover { font-family:"Courier New", Courier, monospace; }