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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
background: #4e4e4e; 
color:#fff;
font: bold 14px Arial;
margin-bottom: 10px; /*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;
border-radius:3px;
border-bottom:1px solid #333;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background: #333; 
color:#fff;
border-radius:3px;
border-bottom:1px solid #000;
margin-bottom:0;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0 0 10px;
padding: 0;
background:#f3f3f3;
border:1px solid #999;
border-width:0 1px 1px;
border-radius:0 0 3px 3px;
}

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

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: #dedede url(images/arrowbullet.png) no-repeat 3px center;
color:#000;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: #dedede url(images/arrowbullet.png) no-repeat 3px center;
color:#000;
}

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

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

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: #dedede url(images/arrowbullet.png) no-repeat 3px center;
color:#000;
}