@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
width: 180px; /*width of accordion menu*/
}

.arrowlistmenu a.menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-size:1em;
font-weight:bold;
cursor: pointer;
margin-bottom:10px;
margin-top:2px;
text-decoration:none;
font-weight:bold;
width:auto;
position:relative;
display:block;
color:#253B74;
}



.arrowlistmenu a.menuheader:hover {
color:#fff; 
background-color:#B4CAFF;
text-decoration:none;
font-weight:bold;
}


.arrowlistmenu a.menuheader a:link, .arrowlistmenu a.menuheader a:visited {
text-decoration:none;
color:#253B74;
}

.submenu a:visited, .submenu a:link, .menutitle a:link, .menutitle a:visited { text-decoration:none; color:#fff; 
background-color:#B4CAFF; }
.categoryitems a:hover, .categoryitems a:link, .categoryitems a:visited { font-weight:normal;  }

.arrowlistmenu .expandable{ /*CSS class to apply to expandable header when it's expanded*/
background-image:url(../_icons/arrow-down.gif);
background-repeat:no-repeat;
background-position: bottom right;
}

.arrowlistmenu .openheader { /*CSS class to apply to expandable header when it's expanded*/
background-image:url(../_icons/arrow-up.gif);
background-repeat:no-repeat;
background-position: bottom right;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-top:2px;
}

.arrowlistmenu ul li{
padding-bottom: 1px; /*bottom spacing between menu items*/
}


.arrowlistmenu ul li a{
color: #253B74;
/*background: url(../_icons/arrowbullet.png) no-repeat center left; custom bullet list image*/
display: block;
padding: 1px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 0.9em;
}

.arrowlistmenu ul li a:visited{
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color:#fff; 
background-color:#B4CAFF;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background-color:#B4CAFF;
}

.arrowlistmenu ul li .opensubheader, .arrowlistmenu ul li a.opensubheader:hover{ /*Open state CSS for sub menu header*/
/*background: lightblue !important;*/
background-image:url(../_icons/arrow-down.gif);
background-repeat:no-repeat;
background-position: bottom right;
}

.arrowlistmenu ul li .closedsubheader, , .arrowlistmenu ul li a.closedsubheader:hover{ /*Closed state CSS for sub menu header*/
/*background: lightgreen !important;*/
background-image:url(../_icons/arrow-up.gif);
background-repeat:no-repeat;
background-position: bottom right;
}

