@charset "utf-8";
/* CSS Document */
.arrowlistmenu{
width: auto; /*width of accordion menu*/
position:relative;
}
.arrowlistmenu ul
{
	 padding:0;
	 margin:0;
}
.arrowlistmenu ul li{ /*CSS class for menu headers in general (expanding or not!)*/
font-size:14px;
color: #212121;

/* background: url(../../images/accordion-h-bullet-h.jpg) no-repeat 11px 8px; */
/*margin-bottom: 10px;*/ /*bottom spacing between header and rest of content*/
padding: 0; /*header text is indented 10px*/
text-indent: 25px;
line-height:24px;
cursor: hand;
cursor: pointer;
font-weight:normal;

}

.arrowlistmenu ul li.current-cat, .arrowlistmenu ul li.current-cat-parent, .arrowlistmenu ul li:hover, .arrowlistmenu ul li.active
{ /*CSS class to apply to expandable header when it's expanded*/
background: #c4c4c4;
color:#FFF;
}

.arrowlistmenu ul li 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*/
background:#E6E6E6;
}

.arrowlistmenu ul li ul li, .arrowlistmenu ul li.current-cat-parent ul li.current-cat,.arrowlistmenu ul li.active ul li.current-cat{
padding-bottom: 2px; /*bottom spacing between menu items*/
background:#E6E6E6 none repeat scroll 0 0 !important;
position:relative;
}
.arrowlistmenu ul li ul li:hover
{
	background: #E6E6E6 ;
}
.arrowlistmenu ul li ul li a, .arrowlistmenu ul li ul li a:visited {
color: #222222;
background:url(../../images/accordion-li-bullet.jpg) no-repeat 25px 10px; /*custom bullet list image*/
display: block;
line-height:24px;
padding-left: 15px; /*link text is indented 19px*/
text-decoration: none;
font-size:14px;
}

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


.arrowlistmenu ul li a
{
background: url(../../images/accordion-h-bullet-h.jpg) no-repeat 8px 8px;
width: 228px;
display: block;
overflow:hidden;
}