/* CSS Menu */ 
#navlist {
	font-family:Verdana, sans-serif;
	font-size: 11px;
	font-weight:bold;
	margin: 0 0 10px 0;
	width: 100%;
	height:21px;
	overflow:hidden;
	background-image: url(/images/bkg.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
#navlist li {
float: left;
list-style-type: none;
margin: 0;
padding:0;
}
#navlist ul {
/*margin: 0 10px 0 223px;
*/margin: 0 10px 0 120px;
padding: 4px 0 0 0;
white-space:nowrap;
}
#navlist a {
padding: 3px 10px 3px 10px;
background-image: url(/images/over.gif);
background-repeat: no-repeat;
background-position: 0% 50%;
text-decoration: none;
}
#navlist a:link, #navlist a:visited {
color: #EEEEEE;
}
#navlist a:hover, #navlist a:active,
#vizlink a:link, #vizlink a:visited,
#vizlink a:hover, #vizlink a:active {
background-image: url(/images/down.gif);
background-repeat: no-repeat;
background-position: 0% 50%;
color: #2D1E2D;
}

.arrowlistmenu{
	width: 170px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: 12px Arial;
	color: blue;
	/* background: black url(titlebar.png) repeat-x center left; */
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	/* text-transform: uppercase; */
	padding: 1px 0 1px 0px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	/* background-image: url(titlebar-active.png); */
}

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

.arrowlistmenu ul li{
	padding-bottom: 1px; /*bottom spacing between menu items*/
}

.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: lightbrown;
	/* background-image: url(/images/down.gif); */
	background-repeat: no-repeat;
	background-position: 0% 50%;

}

.arrowlistmenu ul li a{
	/* font: 10px Arial; */
	font-family:Helvetica, sans-serif;
	/* font-size:11px; */
	/* color: #A70303; */
	/* background: url(arrowbullet.png) no-repeat center left; */
	background-color:#F7F1C1;
	color:#000099; 
	display: block;
	padding: 0px 0px;
	padding-left: 14px;
	text-decoration: none;
	font-weight: normal;
	border-bottom: 1px solid #dadada;
	font-size: 90%;
}
/**
#000099
#2D1E2D
*/



.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;
	background-image: url(/images/over.gif);
	background-repeat: no-repeat;
	background-position: 0% 50%;

}

