@charset "utf-8";
/* CSS Document */



#nav{
	position: relative;
	padding-top:0px;
}


#nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
#nav ul[role="menubar"] > li{
	float:left;	
}

#nav .tlmi[aria-haspopup="true"] + div[role="menu"]{
	display: none;
	position: absolute;
	min-width: 100px;
	z-index: 20;
	top: 1.8em;
	
	
	/*DROP DOWN BACKGROUND STYLES*/
	box-shadow: 0 2px 2px rgba(0,0,0,0.5); 
	background-color: rgba(255, 255, 255, 1);
}



#nav .tlmi.mega[aria-haspopup="true"] + div[role="menu"]{
	left: 0;
	width: 100%;
 	padding: 1em;
	z-index:200;
}
	#nav .tlmi.mega[aria-haspopup="true"] + div[role="menu"] .sul{
		float: left;	
		padding: 0.5em;
		width: 25%; /*MEGA MENU COLUMN WIDTH*/ 
	}

/*drop down open*/
#nav .tlmi[aria-expanded="true"] + div[role="menu"]{	
	display: block;
	animation: drop 0.1s ease-in;	
	margin-top:7px;
}
		#nav .tlmi{
			text-decoration: none;
			padding: 16px 1em;
			display: block;
			height:50px;
			
			/*TOP LEVEL ITEM COLORS*/
			background-color:;
			color: #ffffff;
		}

		#nav .tlmi:hover,#nav .tlmi:focus{
			
			/*TOP LEVEL FOCUS/HOVER COLOR*/
			background-color: #7085a9; 
			color: #ffffff ;
		}
					
		#nav .tlmi[aria-expanded="true"]{
			
			/*TOP LEVEL OPEN COLOR*/
			background-color: #7085a9; 
			color:#ffffff ;
		}



		#nav .sul a{
			text-decoration: none;
			padding: 0.5em 5px;
			display: block;
			text-align:left;
			
			/*SUB LEVEL ITEM COLORS*/
			background-color: ; 
			color: #516586;
			list-style: none;
		}

		#nav .sul a:focus,#nav .sul a:hover{
			/*SUB LEVEL ITEM HOVER COLORS*/
		background-color: #7085a9; 
			color:#ffffff ;
		}
		
		/*LIST TITLE STYLE*/
		#nav li.nav_title{
				font-size: 1.5em;
				padding: 0 10px;
				text-align: left;
				color:#516586;
			}
		
		
		/*QUICK LINKS COLORS AND STYLE*/
		#nav .mql a{
			font-size: 18px;
			background-color: #7085a9;
			color: #FFF;
			margin: 5px 0;
			border-radius: 5px;
			padding: 0.5em;
			font-weight: bold;
		}
		#nav .mql a:hover, #nav .mql a:focus{
		background-color: #737373; color:#ffffff ;
		}
		
	
	
@keyframes drop {
    from { opacity: 0; top: 3em; }
    to   { opacity: 1; top: 2.2em;}
}

@media only screen and (min-width : 0px) and (max-width :759px) {
	
	
	
	@keyframes drop {
		from { opacity: 0; top: 1em; }
		to   { opacity: 1; top: 0em;}
	}
		#menuBtn + #nav{ display: none}
		#menuBtn[aria-expanded="true"] + #nav{ display: block;}
		
				#nav .tlmi{
			color: #516586;
		}
		
		
		#menuBtn{
			display: inline-block;
			width:49%;
			max-width:49%;
			border:0px;
			border-style:none;
		}
		#nav ul[role="menubar"] > li{
			float: none;
			width:100%;	
		}
		
		/*Mega Menu*/
		#nav .tlmi.mega[aria-haspopup="true"] + div[role="menu"]{
			padding: 1em;
		}
		
		/*Drop Menu*/
		#nav .tlmi[aria-haspopup="true"] + div[role="menu"]{
			position: relative;
			top: 0em;
			padding: 1em;
			}
		/*submenu lists*/
		#nav .tlmi.mega[aria-haspopup="true"] + div[role="menu"] .sul{
			width: 100%;
			float: none;
			}
		#nav{
			margin-top:58px;
			}
}