@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
	width: 150px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font-family:Verdana, Geneva, sans-serif; font-size:12px; font-weight:bold;
	color: #042d46;
	cursor: hand;
	cursor: pointer;
	text-decoration:none;
	background: url(../img/icon_menu.png) repeat-x center left;
	padding: 0px 0px 0 15px; /*header text is indented 10px*/

}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	color: #6c6c6f !important;
	text-decoration:none;	
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type:circle;
	margin-left:0px;
	margin-top:-10px;
	
	
}

.arrowlistmenu ul li{

}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
	background: lightblue !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
	background: lightgreen !important;
}

.arrowlistmenu ul li a{
	color: #6c6c6f;
	text-decoration: none;
	font-size:11px;
}

.arrowlistmenu ul li a:visited{
color: #6c6c6f;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #042d46;
	text-decoration:none;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	background: lightblue;
}

.arrowlistmenu h3 a{
	color: #6c6c6f;
	text-decoration:none;

}
.arrowlistmenu h3 a:visited{
	color: #6c6c6f;
}
.arrowlistmenu h3 a:hover{ /*hover state CSS*/
	color: #042d46;
	text-decoration:none;
}

