@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
width: 180px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: 9pt Arial;
color: black;
margin-bottom: 6px; /*bottom spacing between header and rest of content*/
text-transform: none;
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
color: #0033FF;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: dashed;
border-bottom-color: #0033FF;
}

.arrowlistmenu .menuheader a:hover{ /*CSS class for menu headers in general (expanding or not!)*/
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0033FF;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/

}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
padding-left: 20px;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 6px; /*bottom spacing between menu items*/
font: 9pt Arial;
}

.arrowlistmenu ul li a{
font: 9pt Arial;
color: #0033FF;
padding: 0px 0;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: dashed;
border-bottom-color: #0033FF;
}

.arrowlistmenu ul li a:visited{
color: #0033FF;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #0033FF;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0033FF;
}

.arrowlistmenu ul ul li{
padding-bottom: 6px; /*bottom spacing between menu items*/
font: 8pt Arial;
}

.arrowlistmenu ul ul li a{
font: 8pt Arial;
color: #0033FF;
padding: 0px 0;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: dashed;
border-bottom-color: #0033FF;
}

.arrowlistmenu ul ul li a:visited{
color: #0033FF;
}

.arrowlistmenu ul ul li a:hover{ /*hover state CSS*/
color: #0033FF;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0033FF;