@charset "UTF-8";
/* CSS Document */

.arrowlistmenu{
width: 155px;/*width of accordion menu*/
font-family:Arial, Helvetica, sans-serif;
text-align: left;
}

.arrowlistmenu a{
	text-decoration: none;
	color:#ffffff;
}

.arrowlistmenu a:hover{
	color: #6699ff;
	
}
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Arial;
color: white;
background-color: black;
padding: 4px 0 4px 5px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
margin-bottom: 0;
margin-top: 0;
border-bottom: 1px dotted #333;

}

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

.arrowlistmenu .menuheader:hover{
	color: #6699FF;
}

.arrowlistmenu .openheader:hover{
	color: #FFED59;
}

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

}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
background-color: black;
color: #ffffff;
font-weight: bold;
padding-left: 10px;
border-bottom: 1px dotted #333;

}



.arrowlistmenu ul li a{
color: #ffffff;
background-color: black; /*custom bullet list image*/
display: block;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
}

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


.arrowlistmenu ul.submenu{ /*CSS for UL of each sub menu*/
list-style-type:disc;
margin: 0;
padding: 0;
font-size: 12px;
margin-bottom: 0;/*bottom spacing between each UL and rest of content*/
margin-left: 18px;
padding-left: 0;
 

}

.arrowlistmenu ul.submenu li{
/*padding-bottom: 2px;*/ /*bottom spacing between menu items*/
background-color: black;
color: #ffffff;
border-bottom: none;
padding-left: 0;
padding-bottom: 0px;
}

.arrowlistmenu ul.submenu li a{
color: #ffffff;
background-color: black; /*custom bullet list image*/
display: block;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
margin-left: 0;
padding-left: 0;
}

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