
/*this is the css for the horizontal version*/
.horizontal li{
	float: left;
	display: inline;
}

.horizontal li a{
	text-decoration: none;
/*	height: 1.3em; MENU HEIGHT FIX HERE*/
	float: left;
	display: block;
	width:auto;
	border: 0px solid;
	border-left: none;
	text-align:center;
	padding:4px;
	}

.horizontal li li a{
	border-top: none;
	border-left: 0px solid;
}
.horizontal li ul{
	position: absolute; 
	/*margin-top: 5px;  SUBMENU HEIGHT FIXED HERE*/
	margin-left: -1px;
	width: 155px;
	border: none;
	display: block;
	height: auto;
	border-top: 0px solid;
}
.horizontal li li ul{
	position: absolute;
	margin-top: .1em;
}
.horizontal li ul li a{
width: 70px;
text-align:center;
}
/*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;
}


/*colors for menu*/

.bluewhite li a{
	background-color:#CC6633;
	color:#FFFFFF;
	border-color:#FFFFFF;
	
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;	
}
.bluewhite li a:hover{
	background-color:#CCCCCC;
	color:#000000;
	border-color: #FFFFFF;
}
.bluewhite ul{
	border-color:#FFFFFF;
}


/*Table Outter Border*/
.outterBdr1{
	border-width: 1px;
	border-style: outset;
	border-color: #333333;
	border-collapse:collapse;
	}