.arrowlistmenu{
width: 175px; /*width of accordion menu*/
font-family: 'Open Sans', sans-serif; /* font name */
font-size: small; /* font size */
color : #000000;
background-color: #F1F1F1;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family: 'Open Sans', sans-serif; /* font name */
font-size: small; /* font size */
color: #FFFFFF;
background: #14365f repeat-x center left; 
margin-top: 2px; /*bottom spacing between header and rest of content*/
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background: #fdb827 repeat-x center left; 
color: #14365f;
}

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

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

.arrowlistmenu ul li a{
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 1px solid #dadada;
font-family: 'Open Sans', sans-serif; /* font name */
font-size: small; /* font size */
}

.arrowlistmenu ul li a:visited{
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #FFFFFF;
background-color: #2383B8;
/* font-weight: bold; */
}

.arrowlistmenu li{
list-style-type: none;
padding-bottom: 2px; /*bottom spacing between menu items*/
color:#000000;
}

.arrowlistmenu li a{
color:#000000;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 4px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 1px solid #dadada;
}

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

.arrowlistmenu li a:hover{ /*hover state CSS*/
color: #000000;
/* font-weight: bold; */}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/

}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: url(plus.png) no-repeat center left;
background-color: #D8D8D8;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: url(minus.png) no-repeat center left;
background-color: #D8D8D8;
}

