﻿.arrowlistmenu
{
    width: 95%; /* width of accordion menu */
    margin-top: -4px;
}

.arrowlistmenu .menuheader, .arrowlistmenu .menuheader a
{ 
    /* CSS class for menu headers in general (expanding or not!) */
    font-family: Verdana, Arial, Sans-Serif;
    font-size: 10px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: black url(Images/AccordianMenu/titlebar.png) repeat-x center left;
    margin-top: 4px; /* top spacing between header and rest of content */
    padding: 6px 0 6px 7px; /* header text is indented 10px */
    cursor: pointer;
}

.arrowlistmenu .menuheader_hover
{
	/* CSS class for menu headers in general (expanding or not!) */
    font-family: Verdana, Arial, Sans-Serif;
    font-size: 10px;
    font-weight: bold;
    color: white;
    text-decoration: underline;
    background: black url(Images/AccordianMenu/titlebar_hover.png) repeat-x center left;
    margin-top: 4px; /* top spacing between header and rest of content */
    padding: 6px 0 6px 7px; /* header text is indented 10px */
    cursor: pointer;
}

.arrowlistmenu .menuheader a:hover
{
    color: red;
    text-decoration: underline;
}

.arrowlistmenu .openheader
{ 
    /* CSS class to apply to expandable header when it's expanded */
    background-image: url(Images/AccordianMenu/titlebar-active.png);
}

.arrowlistmenu ul
{ 
    /* CSS for UL of each sub menu */
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 12px; /* bottom spacing between each UL and rest of content */
    border-left: solid 1px silver;
    border-right: solid 1px silver;
}

.arrowlistmenu ul li
{
    padding-bottom: 0;
    line-height: 22px;
    border-bottom: solid 1px #dadada;
}

.arrowlistmenu ul li a, .arrowlistmenu ul li a:visited
{
    color: #909090;
    background: url(Images/AccordianMenu/arrowbullet.gif) no-repeat 1px 6px; /* custom bullet list image */
    display: block;
    padding: 0 0 2px 13px;
    text-decoration: none;
    font-family: Verdana, Arial, Sans-Serif;
    font-weight: normal;
    font-size: 10px;
}

.arrowlistmenu ul li a:hover
{ 
    /* hover state CSS */
    color: red;
    background-color: #F3F3F3;
    text-decoration: none;
}
