@charset "utf-8";
/* CSS Document */
.arrowlistmenu{
	width: 200px; /*width of accordion menu*/
	color: #E9ECF0;
	font:Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.arrowlistmenu .menuheadertop{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 12px Arial;
	color: white;
	/*background: black url(../_images/_design/vouwmenu/titlebar.png) repeat-x center left;*/
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	margin-top: 0px;
	text-transform: uppercase;
	padding: 6px 0px 6px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	text-align:left;
	border-top: 1px dotted #dadada;
	border-bottom: 1px dotted #dadada;
	text-decoration:none;
}
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 12px Arial;
	color: white;
	/*background: black url(../_images/_design/vouwmenu/titlebar.png) repeat-x center left;*/
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	margin-top: 0px;
	text-transform: uppercase;
	padding: 6px 0px 6px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	text-align:left;
	border-bottom: 1px dotted #dadada;
	text-decoration:none;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
/*background-image: url(../_images/_design/vouwmenu/titlebar-active.png);*/
}
.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px; /*bottom spacing between each UL and rest of content*/
	margin-top: 5px;
	background-color:#FAFAFA;
}
.arrowlistmenu ul li{
	padding-top: 3px;
	padding-bottom: 1px; /*bottom spacing between menu items*/
	font: 11px Verdana;
}
.arrowlistmenu ul li a{
	color: #CE371A;
	background: url(../_images/_design/vouwmenu/arrowbullet.gif) no-repeat center left;		/*custom bullet list image*/
	display: block;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #dadada;
	font-size: 11px;
	text-align:left;
	padding: 2px;
	padding-left: 24px; /*link text is indented 19px*/
}
.arrowlistmenu ul li a:visited{
	color: #C00303;
}
.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #C00303;
	background-color: #F3F3F3;
}
