
.arrowlistmenu{
width: 189px; /*width of accordion menu*/
margin: 20px 0px 0px 0px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
background: transparent;
margin: 0px; /*bottom spacing between header and rest of content*/
padding: 0px 0px 0px 4px; /*header text is indented 10px*/
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background: transparent;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 4px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
font-family: Verdana, sans-serif;
font-size: 9px;
color: #6a6a6a;
background: transparent;
display: block;
padding: 0px;
padding-left: 35px; /*link text is indented 19px*/
padding-top: 4px;
text-decoration: none;
font-weight: 600;
border-bottom: 1px solid #dadada;
}

.arrowlistmenu ul li a:visited{
color: #acacac;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #6a6a6a;
background-color: #fff;
}

