/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	####	Header Menu #####
	#######################

	Horizontal Drop-Down Menu based off :
	http://www.tanfa.co.uk/css/examples/menu/tutorial-h.asp
	
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */
#navContainer {
/*
width: auto;display:block;clear:both;border-right:1px solid #000;
*/

position: absolute;
right: 0;
top: 28px;
width: 587px;
background-color: #003366;

}


/* Remove List Formattings
~~~~~~~~~~~~~~~~~~~~  */
 ul.menu, li.menu {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

/* Header menu */	 
#header_menu {position: absolute; margin-left: 20px;background:#555;}
#header_menu li {line-height: normal;}
ul#header_menu  {z-index: 10; clear: both;}

#nav {
/*
	height: 1.68em;
	background: #666;
*/
	border-top: 0;
	border-bottom: 0 solid black;
	padding:0;
height: 25px;
}
#nav ul {
	list-style-type: none; 
	margin: 0; 
	padding: 0; 
/*	font-size: 81%;*/
font-size: 11px;
font-weight: bold; 
	text-transform: uppercase;
	width: auto;
	/*
	(Disappearing List-Background)
	http://www.positioniseverything.net/explorer/ie-listbug.html
	*/
	position: relative; /* Fix the Stupid IE6 Bug */
margin-left: 20px; /* Move root menu in from LHS. */
margin-top: 4px;	
}
#nav ul li {float: left; color: rgb(215,215,215); text-align: center; font-weight: bold;}
#nav ul li a {display: block; background: #003366; padding: 5px 10px; padding-bottom: 4px; border-left: 1px solid #003366; border-right: 1px solid #003366; color: rgb(215,215,215); text-decoration: none;}

/* Root Level Link Formatting */
#nav ul li a:hover, #nav li a:focus {background: #003366; border-color: #003366; color: rgb(215,215,215);}
#nav li a:active, #nav ul li a.active {background: #003366; border-color: #003366; color: rgb(215,215,215);}

/* Current page Customisations*/
#nav li.menu-current a		{background: #003366; color: rgb(215,215,215); border-bottom: 0 solid #000;}
#nav li.menu-current a		{font-weight: bold;} 

/* 2nd Child menu */
/*#nav .menu li ul {position: absolute; width: 12em; margin: 0; display: none; text-transform: none; border: 1px solid #999999; font-size: 100%;}*/
/*#nav .menu li ul li {width: 12em; text-align: left; font-weight: normal; margin: 0; padding: 0; line-height: 1.2em;*/
#nav .menu li ul {position: absolute; width: 130px; margin: 0; display: none; text-transform: none; border: 1px solid #999999; font-size: 9px;}
#nav .menu li ul li {width: 130px; text-align: left; font-weight: bold; margin: 0; padding: 0; line-height: 1.2em;
border-top: 1px solid #999999; /* Chris added this border to seperate items in pull-down */
}

#nav .menu li ul li.menu-first { border-top: none;} /* Chris: removed the border we just added on the first iem in the list... */

/*#nav .menu li ul a {width: 100px; padding: .6em .1em .6em .4em; background: rgb(215,215,215); color: #999999; border: 0;}*/
#nav .menu li ul a {width: 124px; padding: 5px 3px 5px 3px; background: rgb(215,215,215); color: #999999; border: 0;}

/* 2nd Child link hover */
#nav .menu li ul a:hover {color:#999999; background: white; border: 0;}

/* Show and hide */
#nav .menu li:hover ul, #nav .menu li a:focus ul, #nav .menu li.subMenu ul {display: block;}
#nav .menu li ul ul { display: none;}
#nav .menu li:hover ul ul, #nav .menu li.subMenu ul ul {display: none;}
#nav .menu li:hover ul, #nav .menu li li:hover ul, #nav .menu li.subMenu ul, #nav .menu li li.subMenu ul {display: block;}


/* 3rd Child Menu Appreances */
#nav .menu li ul li ul li a 	{ width: 124px; padding: 5px 3px 5px 3px; background: rgb(215,215,215); color: #999999; }

/* Positioning the Pop-out Drops */
#nav li {position: relative;}

#nav ul ul ul {
	position: absolute;
	top: -1px;
	left: 100%;
}


/* Chris added the following menu styles */

/* --- Show hide 4th child (2nd slide out) menu -- */
#nav .menu li li:hover li ul{ display: none; }
#nav .menu li li li:hover ul{ display: block; }

/* --- Arrows to indicate menu item -- */
#nav .listArrow{display: none;}
#nav li li .listArrow{display: inline;}

/* --- Dots to indicate menu expands -- */
#nav ul li .listMore { display: none; }
#nav ul li ul li.menu-expand .listMore { display: inline; }
#nav ul li ul li.menu-expand ul .listMore { display: none; }
#nav ul li ul li.menu-expand ul li.menu-expand .listMore { display: inline; }
#nav ul li ul li.menu-expand ul li.menu-expand ul .listMore { display: none; }


#nav ul {list-style-image: none} /* Make sure we remove general style format! */

/* end menu */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */








