@charset "utf-8";
/* CSS Document */


.arrowlistmenu{
width: 190px; /*width of accordion menu*/
background-color:#ececec;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-size:11px;
color: white;
background-color: #444444;
margin: 0px 0 2px 0; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 1px 0 1px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .menuheader:hover{ /*CSS class for menu headers in general (expanding or not!)*/
font-size:11px;
color: #fff;
background-color: #3f6ba9;
margin: 0px 0 2px 0; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 1px 0 1px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader, .arrowlistmenu .openheadercotume{ /*CSS class to apply to expandable header when it's expanded*/
background-color: #3f6ba9;
color: #fff;
}

.arrowlistmenu .openheadercotume ul{
display:block;
}


.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #000;
display: block;
padding: 2px 0 0 10px;
text-decoration: none;
font-weight: bold;
background-color:#DAE6FC;
height:30px;
width:180px;
}

.arrowlistmenu ul li a:visited{
color: #000;
}

.arrowlistmenu ul li a:hover, .arrowlistmenu ul li a.selected{ /*hover state CSS*/
color: #000;
height:30px;
width:180px;
background-image:url(../images/accordion/hover_a.jpg);
background-position:right;
background-repeat:no-repeat;
background-color:#DAE6FC;
}


.arrowlistmenu h3:hover{
background-color: #DAE6FC;
}

.arrowlistmenu h3:hover a{
color:red;
}



