/* CSS Document */

/*body {
font-family: arial, helvetica, serif;
font-size: 10px;
}*/

#container {
width: auto;
background-color: #000000;
}

#nav, #nav ul {
padding: 0;
margin: 0;
list-style: none;
line-height: 2;
/*background-color: #000000;*/
}

#nav a {
display: block;
padding: 0px 5px 0px 10px;
width: auto;
text-decoration: none;
color: #000000;
border-left: solid #CCCCCC 1px;
border-right: solid #CCCCCC 1px;
}

#nav a.arrow {
background: url(images/rightarrow2.gif) center right no-repeat;
}

#nav li { /* all list items */
float: left;
width: 130px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
position: absolute;
margin: 0;
background: #D9D9D9;
border: solid #000000 1px;
width: 130px;
left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
margin: -15px 0px 0px 130px;
}

#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;
}

#nav li:hover, #nav li.sfhover {
background: #9CABBA;
}