#nav, 
#nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size:  12px;
	background: transparent url(../assets/bg/nav_orange.png) no-repeat right bottom;
	z-index: 200;
}

#nav {
	height: 23px; 
	padding: 0; 
 	float: left;
	background: transparent;
}

#nav table {
	border-collapse:collapse;
}

#nav li {
	float:left;
}

#nav li li {
	float:none;
}

/* a hack for IE5.x and IE6 */
#nav li a li {float:left;}

#nav li a {
	display: block; 
	float: left; 
	color: #986005; 
	height: 23px; 
	padding: 0 45px 0 5px; 
	line-height: 22px; 
	text-decoration: none; 
	white-space: nowrap; 
	font-weight: normal; 
	border-left: 3px solid #fff;
}

#nav li li a {
	width: 115px;
	height: 24px; 
	line-height: 23px; 
	float: none;
	border-left: none;
}

#nav li:hover {
	position:relative; 
	z-index:500;
}

#nav a:hover {
	position: relative; 
	z-index: 500; 
	background: #eda93c; 
	color: #fff; 
	border-left: 3px solid #eda93c;
}

#nav li:hover > a {
	border-left: 3px solid #eda93c; 
	background: #eda93c; 
	color: #fff;
}

#nav :hover ul {
	left:0; 
	top:23px; 
	border-left:3px solid #eda93c; 
	z-index:500;
}

#nav a:hover ul {
	left:-1px;
}

#nav ul {
	position:absolute; 
	left:-9999px; 
	top:-9999px;
}

/* it could have been this simple if all browsers understood */
/* show next level */
#nav li:hover li:hover > ul {left:0; margin-left:100%; top:0;}
/* keep further levels hidden */
#nav li:hover > ul ul {position:absolute; left:-9999px; top:-9999px; width:auto;}

/* show path followed */
#nav li:hover li:hover > a {
	background: #eda93c; 
	color: #fff; 
	border-left: none;
}

#nav li a:hover ul li a:hover {background:#eda93c;}

/* keep further levels hidden */
#nav a:hover ul ul,
#nav a:hover a:hover ul ul,
#nav a:hover a:hover a:hover ul ul,
#nav a:hover a:hover a:hover a:hover ul ul
{position:absolute; left:-9999px; top:-9999px;}

