/* CSS Document */

.arrowlistmenu{
width: 220px; /*width of accordion menu*/
margin-left:5px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Tahoma, Arial, "MS Sans Serif", Verdana;
color: white;
background-color: #2280C8;
border:1px solid #50A6E8;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}


.arrowlistmenu .menuheader a { /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Tahoma, Arial, "MS Sans Serif", Verdana;
color: white;
background-color: #2280C8;
border:1px solid #50A6E8;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
cursor: hand;
cursor: pointer;
text-decoration:none;
border:0px
}

.arrowlistmenu .menuheader a:hover{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Tahoma, Arial, "MS Sans Serif", Verdana;
color: white;
background-color: #2280C8;
border:1px solid #50A6E8;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
cursor: hand;
cursor: pointer;
text-decoration:none;
border:0px
}


.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-color: #3493DB;
border:1px solid #6CB6EE;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background:  #013963 !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: #013963 !important;
}

.arrowlistmenu ul li a{
color: #FFF88C;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #025B9E;
background-color:#025B9E;
font-size: 12px;
}

.arrowlistmenu ul li a:visited{    /*hover sub menu sub places CSS*/
color: #FFF88C;
}

.arrowlistmenu ul li a:hover{  /*hover sub menu sub places CSS*/
background-color: #025B9E;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}




.side_arrow { float:right; position:relative; right:10px; bottom:14px; width:10px }

