@charset "utf-8";
/* CSS Document */

.pluslistmenu{
width: 207px; /*width of menu*/
}

.pluslistmenu .headerbar{
font: bold 14px Arial;
color: #fff;
background: #cc0000;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
}

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

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

.pluslistmenu ul li a{
color: #666;
display: block;
padding: 7px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: normal;
border-bottom: 1px solid #e5e5e5;
font-size: 100%;
}

.pluslistmenu ul li a:visited{
color: #666;
}

.pluslistmenu ul li a:hover{ /*hover state CSS*/
color: 999;
background-color: #e9e9e9;}

.vactive{ /*active state CSS*/
color: #999;
background-color: #e9e9e9;
font-weight:bold;
}
.pluslistmenu ul li a:active{ /*active state CSS*/
color: #999;
background-color: #e9e9e9;
}