.toggle, [id^=drop] {
	display: none;
}

.nav-container {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 15000;
	margin: 0;
}

/* Giving a background-color to the nav container. */

nav {
	margin: 0;
	padding: 0;
	/*background-color: #254441;*/
	z-index: 100000;
}

#logo {
	display: block;
	padding: 0 15px 0 0;
	float: left;
	font-size: 20px;
	line-height: 35px;
}

.clear-menu::after {
	display: none;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content: "";
	display: table;
	clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */

nav ul {
	float: right;
	padding: 0;
	margin-top: 60px;
	margin-bottom: 0px;
	list-style: none;
	position: relative;
}

/* Positioning the navigation items inline */

nav ul li {
	margin: 0px;
	display: inline-block;
	float: left;
	/*background-color: #254441;*/
}

nav>ul>li>a {
	border-right: 1px solid #67A7CC;
}

nav>ul>li:last-child>a {
	padding-right: 0px;
	border-right: none;
}

/* Styling the links */

nav a {
	display: block;
	padding: 2px 26px;
	color: #021632;
	font-size: 13px;
	text-decoration: none;
	transition: 0.6s all;
}

nav ul li a {
	color: #000;
	transition: 0.6s all;
}

nav ul ul li a {
	color: #fff!important;
	padding: 12px 26px;
	transition: 0.6s all;
}

nav ul li ul li:hover {
	background: #000000;
	transition: 0.6s all;
}

/* Background color change on Hover */

/*nav a:hover { 
	background-color: #000000; 
}*/

/* Hide Dropdowns by Default
 * and giving it a position of absolute */

nav ul ul {
	display: none;
	position: absolute;
	margin-top: 19px;
	/* has to be the same number as the "line-height" of "nav a" */
	top: 0px;
	z-index: 100000;
}

/* Display Dropdowns on Hover */

nav ul li:hover>ul {
	display: inherit;
}

/* Fisrt Tier Dropdown */

nav ul ul li {
	width: 260px;
	float: none;
	display: list-item;
	position: relative;
	background: #104475;
	transition: 0.6s all;
}

nav ul ul li:hover {
	background: #017FC3!important;
	transition: 0.6s all;
}

/* 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: -47px;
	/* has to be the same number as the "width" of "nav ul ul li" */
	left: 260px;
}

/* Hide desktop links */

.hide-desk {
	display: none;
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width: 1550px) {
	nav a {
		padding: 2px 15px;
		transition: 0.6s all;
	}
}

@media all and (max-width: 1350px) {
	nav a {
		padding: 2px 10px;
		transition: 0.6s all;
	}
}

@media all and (max-width: 1250px) {
	/* Hide desktop links */
	.hide-desk {
		display: block;
	}
	nav ul {
		margin-top: 0px;
	}
	.clear-menu::after {
		content: "";
		clear: both;
		display: table;
	}
	#logo {
		display: inline-block;
		padding: 0;
		/*width: 100%;
		text-align: center;
		float: none;*/
	}
	nav {
		margin: 0;
	}
	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle+a, .menu {
		display: none;
	}
	/* Stylinf the toggle lable */
	.toggle {
		display: inline-block;
		background-color: #017FC3;
		color: #fff;
		margin-top: 46px;
		padding: 14px 20px;
		font-size: 14px;
		text-decoration: none;
		border: none;
		border-radius: 4px;
		float: right;
	}
	ul {
		float: none!important;
		margin-bottom: 3px;
	}
	ul .toggle {
		display: block;
		background-color: #104475;
		color: #fff;
		margin-top: 0!important;
		padding: 13px 27px 13px 17px;
		font-size: 14px;
		font-weight: 700;
		text-decoration: none;
		border: none;
		float: none;
	}
	nav a {
		display: block;
		padding: 13px 27px 13px 17px;
		border-right: none!important;
	}
	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked+ul {
		display: block;
	}
	/* Change menu item's width to 100% */
	nav ul li a {
		color: #fff;
		transition: 0.6s all;
	}
	nav ul li {
		display: block;
		width: 100%;
		background-color: #104475;
		border-bottom: 1px solid #fff;
		border-radius: 4px;
	}
	nav ul li:last-child {
		border-bottom: none;
	}
	nav>ul>li:last-child {
		border-bottom: 6px solid #fff;
	}
	nav ul ul {
		margin-top: 0!important;
	}
	nav ul ul .toggle, nav ul ul a {}
	nav ul ul ul a {
		padding: 0 80px;
	}
	nav a:hover, nav ul ul ul a {
		background-color: #104475;
	}
	nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a {
		color: #FFF;
		font-size: 14px;
	}
	nav ul li ul li .toggle, nav ul ul a {
		background-color: #2e6496;
	}
	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position: static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
	/* Hide menus on hover */
	nav ul ul li:hover>ul, nav ul li:hover>ul {
		display: none;
	}
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}
	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */
	}
	/* Change ' +' in order to change the Dropdown symbol */
	label.plus-sign:after {
		content: ' +';
		color: #fff;
		position: absolute;
		right: 17px;
	}
	/*li > a:after { content:  ' +'; color: #000; }
        li > a:only-child:after { content: ''; }*/
}

@media all and (max-width: 330px) {
	/*nav ul li {
		display:block;
		width: 94%;
	}*/
}