/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	####	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;
/*orginal	padding: 5px;*/
	padding: 0px;
}

/* Header menu */	 
#header_menu {
	position: absolute;
	margin-left: 20px;
/*	margin-left: 0px;*/
}
#header_menu li {
	line-height: normal;
}
ul#header_menu {
	z-index: 10;
	clear: both;
}
#nav ul {
	list-style-type: none; 
	margin: 0; 
	padding: 0; 
	font-size: 12px;
	width: auto;
	z-index: 999;
	/*
	(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: bold;}
#nav ul li a {display: block; background: transparent; padding: 4px 17px 5px 18px;color: #fff; text-decoration: none;}

#nav ul li a {border-left: 1px solid #eaeaea;}
#nav ul li.menu-first a {border-left: 0;}
/*#nav ul li.menu-last a {border-right: 1px solid #eaeaea;}*/
#nav ul li ul li a {border: 0;}
#mav ul li ul li ul li a {border: 0;}


/* Root Level Link Formatting */
#nav ul li a:hover, #nav li a:focus {background: transparent; color: red;}
#nav li a:active, #nav ul li a.active {background: transparent; color: #6D8A6B;}

/* Aktuelle Seite Darstellung */
/* Erstes Level */
#nav li.menu-current a, #nav li.menu-parent a {font-weight: bold; color: red;} 
/* Zweites Level */
#nav ul li ul li.menu-current a, #nav ul li ul li.menu-parent a {font-weight: bold; color: red;} 
/* Drittes Level */
#nav ul li ul li ul li.menu-current a, #nav ul li ul li ul li.menu-parent a {font-weight: bold; color: red;} 

/* 2nd Child menu */
#nav .menu li ul {position: absolute; width: 12em; margin: 0; display: none; text-transform: none; font-size: 12px;}
#nav .menu li ul li {width: 12em; text-align: left; /*font-weight: normal;*/ margin: 0px 0px 0px 1px; padding: 0; line-height: 1.2em;}
#nav .menu li ul a {width: 11.5em; padding: .4em .1em .3em .5em; background: #464646; color: #fff; border: 0; font-weight: normal;}

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

/* 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: 11.5em; padding: .4em .1em .3em .4em; background: #464646; color: #fff; font-weight: normal;}

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

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




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



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