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


.arrowlistmenu{
width: 280px; margin:0px 0 0 0; float:left;   /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font:  15px Trebuchet MS;
color: white;
background: #7B5BA6;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer; margin:0px 0 0px 0; border-bottom:1px solid #c6b3de; 
}

.menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 13px Trebuchet MS;
color: white;
background: #7B5BA6;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/

padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.menuheader:hover{ /*CSS class for menu headers in general (expanding or not!)*/
font:  15px Trebuchet MS;
color: white;
background: #127ACB;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/

padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer; margin:0px 0 0px 0; border-bottom:1px solid #c6b3de;
}

.arrowlistmenu .openheader{ background:#127ACB; /*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: 5px; background:#eee;  /*bottom spacing between each UL and rest of content*/
}

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

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

.arrowlistmenu ul li a{
color: #000;
background: /*url(../images/arrowbullet.png) no-repeat center left */; /*custom bullet list image*/
display: block;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 100%; padding-bottom:4px; 
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: #F3F3F3 padding: 5px 15px 10px 0; color:#900;
}
.arrowlistmenu ul li a:active{ /*hover state CSS*/
background-color: #F3F3F3 padding: 5px 15px 10px 0; color:#f00; 
}

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

.active12 { color:#fff; }
