
.vmenu{
position:fixed;
max-width: 160px; /*width of menu*/
min-width: 150px;
background-color: #fff;
/*width: 20%;*/
font-family:  Verdana, Arial, sans-serif;
z-index:100;
}

.vmenu .headerbar{
font-size: 13px;
font-weight: bold;
color: white;
width: 100%;
background-color: #802000; 
margin-bottom: 0; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 3px 0 3px 3px; /*23px is left indentation of header text*/
}
.vmenu .headerbar a { text-decoration:none; color: white}

.vmenu ul{
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}

.vmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.vmenu ul li a{
font-size: 1em;
color: #802000;
background: #E9E9E9;
display: block;
padding: 5px 0;
line-height: 17px;
padding-left: 8px; /*link text is indented 8px*/
text-decoration: none;
}

.vmenu ul li a:visited{
color: #802000;
}

.vmenu ul li a:hover{ /*hover state CSS*/
color: #333;
background: #d75;
background-color: #FFD7AE;
}
.vmenu ul li a:active, .vmenu ul li a.menuactive {
color: white;
background: #C2701D;
}


