.arrowlistmenu{
width: 214px; /*width of accordion menu*/
margin-left: 0px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: 14px Tahoma;
color: white;
text-decoration: none;
text-align: left;
background-image: url(images/menu_background.jpg);
margin-top: 5px;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
padding: 8px 0px 8px 13px; /*header text is indented 10px*/
cursor: hand;
}

.arrowlistmenu .menuheader:hover{ /*CSS class for menu headers over in general (expanding or not!)*/
font: 14px Tahoma;
color: white;
text-align: left;
text-decoration: none;
background-image: url(images/menu_background_over.jpg);
cursor: hand;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(images/menu_background.jpg);
}

.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: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: url(images/submenu_background.jpg) right no-repeat;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: url(images/submenu_background.jpg) right no-repeat;
}

.arrowlistmenu ul li a{
color: white;
background: url(images/submenu_background.jpg) right no-repeat;
display: block;
height: 25px;
padding: 0px 0px 0px 0px;
padding-left: 30px; /*link text is indented 19px*/
text-decoration: none;
font: 12px Tahoma;
line-height: 25px;
text-align: left;
font-weight: normal;
margin-bottom: 5px;
border-bottom: 0px solid white;
}

.arrowlistmenu ul li a:hover{
color: white;
background: url(images/submenu_background_over.jpg) right no-repeat;
display: block;
height: 25px;
padding: 0px 0px 0px 0px;
padding-left: 30px; /*link text is indented 19px*/
text-decoration: none;
font: 12px Tahoma;
line-height: 25px;
text-align: left;
font-weight: normal;
margin-bottom: 5px;
border-bottom: 0px solid white;
}

.arrowlistmenu ul li a:visited{
color: white;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: white;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: url(images/submenu_background_over.jpg) right no-repeat;
}

.arrowlistmenu ul li a.subsub{ /*CSS for aubsub menu header*/
color: #818385;
background: none;
text-align: left;
line-height: 25px;
padding-left: 10px;
}

.arrowlistmenu ul li a.subsub:hover{ /*hover state CSS for subsub menu header*/
color: black;
background: none;
text-align: left;
line-height: 25px;
padding-left: 10px;
}



