/* CSS Document */

.arrowlistmenu{
	margin-top: 18px;
	margin-left: 5px;
    margin-right: 5px;
	margin-bottom:40px;
	width: 190px; /*width of accordion menu*/
	background-color: #303030;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 13px Arial;
	color: #CCCCCC;
	background: #1d1d1d;
	padding: 0px 0px 0px 10px; /*header text is indented 10px*/
	cursor: pointer;
	height: 42px;
	line-height: 42px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #303030;
	margin:0px;
}

.top{
	font-size: 12px;
	height: 42px;
	width: 190px;
	display: block;
	color: #f56121;
	font-weight: bold;
	line-height: 42px;
	background-image: url(../images/top.jpg);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #303030;
	background-position: left top;
	background-repeat: no-repeat;
	text-align: center;
	margin:0px;
}
.bottom{
	height: 22px;
	width: 190px;
	display: block;
	background-image: url(../images/bottom.jpg);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #303030;
	background-position: left top;
	background-repeat: no-repeat;
	text-align: center;
	margin:0px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	color: #ffffff;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	
}


.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
	color:#CCCCCC;
	background-color: #1d1d1d;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
	color:#000000;
	background-color: #CCCCCC;	
}

.arrowlistmenu ul li a{
	font: normal 11px Arial;
	color: #CCCCCC;
	background: #1d1d1d;
	padding: 0px 0px 0px 15px; /*header text is indented 10px*/
	height: 42px;
	text-decoration:none;
	line-height: 42px;

	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #303030;
	display: block;
}

.menuitem{
	font: normal 11px Arial;

	background: #1d1d1d;
	padding: 0px 0px 0px 15px; /*header text is indented 10px*/
	cursor: pointer;
	height: 42px;
	text-decoration:none;
	line-height: 42px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #303030;
	display: block;
}
a.menuitem:link{
  color: #CCCCCC;
}
a.menuitem:visited{
  color: #CCCCCC;
}
a.menuitem:hover{
  color: #FFFFFF;
}


.arrowlistmenu ul li ul li a{
	font:normal 11px Arial;
	color: #333333;
	background-color: #CCCCCC;
	height:22px;
	line-height:22px;
	text-decoration: underline;
	border:none;
	padding-left:5px;
	text-decoration:none;
}

.arrowlistmenu ul li a:visited{
	color: #CCCCCC;
	background-color:#1d1d1d;
}

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

.arrowlistmenu ul li ul li a:visited{ /*hover state CSS*/
	text-decoration:none;
	color: #333333;
	background-color:#CCCCCC;
}

.arrowlistmenu ul li a.opensubheader{ /*Open state CSS for sub menu header*/
	color:#CCCCCC;
	background-color: #1d1d1d;
}

.arrowlistmenu ul li ul li a:hover{ /*hover state CSS*/
	text-decoration:underline;
	color: #000000;
	display:block;
}

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