* {
  margin: 0;
  padding:0;
}

/*this is the css for the horizontal version*/
.horizontal ul
{
	list-style-type: none;
	padding: 0px;
	border-left: 1px solid;
	display: block;
}

.horizontal li
{
	float: left;
	display: inline;
}

/*MENU BAR*/
.horizontal li a
{
	text-decoration: none;
	height: 20px;
	display: block;
	width: 120px;
	border: 1px solid;
	font-size: 20;
}

.horizontal li li a
{
	border-top: none;
	border-left: 1px solid;
}

/*SUBMENU 1*/
.horizontal li ul
{
	position: absolute; 
	margin-top: 0px;
	margin-left: 0px;
	width: 120px;
	border: none;
	display: block;
	height: auto;
	border-top: 1px solid;
}

/*SUBMENU 2*/
.horizontal li li ul
{
	position: absolute;
	margin-top: -20px;
	margin-left: 120px;
}

/*SUBMENU 1*/
.horizontal li ul li a
{
	width: 120px;
}

/*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: 0.5em;
	font-size: 85%;  
}

.arrow a:hover span
{
	padding-left: 0.5em;
}

.arrow a span.noshow
{
	visibility: hidden;
}

/*colors for menu*/
/*MENU COLOR*/
.bluewhite li a
{
	background-color: #D3D3D3;
	color: #696969;
	border-color: #A9A9A9;
}

.bluewhite li a:hover
{
	background-color: #696969;
	color: #D3D3D3;
	border-color: #A9A9A9;
}

.bluewhite ul
{
	background-color: #FFFFFF;
	border-color: #FFFFFF;
}
