/*Menu*/
.arrowlistmenu{
width: 175px; /*width of accordion menu*/
font-family: Arial,Helvetica,sans-serif;
background-color:#FFF;
font-size:10px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold;
font-family: Arial,Helvetica,sans-serif;
color: #FFFFFF;
font-size:10px;
background: white;
margin-top:0px;
margin-bottom: 2px; /*bottom spacing between header and rest of content*/
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
background-color:#6E5A83;
text-transform:uppercase;
border-bottom: 1px solid #FFF;
}

.arrowlistmenu .menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold;
font-family: Arial,Helvetica,sans-serif;
color: #FFFFFF;
text-decoration:none;
cursor: pointer;
background-color:#6E5A83;
}

.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: 0px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 0px; /*bottom spacing between menu items*/
border-left:1px solid #FFF;
border-right:1px solid #FFF;
background-color:#DEDAD9;
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
color: #DEDAD9;
}

.arrowlistmenu ul li a {
color: #6E5A83;
display: block;
padding: 5px 0;
padding-left: 15px; /*link text is indented 19px*/
padding-right:10px;
text-decoration: none;
border-bottom: 1px solid #FFF;
font-size:11px;
text-transform:uppercase;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: #6E5A83;
color:#FFF;
border-bottom: 1px solid #FFF;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background-color: #DEDAD9;
color:#DEDAD9;
}

.arrowlistmenu ul li .selected a{
text-decoration:none;
color:#6E5A83;
background-color:#DEDAD9;
}

.arrowlistmenu ul li .selected a:visited{
text-decoration:none;
color:#6E5A83;
background-color:#DEDAD9;
}

