<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.toggleMenu {
    display:  none;
	/*background:url(../../assets/images/menu/icon_menu.png) #FFF no-repeat center 40px;*/
	height:90px;
	width:90px;
    padding:20px 10px 5px 10px;
    color:#3F474C;
	text-decoration:none;
	font-weight:700;
	font-size:1.1em;
	font-family:sans-serif;
	text-transform:uppercase;
	margin:0 0 0 0;
	position:relative;
	z-index:3000;
	text-align:center;
}

.toggleMenu.active{
	background:url(../../assets/images/menu/icon_menu_close.png) no-repeat center 40px;
}

/* les fleches des rubriques et sous rubriques */
#nav &gt; li span.submenu-toggle{
	display:none;
	float: left;
    position: absolute;
    left: 1.5em;
    padding-top: 0.5em;
    font-weight: bold;
}

#nav &gt; li &gt; ul &gt; li span.submenu-toggle{
    left: 1em;
    padding-top: 0.2em;
}

@media screen and (max-width:480px){	
	.toggleMenu {
	/*height:60px;*/
	height:90px;
	width:auto;
	/*padding:7px 10px 5px 10px;*/
    padding:20px 10px 5px 10px;
	font-size:1.1em;
	margin:0 0 0 0;
	/*background-position:bottom center;*/
	}
	
	/*
	.toggleMenu.active{
		background-position:bottom center;
	}*/
}

#nav {
    list-style: none;
     *zoom: 1;
     position: relative;
	 font-family:sans-serif;
	 margin:0 auto 0 auto;
	 padding:0; 
	 height:100px;
	 /*z-index:2000;*/ /*Pour ne pas passer par dessus post it*/
}

/* Niveau 1 rubrique */
#nav &gt; li {
	display:table;
	float:left;
    z-index: 200;
	height:100px;
	padding:10px 0 10px 10px;
}

#nav &gt; li &gt; a {
    display:table-cell;
	vertical-align: middle;
	font-size:1.4em;
	padding:10px 20px 10px 20px;
	color:#000;
	font-weight:500;
	text-align:center;
	text-decoration:none;
	border-right:1px solid #000;
}

#nav &gt; li &gt; a &gt; span {
    display:block;
}


/*Le nom de le rubrique survolÃ©e*/
#nav &gt; li.hover &gt; a {
    color:#000;
}

/*Le nom de la rubrique dans laquelle on se trouve*/
#nav &gt; li.current_page_parent &gt; a {
    /*color:rgba(0,0,0,0.4);*/
	font-weight:600;
}
/*fin Niveau 1 rubrique*/



/*****************LE BLOC SOUS MENU***********************/

/*Le sous menu qui s'ouvre au survol*/
#nav li ul {
    position: absolute;
    left: -9999px;
	top:91px; /*= la hauteur des rubriques*/
    z-index: 100;
	width:18em;
	/*width:calc(100% + 1px);*/
	text-align:left;
	list-style-type:none;
	min-width:100%;
}

#nav &gt; li &gt; ul{
	margin:0;
	padding:10px;
	background:#fff;
}

/* La sous rub / niveau 2 */
#nav li li{
	width:100%;
}

#nav li li a {
    display: block;
    position: relative;
    z-index:100;
	text-decoration:none;
	font-size:1.25em;
	line-height:1.3em;
	font-weight:400;
	padding:5px 20px;
	border-top:none;
	border-bottom:none;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	border:none !important;
}		

#nav &gt; li &gt; ul &gt; li:last-child {}

/* La page / niveau 3 */

/*Le niveau 3 du menu est cachÃƒÂ© pour AÃƒÂ©roport car pb quand niveau 3 dans la derniÃƒÂ¨re rubrique sur ÃƒÂ©cran ordi portable*/
#nav li li ul {
	padding:10px;
}

#nav li li li a {
    z-index:200;
	opacity:0.9;
}

#nav li {
    position: relative;
	width:auto;
}

@media only screen and (min-width: 1280px){

#nav &gt; li:hover &gt; ul {
    left: 0;
}
}

#nav li li:hover ul {
    left: 100%;
	top:0;
}
/****************FIN DU BLOC SOUS MENU***********************/




/***********Ancien code avec hack qui a fini par poser pb sur Firefox***********/
/* La sous rub / niveau 2 
/*Pour IE et Firefox
#nav &gt; li &gt; ul &gt; li{
	padding:10px;
	display:inline-block; permet d'Ã©viter le saut de colonnes au milieu d'un bloc sous rub
	ATTENTION le display inline block n'Ã©quilibre pas bien les colonnes sur Beuzeville, d'oÃ¹ le hack ci-dessous
	width:100%;
}*/


/*Hack pour google chrome &amp; safari : permet de mieux Ã©quilibrer les colonnes
@media screen and (-webkit-min-device-pixel-ratio:0) {
    #nav &gt; li &gt; ul &gt; li{
		/*display:block
		display:table; /*Pb sur le neubourg avec EDGE et Firefox - avec le display block il y a des sauts de colonnes au milieu d'un bloc de sous rub, seul le display table rÃ©soud Ã§a !?!?
		break-inside:avoid-column;
	}
}*/


</pre></body></html>