/* CSS Document */


/* Begin Menu CSS------------------- */

/* Javascript to make :hover work in IE6 */
* html #topnav li, * html #sidenav li {
behavior: expression(
this.onmouseover = new Function("this.className += ' hover'"),
this.onmouseout = new Function("this.className = this.className.replace(' hover','')"),
this.style.behavior = null
);
} 
/*End Javascript ------*/

#topnav ul { 
	font-family: Arial;
	font-weight: normal;
	font-size: 10px;
	display:block;
	padding: 0;
	margin: 0;
	list-style: none;
}

#topnav ul li { 
	display:block;
	float:left;
	position: relative;
}

#topnav li ul { /* second-level lists */
    display: none;
	position: absolute;
	top:100%;
	left: 0;
	width: 97px;
	/* border-bottom: 1px solid #B2B2B2; */
}

/*#topnav li>ul {  to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left
	top: auto;
	left: auto;
}  */

#topnav li:hover ul,#topnav li.hover ul {  /*lists nested under hovered list items */
	display: block;
}

#topnav li a:hover { color: #000000; font-weight: bold; } /* Hover Styles */

/* Styles for Topnav and Sidenav Menu Items */

#topnav li a {
	display:block;
	float:left;
	text-decoration:none;
	color: #B2B2B2;
	background: #0066CC; /* IE6 Bug */
	}

#topnav li ul li a {
	display:block;
	background: #FFF;
	border: 1px #B2B2B2 solid;
	border-top: 0;
	text-align:left;
	padding: 5px 5px 5px 9px;
	width: 85px;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
		

/* End Menu CSS---------------------------------------------- */

	
ul {
	/* list-style-image: url(images/arrow_ender.gif);  Messes up top nav in Safari */
	margin-left: 0;
	}
