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

/*Vänstermenyn*/
.arrowlistmenu{
	width: 156px; /*width of accordion menu*/
	float:left;
	text-align:left;
	
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	/*bottom spacing between header and rest of content*/
	cursor: hand;
	cursor: pointer;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:bold;
	padding-top: 6px;
	padding-right: 0;
	padding-bottom: 6px;
	padding-left: 10px;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
	background-image: url(../Image/admin/plus_meny.png);
	background-repeat: no-repeat;
	background-position: 1px center;
	font-style: normal;
	color:#666666 !important;
}
.arrowlistmenu .menuheader a, h3{
color:#666 ;
text-decoration:none;

}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background: url(../Image/admin/minus_meny.png) no-repeat center left;
	background-position: 1px center;
	background-color: #f5f5f5;
	color:#666 !important;
	font-weight: bold;
}

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

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
margin:0 0 0 10px;
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
	
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;

	background-image: url(../Image/admin/plus_meny.png);
	background-repeat: no-repeat;
	background-position: 1px center;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
	
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;

	background-image: url(../Image/admin/minus_meny.png);
	background-repeat: no-repeat;
	background-position: 1px center;
}

.arrowlistmenu ul li a{
	color: #666;
	display: inline;
	text-decoration: none !important;
	font-size: 11px;
	text-align: left;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left:0px;
}

.arrowlistmenu ul li a:visited{
	color: #666 !important;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: #d2e9ba;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	background-color: #d2e9ba;
}



