.arrowlistmenu {
width: 200px; /*width of accordion menu*/
padding-top: 10px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px "Trebuchet MS", Trebuchet, Tahoma, Helvetica, Arial, sans-serif;
color: #3c3127;
background: url(images/bg-subnav.jpg) repeat-x center left;
border: 1px solid #d7d6d6;
border-bottom: 0;
margin-bottom: 0; /*bottom spacing between header and rest of content*/
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(images/bg-subnav.jpg);
color:#CC0000;
}

.arrowlistmenu ul, .arrowlistmenu a{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 10px 0;
margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 0; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #999;
background: url(images/arrow-red.gif) no-repeat 6px center; /*custom bullet list image*/
display: block;
padding: 4px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: normal;
border-bottom: 1px dotted #dadada;
}

.arrowlistmenu ul li a:visited{
color: #999;
}

.arrowlistmenu ul li a:active{
color: #A70303;
background-color: #F3F3F3;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #A70303;
background-color: #F3F3F3;
}

