/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */

/* Begin CSS Popout Menu */

#menu{
position:fixed;
/* top:0.5em; */
/*left:0.5em; */
z-index:2;
/*padding-bottom:12em;*/ /* To allow room for bottom dropdown */
font-family:sans-serif;
font-weight:700;
font-size:large;
}

#menu a, #menu h2{
font:bold 11px/16px arial,helvetica,sans-serif;
width:10em;
display:block;
border-width:1px;
border-style:solid;
border-color:#ccc #888 #555 #bbb;
white-space:nowrap;
margin:0;
padding:5px 3px;
font-size:large;
padding-right:10px;
}
#menu h2{
color:#fff;
background:#000;
text-transform:uppercase;
}
#menu a{
/*color:#000;*/ /*original values*/
color:#003080;
/*background:#eee;*/ /*original values*/
background:#44AADD;
text-decoration:none;
}

#menu a:hover{
/*color:#a00;*/  /*original values*/
color:white;
/*background:#ddd;*/ /*original values*/
background-color:#003080;
}

#menu a:active{
color:#060;
background:#ccc;
}

#menu ul{
list-style:none;
margin:0;
padding:0;
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:100%;
display:none;
}

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;*/ /*original values*/
background:white;
}

#menu a.x:hover
{
/*background:#ddd;*/ /*original values*/
background:#44AADD;
}

#menu a.x:active
{
color:#060;
background:#cccccc;
}
