/* CSS Document */

.arrowlistmenu{
width: 100%; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/

text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
background-color:#EFEFEF;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-color:#DDD;
}
.arrowlistmenu ul{padding-bottom:5px;}
.arrowlistmenu ul ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
background-color:#DDD;
margin: 0;
padding-bottom:5px;
}

.arrowlistmenu ul ul li,{
padding-bottom: 0px; /*bottom spacing between menu items*/
margin:0;
list-style-type: none;
}

.arrowlistmenu ul ul li a{
display: block;
padding: 0px 0;
padding-left: 12px; /*link text is indented 19px*/
text-decoration: none;
margin:0;
font-size: 90%;
color: #000;}

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

.arrowlistmenu ul ul li a:hover{ /*hover state CSS*/
color: #BF0000;

}
