﻿.arrowlistmenu {
	width: 180px; /*width of accordion menu*/
}
.arrowlistmenu .menuheader, .arrowlistmenu .menuheader1, .arrowlistmenu .menuheader2 {
	font: bold 10px Verdana;
	color: white;
	background: #606060 url("../images/symbols/pfeilunten.gif") no-repeat 8px 6px;
/*last 2 values are the x and y coordinates of bullet image*/	margin-bottom: 0px; /*bottom spacing between header and rest of content*/;
	margin-top: 5px;
	text-transform: uppercase;
	padding: 7px 0 7px 31px;		/*31px is left indentation of header text*/
	cursor: pointer;
}
.arrowlistmenu .menuheader1 {
	background: #aaaaaa url("../images/symbols/pfeilunten.gif") no-repeat 8px 6px;
}
.arrowlistmenu .menuheader2 {
	background: #cccccc url("../images/symbols/pfeilunten.gif") no-repeat 8px 6px;
}
.arrowlistmenu .menuheader a, .arrowlistmenu .menuheader1 a, .arrowlistmenu .menuheader2 a {
	text-decoration: none;
	color: white;
	display: block;
}
.arrowlistmenu ul {
	/*CSS for UL of each sub menu*/
	width : 175px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.arrowlistmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
}
.arrowlistmenu ul li .opensubheader {
	/*Open state CSS for sub menu header*/
	width: 162px;
	background: lightblue !important;
}
.arrowlistmenu ul li .closedsubheader {
	/*Closed state CSS for sub menu header*/
	width: 162px;
	background: lightgreen !important;
}
.arrowlistmenu ul li a {
	color: #A70303;
	background: url("../images/symbols/link.gif") no-repeat center left;
	display: block;
	padding: 2px 0;
	padding-left: 19px; /*link text is indented 19px*/;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #dadada;
	font-size: 12px;
}
.arrowlistmenu ul li a:visited {
	color: #A70303;
}
.arrowlistmenu ul li a:hover {
	/*hover state CSS*/
	background-color: #F3F3F3;
}
.arrowlistmenu ul li a.subexpandable:hover {
	/*hover state CSS for sub menu header*/
	background: lightblue;
}

