/*this is the css for the vertical version*/
.vertical ul{
	list-style-type: none;
	padding: 0px;
	border-top: 1px solid;
	width: 204px;
}
.vertical li a{
	display: block;
	width: 200px;
	text-decoration: none;
	height: 1em;
	padding: .1em 1px;
	border: 1px solid;
	border-top: 0px;
}
.vertical li{
	/*Needed for IE. Don't ask me why, It was a lucky guess.*/
	display: inline;
}
.vertical li ul{
	position: absolute;
	margin-top: -1.3em;
	margin-left: 200px;
}
/********************************************************************************************/
/*this is the css for the horizontal version*/
.horizontal  {
	margin: 0 auto;
	clear: both;
}
.horizontal ul {
	margin: 0px auto;
	padding: 0px;
	width: 163px;
	list-style-type: none;
}
.horizontal li{
/*	display: inline;*/
	padding:0 0px 0 0;
}
.horizontal li a{
	display: block;
	width: 140px;
	text-decoration: none;
	text-align:justify;
	padding:7px 20px 7px 3px;
	margin:0px;
	background:url('../images/dot.gif') no-repeat right center;
	/*background-color: #FFF8E9;*/
	color: #009;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;

}
.horizontal li a:hover{
	background-color:#EFF5FF;
	border-top:1px solid #B6D6FF;
	border-bottom:1px solid #B6D6FF;
}
.horizontal li ul{
	position: absolute; 
	z-index: 90000;
	margin-right: 160px;
	margin-top: -3.1em;
	margin-left: -1px;
	width: 163px;
	display: block;
	height: auto;
	background-color:#fff;
	border:1px solid #83B9FF;
}
.horizontal li ul li{
	list-style-type: none;
}
.horizontal li.haschild>a{
	/*background:url('../images/menu_more_dot.gif') no-repeat right top;*/
	color: #009;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
}
.horizontal li.haschild>a:hover{
	/*background:url('../images/menu_more_dot_over.gif') no-repeat right top;*/
	background-color:#EFF5FF;
	border-top:1px solid #B6D6FF;
	border-bottom:1px solid #B6D6FF;
}

/*
.horizontal li li{
	background:url('../images/menu_line.gif') no-repeat center bottom;
}
*/
/********************************************************************************************/

/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
/*Not sure if I recommend this or not*/
.inaccesible li ul{
	display: none;
}
/*Arrow code - looks like <a class="haschild" href="#">Text <span>Arrow</span></a> can be turned on/off with arrow class*/
.arrow a span{
padding-left: 1em;
font-size: 85%;
}
.arrow a:hover span{
padding-left: 2em;
}
.arrow a span.noshow{
	visibility: hidden;
}
/*Plus code*/
.plus a span{
	padding-left: .5em;
}
/*colors for menu*/

.blackwhite li a{
	background-color: white;
	color: black;
	border-color: black;
}
.blackwhite li a:hover{
	background-color: black;
	color: white;
	border-color: black;
}
.blackwhite ul{
	border-color: black;
}
.bluewhite li a{
	background-color: white;
	color: #000033;
	border-color: #000033;
}
.bluewhite li a:hover{
	background-color: #000033;
	color: white;
	border-color: #000033;
}
.bluewhite ul{
	border-color: #000033;
}
