/*
sons of suckerfish vertical menu
BE CAREFUL - some fixes needed - see bottom of sheet
*/


#nav, #nav ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
float : left;
width : 170px;
}

#nav li { /* all list items */
position : relative;
float : left;
line-height : 2em;
/* margin-bottom : -1px; */
width: 11em;
}

ul#nav li ul { /* second-level lists */
position : absolute;
left: -999em;
margin-left : 172px;
margin-top : -1.45em;
border: 1px solid #444;
}

#nav li ul ul { /* third-and-above-level lists */
left: -999em;
}

#nav li a {
width: 170px;
w\idth : 165px;
display : block;
color : black;
font-weight : bold;
text-decoration : none;
background-color : none;
padding : 0 0.5em;
font-size: 90%;
}

#nav li a:hover {
color : white;
background-color : black;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
left: -999em;
background-color : white;
}

#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: 0; /* left: auto did not work in this case */
background-color : white;
}

/* FIX NEEDED */
div#navigation #nav li:hover {
position: static;
left: 0;

}

