/* CSS Document */

.arrowlistmenu{
width: 200px; /*width of accordion menu*/
margin-left:5px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Verdana, Tahoma, Arial, "MS Sans Serif", Verdana;
color: #07679A;
background: black url(1_titlebar.png) repeat-x center left;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
padding: 2px 0 2px 10px; /*header text is indented 10px*/
border:1px solid #ACE0F8;
cursor: hand;
cursor: pointer;
}


.arrowlistmenu .menuheader a { /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Verdana, Tahoma, Arial, "MS Sans Serif", Verdana;
color:#07679A;
background: black url(1_titlebar.png) repeat-x center left;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
cursor: hand;
cursor: pointer;
text-decoration:none;
}

.arrowlistmenu .menuheader a:hover{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Verdana, Tahoma, Arial, "MS Sans Serif", Verdana;
color: #07679A;
background: black url(1_titlebar.png) repeat-x center left;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
cursor: hand;
cursor: pointer;
text-decoration:none;
}


.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(1_titlebar-active.png);
}

.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 also change the subexpendable bg color*/ 
background: #CCEDFD !important;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
font-weight:bold;
color:#07679A
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: #A6E3F5 !important;
font-weight:bold;
font-size:11px;
font-family:Verdana, Arial, Helvetica, sans-serif;
color:#07679A;
}

.arrowlistmenu ul li a{
color: #292929;
font-weight:normal;
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;
border-bottom: 1px solid #dadada;
font-size: 11px;
}

.arrowlistmenu ul li a:visited{
color: #292929;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background: #ADD0E8 url(arrowbullet_1.png) no-repeat center left; /*custom bullet list image*/
}



.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}


