#nav{
	background-color:#846703;
	height:28px;
	
}
#nav, #nav ul{
margin:0;
padding:0;
list-style-type:none;
list-style-position:outside;
position:relative;
line-height:1.5em; 
z-index: 5000;
width:960px;
background: #846703 url(menubar_glossy.jpg) center center repeat-x;
}

#nav a{
display:block;
/* MJE Below positions the menu text inside the background  */
/* Do NOT make padding-bottom=0 or the sub menus stop working */
padding-top:5px;
padding-bottom:5px;
padding-left:11px;
padding-right:13x;
border:0px solid #333;
color:#846703;
text-decoration:none;
background-color:#846703;
font: bold 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
background: #846703 url(menubar_glossy.jpg) center center repeat-x;
}

#nav a:hover{

background-color:#846703;
color:#0000ff;
}
#nav ul:hover{

background-color:#846703;
color:#846703;
}
#nav li:hover{

background-color:#846703;
color:#846703;
}

#nav li{
float:left;
position:relative;
}

#nav ul {
position:absolute;
display:none;
width:12em;
/* Below is the distance from the bottom of the header to top of sub-menu */
top:25px;

}

#nav li ul a{
/* width:12em; What the heck is an em??*/
/* This controls the width of the sub menu */
width: 188px;
height:20px;
float:left;
padding-top:3px;
padding-bottom:3px;
padding-left:10px;
padding-right:5px;
}

#nav ul ul{
top:auto;
}	

#nav li ul ul {
left:12em;
margin:0px 0 0 10px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul{
display:none;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul{
display:block;
}