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

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

nav { 
	margin:0;
	padding: 0;
	background-color: #4e8a86 ;
	line-height: 16px;
}

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:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:block;
	float: left;
	}

/* Styling the links */
nav a {
	display:block;
	padding: 10px;	
	color: #fcfef4;
	font-size: 14px;
	text-decoration: none; /*  padding Y x 2 + Line Height should = nav ul ul top  */
	background-color:  #4e8a86;
	font-family: 'lato';
	font-weight: 300;
}

/* Background color change on Hover */
nav a:hover { 
	background-color: #23524c; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same height of the menu bar */
	border-radius: 0px 0px 4px 4px;
	overflow: hidden;
	box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.25);
	z-index: 9999;
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:auto;
	float:none;
	display:list-item;
	position: relative;
}

nav ul ul li a {
	font-size: 12px;
	padding: 11px;
	background-color: #23524c;
	color: #8ec4b2;
}

.tlink{
	font-size: 14px;
	padding: 10px 10px 10px 5px;
	background-color: #23524c;
	margin: 10px;
	color: #8ec4b2;
	white-space: nowrap;
	border-bottom: 1px solid #c8fae0;
}

.blink{
	font-size: 12px;
	padding: 0px 8px 8px 15px;
	background-color: #23524c;
	color: #8ec4b2;
	display: block;
	white-space: nowrap;
}

.hideli {
	display: block;
}

.tlink:hover{
	background-color: #23524c;
	color: white;
}

.blink:hover{
	background-color: #23524c;
	color: white;
}

nav ul li ul li a:hover { background: #083532; }
	
/* Change ' ▾' in order to change the Dropdown symbol */
nav li > a:after { content:  ' ▾'; }
nav li > a:only-child:after { content: ''; } /* Menu - Normal View */

#menubar { background-color: #4e8a86; }

.fullwidthmenu {float: left; width: 100%; height: auto; left: 0px; background-color: #23524c; }

.fullwidthmenu li {width: 20%; float: left}



@media (max-width: 720px){
	.toggle + a, .menu { display: none; }
	
	#menubar {
		clear: both;
		display: block;
		height: auto;
		color:#FFF;
	}
	
	/* Styling the toggle lable */
	
	.toggle {
		display: block;
		background-color: #4e8a86;
		padding:14px 20px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
	}

	.toggle_clicked {
		background-color: #23524c;
		color: #FFF;
		border-bottom:1px dashed #649b97;
	}

	.navi_clicked {
		background-color: #4e8a86;
		color: #FFF;
		border-bottom:1px solid #649b97;
	}

	.toggle:hover {
		background-color: #23524c;
	}

	.toggle span { float:right;	}

	nav a:hover, nav ul ul ul a {
		background-color: #23524c;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav a {
		color:white;
	}

	nav ul li {
		display: block;
		width: 100%;
		border-bottom:1px solid #649b97;
	}

	nav ul li ul li {
		border-bottom:1px solid #083532;
	}

	nav ul li ul li .toggle, nav ul li .toggle, nav ul li a {
		padding:14px 20px;	
		font-size:15px; 
	}
  
 	nav ul ul li a{
		padding:12px 40px;	
		font-size:15px; 
	}
 
	nav ul li ul li .toggle, nav ul ul a {
		background-color: #4e8a86; 
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		border-radius: 0px;
		/* 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" */ 
	}
	
	.tlink {
		width: 100%; float: none;
		padding:12px 40px;	
		font-size:15px; 
		background-color: #23524c;
		margin: 0px;
		color: #8ec4b2;
		border-bottom: none;
		display: block;
	}

	.tlink:hover{
		background-color: #083532;
		color: #8ec4b2;
	}
		
	.blink, .hideli{
		display: none;
	}
	
	.fullwidthmenu { 
		width: 100%; 
		padding: 0px; 
		margin: 0;
	}
	
	.fullwidthmenu li {
		width: 100%; 
		float: none;  
		border-bottom: 1px solid #083532; 
	}
}
