.system {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	line-height:12px;
	}
	
#fubar a:hover {
	float: inherit;
}
	
	
ul { /* More or less the container */
	margin: 0px;
	padding: 0px;
	list-style: none;
	width: 564px;
	height:30px;
	}

ul li { /* 1st level navigation items */
	position: relative;
	float: left; /* Float forces 1st level navigation items to sit left of the previous item */
	/* margin: 0px; */
	padding: 0px;
	width:94px; /* Width of each individual item that makes up the 1st level navigation */
	height:30px; /* Height of 1st level navigation items */
	}
	
li ul
{
	/* sub level navigation items - container */
	position: absolute;
	left: 0px;
	width: 150px;
	/* total width for block containing all sub nav elements */
	top: 30px;
	height: auto;
	/* Height of Sub level navigation items */
	display: none;
	/* No block display, as we do not want items to be seen */
	margin: 0px;
	padding: 0px;
	border-color: #238194;
	border-width: 2px;
	border-style: solid;
}

li li { /* sub level navigation items - defines each individual item in the block */ 
	margin:0px;
	width: 150px;
	height: auto;
	border-bottom: 1px solid #238194;
}

/* Styles for Menu Items */

ul li a { /* 1st level navigation items */
	display: block;
	text-decoration: none;
	color: #238194; /* Text colour - Ist Level Navigation */
	background: #FFFFFF; /* IE6 Bug */
	padding: 0px;
	float: none;
	}
	
li li a { /* 2nd level sub navigation items */
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	background: #3E92A3;
	border-bottom: 0px solid #238194;
	/* border-left: 1px solid #238194;
	border-right: 2px solid #238194; */
	margin:0px;
	float: none;
	}

/* Fix IE. Hide from IE Mac \*/

* html ul { /* More or less the container */
	margin: 0px;
	padding: 0px;
	list-style: none;
	/* top:20px; */
	width: 564px;
	height:30px;
	}
	
* html ul li { /* 1st level navigation - normal state */
	float: left;
	width: 94px;
	height: 30px;
	margin: 0px;
	padding-top: 0px; /* this effects padding on placed DIV Arrhh!!! */
	}
	
/* * html ul li a { /* 1st level navigation - over state */
 /* 	width: 94px;
	height: 26px;
	float: none;
	margin:0px;
	padding-left:5px;  Indents text, but pushes out size of box
	padding-right:0px;
	padding-bottom: 1px;
	padding-top: 3px;
	vertical-align: middle;
	} */
	
* html li ul
{
	/* Container for 2nd level sub navigation */
	/* float: left; */
	top: 30px;
	width: 150px;
	height: auto;
	margin: 0px;
	padding-top: 0px;
	/* border-color: #238194;
	border-width: 2px;
	border-style: solid; */
}
	
* html li li
{
	/* 2nd level sub navigation items - normal state */
	float: left;
	color: #FFFFFF;
	width: 150px;
	height: 20px;
	margin: 0px;
	padding-top: 0px;
	/* border-color: #238194;
	border-width: 0px 0px 1px 0px; */
}
	
* html li li a { /* 2nd level sub navigation items - over state */
	color: #FFFFFF;
	width:150px;
	height:20px;
	float: none;
	margin:0px;
	/* padding-left:5px;  Indents text, but pushes out size of box */
	padding-right: 0px;
	padding-bottom: 2px;
	padding-top: 2px;
	/* border-color: #238194;
	border-width: 0px 0px 1px 0px; */
}
	
/* End */


/* Hover Styles */

ul li a:hover { 
	color: #FFFFFF;
	background: #238194;
	} 
		
li li a
{
	float: none;
	padding-left: 3px;
	padding-bottom: 3px;
	padding-right: 5px;
	padding-top: 4px;
	/* border-left: 2px #238194; */
	/* border-right: 2px #238194; */
	border-top: 0px solid #3E92A3;
} 
		
li:hover ul, li.over ul {
	display: block;
	float: none;
	width:150px; /* added 23-11-05 */
	/* border-bottom: 1px #238194; */
}
	
	