@charset "utf-8";
/* CSS Document */

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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: 10px Arial;
color: #FFFFFF;
text-align:right;
font-weight:bold;
background: none;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 0px 10px 0px 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
border-bottom: 1px solid #FFF;
border-left: 1px solid #FFF;
border-right: 1px solid #FFF;
border-top: 1px solid #FFF;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-color:#FFFFFF;
font: 10px Arial;
color: #0A0A0A;
text-align:right;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
font: 10px Arial;
color: #FFFFFF;
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 5px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 0; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
font: 10px Arial;
color: #FFFFFF;
text-align:right;
background: none; /*custom bullet list image*/
display: block;
padding: 0 0;
padding-right: 10px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 1px solid #0A0A0A;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #FFF;
border-bottom: 1px solid #FFF;
border-left: 1px solid #FFF;
border-right: 1px solid #FFF;
border-top: 1px solid #FFF;
}

.selected{ font: 10px Arial; color: #0A0A0A; text-align:right; padding-right: 10px; font-weight:bold; background-color:#FFF; }