.arrowlistmenu{
width: 225px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:tahoma;
font-size:12;
color:#990000;
padding-top:0px;
margin-top:0px;
margin-left:0px;
margin-right:0px;
margin-bottom:5px; /*bottom spacing between header and rest of content*/

text-transform: uppercase;
cursor: hand;
cursor: pointer;
}



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

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

.arrowlistmenu ul li a{
color: #A70303;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
padding-right:2px;

 /*link text is indented 19px*/
text-decoration: none;

border-bottom: 1px solid #dadada;
font-family:tahoma;
color:#000000;
font-size:12;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #A70303;

}
