 




@media only screen and (min-width: 992px) {
   
	nav.dropdown .toggle, [id^=drop-] { display: none; }

	
	
	nav.dropdown > ul::before {
		content:'';
		position: absolute;
		width:4000px;
		margin-left: 0px;
		margin-top: -10px;
		height:0.8px;
		background:rgb(204, 204, 204);
	}
	

	nav.dropdown ul {
		display: flex;
		justify-content: center;
		padding:0;
		margin:0;
		list-style: none;
		position: relative;
	}
	
	nav.dropdown a {
		display:block;
		padding:14px 20px;	
		color: #000033;
		font-size: 18px;
		text-decoration:none;

			transition: color 0.3s ease-in-out 0s;
		transition: background 0.3s ease-in-out 0s;
			}
	
	nav.dropdown ul ul a { font-size: 16px; }
	nav.dropdown ul li ul li:hover { background: #fefefe; }
	nav.dropdown ul > li.active { background: #659B9A; }
	nav.dropdown ul > li.active > a{ color: #fff;}

		nav.dropdown a:hover { 
		background-color: #659B9A; 
		color: #fff;
	}


	nav.dropdown ul ul {
		display: none;
		position: absolute; 
		/* has to be the same number as the "line-height" of "nav.dropdown a" */
		top: 48px; 
	}
		

	nav.dropdown ul li:hover > ul {
		display:inherit;
	}
		

	nav.dropdown ul ul li {
		width:200px;
		float:none;
		display:list-item;
		position: relative;
		border-left: 5px solid #659B9A; 
	}


	nav.dropdown ul ul ul li {
		position: relative;
		top:-48px;
		left:200px;
	}


}

 
   
   
   
   
   
   
   
	
}
