/* ======================================================================================================== */
/* Styles specifiques au menu d'acces rapide (visible par la navigation clavier) */
	
	/* Acces rapide : Boite du lien du menu */
	.ep_skipnav{
		position: 				absolute; 
		display: 				none; 
		font-size: 				1.3em;
		text-align: 			left;
	} 
	/* 	For all, including Opera. Display:none used to switch off the skip links for Opera users (it's redundant, Opera has excellent keyboard navigation) */
	/* Acces rapide : Style pour tous les navigateur */
	* html .ep_skipnav{	
		display: 				block;
	} 
	/* Acces rapide : Switch on for IE6 and below */
	*+html .ep_skipnav{
		display: 				block;
	} 
	/* Acces rapide : Switch on for IE7 */
	:root .ep_skipnav{
		display: 				block;
	} 
	/* Acces rapide : Switch on for Moz, FF and Safari */
	.ep_skipnav p{
		position: 				absolute;
		margin: 				5px 0 0 0;
		font-size: 				1em;
	}
	/* Acces rapide : Lien */
	.ep_skipnav a{
		position: 				absolute; 
		display: 				inline-block;
		top: 					0;
		left: 					-1000em;
		width: 					300px;
		padding: 				5px;
		background: 			#333;
		font-weight: 			bold;
		color: 					#fff;
		text-decoration: 		none;
	}
	.ep_skipnav a:visited{
		color: 					#fff;
	}
	/* Note IE bug that requires use of :active to mimic effect of :focus */
	.ep_skipnav a:focus, .ep_skipnav a:active{
		top: 					5px;
		left: 					450px;
		background: 			#333 !important;
		border: 				solid #777 2px;
		color: 					#fff;
	}
	.ep_skipnav a:hover{
		cursor: 				default
	}
	
	/* Ancre pour les liens d'acces rapide */
	.ep_skiptarget{
		display:				block;
		float: 					right;
		top: 					-1px;
		width: 					1px;
		height: 				1px;
		overflow: 				hidden;
		text-decoration:		none;
	}	
