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

	Horizontal Drop-Down Menu based off :
	http://www.tanfa.co.uk/css/examples/menu/tutorial-h.asp
	
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */




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

/* Header menu */	 
#header_menu {position: absolute;top: 0px;left: 0px}
#header_menu li {line-height: normal;font-weight: bold;}
ul#header_menu  {z-index: 10; clear: both;}

#nav {
	border-top: 0;
	padding:0;
	margin-left: 0px;
	width: 100%;
	background: url("../images/header-bg.gif") repeat-x;
}
#nav ul {
	list-style-type: none; 
	margin: 0; 
	padding: 0; 
	font-family: verdana, arial, sans-serif;
	font-size: 13px;
	height: 36px;
	padding-left: 30px;
	/*
	(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;}
#nav ul li a {display: block; background: transparent; padding: 10px 18px 9px 18px;color: #fff; text-decoration: none;border-right: 1px solid #000; border-left: 1px solid #515151;}
#nav ul li.menu-last a {border-right: 1px solid #515151;}

/* Root Level Link Formatting */
#nav ul li a:hover, #nav li a:focus {color: #ccc;background: #333 url("../images/nav/nav-bg_f2.jpg") repeat-x;}
#nav li a:active, #nav ul li a.active {color: #ccc;}

/* Current page Customisations*/
#nav li.menu-current a		{background: #1A1A1A url("../images/nav/nav-bg_f3.jpg") repeat-x;} 
#nav li#nav_a_properties a {background: url("../images/arrow.gif") no-repeat;padding-left: 30px;}

/* 2nd Child menu */
#nav .menu li ul {position: absolute; width: 14.5em; margin: 0;display: none; text-transform: none; font-size: 12px;padding-left: 0px;border: 1px solid #515151;height: auto;}
#nav .menu li ul li {text-align: left; font-weight: normal; margin: 0; padding: 0; line-height: 1.2em;}
#nav .menu li ul a {width: 11.5em; padding: .8em .1.6em .8em 1.6em; background: #141414 url("../images/nav/nav-sub-bg.jpg") repeat-x; color: #fff;border: none;}
#nav li#nav_a_properties ul li a {width: 11.4em;background: #141414 url("../images/nav/nav-sub-bg.jpg") repeat-x;padding-left: 1.6em;}

/* 2nd Child link hover */
#nav .menu li ul a:hover {background: #1A1A1A url("../images/nav/nav-sub-bg_f3.jpg") repeat-x; color:#ccc;border: none;}
#nav .menu li#nav_a_properties ul a:hover {background: #1A1A1A url("../images/nav/nav-sub-bg_f3.jpg") repeat-x; color:#ccc;border: none;}

/* 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 ul			{width: 12em;margin-top: 0px;}
#nav .menu li ul li ul li a 	{ padding: .8em .1em .8em .4em;}

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

#nav ul ul {
	left: 0px;
}

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



#nav ul li ul li {
	text-transform: none;
}

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



/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	Custom Classes (Re-useables)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
	
/*  Float containers fix: */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*  \*/
* html #clearfix {
	height: 1%;
}
/*  */

