/* CSS Document */


/**************** menuv coding *****************/
#menuv {
width: 12em;
background: #eee;
}

#menuv ul {
list-style: none;
margin: 0;
padding: 0;
}

#menuv a, #menuv h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
margin: 0;
padding: 2px 3px;
}

#menuv h2 {
color: #fff;
background: #CC3333;
text-transform: uppercase;
}

#menuv a {
color: #000;
background: #FF8888;
text-decoration: none;
}

#menuv a:hover {
color: #a00;
background: #fff;
}

#menuv li {
position: relative;
}
#menuv ul ul {

z-index: 500;
}

#menuv ul ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
z-index: 500;
}


div#menuv ul ul ul,
div#menuv ul li:hover ul ul,
div#menuv ul ul li:hover ul ul
{display: none;}


div#menuv ul ul li:hover ul,
div#menuv ul ul ul li:hover ul
{display: block;}





