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

#menuv{
position: relative;
top:80px;
left:.4em;
z-index:2;
width:9em;
padding-bottom:1em; /* To allow room for bottom dropdown */
}

#menuv ul{
list-style:none;
margin:0;
padding:0;
width:100%;
line-height:1;
}

#menu li {
position: relative;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
}

#menuv a, #menuv h2{
font:bold 12px/17px arial,helvetica,sans-serif;
display:block;
border-width:0;
white-space:nowrap;
margin:0;
padding:1px 3px 1px 5px;
}

/* This is used for non-link group headers */
#menuv h2{
color:#ffffff;
text-transform:uppercase;
}

/* Styling for 1st level links */
#menuv a.top {
background:transparent;
text-decoration:none;
}
#menuv a.top:link, #menuv a.x:visited{
color:#ffffff;
}
#menuv a.top:hover{
color:#99cc99;
}
#menuv a.top:active{
color:#CCFFCC;
}

/* Styling for 2nd level links */
#menuv a.sub {
background:#333333;
text-decoration:none;
}
#menuv a.sub:link{
color:#ffffff;
}
#menuv a.sub:visited{
color:#ffffff;
}
#menuv a.sub:hover{
color:#99cc99;
}
#menuv a.sub:active{
color:#CCFFCC;
}

#menuv ul.submenuS {
width:155px;
}
#menuv ul.submenuM {
margin:0;
width:200px;
line-height:1;
}
#menuv ul.submenuL {
width:250px;
}
/* end links */


/* 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;
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 */