/* drop down menu from: http://www.alistapart.com/articles/hybrid/ */	
#nav {
	font-family: sans-serif,Arial,Helvetica;
	font-size: 11px;
	margin: 0;
	padding: 0;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
	white-space: nowrap;
	font-weight: bold;	
	text-align: center;	
	}

li.off, li.on{
	margin: 0;
	padding: 0;
	float: left;
	display: block;
	border-right: 1px solid #999999;
	width: 100 /* Width of Menu Items */
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 15px; /* Set 1px less than menu width */
	top: 24;
	display: none;  /*hide the subnavs*/
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
	text-transform: none;	
	text-align: left;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: 666666;
	padding: 5px;
	}

ul li a:hover { color: #FF9900;} /* Hover Styles */
		
li ul li a { padding: 2px 5px;  background: white; width: 180;} /* Sub Menu Styles */
li ul li a:hover {background: #CCCCCC; color: white;} /* Sub Menu Hover Style */
		
li:hover ul, li.over ul { display: block; } /* The magic */

/* ------------------- ORANGE SUB MENUS ------------------- */
.orange {
	background: #FF9900;
	color: white;
	text-align: center;
	height:94;/* desired effect*/
	/*height: url("javascript:document.getElementById('dynamicHeight').childNodes.length*25")*//*Dynamic Height NOT WORKING*/
	}
.orange:hover {background: #FF9900; color: white;}
.osub:hover {background: #FF9900; color: white;}
/* ----------------- END ORANGE SUB MENUS ----------------- */

ul li ul li{
	border-bottom: 1px solid #999999;
	}

li ul li ul{
	border-top: 1px solid #999999;
	left: 180px;
	top: -1;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
