/* CSS Document */

.arrowlistmenu{
width: 175px; /*width of accordion menu*/
padding-bottom:20px;
}
h3 { margin:0px; padding:0px; height:15px;}


.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
color: #FFFFFF;
background: url('../images/titlebar.gif') no-repeat; 
margin-bottom: 1px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
/*header text is indented 10px*/
cursor: hand;
cursor: pointer; font-style:normal; font-variant:normal; font-weight:bold; font-size:12px; font-family:Arial; padding-left:23px; padding-right:0; padding-top:5px; padding-bottom:5px
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url('../images/titlebar_over.gif');
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
padding-left: 5px;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #000;
background: url('../images/arrowbullet.gif') no-repeat center left; /*custom bullet list image*/
display: block;
padding-left: 15px; /*link text is indented 19px*/
text-decoration: none;
font-weight: normal;
font-family:Arial, Helvetica, sans-serif;
border-bottom: 0px solid #dadada;
font-size: 11px; padding-right:0; padding-top:2px; padding-bottom:2px
}

.arrowlistmenu ul li a:visited{
color: #000;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #06BDBC;
background-color: #FFFFFF;
}
