@charset "UTF-8";
/* CSS Document */


.accordionMenu{
width: 180px; /*width of accordion menu*/
font-family:  Arial, Helvetica, sans-serif;
font-size:11px;
margin-top:-13px;
margin-bottom:13px;
}

.menuheader{margin-bottom:-13px;}

.accordionMenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: normal 12px Trebuchet MS, Arial, Helvetica, sans-serif;
color: white;
background: #25406a url(images/bg-sideMenu.gif) repeat-x center left;
padding: 0px 0 0px 7px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
line-height: 43px;
text-align: left;
border-top: 1px solid white;
}

.accordionMenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
margin-bottom:-1px;
}



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

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

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

.accordionMenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: #d4e8f7 !important;
}

.accordionMenu ul li a.subexpandable{
font-family:Verdana, Arial, Helvetica, sans-serif;
color: #333333;
/*background: url(arrowbullet.png) no-repeat center left; custom bullet list image*/
display: block;
padding: 2px 0;
margin-top:0px;
line-height:25px;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: normal;
border-top: 1px solid #25406a;
font-size: 12px;
}

.accordionMenu ul li a:visited{
color: #333333;
}

.accordionMenu ul li a:hover{ /*hover state CSS*/
background-color: #d4e8f7;
}

.accordionMenu ul.categoryitems li ul.subcategoryitems{ margin-bottom:5px;}
.subcategoryitems{display:none;}


.accordionMenu ul.categoryitems li ul.subcategoryitems li { padding:5px 0 5px 20px;}

.accordionMenu ul.categoryitems li ul.subcategoryitems li a
{color:#333333; padding:2px 0; border-bottom:none; font:Arial, Helvetica, sans-serif 10px bold; }

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


