/*----------------------\
| Accordian Menu Styles |
\----------------------*/

.arrowlistmenu{
width: 160px; /*width of accordion menu*/
background: white;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color: #F63800;
background: white;
padding: 3px; /*header text is indented 10px*/
border-left: 1px solid #c17a02; 
border-top: 1px solid #c17a02; 
border-right: 1px solid #c17a02; 
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background: #F3F3F3;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0 10px 0 45px;
border-left: 1px solid #c17a02; 
border-top: 1px solid #c17a02; 
border-right: 1px solid #c17a02; 
}

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

.arrowlistmenu ul li a{
color: #F63800;
background: white url(http://www.learninggamesforkids.com/images/arrowbullet.png) no-repeat top left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-size: 12px;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #6699FF;
}

/*--------------------------\
| End Accordian Menu Styles |
\--------------------------*/

