/*ACCORDIAN MENU STYLES*/
.arrowlistmenu{
width: 192px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-size: 11.5pt;
font-weight: bold;
text-transform: uppercase;
color: #ffffff;
line-height: 15px;
text-transform: uppercase;
padding: 2px 0 2px 5px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
border-bottom: 1px dotted #ffffff;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
line-height: 15px;
color:#ffffff;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 2px; /*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: #ffffff;
display: block;
padding: 2px 0;
padding-left: 2px;
text-decoration: none;
font-weight: bold;
font-size: 9pt;
border-bottom: 1px dotted #494a4a;
}

.arrowlistmenu ul li a:visited{
color: #ffffff;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #ffffff;
background-color: #ca0a09;
}