/* CSS Document */

.arrowlistmenu{
width: 241px; /*width of accordion menu*/
margin:18px 0 0 10px;;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 14px Arial;
color: #132D0F;
background: black url(images/sidemenu_bg.jpg) repeat-x bottom left;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 14px 0 14px 15px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
color: #ffffff;
background: url(images/sidemenu_bg.jpg) repeat-x top left; !important;
}

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

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

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background-image: url(images/icon_plus.png);
background-repeat: no-repeat;
background-position:left;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
color: #254C17;
font-weight: bold;
background-image: url(images/icon_minus.png);
background-repeat: no-repeat;
background-position:left;
}

.arrowlistmenu ul li a{
color: #254C17;
background: url(images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 6px 0;
padding-left: 22px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 1px dotted #254C17;
font-size: 13px;
}

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

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

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
color: #ffffff;
font-weight:bold;
}
