/* CSS Document */
.arrowlistmenu{
	width: 100%; /*width of accordion menu*/
	background-color: #F1F2F3;
	height: 100%;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #1764C2;
	margin-bottom: 0px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	padding-right: 0;
	padding-left: 20px;
	font-family: Arial;
	font-size: 14px;
	background-color: #CCCCCC;
	background-image: url(../images/interface/x.png);
	background-repeat: repeat-x;
	background-position: 0 0px;
	height: 16px;
	margin-top: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CDCDCD;
	padding-top: 11px;
	padding-bottom: 8px;
}

.arrowlistmenu .menuheader:hover{ /*CSS class for menu headers in general (expanding or not!)*/
	font-family: Arial;
	font-size: 14px;
	color: #404040;
	margin-bottom: 0px; /*header text is indented 10px*/
	background-image: url(../images/interface/x.png);
	background-repeat: repeat-x;
	background-position: 0 -35px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E8E3B5;
	background-color: #0066CC;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(../images/interface/x.png);
	background-position: 0 -70px;
	text-decoration: none;
	color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	background-color: #0066CC;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.arrowlistmenu ul li{
	padding-bottom: 3px;
	padding-top: 3px;
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
	background-color: ;
	background: url(../images/interface/arrowbullet.gif) no-repeat center left; /*custom bullet list image*/
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
	background: ;
	background: url(../images/interface/arrowbullet.gif) no-repeat center left; /*custom bullet list image*/
}

.arrowlistmenu ul li a{
color: #404040;
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: normal;

}

.arrowlistmenu ul li a:visited{
color: #404040;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background-color: #F3F3F3;
	color: #0099FF;
	font-size: 12px;
	font-weight: normal;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	background-color: ;
}
