.arrowlistmenu{
width: 240px; /*width of accordion menu*/
background: url(../images/sidebar-menu-bg.png);
padding-top:10px;
text-align:left;
margin:auto;

padding-bottom:10px;
}

#bordememu{ background-image:url(../images/sidebar-menu-bottom.png); width:240px; height:12px; margin:0px auto 0px auto; padding:0px;}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:"Lucida Grande",Verdana,Arial,sans-serif;
font-size:12px;
color:#FFF;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
padding: 4px 0 0px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(titlebar-active.png);
}

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

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


}



.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;

}

.arrowlistmenu ul li a{
margin-left:10px;
width:70%;
height:28px;
color: #fff;
font-family:Verdana, Geneva, sans-serif;
font-size:9px;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 30px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada ;
}
.arrowlistmenu ul li a:visited{
color: #fff;
}

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

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}


