.arrowlistmenu{
padding-top: 10px;
vertical-align: top;
width: 150px; /*width of accordion menu*/
margin-top: 0px;
padding-bottom: 0px;
background-color: #000000;
/*border: 1px solid red;  */
}
.arrowlistmenu h3{
margin-top: -10px;
margin-bottom: 3px; /*width of accordion menu*/
margin-top: 3px;
padding: 0px;
/*border-bottom: 1px solid #ffffff; */  /* Add boder to bottom main menu items */
}
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color: white;
background-color: #000000;
/*margin-bottom: 10px; bottom spacing between header and rest of content*/
margin-bottom: 0px;
text-transform: uppercase;
padding: 4px 0px 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
/*background-color: red;*/
/*border-bottom: 1px solid #000000;  */
/*margin-bottom: 0px;
padding-bottom: 3px;
padding-top: 3px;*/

}
.arrowlistmenu .menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color: white;
text-decoration: none;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(../images/menu/titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
vertical-align: top;
font: bold 14px Arial;
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
background-color: #ffffff;
}
.arrowlistmenu .categoryitems{    /*bringing the sub layer inline with header*/
margin-top: -10px;
}

.arrowlistmenu .categoryitems li{    /*spacing of ALL 2nd layer objects*/
margin-top: 10px;
padding-bottom: 1px;  /*added to stop IE adding space to bottom*/
}
.arrowlistmenu .subexpandable {    /*bringing the sub layer inline with header*/
margin-top: -10px;
}
.arrowlistmenu .subcategoryitems li{   /*Spacing of 3rd level menu items*/
vertical-align: top;
margin-top: 0px;
padding-bottom: 1px;  /*added to stop IE adding space to bottom*/
}
.arrowlistmenu ul li{
padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background-color: #A9A9A9 !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background-color: #ADD8E6 !important;
}

.arrowlistmenu ul li a{
margin-top: 0px;
margin-bottom: 0px;
vertical-align: top;
color: #A70303;
background: url(../images/menu/arrow_bullet.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;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.arrowlistmenu ul li a:visited{
color: #A70303;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: #F3F3F3;
}
.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;

}
