@charset "utf-8";
.arrowlistmenu{
	width: 171px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	padding-left: 4px;
	height: 2em;
	line-height: 2em;
	display: block;
	color: #000000;
	text-decoration: none;
	text-align: left;
	background-color: #CCCC99;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCC99;
	border-bottom-color: #CCCC99;
	border-left-color: #CCCC99;
	cursor: pointer;
	padding-right: 6px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	display: block;
	background-color: #dfdfbf;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
}

.arrowlistmenu a.menuheader{
	position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
}

.arrowlistmenu a.menuheader:visited, .arrowlistmenu a.menuheader:active{
	color: #000000;
	text-decoration: none;
}

.arrowlistmenu a.menuheader .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
	position: absolute;
	top: 9px;
	right: 2px;
	border: none;
}

.arrowlistmenu a.menuheader:hover{
	color: #000000;
	text-decoration: none;
	background-color: #DFDFBF;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
}

.arrowlistmenu div.submenu{ /*DIV that contains each sub menu*/
	background-color: #CCCC99;
}

.arrowlistmenu div.submenu ul{ /*UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.arrowlistmenu div.submenu ul li{
}

.arrowlistmenu div.submenu ul li a{
	display: block;
	color: black;
	text-decoration: none;
	padding-left: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-top: 3px;
	padding-bottom: 1px;
	width: 159px;
	font-weight: normal;
}

.arrowlistmenu div.submenu ul li a:hover{
	background: #DFDCCB;
	color: #333333;
	text-decoration: underline;
}



