@charset "utf-8";
/* CSS Document */
.arrowlistmenu{
width: 200px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 14px Arial, Helvetica, sans-serif;
color: white;
padding: 2px 0 0 20px;
margin:0;
background: url(/images/plus.gif) center left no-repeat;
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
/*background-image: url(titlebar-active.png);*/
background: url(/images/minus.gif) center left no-repeat;
color:#333;
}

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

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

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
/*background: lightblue !important;*/
background: url(/images/plus.gif)   center left no-repeat;
margin-left:8px;
padding-left:16px;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
/*background: lightgreen !important;*/
background: url(/images/minus.gif)  center left no-repeat;
margin-left:8px;
padding-left:16px;
/*color:#333;*/
}

.arrowlistmenu ul li a{
color: #FFFFFF;
/*background: url(arrowbullet.png) no-repeat center left;*/ /*custom bullet list image*/
/*background: url(/images/spacer.gif) center left no-repeat;*/
/*display: block;*/
/*padding: 2px 0;*/
padding-left: 24px; /*link text is indented 19px*/
text-decoration: none;
font-weight: normal;
/*border-bottom: 1px solid #dadada;*/
font-size: 90%;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #333;
text-decoration:underline;
/*background-color: #F3F3F3;*/
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
color:#333;
text-decoration:none;
/*background: lightblue;*/
}

ul.subcategoryitems{
	margin-left: 10px;
	
}

