
.arrowlistmenu{
width: 100%; /*width of accordion menu*/
}
.arrowlistmenutop{width: 100%; text-align:center; color:#FFF; line-height:50px; background:#171717; border-radius:5px 5px 0 0; font-weight:bold}
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 16px Arial;
color: white;
background:#272727 ;
margin-bottom: 1px; margin-top:1px/*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 2px 0 2px 15px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer; line-height:32px; text-transform:uppercase;
}
.arrowlistmenu .menuheader h3{ margin-top:2px}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
background:#f6f6f6;
margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}

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

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

.arrowlistmenu ul li a{
color: #333;
background:url(../images/b29.png) no-repeat 5px 13px;
display: block;
padding: 6px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.arrowlistmenu ul li a:visited{
color: #A70303;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: #e4e4e4;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}