/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */
/*
/* Begin CSS Popout Menu */

#menuv {
width: 160px;
margin:300px 0 0 5px;
z-index:2;
padding-bottom:1em; /* To allow room for bottom dropdown */
}

#menuv ul {
list-style:none;
margin:0;
padding:0;
width: 100%;
}

#menuv li {
position: relative;
margin:0;
padding:0;
text-align:left;
}

#menuv ul ul {
position: absolute;
top: 0;
left: 100%;
z-index:9;
}

#menuv li ul {
width:100%;
}

#menuv li li {
width:100%;
z-index:9;
}


#menuv a, #menuv h2{
display:block;
white-space:nowrap;
}

/* This is used for non-link group headers */
#menuv h2{
color:#ffffff;
}

/* Styling for 1st level links */
#menuv a.top {
width: 135px;
text-decoration:none;
font:bold 12px arial,helvetica,sans-serif;
}
#menuv a.top:link, #menuv a.top:visited {
color:#ffffff;
padding:4px 5px 5px 20px;
}
#menuv a.top:hover {
color:#000000;
background: #7FA2D5 url(../images/star.gif) left top no-repeat;
border:2px dotted #ffffff;
padding:2px 3px 3px 18px;
}
#menuv a.top:active {
color:#ffffff;
background: #7FA2D5 url(../images/star.gif) left top no-repeat;
border:2px dotted #ffffff;
padding:2px 3px 3px 18px;
}


#menuv ul.sub {
width:390px;
border: 2px dotted #ffffff;
}

/* Styling for 2nd level links - was 377 */
#menuv a.sub {
width:367px;
font:bold 12px arial,helvetica,sans-serif;
text-decoration:none;
z-index:99;
padding:4px 5px 4px 20px;
}
#menuv a.sub:link, #menuv a.sub:visited {
color:#000000;
background-color:#7FA2D5;
padding-left:18px;
}
#menuv a.sub:hover {
color:#ffffff;
background: #3E5E91 url(../images/star.gif) left top no-repeat;
padding-left:18px;
}
#menuv a.sub:active{
color:#ffffff;
background: #3E5E91 url(../images/star.gif) left top no-repeat;
padding-left:18px;
}

/* 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 */