
.arrowlistmenu{
width: 225px; /*width of accordion menu*/
background: #000000;
margin-top:15px;
text-align:left;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 13px Arial;
color: #ffffff;
background: #000000;
margin-bottom: 2px; /*bottom spacing between header and rest of content*/

padding: 4px 0 4px 24px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/

background: url(http://www.pebbletile.com/images/red-dot.gif) no-repeat center left!important;

color: #ffffff !important;
}

.arrowlistmenu .openheader a{ /*CSS class to apply to expandable header when it's expanded*/
background: #000000;
color: #ffffff !important;


}

.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: 1px; /*bottom spacing between menu items*/
}


.arrowlistmenu ul li a{
color: #ffffff;
display: block;
padding: 1px 0;
padding-left: 45px; /*link text is indented 19px*/
text-decoration: none;


font-size: 90%;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #A5B500;
background-color: #000000;
}

.menuitemselected ul li a{
color: #A5B500;
}


