/*------ accordion menu------*/

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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	cursor: pointer;
    height: 23px;
    color: #ffffff;
    display:block;
    text-decoration: none;
    background: url(../../img/button_bgr.png) top no-repeat;
    padding-top: 0px;
    padding-left: 16px;
    line-height: 23px;
    font-family: arial;
    font-weight: bold;
    font-size: 11px;
}

.arrowlistmenu .menuheader:hover{ 
    color: #FFAE00;
	background: url(../../img/button_bgr_hover.png) top no-repeat;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 8px;
	padding-left: 16px;
}

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

.arrowlistmenu ul li a{
    color: #A43C15;
    text-decoration: none;
    line-height: 23px;
    height: 23px;
    font-weight: bold;
    font-size: 11px;
	margin-left: 0px;
}

.arrowlistmenu ul li a:visited{
    color: #A43C15;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #FFAE00;
}

.arrowlistmenu img.btnGlyph {
	width: 16px;
	height: 16px;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	display: block;
}

* html .arrowlistmenu div.btnGlyph {
	display: none;
}

