.arrowlistmenu{
width: 185px; /*width of accordion menu*/
margin-top: 0px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color: white;
margin-top: 0px;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 0px 0px 0px 0px; /*header text is indented 0px*/

cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-color: #F3F3F3;
margin-top: 0px;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
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: #F1FFE6 !important;
}

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

.arrowlistmenu ul li a{
color: #A70303;
background-color: #ffffff;
display: block;
padding: 4px 0;
padding-left: 0px; /*link text is indented 0px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 70%;
}

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

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

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