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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color:#333333;
background:#e6e5e5;
margin-bottom: 1px; /*bottom spacing between header and rest of content*/
height:18px;
padding: 3px 0 3px 10px; /*header text is indented 10px*/
cursor: pointer;
border-bottom:solid 1px #fff;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background:#d2d0d0;
color:#000;
}

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

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

}

.arrowlistmenu ul li a{
color: #000;
background: #f3f3f3 url(../images/list_bullet1.gif) no-repeat 8px 7px;/*custom bullet list image*/
display: block !important;
display:inline-block;
padding:2px 4px 2px 23px;
text-decoration: none;
font-weight: normal;
font-size: 12px;
/*height:18px;*/
width:171px;
border-bottom:#fff solid 1px;

}

.arrowlistmenu ul li li a{
color: #000;
background: url(../images/mnubox1-bulet.gif) no-repeat 10px 7px;/*custom bullet list image*/
display: block;
padding:2px 4px 2px 23px; line-height:18px;
text-decoration: none;
font-weight: normal;
font-size: 12px;
}


.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #d85011;
text-decoration:none;

}

