

a.menuheader  { /*CSS class for menu headers in general (expanding or not!)*/
margin:0px 0px 0px 0px;/*bottom spacing between header and rest of content*/
display:block; color:#999; font-weight:bold; line-height:18px;padding:3px 5px 5px 5px;
font-size:12px; text-decoration:none;
font-family:Arial, Helvetica, sans-serif;
/*
ADDITIONAL CSS
font-weight:bold;
color:#333;
display:block;
border-bottom:none;
padding:10px 5px 10px 5px;
background:url(../images/accordionactive.png) top left no-repeat;
border-top: solid 1px #CCC;
border-left: solid 1px #CCC;
border-right: solid 1px #CCC;
text-transform: uppercase;
cursor: pointer;
cursor: hand;
*/
}
a:hover.menuheader  { /*CSS class for menu headers in general (expanding or not!)*/
margin:0px 0px 0px 0px;/*bottom spacing between header and rest of content*/
display:block; color:#C5194A; font-weight:bold; line-height:18px;padding:3px 5px 5px 5px;
/*
ADDITIONAL CSS
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
font-weight:bold;
color:#333;
display:block;
border-bottom:none;
padding:10px 5px 10px 5px;
background:url(../images/accordionactive.png) top left no-repeat;
border-top: solid 1px #CCC;
border-left: solid 1px #CCC;
border-right: solid 1px #CCC;
text-transform: uppercase;
cursor: pointer;
cursor: hand;
*/
}
.accordioncss .openheader{ /*CSS class to apply to expandable header when it's expanded*/
color:#C5194A;
}

.accordioncss 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*/
}

.accordioncss ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.accordioncss ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.accordioncss ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

.accordioncss ul li a{
color: #999;
background: url(../images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
font-size: 90%;
}

.accordioncss ul li a:visited{
color: #999;
}

.accordioncss ul li a:hover{ /*hover state CSS*/
color:#C5194A;
}

.accordioncss ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}