/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */

*{margin:0;padding:0;border:none;}


/* Begin CSS Popout Menu */

#menu{
position:relative;
top:0px;
left:0px;
z-index:0;
width:195px;
padding-bottom:0px; /* To allow room for bottom dropdown */
}

#menu a, #menu h2{
z-index:0;
font:bold 9px/16px verdana,helvetica,sans-serif;
display:block;
border-width:0px;
border-style:solid;
border-color:#000000 #000000 #000000 #000000;
white-space:nowrap;
margin:0px;
padding:0px 0px;
height:22px;
}

#menu h2{
color:#ffffff;
text-decoration:none;
height:22px;
}

#menu a{
color:#ffffff;
text-decoration:none;
height:22px;
}

#menu a:hover{
color:#ffffff;
background:#444444;
height:22px;
}

#menu a:active{
color:#ffffff;
text-decoration:none;
height:22px;
}

#menu ul{
list-style:none;
margin:0px;
padding:0px;
width:100%;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */

div#menu li, div#menu li:hover{
position:relative;
}

div#menu li ul{
position:absolute;
top:0;
left:195px;
display:none;
background:#292828;
}

div#menu ul ul,
div#menu ul ul ul,
div#menu ul li:hover ul ul,
div#menu ul li:hover ul ul ul
{display:none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display:block;}

/* End non-anchor hover selectors */

/* Styling for Expand */

#menu a.x, #menu a.x:visited{
background:#eee url(/css/images/expand3.gif) no-repeat bottom right;
}

#menu a.x:hover{
background:#ddd;
}

#menu a.x:active{
color:#060;
background:#ccc;
}

