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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 14px Arial;
color: white;
background-color:#ccdef0; /* background color for graphic */
text-transform: uppercase;
padding: 0px 0px 0px 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
margin:0 0 0 0;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-color:#ccdef0;/*background color when header opens*/
}

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

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

.arrowlistmenu ul li a{
color: #8198ba; /*color of menu item*/
display: block;
padding: 6px 0px 6px 19px;
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid navy;
font-size: 10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
margin-left:6px;
background-color:#ecf3fa; /* background of opened menu - if remove, body color is background */
}

.arrowlistmenu ul li a:visited{
color: #8198ba; /*visited link color */
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: navy; /* font color when hovering */
background-color: #ecf3fa; /* Background color when overing over entry  */
}