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

padding: 0px 0px 0px 0px;

}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font:  11px sans-serif;
color: white;
background: #b6c1c8  center left;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 0px 0px 0px 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
text-align:left;
padding-left:10px;

line-height: 18px; 
vertical-align: middle;


}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(../images/titlebar-active.png);
}

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

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

.arrowlistmenu ul li a{
color: #859099;
display: block;
padding: 0px 0px 3px 0px;
text-decoration: none;
text-transform: uppercase;
text-align:left;
font-size: 9px;
font-family: arial; 
}




.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #fcc378; text-decoration:  underline; font-family:Arial, Helvetica, sans-serif; font-size: 9px;

}
.arrowlistmenu ul li a:active
	{
		color: #000000;
		text-decoration: underline;
		font-family:Arial, Helvetica, sans-serif; 
		font-size: 9px;		
		
	
	}		


.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

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

