@charset "utf-8";
/* CSS Document */

body {word-wrap:break-word !important;}

.toggle,
[id^=drop] {
	display: none;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav {
	position: fixed;
	display: inline-block;
	width: 100%;
	top: 110px;
	background-color: #d0000e;	
	z-index: 100;
}

/*nav:after {
	content:"";
	display:table;
	clear:both;
}
*/
#menu { position: relative;
	display: inline-block;
	left: 40px;
	padding:0;
	margin:0;
	z-index: 100;
	}

nav ul {	
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	z-index: 100;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	background-color: #d0000e;
	z-index: 100;	
	}

/* Styling the links */
nav a {
	display:block;
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	line-height: 2em;
	padding: 0em 1em 1px 1em;
	z-index: 100;
}

/* Background color change on Hover */
nav a:hover { 
	color: #fbf792;
	font-weight: 400;
	text-decoration: none;
	border-width: 0px 0px 0px 0px;
	border-style: solid; 
	border-bottom-color: #ffffff;
	background-color: #e9000d; 
	z-index: 100;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 2em; 
	z-index: 100;
}	
/* Display Dropdowns Hover background full width */
nav ul ul a:hover {
	background-color: #e9000d; 
	width:11em;
	z-index: 100;
}

nav ul li:hover > ul {
	display:inherit;	
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:11em;
	float:none;
	display:list-item;
	position: relative;
	border-width: 0px 0px 1px 0px;
	border-style: solid; 
	border-bottom-color: #ffffff;
	z-index: 100;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:11em; 
}
.menubottom, .menubottom a  {
	display: none;
}
	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ''; }
li > a:only-child:after { content: ''; }

