.arrowlistmenu{
width: 250px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font:  11px Tahoma;
color: #fa8420;
background:  url(images/arrow_expand.png) no-repeat center left;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
padding: 0px 0px 0px 0px; /*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/arrow_expand01.png) ;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 0px; /*bottom spacing between menu items*/
padding-top: 8px;
padding-left: 0px; /*link text is indented 19px*/
}

.arrowlistmenu ul li a{
color: #fa8420;
background: no-repeat center left; /*custom bullet list image*/
display: block;
padding: 0px;
padding-left: 5px; /*link text is indented 19px*/
text-decoration: none;
font-size: 11px;
font-family: Tahoma;
}

.arrowlistmenu ul li a:visited{
color:#fa8420;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #fa8420;
text-decoration:underline;
}