/* CSS menuvs - Vertical CSS menuv with Popout and Dropdown menuvs - 20050131 */
/* Begin CSS Popout menuv */

#menuv{
top:0.5em;
left:0.5em;
z-index:2;
width:100%;
padding-bottom:0; /* To allow room for bottom dropdown */
}

#menuv a, #menuv h2{
font:bold 11px/16px arial,helvetica,sans-serif;
display:block;
border-width:0px;
border-style:solid;
border-color:#ccc #888 #555 #bbb;
white-space:nowrap;
margin:0;
padding:1px 0px;
}

#menuv h2{
color:#fff;
background:#ff0101;
text-transform:uppercase;
}

#menuv a{
color:#567371;
background:#fff;
text-decoration:none;
}

#menuv a:hover{
color:#567371;
background:#ddd;
}

#menuv a:active{
color:gray;
background:#ccc;
}

#menuv 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#menuv li, div#menuv li:hover{
position:relative;
}

div#menuv li ul{
position:absolute;
border: 1px solid #ff0101;
top:0;
left:100.1%;
display:none;
}

div#menuv ul ul,
div#menuv ul ul ul,
div#menuv ul li:hover ul ul,
div#menuv ul li:hover ul ul ul
{display:none;}

div#menuv ul li:hover ul,
div#menuv ul ul li:hover ul,
div#menuv ul ul ul li:hover ul
{display:block;}

/* End non-anchor hover selectors */

/* Styling for Expand */

#menuv a.x, #menuv a.x:visited{
background:#fff url(../images/style/expand3.gif) no-repeat bottom right;
}

#menuv a.x:hover{
background:#ddd;
}

#menuv a.x:active{
color:#060;
background:#ccc;
}

