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

.arrowlistmenu{
width: 350px; /*width of accordion menu*/
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
}
h3 a.selected:link {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
}
h3 a.selected:visited {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
}
h3 a.selected:hover {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
}
h3 a.selected:active {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
}
h3 a:link {
	color: #AEAEAE;
	text-decoration: none;
	font-size: 13px;
}
h3 a:visited {
	color: #AEAEAE;
	text-decoration: none;
	font-size: 13px;
}
h3 a:hover {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
h3 a:active {
	color: #AEAEAE;
	text-decoration: none;
	font-size: 13px;
}
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #AEAEAE;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	text-transform: lowercase; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0px;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	color: #AEAEAE;
	font-size: 12px;
}

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

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
	font-size: 11px;
}
.arrowlistmenu ul li a{
	color: #AEAEAE; /*custom bullet list image*/
	display: block;
	padding-left: 0px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	font-size: 11px;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
}

.arrowlistmenu ul li a.selected{
	color: #fff; /*custom bullet list image*/
	display: block;
	padding-left: 0px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 11px;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
}

.arrowlistmenu ul li a:visited{
	color: #AEAEAE;
	font-size: 11px;
}
.arrowlistmenu ul li a:visited.selected{
	color: #fff;
	font-weight: bold;
	font-size: 11px;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #fff;
	font-weight: bold;
	font-size: 11px;
}

