/* Menu Acordeon */
.arrowlistmenu {
	width: 210px; /*width of accordion menu*/
	color: #444444;
}
.arrowlistmenu .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
	font-size: 11px;
	font-weight: normal;
	color: #444444; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}

.arrowlistmenu .openheader { /*CSS class to apply to expandable header when it's expanded*/
	font: 11px;
}
.arrowlistmenu ul { /*CSS for UL of each sub menu*/
	list-style-type: none;
	font-size: 11px;
	font-weight: normal;
	color: #444444;
	margin-top: 0px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
	padding: 0;
}
.arrowlistmenu ul li {
	font-family: Verdana;
	font-size: 11px;
	font-weight: normal;
	color: #444444;
	padding-bottom: 10px; /*bottom spacing between menu items*/
	text-transform: lowercase;
}
.arrowlistmenu ul li a {
	font-family: Verdana;
	font-size: 11px;
	font-weight: normal;
	display: block;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
}
.arrowlistmenu ul li a:link, .arrowlistmenu ul li a:visited, .arrowlistmenu ul li a:hover, .arrowlistmenu ul li a:active {
	color: #444444;
}
.arrowlistmenu ul li a:hover { /*hover state CSS*/
}
