@charset "utf-8";
/* CSS Document */



.arrowlistmenu{
width: 178px;
border: solid #d8d9dd 1px;/*width of accordion menu*/
background-color:#f5f5f5;
margin-left:0px;
}


.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bolder 11px Arial;
height:20px;
color: #424242;
background: gray url(../images/bar1.gif) repeat-x center left;
margin-bottom: 8px; /*bottom spacing between header and rest of content*/
padding: 5px 0 0px 7px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
vertical-align:middle;
margin: 0;

}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(../images/bar2.gif);
}

.arrowlistmenu 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*/
}

.arrowlistmenu ul li{
padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background-image: url(../images/arrow2.gif);
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background-image: url(); !important;
}

.arrowlistmenu ul li a{
color: #424242;
background: url(../images/arrow2.gif) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 3px 0px 3px 0px;
padding-left: 10px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #ccc;
font: normal 11px Arial;
}

.arrowlistmenu ul li a:visited{
color: #424242;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-image:url(../images/arrow.gif);
background-color: #d6e0ec;
display: block;
	color:#424242
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background-image:url(../images/arrow.gif);
background-color: #d6e0ec;
display: block;
color:#424242;
height: 100%
}