

/* --- ( DROP DOWN MENU ) ------------------------------- */
/* ////////////////////////////////////////////////////// */
#top_nav {	font: bold 1em Arial, sans-serif; margin-left: 3px; }
#top_nav ul { /* all lists */
	padding: 0; margin: 0;
	list-style: none;
	text-align: left;
}
#top_nav li { /* all list items */
	position: relative; z-index: 500;
	float: left;
	width: 110px;
}
#top_nav li a.navHead {
	display: block;
	color: #FFF;
	text-decoration: none;
	padding: 1px 5px; margin: 0px;
	border: 1px solid #3068D0;
	width: 98px; /* width - padding (used for good rendering browsers) */
	//width: 110px; /* IE will use this one, because it doesnt understand comments */
	}
#top_nav li ul { /* second-level */
	display: none;
	position: absolute; z-index:600;
	top: 19px; left: 0px;
	}
#top_nav li li a {
	display: block;
	height: auto;
	background: #FFCC99;
	color: #000;
	padding: 2px 1px 2px 5px;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	text-decoration: none; text-align: left;
	width: 102px; /* width - padding (used for good rendering browsers) */
	//width: 110px; /* IE will use this one, because it doesnt understand comments */
	}
#top_nav li li a:hover  {
	background: #ffeecc;
	}
#top_nav 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: 19px; left: auto;
	}
#top_nav ul li:hover ul,#top_nav ul li.over ul { /* lists nested under hovered list items */
	display: block;
	}
#top_nav li.over a.navHead, #top_nav li:hover a.navHead  {
	background: #FFF;
	color: #000;
	border: 1px solid #999;
	}

/* Third Level Menus */
#top_nav li ul li.subnav ul { /* third-level */
	display: block;
	visibility: hidden;
	visibility: hidden;
	position: absolute; z-index:700;
	top: 0px;
	left: 109px;
	}
#top_nav li ul li.subnav:hover ul, #top_nav li ul li.subover ul { /* lists nested under hovered list items */
	display: block;
	visibility: visible;
	visibility: visible;
	}
#top_nav li ul li.subnav:hover a.navSub, #top_nav li ul li.subover a.navSub { /* lists nested under hovered list items */
	background: #ffeecc;
	}
#top_nav ul li ul li.navdisabled {
	display: block;
	height: auto;
	background: #FFCC99;
	color: #999;
	padding: 2px 1px 2px 5px;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	text-decoration: none; text-align: left;
	width: 102px; /* width - padding (used for good rendering browsers) */
	//width: 110px; /* IE will use this one, because it doesnt understand comments */
}
li.subnav span.pointer, li.navdisabled span.pointer {
	position: absolute;
	right: 2px; top: 0;
}