/*Homepage Menu*/

.arrowlistmenu{
width: 185px; /*width of accordion menu*/
font-family:tahoma;
font-size:11px;
background:#fafafa;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:tahoma;
font-size:11px;
color: #666666;
background: #CCCCCC url(../images/acc-normal.png) no-repeat center left;
margin:0px; /*bottom spacing between header and rest of content*/
/*text-transform: capitalize;
*/padding: 6px 0 6px 26px; /*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/acc-select.png);
color:#cc6600;
}

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

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

.arrowlistmenu ul li a{
color: #ffffff;
background: #1e95a3; /*custom bullet list image url(arrowbullet.png) no-repeat center left*/
display: block;
width:158px;
padding: 5px 5px 6px 4px;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight:normal;
border-bottom: 0px solid #37413d;
font-size:11px;
height:14px;
margin-left:2px;
}

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

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


