
.arrowlistmenu{
width: 160px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color: #000000;
background: #FFFFFF url(../images/MenuBack.gif) repeat-x center left;
margin-bottom: 6px; /*bottom spacing between header and rest of content*/
padding: 0px 0 0px 17px; /*header text is indented*/
cursor: hand;
cursor: pointer;
text-align: left;
text-decoration: none;
}

.menuheader:hover{ /*CSS class for menu headers in general (expanding or not!)*/
color: #990000;
background: #FFFFFF url(../images/MenuBack2.gif) repeat-x center left;
cursor: hand;
cursor: pointer;
text-decoration: none;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(../images/MenuBack2.gif);
color: #990000;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 6px; /*bottom spacing between each UL and rest of content*/
text-align: left;
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
font-family: arial;
color: SILVER;
display: block;
padding: 2px 0;
padding-left: 25px; /*link text is indented 19px*/
text-decoration: none;
font-weight: 600;
font-size: 11px;
}

.arrowlistmenu ul li a:visited{
color: SILVER;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #777777;
text-decoration: overline underline;
padding-left: 25px; /*link text is indented 19px*/
}

