/* CSS Document */

#container-top {
	margin: 0 auto;
	max-width: 1170px;
}

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

nav-top { 
	margin-left:auto;
	margin-right:auto;
	padding-left: 0px;
	padding-top: 0px;
	background-color: #B71E3F;
	width: 1170px;
}

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

nav-top:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:relative" */
nav-top ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	z-index: 200;
	}
	
/* Positioning the navigation items inline */
nav-top ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: #B71E3F;
	}

/* Styling the links */
nav-top a {
	display:block;
	padding:14px 20px;	
	color:#FFF;
	font-size:14px !important;
	font-weight: 700;
	letter-spacing: 1px; 
	line-height: :18px;
	text-decoration:none;
}

nav-top ul li ul li:hover { background: #87152e; }

/* Background color change on Hover */
nav-top a:hover { 
	background-color: #87152e; 
	border-radius: 6px 6px 6px 6px;
	color: #ffffff !important;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav-top ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 55px; 
}
	
/* Display Dropdowns on Hover */
nav-top ul li:hover > ul {
	display:inherit;
}
	
/* First Tier Dropdown */
nav-top ul ul li {
	width:250px;
	float:none;
	display:list-item;
	position: relative;
	box-shadow: 0 1px 2px #00000033;
    border-radius: 6px 6px 6px 6px;
	color: #ffffff !important;
	}

/* 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-top ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:250px; 
	box-shadow: 0 1px 2px #00000033;
    border-radius: 6px 6px 6px 6px;
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

