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

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
    background: #e1eef0;
}

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

nav:after {
	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 0px 0px 0px;
	display:inline-block;
	float: left;
    background: #e1eef0;
    font-weight: 600;
    font-size: 17px;
    color: #193e72;
    z-index: 1;
    text-align: left;
	}

/* Styling the links */
nav a {
	display:block;
	padding: 14px 7px 14px 7px;
    color: #193e72;
	text-decoration:none;
}


nav ul li ul li:hover { 
    color: #000;
   text-decoration: underline;
}

/* Background color change on Hover */
nav a:hover {  
    color: #000;
   text-decoration: underline;
transition: color 300ms ease 0ms;
}

/* 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: 50px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:250px;
	float:none;
	display:list-item;
	position: relative;
	padding: 0px 0px 0px 20px;
}

/* 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:-50px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left: 230px; 
}

.menuarrow{
    margin: 0px 0px 0px 5px;
}

/* Hide for desktop / larger screens */
@media (min-width: 951px) {
    .mobile-parent-link {
        display: none;
    }
}

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

@media all and (max-width : 965px) {

	nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Styling the toggle label */
	.toggle, 
	nav a {
		display: block;
		background-color: #e1eef0;
		padding: 14px 20px;	
		color: #193e72;
		font-size:17px;
		text-decoration:none;
		border:none;
	}

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

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		text-align: left;
		padding: 0 0px;
		margin: 0 0px;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0px 0px 0px 40px;
		margin: 0px 0px 0px 0px;
	}

	nav ul ul ul a {
		padding: 0px 0px 0px 80px;
	}

	nav a:hover,
	nav ul li label:hover,
 	nav ul ul ul a {
		background-color: #e1eef0;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a{
		padding: 14px 0px 14px 40px;
		font-size:17px; 
	}
	
    nav ul ul ul a{
		padding: 14px 0px 14px 60px;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #e1eef0;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		/* 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;
		background-color: #d0dde0;
	}
		
	/* 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" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}