			
/********************************************/			
/* 			Keyboard Interaction			*/	
/* 			menu visibility fixes			*/	
/********************************************/

/*Ugly IE10/11 kludge */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	
		#menuChk ~ .menu a:focus {
			background: #0070ff !important; 
			color: white !important;
			position: absolute !important; 
			left: 18em !important; 
			width: 16em !important; 
			padding: 1em !important;
		}
		#menuChk:checked ~ .menu a:focus {
			position: static !important; 
			width: inherit !important; 
			padding: inherit !important;
		}
		
}

			
/*menu visibility fixes*/

@supports (display: grid) {
	/*	@media screen and (min-width: 64em) and (min-height:32em){ */
		
		#menuChk ~ .menu:focus-within {
			transform: translate3d(0,0,0) !important;	
			z-index: 1000 !important;
		}
		a:focus {background: #0070ff !important; color: white !important;}
	/* } */
	
	/*menu visibility fixes*/
	#menuChk ~ #menuMobile:focus-within {
		transform: translate3d(0,0,0) !important;	
		z-index: 1000 !important;
	}
	a:focus {background: #0070ff !important; color: white !important;}
	
	
}

/*Ugly MS Edge kludge */
@supports (display:-ms-grid){
		
		#menuChk ~ .menu a:focus {
			background: #0070ff !important; 
			color: white !important;
			position: absolute !important; 
			left: 18em !important; 
			width: 16em !important; 
			padding: 1em !important;
		}
		#menuChk:checked ~ .menu a:focus {
			position: static !important; 
			width: inherit !important; 
			padding: inherit !important;
		}
		
		
}

