/* CSS Document */
#nav {
width:223px;
padding:0;
margin:0;
}

#nav ul { /* all lists */
padding: 0;
margin: 0;
list-style:none;
}

#nav li { /* all list items */
position : relative;
float : left;
line-height : 31px;
margin-bottom : -1px;
width : 223px;
text-transform:uppercase;
z-index:2;list-style: none;	
}

#nav li ul { /* second-level lists */
position : absolute;
left: -999em;
margin-left : 223px;
margin-top : -25px;
background-color:#FFFFFF;

z-index:1;
}

#nav li ul ul { /* third-and-above-level lists */
left: -999em;
position : absolute;
margin-top:-17px;
}
	
#nav li a {
width: 223px;
w\idth : 223px;
display : block;
color : #6C6F65;
font-weight : bold;
text-decoration : none;
padding-left: 26px;		
font-family: Helvetica, Arial, sans-serif;
font-size:11px;
}
	
#nav li ul a {
border: solid 1px #016978;
line-height:20px;
padding-left:6px;
}
	
#nav li a:hover {
color: #000000;

}
	
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
left: -999em;
}
	
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
left: auto;
}
	
/* Menu items with subcategories */	
#nav a.daddy {
background: url(images/arrow_green.gif) center right no-repeat;
}

