/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	####	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;}


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

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

#nav {
	height: 1.88em;
	border: 0;
	padding:0;
	float: left;float: right;
}
#nav ul {
	list-style-type: none; 
	margin: 0; 
	padding: 0; 
	text-transform: uppercase;
	width: auto;
	float: right;
	/*
	(Disappearing List-Background)
	http://www.positioniseverything.net/explorer/ie-listbug.html
	*/
	position: relative; /* Fix the Stupid IE6 Bug */
}
#nav ul li {float: left; color: #fff; text-align: center; font-weight: normal; z-index: 99;}
#nav ul li ul { z-index: 100; }
#nav ul li a {display: block; padding: 7px 10px; padding-bottom: 7px; color: #555; text-decoration: none;font-size: 10px;}

/* Root Level Link Formatting */
#nav ul li a:hover, #nav li a:focus {border-color: #fff; color: #111;}
#nav li a:active, #nav ul li a.active {background: #dce4eb; border-color: #fff; color: #444;}

/* 2nd Child menu */
#nav .menu li ul {position: absolute; width: 135px; margin: 0; display: none; text-transform: none; border: 1px solid #ccc; border-top: 0; font-size: 100%;}
#nav .menu li ul li {width: 135px; text-align: left; font-weight: normal; margin: 0; padding: 0; line-height: 1.2em;}
#nav .menu li ul a {width: 129px; padding: 6px 2px 6px 4px; background: #dce4eb; color: #222; border: 0;font-size: 10px;}

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

/* 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;}

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

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

#nav ul ul ul ul{
display: none;
}




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