@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
/*width: 180px; width of accordion menu*/
margin-top:35%;
}

h3 {
font-weight:normal;
padding:0;
margin:0;
/*background-image:url(../images/menu-bg.png);
background-repeat:repeat;*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:0.85em;
color: #fffefe;
/*background: black url(titlebar.png) repeat-x center left;
*/
/*margin-bottom: 12px; bottom spacing between header and rest of content*/
padding: 4px 0 4px 18px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
background-image:url(../images/arrow.png);
background-repeat:no-repeat;
background-position: left 8px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded
background-image: url(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*/
background-image:url(../images/menu-bg.png);
background-repeat:repeat;

}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
padding-left:12px;
}

.arrowlistmenu ul li a{
color: #ffffff;
background-image:url(../images/arrow.png);
background-repeat:no-repeat;
background-position:center left;
/*background: url(arrowbullet.png) no-repeat center left; custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 16px; /*link text is indented 19px*/
text-decoration: none;
font-size:0.8em;
}

.arrowlistmenu ul li a:visited{
/*color: #A70303;
*/}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-image:url(../images/arrow-on.png);
background-repeat:no-repeat;
background-position:center left;
color:#e3e4a9;
background-color:none;
background-color:transparent;

}
