/*Homepage Menu*/

.arrowlistmenu{
width: 210px; /*width of accordion menu*/
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
background:#fafafa;
padding-top:10px;
color:#666;


}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color: #d00025;
background:url(../images/nav-bottom.png) repeat-x center left;
margin:0px 0 0 0 ; /*bottom spacing between header and rest of content*/
text-transform: capitalize;
padding: 6px 0 10px 32px; /*header text is indented 10px*/
height:16px;
cursor: hand;
cursor:pointer; 

}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(../images/nav-bottom.jpg);
color:#494848;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type:circle;
margin: 0;
padding: 0;
margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
list-style-type:circle;
padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color:#666;
background: #2a3431; /*custom bullet list image url(arrowbullet.png) no-repeat center left*/
display: block;
padding: 5px 5px 6px 4px;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight:normal;
border-bottom: 1px solid #37413d;
font-size:12px;
height:14px;
font-family:Arial, Helvetica, sans-serif;
list-style-type:circle;
list-style:circle;
}

.arrowlistmenu ul li a:visited{
text-decoration: none;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #bdc4c2;
background-color: #343e3a;
text-decoration: none;
}


