/* CSS Document */

.arrowlistmenu{
width: 181px; /*width of accordion menu*/
margin:0px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color: black;
margin-bottom: -5px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 2px 0 2px 15px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
height:18px;
background-image:url(../images/bgmenu.gif);
background-repeat:no-repeat;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 4px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
font: 11px Arial;
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
font: 11px Arial;
background: url(../js/12-em-down.png) no-repeat center left; /*custom bullet list image*/

}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: url(../js/arrow_down.gif) no-repeat center left; /*custom bullet list image*/

}

.arrowlistmenu ul li a{
font: bold 10 Arial;
color: black;
display: block;
padding: 2px 0;
margin-top:17x;
padding-left: 20px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 1px solid #dadada;
height:16px;
background-image:url(../images/bgmenu1.gif);
background-repeat:no-repeat;
}

.arrowlistmenu ul li a:visited{
color: black;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: #FFE6CC;color:#000000;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
/*background: lightblue;*/
height:18px;
background-image:url(../images/bgmenu2.gif);
background-repeat:no-repeat;

}

