@charset "UTF-8";
/* ==================================================
 * Projet : ADM 6010
 * Fichier CSS global
 * Version : 1.0
 * Dernières modifications : 14 janvier 2020
 * Auteur : François Martel
 * ================================================== */
/* ==================================================
 * MIXINS
 * Table des matieres :
 * Media queries
 * Layout
 * Layout : Flexbox (Propriétés du parent (flex container))
 * Layout : Flexbox (Propriétés des enfants (flex items))
 * Texte
 * Animations et transformations
 * Visibilite et opacite
 * Borders
 * Autres
 * Schémas
 * ================================================== */
/* ==================================================
 * Media queries
 * ================================================== */
/* ==================================================
 * Layout
 * ================================================== */
/* Applique les styles pour creer une colonne responsive a partir de sa largeur (en nombre de colonnes) par rapport au nombre maximal de colonnes. */
/* Applique un retrait a gauche en remplacement de colonnes vides. */
/* Applique une largeur de 100% sur toutes les colonnes. */
/* Applique une largeur de 50% sur toutes les colonnes sauf celles qui sont deja pleine largeur. */
/* Appele le mixin col avec les bons parametres pour toutes les classes "merge" et "offset". */
/* ==================================================
 * Layout : Flexbox
 * Base : https://developer.mozilla.org/fr/docs/Web/CSS/CSS_Flexible_Box_Layout/Mixins
 * Base : https://css-tricks.com/snippets/css/a-guide-to-flexbox/
 * Propriétés du parent (flex container)
 * ================================================== */
/* Le conteneur flexible
 * Valeurs : flex | inline-flex */
/* Direction du conteneur flexible
 * flex-direction
 * Valeurs possibles : row (la valeur par défaut) | row-reverse | column | column-reverse */
/* flex-wrap
 * Valeurs possibles : nowrap (la valeur par défaut) | wrap | wrap-reverse */
/* flex-flow
 * Valeurs possibles : row (la valeur par défaut) | nowrap */
/* justify-content
 * Valeurs possibles : flex-start (la valeur par défaut) | flex-end | center | space-between | space-around */
/* align-items
 * Valeurs possibles : flex-start | flex-end | center | baseline | stretch (la valeur par défaut) */
/* align-content
 * Valeurs possibles : flex-start | flex-end | center | space-between | space-around | stretch (la valeur par défaut) */
/* ==================================================
 * Layout : Flexbox
 * Base : https://developer.mozilla.org/fr/docs/Web/CSS/CSS_Flexible_Box_Layout/Mixins
 * Base : https://css-tricks.com/snippets/css/a-guide-to-flexbox/
 * Propriétés des enfants (flex items)
 * ================================================== */
/* order
 * Valeurs possibles : un entier (<integer> (0 est la valeur par défaut) */
/* flex-grow
 * Valeurs possibles : un entier (<integer> (1 est la valeur par défaut) */
/* flex-shrink
 * Valeurs possibles : un entier (<integer> (1 est la valeur par défaut) */
/* flex-basis
 * Valeurs possibles : la valeur par défaut est auto */
/* flex
 * Valeurs possibles : https://developer.mozilla.org/fr/docs/Web/CSS/flex */
/* align-self
 * Valeurs possibles : auto (la valeur par défaut) | flex-start | flex-end | center | baseline | stretch */
/* ==================================================
 * Texte
 * ================================================== */
/* Calcul du font-size en rem et son fallback en px. */
/* Calcul du line-height en rem et son fallback en px. */
/* Calcul du font-size en rem et son fallback en px.
 * et calcul du line-height (par un multiplicatif relatif au font-size)
 * en rem et son fallback en px. */
/* Selection de texte avec les differents prefixes necessaires. */
/* Interdire la selection du texte avec les differents prefixes necessaires */
/* https://gist.github.com/jonathantneal/d0460e5c2d5d7f9bc5e6
 * font-face */
/* ==================================================
 * Animations et transformations
 * ================================================== */
/* Transitions */
/* Transform */
/* Keyframe animation */
/* Animation d'une barre sous un lien (link d'un menu)
 * $couleurHover = Couleur de l'etat survol
 * $debutAnimation = Debut de l'animation (Gauche, droite, centre) pour ensuite être une ligne complete sous le mot
 * $duree = Duree de la transition d'animation
 * le a qui aura le hover-lien devra être en display: inline-block */
/* ==================================================
 * Visibilite et opacite
 * ================================================== */
/* Cache un element visuellement seulement pour qu'il reste disponible pour les lecteurs d'ecran. */
/* Cache un element completement. */
/* Remplace un texte par une image. */
/* Applique une opacite avec son fallback pour internet explorer. */
/* Applique une couleur rgba avec opacite et une couleur fallback solide correspondante. */
/* ==================================================
 * Borders
 * ================================================== */
/* Applique des coins arrondis de plusieurs grandeurs. */
/* Applique une bordure de plusieurs couleurs. */
/* ==================================================
 * Autres
 * ================================================== */
/* Centre un element verticalement. */
/* Centre un element horizontalement. */
/* Centrer un element. Le parent doit être position: relative */
/* Calcul le ratio d'un element avec une image de background dont on veut changer la taille. */
/* Cree un triangle en css seulement. */
/* Cree un rond en css seulement. */
/* coupe les long url pour ne pas qu'ils brise la page (chrome, vieux IE, android) */
/* ==================================================
 * Schémas
 * ================================================== */
/* ==================================================
 * Positionne les items d'une liste sur un cercle
 * Auteurs : Hugo Giraudel, Ana Tudor
 * https://hugogiraudel.com/2013/04/02/items-on-circle/
 *
 * $item-count (integer) : nombre d'items distribué sur le cercle
 * $circle-size (length) : dimension du cercle
 * $item-size (length) : dimension d'un item sur le cercle
 * ================================================== */
/* ==================================================
 * NORMALIZE
 * normalize.css v3.0.3
 * MIT License
 * github.com/necolas/normalize.css
 * 
 * Modifie par Annelie Gagnon pour fonctionner
 * avec la methode indentee en Sass
 * ================================================== */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==================================================
 * VARIABLES
 * Table des matieres :
 * Grille
 * Breakpoints
 * Couleurs
 * Fontes
 * Grosseur
 * Autres
 * ================================================== */
/* ==================================================
 * Grille
 * Indiquez ici le nombre de colonnes de la
 * grille utilisee, leur padding (s'il y a lieu)
 * ainsi que la largeur des goutieres.
 * ================================================== */
/* ==================================================
 * Breakpoints
 * Indiquez ici les differents breakpoints de
 * votre grille responsive. Vous pouvez en ajouter,
 * en enlever et en modifier selon vos besoins.
 * ================================================== */
/* ==================================================
 * Couleurs
 * Indiquez ici toutes couleurs (texte, bordure,
 * background...) que vous comptez reutiliser a
 * plusieurs reprises dans votre site. Vous pouvez
 * en ajouter, en enlever et en modifier selon
 * vos besoins.
 * ================================================== */
/* Parties */
/* Background */
/* Texte */
/* Hyperlien */
/* Bordure */
/* ==================================================
 * Fontes
 * Indiquez ici les fontes que vous comptez
 * reutiliser a plusieurs reprises dans votre site.
 * Vous pouvez en ajouter, en enlever et en modifier
 * selon vos besoins.
 * ================================================== */
/* ==================================================
 * Grosseur
 * Indiquez ici les grosseurs que vous comptez
 * reutiliser a plusieurs reprises dans votre site.
 * Vous pouvez en ajouter, en enlever et en modifier
 * selon vos besoins.
 * ================================================== */
/* ==================================================
 * Autres
 * Variables diverses
 * ================================================== */
/* Hauteur */
/* ==================================================
 * FUNCTIONS
 * Table des matieres :
 * calc-percent
 * solidify
 * ================================================== */
.ico,
.ico-ampoule,
.ico-application,
.ico-communaute,
.ico-consigne,
.ico-critere,
.ico-enquete,
.ico-etape,
.ico-important,
.ico-lecture,
.ico-navigation,
.ico-objectif,
.ico-pratique,
.ico-presentation,
.ico-question,
.ico-rappel,
.ico-remise,
.ico-remue,
.ico-synthese-textuelle,
.ico-synthese-schematique,
.ico-video,
.ico-echange, #navPageForm ul li.itemPrec a::before,
.ico-fleche-gauche, #navPageForm ul li.itemSuiv a::before,
.ico-fleche-droite,
.ico-fleche-droite-mini,
.ico-objectif-evalue,
.ico-anne,
.ico-jeanfrancois,
.ico-sarah {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-indent: -999em;
  overflow: hidden;
}
.ico.s,
.s.ico-ampoule,
.s.ico-application,
.s.ico-communaute,
.s.ico-consigne,
.s.ico-critere,
.s.ico-enquete,
.s.ico-etape,
.s.ico-important,
.s.ico-lecture,
.s.ico-navigation,
.s.ico-objectif,
.s.ico-pratique,
.s.ico-presentation,
.s.ico-question,
.s.ico-rappel,
.s.ico-remise,
.s.ico-remue,
.s.ico-synthese-textuelle,
.s.ico-synthese-schematique,
.s.ico-video,
.s.ico-echange, #navPageForm ul li.itemPrec a.s::before,
.s.ico-fleche-gauche, #navPageForm ul li.itemSuiv a.s::before,
.s.ico-fleche-droite,
.s.ico-fleche-droite-mini,
.s.ico-objectif-evalue,
.s.ico-anne,
.s.ico-jeanfrancois,
.s.ico-sarah {
  width: 20px;
  height: 20px;
}
.ico.t,
.t.ico-ampoule,
.t.ico-application,
.t.ico-communaute,
.t.ico-consigne,
.t.ico-critere,
.t.ico-enquete,
.t.ico-etape,
.t.ico-important,
.t.ico-lecture,
.t.ico-navigation,
.t.ico-objectif,
.t.ico-pratique,
.t.ico-presentation,
.t.ico-question,
.t.ico-rappel,
.t.ico-remise,
.t.ico-remue,
.t.ico-synthese-textuelle,
.t.ico-synthese-schematique,
.t.ico-video,
.t.ico-echange, #navPageForm ul li.itemPrec a.t::before,
.t.ico-fleche-gauche, #navPageForm ul li.itemSuiv a.t::before,
.t.ico-fleche-droite,
.t.ico-fleche-droite-mini,
.t.ico-objectif-evalue,
.t.ico-anne,
.t.ico-jeanfrancois,
.t.ico-sarah {
  width: 1em;
  height: 1em;
}
.ico.l,
.l.ico-ampoule,
.l.ico-application,
.l.ico-communaute,
.l.ico-consigne,
.l.ico-critere,
.l.ico-enquete,
.l.ico-etape,
.l.ico-important,
.l.ico-lecture,
.l.ico-navigation,
.l.ico-objectif,
.l.ico-pratique,
.l.ico-presentation,
.l.ico-question,
.l.ico-rappel,
.l.ico-remise,
.l.ico-remue,
.l.ico-synthese-textuelle,
.l.ico-synthese-schematique,
.l.ico-video,
.l.ico-echange, #navPageForm ul li.itemPrec a.l::before,
.l.ico-fleche-gauche, #navPageForm ul li.itemSuiv a.l::before,
.l.ico-fleche-droite,
.l.ico-fleche-droite-mini,
.l.ico-objectif-evalue,
.l.ico-anne,
.l.ico-jeanfrancois,
.l.ico-sarah {
  width: 35px;
  height: 35px;
}

.ico-ampoule {
  background-image: url(../../img/icones/ico_ampoule.svg);
}
.no-svg
.ico-ampoule {
  background-image: url(../../img/icones/png/ico_ampoule.png);
}
.p1
.ico-ampoule {
  background-image: url(../../img/icones/ico_ampoule_p1.svg);
}
.no-svg .p1
.ico-ampoule {
  background-image: url(../../img/icones/png/ico_ampoule_p1.png);
}
.p2
.ico-ampoule {
  background-image: url(../../img/icones/ico_ampoule_p2.svg);
}
.no-svg .p2
.ico-ampoule {
  background-image: url(../../img/icones/png/ico_ampoule_p2.png);
}
.p3
.ico-ampoule {
  background-image: url(../../img/icones/ico_ampoule_p3.svg);
}
.no-svg .p3
.ico-ampoule {
  background-image: url(../../img/icones/png/ico_ampoule_p3.png);
}

.ico-application {
  background-image: url(../../img/icones/ico_application.svg);
}
.no-svg
.ico-application {
  background-image: url(../../img/icones/png/ico_application.png);
}
.p1
.ico-application {
  background-image: url(../../img/icones/ico_application_p1.svg);
}
.no-svg .p1
.ico-application {
  background-image: url(../../img/icones/png/ico_application_p1.png);
}
.p2
.ico-application {
  background-image: url(../../img/icones/ico_application_p2.svg);
}
.no-svg .p2
.ico-application {
  background-image: url(../../img/icones/png/ico_application_p2.png);
}
.p3
.ico-application {
  background-image: url(../../img/icones/ico_application_p3.svg);
}
.no-svg .p3
.ico-application {
  background-image: url(../../img/icones/png/ico_application_p3.png);
}

.ico-communaute {
  background-image: url(../../img/icones/ico_communaute.svg);
}
.no-svg
.ico-communaute {
  background-image: url(../../img/icones/png/ico_communaute.png);
}
.p1
.ico-communaute {
  background-image: url(../../img/icones/ico_communaute_p1.svg);
}
.no-svg .p1
.ico-communaute {
  background-image: url(../../img/icones/png/ico_communaute_p1.png);
}
.p2
.ico-communaute {
  background-image: url(../../img/icones/ico_communaute_p2.svg);
}
.no-svg .p2
.ico-communaute {
  background-image: url(../../img/icones/png/ico_communaute_p2.png);
}
.p3
.ico-communaute {
  background-image: url(../../img/icones/ico_communaute_p3.svg);
}
.no-svg .p3
.ico-communaute {
  background-image: url(../../img/icones/png/ico_communaute_p3.png);
}

.ico-consigne {
  background-image: url(../../img/icones/ico_consigne.svg);
}
.no-svg
.ico-consigne {
  background-image: url(../../img/icones/png/ico_consigne.png);
}
.p1
.ico-consigne {
  background-image: url(../../img/icones/ico_consigne_p1.svg);
}
.no-svg .p1
.ico-consigne {
  background-image: url(../../img/icones/png/ico_consigne_p1.png);
}
.p2
.ico-consigne {
  background-image: url(../../img/icones/ico_consigne_p2.svg);
}
.no-svg .p2
.ico-consigne {
  background-image: url(../../img/icones/png/ico_consigne_p2.png);
}
.p3
.ico-consigne {
  background-image: url(../../img/icones/ico_consigne_p3.svg);
}
.no-svg .p3
.ico-consigne {
  background-image: url(../../img/icones/png/ico_consigne_p3.png);
}

.ico-critere {
  background-image: url(../../img/icones/ico_critere.svg);
}
.no-svg
.ico-critere {
  background-image: url(../../img/icones/png/ico_critere.png);
}
.p1
.ico-critere {
  background-image: url(../../img/icones/ico_critere_p1.svg);
}
.no-svg .p1
.ico-critere {
  background-image: url(../../img/icones/png/ico_critere_p1.png);
}
.p2
.ico-critere {
  background-image: url(../../img/icones/ico_critere_p2.svg);
}
.no-svg .p2
.ico-critere {
  background-image: url(../../img/icones/png/ico_critere_p2.png);
}
.p3
.ico-critere {
  background-image: url(../../img/icones/ico_critere_p3.svg);
}
.no-svg .p3
.ico-critere {
  background-image: url(../../img/icones/png/ico_critere_p3.png);
}

.ico-enquete {
  background-image: url(../../img/icones/ico_enquete.svg);
}
.no-svg
.ico-enquete {
  background-image: url(../../img/icones/png/ico_enquete.png);
}
.p1
.ico-enquete {
  background-image: url(../../img/icones/ico_enquete_p1.svg);
}
.no-svg .p1
.ico-enquete {
  background-image: url(../../img/icones/png/ico_enquete_p1.png);
}
.p2
.ico-enquete {
  background-image: url(../../img/icones/ico_enquete_p2.svg);
}
.no-svg .p2
.ico-enquete {
  background-image: url(../../img/icones/png/ico_enquete_p2.png);
}
.p3
.ico-enquete {
  background-image: url(../../img/icones/ico_enquete_p3.svg);
}
.no-svg .p3
.ico-enquete {
  background-image: url(../../img/icones/png/ico_enquete_p3.png);
}

.ico-etape {
  background-image: url(../../img/icones/ico_etape.svg);
}
.no-svg
.ico-etape {
  background-image: url(../../img/icones/png/ico_etape.png);
}
.p1
.ico-etape {
  background-image: url(../../img/icones/ico_etape_p1.svg);
}
.no-svg .p1
.ico-etape {
  background-image: url(../../img/icones/png/ico_etape_p1.png);
}
.p2
.ico-etape {
  background-image: url(../../img/icones/ico_etape_p2.svg);
}
.no-svg .p2
.ico-etape {
  background-image: url(../../img/icones/png/ico_etape_p2.png);
}
.p3
.ico-etape {
  background-image: url(../../img/icones/ico_etape_p3.svg);
}
.no-svg .p3
.ico-etape {
  background-image: url(../../img/icones/png/ico_etape_p3.png);
}

.ico-important {
  background-image: url(../../img/icones/ico_important.svg);
}
.no-svg
.ico-important {
  background-image: url(../../img/icones/png/ico_important.png);
}
.p1
.ico-important {
  background-image: url(../../img/icones/ico_important_p1.svg);
}
.no-svg .p1
.ico-important {
  background-image: url(../../img/icones/png/ico_important_p1.png);
}
.p2
.ico-important {
  background-image: url(../../img/icones/ico_important_p2.svg);
}
.no-svg .p2
.ico-important {
  background-image: url(../../img/icones/png/ico_important_p2.png);
}
.p3
.ico-important {
  background-image: url(../../img/icones/ico_important_p3.svg);
}
.no-svg .p3
.ico-important {
  background-image: url(../../img/icones/png/ico_important_p3.png);
}

.ico-lecture {
  background-image: url(../../img/icones/ico_lecture.svg);
}
.no-svg
.ico-lecture {
  background-image: url(../../img/icones/png/ico_lecture.png);
}
.p1
.ico-lecture {
  background-image: url(../../img/icones/ico_lecture_p1.svg);
}
.no-svg .p1
.ico-lecture {
  background-image: url(../../img/icones/png/ico_lecture_p1.png);
}
.p2
.ico-lecture {
  background-image: url(../../img/icones/ico_lecture_p2.svg);
}
.no-svg .p2
.ico-lecture {
  background-image: url(../../img/icones/png/ico_lecture_p2.png);
}
.p3
.ico-lecture {
  background-image: url(../../img/icones/ico_lecture_p3.svg);
}
.no-svg .p3
.ico-lecture {
  background-image: url(../../img/icones/png/ico_lecture_p3.png);
}

.ico-navigation {
  background-image: url(../../img/icones/ico_navigation.svg);
}
.no-svg
.ico-navigation {
  background-image: url(../../img/icones/png/ico_navigation.png);
}
.p1
.ico-navigation {
  background-image: url(../../img/icones/ico_navigation_p1.svg);
}
.no-svg .p1
.ico-navigation {
  background-image: url(../../img/icones/png/ico_navigation_p1.png);
}
.p2
.ico-navigation {
  background-image: url(../../img/icones/ico_navigation_p2.svg);
}
.no-svg .p2
.ico-navigation {
  background-image: url(../../img/icones/png/ico_navigation_p2.png);
}
.p3
.ico-navigation {
  background-image: url(../../img/icones/ico_navigation_p3.svg);
}
.no-svg .p3
.ico-navigation {
  background-image: url(../../img/icones/png/ico_navigation_p3.png);
}

.ico-objectif {
  background-image: url(../../img/icones/ico_objectif.svg);
}
.no-svg
.ico-objectif {
  background-image: url(../../img/icones/png/ico_objectif.png);
}
.p1
.ico-objectif {
  background-image: url(../../img/icones/ico_objectif_p1.svg);
}
.no-svg .p1
.ico-objectif {
  background-image: url(../../img/icones/png/ico_objectif_p1.png);
}
.p2
.ico-objectif {
  background-image: url(../../img/icones/ico_objectif_p2.svg);
}
.no-svg .p2
.ico-objectif {
  background-image: url(../../img/icones/png/ico_objectif_p2.png);
}
.p3
.ico-objectif {
  background-image: url(../../img/icones/ico_objectif_p3.svg);
}
.no-svg .p3
.ico-objectif {
  background-image: url(../../img/icones/png/ico_objectif_p3.png);
}

.ico-pratique {
  background-image: url(../../img/icones/ico_pratique.svg);
}
.no-svg
.ico-pratique {
  background-image: url(../../img/icones/png/ico_pratique.png);
}
.p1
.ico-pratique {
  background-image: url(../../img/icones/ico_pratique_p1.svg);
}
.no-svg .p1
.ico-pratique {
  background-image: url(../../img/icones/png/ico_pratique_p1.png);
}
.p2
.ico-pratique {
  background-image: url(../../img/icones/ico_pratique_p2.svg);
}
.no-svg .p2
.ico-pratique {
  background-image: url(../../img/icones/png/ico_pratique_p2.png);
}
.p3
.ico-pratique {
  background-image: url(../../img/icones/ico_pratique_p3.svg);
}
.no-svg .p3
.ico-pratique {
  background-image: url(../../img/icones/png/ico_pratique_p3.png);
}

.ico-presentation {
  background-image: url(../../img/icones/ico_presentation.svg);
}
.no-svg
.ico-presentation {
  background-image: url(../../img/icones/png/ico_presentation.png);
}
.p1
.ico-presentation {
  background-image: url(../../img/icones/ico_presentation_p1.svg);
}
.no-svg .p1
.ico-presentation {
  background-image: url(../../img/icones/png/ico_presentation_p1.png);
}
.p2
.ico-presentation {
  background-image: url(../../img/icones/ico_presentation_p2.svg);
}
.no-svg .p2
.ico-presentation {
  background-image: url(../../img/icones/png/ico_presentation_p2.png);
}
.p3
.ico-presentation {
  background-image: url(../../img/icones/ico_presentation_p3.svg);
}
.no-svg .p3
.ico-presentation {
  background-image: url(../../img/icones/png/ico_presentation_p3.png);
}

.ico-question {
  background-image: url(../../img/icones/ico_question.svg);
}
.no-svg
.ico-question {
  background-image: url(../../img/icones/png/ico_question.png);
}
.p1
.ico-question {
  background-image: url(../../img/icones/ico_question_p1.svg);
}
.no-svg .p1
.ico-question {
  background-image: url(../../img/icones/png/ico_question_p1.png);
}
.p2
.ico-question {
  background-image: url(../../img/icones/ico_question_p2.svg);
}
.no-svg .p2
.ico-question {
  background-image: url(../../img/icones/png/ico_question_p2.png);
}
.p3
.ico-question {
  background-image: url(../../img/icones/ico_question_p3.svg);
}
.no-svg .p3
.ico-question {
  background-image: url(../../img/icones/png/ico_question_p3.png);
}

.ico-rappel {
  background-image: url(../../img/icones/ico_rappel.svg);
}
.no-svg
.ico-rappel {
  background-image: url(../../img/icones/png/ico_rappel.png);
}
.p1
.ico-rappel {
  background-image: url(../../img/icones/ico_rappel_p1.svg);
}
.no-svg .p1
.ico-rappel {
  background-image: url(../../img/icones/png/ico_rappel_p1.png);
}
.p2
.ico-rappel {
  background-image: url(../../img/icones/ico_rappel_p2.svg);
}
.no-svg .p2
.ico-rappel {
  background-image: url(../../img/icones/png/ico_rappel_p2.png);
}
.p3
.ico-rappel {
  background-image: url(../../img/icones/ico_rappel_p3.svg);
}
.no-svg .p3
.ico-rappel {
  background-image: url(../../img/icones/png/ico_rappel_p3.png);
}

.ico-remise {
  background-image: url(../../img/icones/ico_remise.svg);
}
.no-svg
.ico-remise {
  background-image: url(../../img/icones/png/ico_remise.png);
}
.p1
.ico-remise {
  background-image: url(../../img/icones/ico_remise_p1.svg);
}
.no-svg .p1
.ico-remise {
  background-image: url(../../img/icones/png/ico_remise_p1.png);
}
.p2
.ico-remise {
  background-image: url(../../img/icones/ico_remise_p2.svg);
}
.no-svg .p2
.ico-remise {
  background-image: url(../../img/icones/png/ico_remise_p2.png);
}
.p3
.ico-remise {
  background-image: url(../../img/icones/ico_remise_p3.svg);
}
.no-svg .p3
.ico-remise {
  background-image: url(../../img/icones/png/ico_remise_p3.png);
}

.ico-remue {
  background-image: url(../../img/icones/ico_remue.svg);
}
.no-svg
.ico-remue {
  background-image: url(../../img/icones/png/ico_remue.png);
}
.p1
.ico-remue {
  background-image: url(../../img/icones/ico_remue_p1.svg);
}
.no-svg .p1
.ico-remue {
  background-image: url(../../img/icones/png/ico_remue_p1.png);
}
.p2
.ico-remue {
  background-image: url(../../img/icones/ico_remue_p2.svg);
}
.no-svg .p2
.ico-remue {
  background-image: url(../../img/icones/png/ico_remue_p2.png);
}
.p3
.ico-remue {
  background-image: url(../../img/icones/ico_remue_p3.svg);
}
.no-svg .p3
.ico-remue {
  background-image: url(../../img/icones/png/ico_remue_p3.png);
}

.ico-synthese-textuelle {
  background-image: url(../../img/icones/ico_synthese-textuelle.svg);
}
.no-svg
.ico-synthese-textuelle {
  background-image: url(../../img/icones/png/ico_synthese-textuelle.png);
}
.p1
.ico-synthese-textuelle {
  background-image: url(../../img/icones/ico_synthese-textuelle_p1.svg);
}
.no-svg .p1
.ico-synthese-textuelle {
  background-image: url(../../img/icones/png/ico_synthese-textuelle_p1.png);
}
.p2
.ico-synthese-textuelle {
  background-image: url(../../img/icones/ico_synthese-textuelle_p2.svg);
}
.no-svg .p2
.ico-synthese-textuelle {
  background-image: url(../../img/icones/png/ico_synthese-textuelle_p2.png);
}
.p3
.ico-synthese-textuelle {
  background-image: url(../../img/icones/ico_synthese-textuelle_p3.svg);
}
.no-svg .p3
.ico-synthese-textuelle {
  background-image: url(../../img/icones/png/ico_synthese-textuelle_p3.png);
}

.ico-synthese-schematique {
  background-image: url(../../img/icones/ico_synthese-schematique.svg);
}
.no-svg
.ico-synthese-schematique {
  background-image: url(../../img/icones/png/ico_synthese-schematique.png);
}
.p1
.ico-synthese-schematique {
  background-image: url(../../img/icones/ico_synthese-schematique_p1.svg);
}
.no-svg .p1
.ico-synthese-schematique {
  background-image: url(../../img/icones/png/ico_synthese-schematique_p1.png);
}
.p2
.ico-synthese-schematique {
  background-image: url(../../img/icones/ico_synthese-schematique_p2.svg);
}
.no-svg .p2
.ico-synthese-schematique {
  background-image: url(../../img/icones/png/ico_synthese-schematique_p2.png);
}
.p3
.ico-synthese-schematique {
  background-image: url(../../img/icones/ico_synthese-schematique_p3.svg);
}
.no-svg .p3
.ico-synthese-schematique {
  background-image: url(../../img/icones/png/ico_synthese-schematique_p3.png);
}

.ico-video {
  background-image: url(../../img/icones/ico_video.svg);
}
.no-svg
.ico-video {
  background-image: url(../../img/icones/png/ico_video.png);
}
.p1
.ico-video {
  background-image: url(../../img/icones/ico_video_p1.svg);
}
.no-svg .p1
.ico-video {
  background-image: url(../../img/icones/png/ico_video_p1.png);
}
.p2
.ico-video {
  background-image: url(../../img/icones/ico_video_p2.svg);
}
.no-svg .p2
.ico-video {
  background-image: url(../../img/icones/png/ico_video_p2.png);
}
.p3
.ico-video {
  background-image: url(../../img/icones/ico_video_p3.svg);
}
.no-svg .p3
.ico-video {
  background-image: url(../../img/icones/png/ico_video_p3.png);
}

.ico-echange {
  background-image: url(../../img/icones/ico_echange.svg);
}
.no-svg
.ico-echange {
  background-image: url(../../img/icones/png/ico_echange.png);
}

#navPageForm ul li.itemPrec a::before,
.ico-fleche-gauche {
  background-image: url(../../img/icones/ico_fleche-gauche.svg);
}
.no-svg #navPageForm ul li.itemPrec a::before, #navPageForm ul li.itemPrec .no-svg a::before, .no-svg
.ico-fleche-gauche {
  background-image: url(../../img/icones/png/ico_fleche-gauche.png);
}

#navPageForm ul li.itemSuiv a::before,
.ico-fleche-droite {
  background-image: url(../../img/icones/ico_fleche-droite.svg);
}
.no-svg #navPageForm ul li.itemSuiv a::before, #navPageForm ul li.itemSuiv .no-svg a::before, .no-svg
.ico-fleche-droite {
  background-image: url(../../img/icones/png/ico_fleche-droite.png);
}

.ico-fleche-droite-mini {
  background-image: url(../../img/icones/ico_fleche-droite-mini.svg);
}
.no-svg
.ico-fleche-droite-mini {
  background-image: url(../../img/icones/png/ico_fleche-droite-mini.png);
}

.ico-objectif-evalue {
  background-image: url(../../img/icones/ico_objectif-evalue.svg);
}
.no-svg
.ico-objectif-evalue {
  background-image: url(../../img/icones/png/ico_objectif-evalue.png);
}

.ico-anne {
  background-image: url(../../img/icones/persona_anne.svg);
}
.no-svg
.ico-anne {
  background-image: url(../../img/icones/png/persona_anne.png);
}

.ico-jeanfrancois {
  background-image: url(../../img/icones/persona_jeanfrancois.svg);
}
.no-svg
.ico-jeanfrancois {
  background-image: url(../../img/icones/png/persona_jeanfrancois.png);
}

.ico-sarah {
  background-image: url(../../img/icones/persona_sarah.svg);
}
.no-svg
.ico-sarah {
  background-image: url(../../img/icones/png/persona_sarah.png);
}

.carre {
  background-color: #F0780D;
  border: 1px solid #7d7d7d;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.carre.p1 {
  background-color: #DC1F3D;
}
.carre.p.p1 {
  background-color: #E29FAA;
}
.carre.p2 {
  background-color: #872E5C;
}
.carre.p.p2 {
  background-color: #C994B0;
}
.carre.p3 {
  background-color: #109298;
}
.carre.p.p3 {
  background-color: #7DBBBE;
}

/* ==================================================
 * COMMUN
 * Table des matieres :
 * Base
 * Outils
 * Grille
 * Boutons
 * Recherche
 * ================================================== */
/* ==================================================
 * Base
 * ================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* ::-moz-selection {
  color: #ffffff;
  background: #000000;
}
* ::selection {
  color: #ffffff;
  background: #000000;
}
*:before, *:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 300;
  background-color: white;
  color: #4d4d4d;
  /* jPushMenu */
}
body.cbp-spmenu-push {
  position: relative;
  overflow-x: hidden;
  left: 0;
  transition: left 0.5s ease;
}
body.cbp-spmenu-push-toright {
  left: 250px;
}
body::before {
  content: "";
  background: url(../../img/structure/acc_bglignes.svg) left top no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 740px;
  padding-top: 63%;
  position: absolute;
  top: 87px;
  left: 0;
  z-index: -1;
}
.no-svg body::before {
  background-image: url(../../img/structure/acc_bglignes.png);
}
@media screen and (min-width: 992px) {
  body::before {
    width: 91.66667%;
    padding-left: 0;
    padding-right: 0;
    background-size: 740px 466px;
    left: 50%;
    max-width: 1288px;
    transform: translateX(-50%);
  }
}
body.p1::before {
  background-image: url(../../img/structure/p1_bglignes.svg);
}
.no-svg body.p1::before {
  background-image: url(../../img/structure/p1_bglignes.png);
}
body.p2::before {
  background-image: url(../../img/structure/p2_bglignes.svg);
}
.no-svg body.p2::before {
  background-image: url(../../img/structure/p2_bglignes.png);
}
body.p3::before {
  background-image: url(../../img/structure/p3_bglignes.svg);
}
.no-svg body.p3::before {
  background-image: url(../../img/structure/p3_bglignes.png);
}

a {
  color: #F0780D;
}
a:hover, a:focus {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

input, textarea {
  padding: 5px;
  border: none;
  border-radius: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 480px) {
  body.cbp-spmenu-push-toright {
    left: 400px;
  }
}
@media screen and (min-width: 850px) {
  body.cbp-spmenu-push-toright {
    left: 0;
  }

  #wrapper {
    min-height: 100% !important;
  }
}
/* ==================================================
 * Outils
 * ================================================== */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

.visuallyHidden, .visuallyhidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}
.visuallyHidden.focusable:active, .visuallyHidden.focusable:focus, .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  position: static;
  clip: auto;
  width: auto !important;
  height: auto;
  overflow: visible;
  white-space: normal;
}

.imgReplaceText {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  text-indent: -9999px;
}
.imgReplaceText:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

.invisible {
  visibility: hidden;
}

.alignGauche {
  text-align: left;
}

.alignCentre {
  text-align: center;
}

.alignDroite {
  text-align: right;
}

.alignPosCentre {
  margin-left: auto;
  margin-right: auto;
}

.alignPosGauche {
  float: left;
  width: auto;
}

.alignPosDroite {
  float: right;
  width: auto;
}

.lgDemi {
  width: 50%;
}

.print {
  display: none !important;
  visibility: hidden;
}

/* ==================================================
 * Grille
 * ================================================== */
.container {
  min-width: 320px;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  height: 100%;
  *zoom: 1;
}
.row:before, .row:after {
  display: table;
  content: "";
}
.row:after {
  clear: both;
}

.col {
  height: 100%;
  min-height: 1px;
  float: left;
  background-clip: padding-box !important;
  border: 0px solid transparent;
  box-sizing: border-box;
  zoom: 1;
}
.col.merge1 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge2 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge3 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge4 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge5 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge6 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge7 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge8 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge9 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge10 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge11 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.merge12 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.col.col-right {
  float: right;
}

#grille {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#grille .container, #grille .row, #grille .col {
  height: 100%;
}
#grille .col {
  background-color: #d9d9d9;
  background-color: rgba(0, 0, 0, 0.15);
}
#grille .col.merge1 {
  width: 8.33333%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset1 {
  margin-left: 8.33333%;
}
#grille .col.merge2 {
  width: 16.66667%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset2 {
  margin-left: 16.66667%;
}
#grille .col.merge3 {
  width: 25%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset3 {
  margin-left: 25%;
}
#grille .col.merge4 {
  width: 33.33333%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset4 {
  margin-left: 33.33333%;
}
#grille .col.merge5 {
  width: 41.66667%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset5 {
  margin-left: 41.66667%;
}
#grille .col.merge6 {
  width: 50%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset6 {
  margin-left: 50%;
}
#grille .col.merge7 {
  width: 58.33333%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset7 {
  margin-left: 58.33333%;
}
#grille .col.merge8 {
  width: 66.66667%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset8 {
  margin-left: 66.66667%;
}
#grille .col.merge9 {
  width: 75%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset9 {
  margin-left: 75%;
}
#grille .col.merge10 {
  width: 83.33333%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset10 {
  margin-left: 83.33333%;
}
#grille .col.merge11 {
  width: 91.66667%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset11 {
  margin-left: 91.66667%;
}
#grille .col.merge12 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#grille .col.offset12 {
  margin-left: 100%;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 768px) {
  .col.merge1 {
    width: 8.33333%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset1 {
    margin-left: 8.33333%;
  }
  .col.merge2 {
    width: 16.66667%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset2 {
    margin-left: 16.66667%;
  }
  .col.merge3 {
    width: 25%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset3 {
    margin-left: 25%;
  }
  .col.merge4 {
    width: 33.33333%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset4 {
    margin-left: 33.33333%;
  }
  .col.merge5 {
    width: 41.66667%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset5 {
    margin-left: 41.66667%;
  }
  .col.merge6 {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset6 {
    margin-left: 50%;
  }
  .col.merge7 {
    width: 58.33333%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset7 {
    margin-left: 58.33333%;
  }
  .col.merge8 {
    width: 66.66667%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset8 {
    margin-left: 66.66667%;
  }
  .col.merge9 {
    width: 75%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset9 {
    margin-left: 75%;
  }
  .col.merge10 {
    width: 83.33333%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset10 {
    margin-left: 83.33333%;
  }
  .col.merge11 {
    width: 91.66667%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset11 {
    margin-left: 91.66667%;
  }
  .col.merge12 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .col.offset12 {
    margin-left: 100%;
  }
}
/* ==================================================
 * Boutons
 * ================================================== */
.bouton, #contenu .comment-form .submit {
  display: inline-block;
  padding: 8px 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
  background-color: #F0780D;
  color: #ffffff !important;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  line-height: 1.8rem;
}
.p1 .bouton, .p1 #contenu .comment-form .submit, #contenu .comment-form .p1 .submit {
  background-color: #DC1F3D;
}
.p2 .bouton, .p2 #contenu .comment-form .submit, #contenu .comment-form .p2 .submit {
  background-color: #872E5C;
}
.p3 .bouton, .p3 #contenu .comment-form .submit, #contenu .comment-form .p3 .submit {
  background-color: #109298;
}
.bouton:hover, #contenu .comment-form .submit:hover, .bouton:focus, #contenu .comment-form .submit:focus {
  background-color: #d86c0c;
}
.p1 .bouton:hover, .p1 #contenu .comment-form .submit:hover, #contenu .comment-form .p1 .submit:hover, .p1 .bouton:focus, .p1 #contenu .comment-form .submit:focus, #contenu .comment-form .p1 .submit:focus {
  background-color: #c61c37;
}
.p2 .bouton:hover, .p2 #contenu .comment-form .submit:hover, #contenu .comment-form .p2 .submit:hover, .p2 .bouton:focus, .p2 #contenu .comment-form .submit:focus, #contenu .comment-form .p2 .submit:focus {
  background-color: #74284f;
}
.p3 .bouton:hover, .p3 #contenu .comment-form .submit:hover, #contenu .comment-form .p3 .submit:hover, .p3 .bouton:focus, .p3 #contenu .comment-form .submit:focus, #contenu .comment-form .p3 .submit:focus {
  background-color: #0e7c81;
}

.zone-teluq {
  background-color: #333333;
  text-align: right;
  padding: 3px 0;
}
.zone-teluq .logo-teluq {
  background: url(../../img/logo-teluq.svg) center center no-repeat;
  background-size: contain;
  display: inline-block;
  width: 246px;
  height: 40px;
}
.no-svg .zone-teluq .logo-teluq {
  background-image: url(../../img/logo-teluq.png);
}

/* ==================================================
 * HEADER
 * Table des matieres :
 * Base
 * Zone utilisateur
 * Zone identitaire
 * BodyFilter et autres
 * ================================================== */
/* ==================================================
 * Base
 * ================================================== */
#header {
  position: relative;
  z-index: 2000;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 992px) {
  #header .merge12 {
    width: 91.66667%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 4.16667%;
  }
}
/* ==================================================
 * Zone utilisateur
 * ================================================== */
#zoneUtilisateur {
  display: block;
  min-height: 35px;
  background-color: #3b3b3b;
  z-index: 3;
}
#zoneUtilisateur * {
  color: #ffffff;
}
#zoneUtilisateur p {
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 35px;
  line-height: 3.5rem;
}
#zoneUtilisateur p a:hover {
  text-decoration: none;
}

/* ==================================================
 * Zone identitaire
 * ================================================== */
#zoneIdentitaire {
  padding: 15px 0 15px 0;
  z-index: 2;
}
#zoneIdentitaire a {
  text-decoration: none;
}

/* Logo ------------------------------------------ */
#logo {
  display: block;
  margin: 0 0 0 auto;
  background-image: url("https://www.teluq.ca/logo_teluq/logo_teluq_nb_xs.svg");
  background-size: 40px auto;
  background-repeat: no-repeat;
  width: 40px;
  height: 43.47826px;
}
.no-svg #logo {
  background-image: url("https://www.teluq.ca/logo_teluq/logo_teluq_nb_xs.png");
}

.no-backgroundsize #logo {
  width: 46px;
  height: 50px;
}

/* Sigle et titre du cours ----------------------- */
#zoneInfosLogo {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate;
  /*&:before
   * content: ""
   * display: block
   * position: absolute
   * top: -15px
   * left: -25px
   * width: 100%
   * padding-top: 60%
   * max-width: 800px
   * z-index: -1
   * background: url(../../img/structure/acc_bglignes.svg) no-repeat 0 0 // Image par défaut
   * background-size: 100% auto */
}

#grpInfoCours, #grpLogo {
  display: table-cell;
  vertical-align: top;
}

#grpInfoCours {
  background-clip: padding-box;
  border-right: 20px solid transparent;
}

#grpLogo {
  width: 40px;
}

.sigleCours {
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #F0780D;
}
.p1 .sigleCours {
  color: #DC1F3D;
}
.p2 .sigleCours {
  color: #872E5C;
}
.p3 .sigleCours {
  color: #109298;
}

#titreCours {
  width: 100%;
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-weight: 600;
  color: #000000;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 768px) {
  #zoneIdentitaire {
    padding-bottom: 0;
  }

  #grpLogo {
    width: 126px;
  }

  #logo {
    background-image: url("https://www.teluq.ca/logo_teluq/logo_teluq_nb.svg");
    background-size: 126px auto;
    width: 126px;
    height: 43.79268px;
  }
  .no-svg #logo {
    background-image: url("https://www.teluq.ca/logo_teluq/logo_teluq_nb.png");
  }

  .no-backgroundsize #logo {
    width: 164px;
    height: 89px;
  }

  #titreCours {
    margin-bottom: 20px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 40px;
    line-height: 4rem;
  }
}
/* ==================================================
 * BodyFilter et autre
 * ================================================== */
/* Body filter ----------------------------------- */
.bodyFilter {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.cbp-spmenu-push-toright .bodyFilter {
  display: block;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 850px) {
  .cbp-spmenu-push-toright .bodyFilter {
    display: none;
  }
}
/* ==================================================
 * MENU PRINCIPAL
 * 2 types de menu :
 ** header
 ** sidebar
 ** Choisir un des 2, mettre en commentaire l'autre
 ** ou bien effacer
 * Table des matieres :
 * Base
 * Elements communs (des 2 types)
 * Menu header
 * Menu sidebar
 * ================================================== */
/* ==================================================
 * Base
 * ================================================== */
#zoneMenu {
  height: 48px;
  background-color: #3b3b3b;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 850px) {
  #zoneMenu {
    border-top: 1px solid black;
    position: relative;
    height: auto;
    background-color: transparent;
    padding: 0;
  }
  .adm6010-blogue #zoneMenu {
    border-bottom: 1px solid black;
  }
}
@media screen and (min-width: 992px) {
  #zoneMenu .merge12 {
    width: 91.66667%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 4.16667%;
  }
}
/* ==================================================
 * Elements communs (des 2 types)
 * ================================================== */
.toggle-menu {
  display: block;
  float: left;
  height: 19px;
  width: 19px;
  padding: 0;
  background: transparent;
  border: none;
  -webkit-transition: translate(0, 13px);
  -moz-transition: translate(0, 13px);
  transform: translate(0, 13px);
}
.toggle-menu > span {
  display: block;
  height: 19px;
  width: 19px;
  vertical-align: middle;
  background: url("../../img/icones/ico_menu_ouvrir.svg") center center;
  overflow: hidden;
}
.no-svg .toggle-menu > span {
  background-image: url("../../img/icones/png/ico_menu_ouvrir.png");
}

/* jPushMenu */
.cbp-spmenu {
  position: absolute;
  min-height: auto;
  background-color: #1c1c1c;
}
.cbp-spmenu .container {
  min-width: auto;
}
.cbp-spmenu .toggle-menu {
  float: right;
  margin: 2px 20px 0 0;
}
.cbp-spmenu .toggle-menu > span {
  background-image: url("../../img/icones/ico_menu_fermer.svg");
}
.no-svg .cbp-spmenu .toggle-menu > span {
  background-image: url("../../img/icones/png/ico_menu_fermer.png");
}

.cbp-spmenu-vertical {
  width: 250px;
  height: 100%;
  top: 0;
  z-index: 3000;
}

.cbp-spmenu-left {
  left: -250px;
}

/* Menu principal -------------------------------- */
#menuPrincipal .lstMenuPrincipal {
  padding-top: 47px;
}
#menuPrincipal .lstMenuPrincipal li {
  display: block;
  font-weight: 700;
}
#menuPrincipal .lstMenuPrincipal li a {
  display: inline-block;
  text-decoration: none;
  padding: 8px 0;
  color: #ffffff;
}
#menuPrincipal .lstMenuPrincipal li.active {
  padding-bottom: 6px;
}
#menuPrincipal .lstMenuPrincipal > li {
  padding: 0 20px;
  border-bottom: solid 1px #444;
}
#menuPrincipal .lstMenuPrincipal > li:first-child {
  border-top: solid 1px #444;
}
#menuPrincipal .lstMenuPrincipal > li > a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-size: 1.8rem;
}
#menuPrincipal .lstMenuPrincipal > li .sub .col.merge3 {
  width: 100%;
}
#menuPrincipal .lstMenuPrincipal > li.parent > a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  border: 4px solid transparent;
  border-left: 8px solid #fff;
  border-right: 0;
  height: 0;
  width: 0;
}
#menuPrincipal .lstMenuPrincipal > li.parent.active > a:after {
  border: 4px solid transparent;
  border-top: 8px solid #fff;
  border-bottom: 0;
  height: 0;
  width: 0;
}
#menuPrincipal .lstMenuPrincipal .sub ul {
  padding-left: 0;
  padding-right: 0;
}
#menuPrincipal .lstMenuPrincipal .sub ul li a {
  font-size: 16px;
  font-size: 1.6rem;
}
#menuPrincipal .lstMenuPrincipal .sub ul li:not(.parent).itemActif a {
  text-decoration: underline;
}
#menuPrincipal .lstMenuPrincipal .sub ul li:not(.parent) a:hover {
  text-decoration: underline;
}
#menuPrincipal .lstMenuPrincipal .sub ul li.parent > a {
  position: relative;
  font-weight: 500;
}
#menuPrincipal .lstMenuPrincipal .sub ul li.parent.type_label:not(.toggler) > a {
  cursor: default;
}
#menuPrincipal .lstMenuPrincipal .sub ul li.toggler a {
  width: 100%;
  padding-right: 16px;
}
#menuPrincipal .lstMenuPrincipal .sub ul li.toggler > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 46%;
  right: 0;
  background: url(../../img/icones/ico_menu_fleche_niv2.svg) top left no-repeat;
  width: 10px;
  height: 5px;
}
.no-svg #menuPrincipal .lstMenuPrincipal .sub ul li.toggler > a:after {
  background-image: url(../../img/icones/png/ico_menu_fleche_niv2.png);
}
#menuPrincipal .lstMenuPrincipal .sub ul li.toggler.active > a:after {
  transform: rotate(180deg);
}
#menuPrincipal .lstMenuPrincipal .sub ul li ul li {
  margin-left: 0px;
}
#menuPrincipal .lstMenuPrincipal .sub ul li ul li a {
  font-size: 14px;
  font-size: 1.4rem;
}
#menuPrincipal .lstMenuPrincipal .sub ul li .sousSub .container {
  padding-left: 15px;
}
#menuPrincipal .lstMenuPrincipal .sub ul li .sousSub ul {
  padding-left: 0;
  padding-right: 0;
}
#menuPrincipal .lstMenuPrincipal .sub ul li .sousSub ul > li {
  list-style: none;
}
#menuPrincipal .lstMenuPrincipal .sub ul li .sousSub ul > li > a {
  position: relative;
  padding-left: 12px;
}
#menuPrincipal .lstMenuPrincipal .sub ul li .sousSub ul > li > a:before {
  content: "-";
  position: absolute;
  left: 0;
  font-size: 15px;
  font-size: 1.5rem;
  color: white;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 480px) {
  .cbp-spmenu-vertical {
    width: 400px;
  }

  .cbp-spmenu-left {
    left: -400px;
  }

  #menuPrincipal .lstMenuPrincipal {
    padding-top: 52px;
  }
}
@media screen and (min-width: 850px) {
  .toggle-menu {
    display: none;
  }

  .cbp-spmenu {
    display: block !important;
    min-height: auto !important;
    position: static;
    background-color: transparent;
  }
  .cbp-spmenu .container {
    padding: 0;
  }
  .cbp-spmenu .toggle-menu {
    margin-top: 12px;
  }
  .cbp-spmenu .merge12 {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cbp-spmenu-vertical {
    width: auto;
  }

  #menuPrincipal .lstMenuPrincipal li a {
    color: #333333;
  }
}
/* ==================================================
 * Menu Header
 * Styles uniquement pour le menu du haut.
 * Veuillez les effacer si celui-ci n'est pas utilisé.
 * ================================================== */
/* Media Queries---------------------------------- */
@media screen and (min-width: 850px) {
  body[data-typemenu="header"] #menuPrincipal {
    margin-top: 0px;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 0;
    width: 100%;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal li a {
    padding: 5px 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal li.active {
    padding-bottom: 0;
  }
  .ie9 body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li {
    display: table-cell;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li {
    display: flex;
    padding: 0;
    border-bottom: none;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li:first-child {
    border-top: none;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li > a {
    color: #F0780D;
    position: relative;
    padding: 14px 10px;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li > a:first-child {
    margin-left: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    height: 6px;
    width: 0;
    background-color: #f6a841;
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.parent {
    position: relative;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.parent > a:after {
    content: none;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li:hover > a, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li:focus > a, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.active > a, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.itemActif > a, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.itemActif:hover > a {
    background-color: #F0780D;
    color: white;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.colonnes .sub .col.merge3 {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .ie9 body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.colonnes .sub .col > li {
    display: table-cell;
    padding-right: 10px;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 7px 20px;
    background: rgba(28, 28, 28, 0.8);
    min-width: 180px;
    z-index: 1;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub.invert {
    left: auto;
    right: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub .col.merge3 {
    width: 100%;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul {
    padding-left: 0;
    padding-right: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 20px;
    line-height: 2rem;
    color: white;
    font-weight: 500;
    padding: 5px 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li a:before {
    left: -10px;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li ul li a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
    font-weight: 500;
    padding-right: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li.section {
    margin-right: 20px;
  }
}
@media screen and (min-width: 850px) and (min-width: 992px) {
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li.section {
    margin-right: 40px;
  }
}
@media screen and (min-width: 850px) and (min-width: 1200px) {
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li.section {
    margin-right: 60px;
  }
}
@media screen and (min-width: 850px) {
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li.section:last-child {
    margin-right: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li.toggler a {
    display: block;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li.toggler > a {
    cursor: default;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li.toggler > a:after {
    content: none;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub .sousSub {
    position: static;
    clip: auto;
    width: auto !important;
    height: auto;
    overflow: visible;
    white-space: normal;
    transition: none;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub .sousSub .container {
    padding-left: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub .sousSub ul li {
    display: block;
  }
  body[data-typemenu="header"].p1 #menuPrincipal .lstMenuPrincipal > li > a {
    color: #DC1F3D;
  }
  body[data-typemenu="header"].p1 #menuPrincipal .lstMenuPrincipal > li:hover > a, body[data-typemenu="header"].p1 #menuPrincipal .lstMenuPrincipal > li:focus > a, body[data-typemenu="header"].p1 #menuPrincipal .lstMenuPrincipal > li.active > a, body[data-typemenu="header"].p1 #menuPrincipal .lstMenuPrincipal > li.itemActif > a, body[data-typemenu="header"].p1 #menuPrincipal .lstMenuPrincipal > li.itemActif:hover > a {
    background-color: #DC1F3D;
    color: white;
  }
  body[data-typemenu="header"].p2 #menuPrincipal .lstMenuPrincipal > li > a {
    color: #872E5C;
  }
  body[data-typemenu="header"].p2 #menuPrincipal .lstMenuPrincipal > li:hover > a, body[data-typemenu="header"].p2 #menuPrincipal .lstMenuPrincipal > li:focus > a, body[data-typemenu="header"].p2 #menuPrincipal .lstMenuPrincipal > li.active > a, body[data-typemenu="header"].p2 #menuPrincipal .lstMenuPrincipal > li.itemActif > a, body[data-typemenu="header"].p2 #menuPrincipal .lstMenuPrincipal > li.itemActif:hover > a {
    background-color: #872E5C;
    color: white;
  }
  body[data-typemenu="header"].p3 #menuPrincipal .lstMenuPrincipal > li > a {
    color: #109298;
  }
  body[data-typemenu="header"].p3 #menuPrincipal .lstMenuPrincipal > li:hover > a, body[data-typemenu="header"].p3 #menuPrincipal .lstMenuPrincipal > li:focus > a, body[data-typemenu="header"].p3 #menuPrincipal .lstMenuPrincipal > li.active > a, body[data-typemenu="header"].p3 #menuPrincipal .lstMenuPrincipal > li.itemActif > a, body[data-typemenu="header"].p3 #menuPrincipal .lstMenuPrincipal > li.itemActif:hover > a {
    background-color: #109298;
    color: white;
  }
}
/* ==================================================
 * FOOTER
 * Table des matieres :
 * Base
 * Menu footer
 * Copyright
 * ================================================== */
/* ==================================================
 * Base
 * ================================================== */
#footer {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
}
#footer .row:first-child {
  margin-left: -20px;
  margin-right: -20px;
}
#footer .dark {
  background-color: #2F2F2F;
  position: relative;
}
#footer .dark .col {
  padding: 35px 20px;
}
#footer .dark * {
  color: #ffffff;
}
#footer #grpInfoCours {
  display: none;
}
#footer #grpInfoCours .sigleCours {
  font-weight: 600;
}
#footer #grpInfoCours a {
  text-decoration: none;
}
#footer #menuFooter {
  *zoom: 1;
}
#footer #menuFooter:before, #footer #menuFooter:after {
  display: table;
  content: "";
}
#footer #menuFooter:after {
  clear: both;
}
#footer #menuFooter ul {
  padding-left: 0;
  list-style: none;
}
#footer #menuFooter ul li {
  margin-bottom: 5px;
}
#footer #menuFooter ul li a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
#footer #menuFooter ul li a:after {
  content: "";
  display: block;
  visibility: visible;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  height: 1px;
}
#footer #menuFooter ul li a:after {
  visibility: hidden;
  width: 0%;
  left: 0;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
#footer #menuFooter ul li a:hover, #footer #menuFooter ul li a:focus {
  color: #ffffff;
}
#footer #menuFooter ul li a:hover:after, #footer #menuFooter ul li a:focus:after {
  visibility: visible;
  width: 100%;
}
#footer #menuFooter ul li.itemActif a, #footer #menuFooter ul li.current-page-item a {
  position: relative;
  color: #ffffff;
}
#footer #menuFooter ul li.itemActif a:after, #footer #menuFooter ul li.current-page-item a:after {
  content: "";
  display: block;
  visibility: visible;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  height: 1px;
}
#footer #copyright {
  color: #3c3c3c;
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
  line-height: 1.7rem;
}
#footer #copyright a {
  color: #F0780D;
}
.p1 #footer #copyright a {
  color: #DC1F3D;
}
.p2 #footer #copyright a {
  color: #872E5C;
}
.p3 #footer #copyright a {
  color: #109298;
}
@media screen and (min-width: 850px) {
  #footer .row:first-child {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  #footer .dark .col {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../../img/structure/acc_bglignes.svg) no-repeat 0 center #2F2F2F;
    background-size: 50% auto;
  }
  .no-svg #footer .dark .col {
    background-image: url(../../img/structure/acc_bglignes.png);
  }
  .p1 #footer .dark .col {
    background-image: url(../../img/structure/p1_bglignes.svg);
  }
  .no-svg .p1 #footer .dark .col {
    background-image: url(../../img/structure/p1_bglignes.png);
  }
  .p2 #footer .dark .col {
    background-image: url(../../img/structure/p2_bglignes.svg);
  }
  .no-svg .p2 #footer .dark .col {
    background-image: url(../../img/structure/p2_bglignes.png);
  }
  .p3 #footer .dark .col {
    background-image: url(../../img/structure/p3_bglignes.svg);
  }
  .no-svg .p3 #footer .dark .col {
    background-image: url(../../img/structure/p3_bglignes.png);
  }
  #footer #grpInfoCours {
    display: inline-block;
    width: 48%;
  }
  .ie9 #footer #grpInfoCours {
    width: 50%;
  }
  #footer #titreCours {
    margin-bottom: 0;
  }
  #footer #menuFooter {
    display: inline-block;
    width: 48%;
  }
  #footer #menuFooter ul {
    column-count: 2;
  }
  #footer .merge12 {
    width: 91.66667%;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: 4.16667%;
  }
}
@media screen and (min-width: 992px) {
  #footer #menuFooter ul {
    column-count: 3;
  }
  .ie9 #footer #menuFooter li {
    display: inline-block;
    width: 30%;
  }
}

/* ==================================================
 * ACCUEIL (SECTIONS)
 * Table des matieres :
 * Sections :
 * zoneMenuAcc
 * zoneContenu
 * zoneRetourHaut
 * ================================================== */
/* ==================================================
 * Section zoneMenuAcc
 * ================================================== */
#zoneMenuAcc {
  padding: 10px 0 40px 0;
  /* Min-width 992px */
}
@media screen and (min-width: 992px) {
  #zoneMenuAcc .merge12 {
    width: 91.66667%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 4.16667%;
  }
}

.menuAccGrille {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box: 1;
  -moz-box: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  /* Min-width 768px */
}
@media screen and (min-width: 850px) {
  .menuAccGrille {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
}

/* Menus zones 1, 2, 3 et 4 */
#menuAcc1, #menuAcc2, #menuAcc3, #menuAcc4 {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box: 1;
  -moz-box: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.ie9 #menuAcc1, .ie9 #menuAcc2, .ie9 #menuAcc3, .ie9 #menuAcc4 {
  display: inline-block;
  vertical-align: top;
}
#menuAcc1 nav, #menuAcc2 nav, #menuAcc3 nav, #menuAcc4 nav {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#menuAcc1 .lstMenuAcc1, #menuAcc2 .lstMenuAcc2, #menuAcc3 .lstMenuAcc3, #menuAcc4 .lstMenuAcc4 {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box: 1;
  -moz-box: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  /* Min-width 768px */
}
#menuAcc1 .lstMenuAcc1 > li, #menuAcc2 .lstMenuAcc2 > li, #menuAcc3 .lstMenuAcc3 > li, #menuAcc4 .lstMenuAcc4 > li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin: 0 0 10px 0;
  padding: 0;
}
#menuAcc1 .lstMenuAcc1 > li > a, #menuAcc2 .lstMenuAcc2 > li > a, #menuAcc3 .lstMenuAcc3 > li > a, #menuAcc4 .lstMenuAcc4 > li > a {
  -webkit-box: 1;
  -moz-box: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 700;
  text-decoration: none;
  background-color: #4B4B4B;
  color: #FFFFFF;
  transition: all 0.2s ease;
  padding: 20px;
}
#menuAcc1 .lstMenuAcc1 > li > a > span, #menuAcc2 .lstMenuAcc2 > li > a > span, #menuAcc3 .lstMenuAcc3 > li > a > span, #menuAcc4 .lstMenuAcc4 > li > a > span {
  color: #FFFFFF;
}
@media screen and (min-width: 850px) {
  #menuAcc1 .lstMenuAcc1 > li, #menuAcc2 .lstMenuAcc2 > li, #menuAcc3 .lstMenuAcc3 > li, #menuAcc4 .lstMenuAcc4 > li {
    margin: 0 0 20px 0;
  }
}
@media screen and (min-width: 992px) {
  #menuAcc1 .lstMenuAcc1 > li > a, #menuAcc2 .lstMenuAcc2 > li > a, #menuAcc3 .lstMenuAcc3 > li > a, #menuAcc4 .lstMenuAcc4 > li > a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}

/* Menu zones 1 et 2 */
#menuAcc1 .lstMenuAcc1, #menuAcc2 .lstMenuAcc2 {
  /* Min-width 768px */
}
#menuAcc1 .lstMenuAcc1 > nav, #menuAcc2 .lstMenuAcc2 > nav {
  width: 100%;
}
#menuAcc1 .lstMenuAcc1 > li, #menuAcc2 .lstMenuAcc2 > li {
  width: 100%;
}
#menuAcc1 .lstMenuAcc1 > li > a, #menuAcc2 .lstMenuAcc2 > li > a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 80px;
  padding: 20px;
}
#menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre {
  text-align: center;
}
#menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre .itemTitre, #menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre .itemDesc, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre .itemTitre, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre .itemDesc {
  display: block;
  color: #FFFFFF;
}
#menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre .itemTitre, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre .itemTitre {
  text-transform: uppercase;
}
#menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre .itemDesc, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre .itemDesc {
  margin: 2px 0 0 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  line-height: 1.8rem;
  font-weight: 600;
}
@media screen and (min-width: 850px) {
  #menuAcc1 .lstMenuAcc1 > li, #menuAcc2 .lstMenuAcc2 > li {
    background-color: rgba(255, 255, 255, 0.8);
  }
  #menuAcc1 .lstMenuAcc1 > li > a, #menuAcc2 .lstMenuAcc2 > li > a {
    display: block;
    padding: 0;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre {
    position: relative;
    min-height: 80px;
    padding: 5px 0 0 0;
    text-align: left;
    color: #7B7B7B;
    z-index: 2;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre .itemTitre, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre .itemTitre {
    color: #F0780D;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre .itemDesc, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre .itemDesc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 16px;
    line-height: 1.6rem;
    color: #7B7B7B;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase > a, #menuAcc2 .lstMenuAcc2 > li.itemEmphase > a {
    border-top: solid 1px #000000;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase > a:before, #menuAcc1 .lstMenuAcc1 > li.itemEmphase > a:after, #menuAcc2 .lstMenuAcc2 > li.itemEmphase > a:before, #menuAcc2 .lstMenuAcc2 > li.itemEmphase > a:after {
    content: "";
    display: block;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100% - 85px);
  }
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase > a:before, #menuAcc2 .lstMenuAcc2 > li.itemEmphase > a:before {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase > a:after, #menuAcc2 .lstMenuAcc2 > li.itemEmphase > a:after {
    z-index: 2;
    transition: all 0.2s ease;
  }
}
@media screen and (min-width: 992px) {
  #menuAcc1 .lstMenuAcc1 > li.itemEmphase .zoneTitre .itemDesc, #menuAcc2 .lstMenuAcc2 > li.itemEmphase .zoneTitre .itemDesc {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}

/* Menu zone 1 */
#menuAcc1 {
  /* Min-width 768px */
}
#menuAcc1 .lstMenuAcc1 > li.itemPres > a {
  background-color: #F0780D;
}
@media screen and (min-width: 850px) {
  #menuAcc1 {
    width: 35%;
    padding-right: 10px;
  }
  #menuAcc1 .lstMenuAcc1 > li > a {
    min-height: 100px;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemPres > a {
    background-color: transparent;
    min-height: 580px;
  }
  #menuAcc1 .lstMenuAcc1 > li.itemPres > a:before {
    background-image: url(../../img/structure/acc_bgpres.jpg);
  }
  #menuAcc1 .lstMenuAcc1 > li.itemPres > a:after {
    background-color: rgba(240, 120, 13, 0.3);
  }
  #menuAcc1 .lstMenuAcc1 > li.itemPres > a:hover:after {
    background-color: rgba(240, 120, 13, 0);
  }
  #menuAcc1 .lstMenuAcc1 > li.itemPres .zoneTitre .itemTitre {
    color: #F0780D;
  }
}

/* Menu zone 2 */
#menuAcc2 {
  /* Min-width 768px */
}
#menuAcc2 > nav {
  width: 100%;
}
#menuAcc2 .lstMenuAcc2 > li.item_p1 > a {
  background-color: #DC1F3D;
}
#menuAcc2 .lstMenuAcc2 > li.item_p2 > a {
  background-color: #872E5C;
}
#menuAcc2 .lstMenuAcc2 > li.item_p3 > a {
  background-color: #109298;
}
@media screen and (min-width: 850px) {
  #menuAcc2 {
    width: 65%;
  }
  .ie9 #menuAcc2 {
    width: 64%;
  }
  #menuAcc2 .lstMenuAcc2 {
    margin-right: -10px;
  }
  #menuAcc2 .lstMenuAcc2 > li {
    width: calc(33.33333333333333% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
  .ie9 #menuAcc2 .lstMenuAcc2 > li {
    display: inline-block;
    vertical-align: top;
    width: 30%;
  }
  #menuAcc2 .lstMenuAcc2 > li > a {
    min-height: 340px;
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p1 > a {
    background-color: transparent;
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p1 > a:before {
    background-image: url(../../img/structure/acc_bgp1.jpg);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p1 > a:after {
    background-color: rgba(220, 31, 61, 0.3);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p1 > a:hover:after {
    background-color: rgba(220, 31, 61, 0);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p1 .zoneTitre .itemTitre {
    color: #DC1F3D;
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p2 > a {
    background-color: transparent;
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p2 > a:before {
    background-image: url(../../img/structure/acc_bgp2.jpg);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p2 > a:after {
    background-color: rgba(135, 46, 92, 0.3);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p2 > a:hover:after {
    background-color: rgba(135, 46, 92, 0);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p2 .zoneTitre .itemTitre {
    color: #872E5C;
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p3 > a {
    background-color: transparent;
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p3 > a:before {
    background-image: url(../../img/structure/acc_bgp3.jpg);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p3 > a:after {
    background-color: rgba(16, 146, 152, 0.3);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p3 > a:hover:after {
    background-color: rgba(16, 146, 152, 0);
  }
  #menuAcc2 .lstMenuAcc2 > li.item_p3 .zoneTitre .itemTitre {
    color: #109298;
  }
}

/* Menu zones 3 et 4 */
#menuAcc3 .lstMenuAcc3 > li > a, #menuAcc4 .lstMenuAcc4 > li > a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 100px;
  text-transform: uppercase;
  text-align: center;
}
#menuAcc3 .lstMenuAcc3 > li > a:hover, #menuAcc4 .lstMenuAcc4 > li > a:hover {
  background-color: #BC5900;
}

/* Menu zone 3 */
#menuAcc3 {
  /* Min-width 768px */
}
#menuAcc3 .lstMenuAcc3 > li {
  padding-left: 5px;
  padding-right: 5px;
}
#menuAcc3 .lstMenuAcc3 > li:nth-child(2n+1) {
  padding-left: 0;
}
#menuAcc3 .lstMenuAcc3 > li:nth-child(2n+0) {
  padding-right: 0;
}
#menuAcc3 .lstMenuAcc3 > li > a {
  min-height: 100px;
}
@media screen and (min-width: 850px) {
  #menuAcc3 {
    width: auto;
    width: calc((2/3 * 100%) + 20px);
  }
  .ie9 #menuAcc3 {
    display: inline-block;
    width: 66.5%;
  }
  #menuAcc3 .lstMenuAcc3 > li {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    padding: 0;
  }
  .ie9 #menuAcc3 .lstMenuAcc3 > li {
    display: inline-block;
    width: 46%;
    margin-right: 7px;
  }
  #menuAcc3 .lstMenuAcc3 > li > a {
    min-height: 100px;
  }
}

/* Menu zone 4 */
#menuAcc4 {
  /* Min-width 768px */
}
#menuAcc4 .lstMenuAcc4 > li {
  width: 100%;
}
@media screen and (min-width: 850px) {
  #menuAcc4 {
    width: 33.33333%;
  }
  .ie9 #menuAcc4 {
    width: 31%;
  }
  #menuAcc4 .lstMenuAcc4 > li {
    margin-left: 10px;
  }
  #menuAcc4 .lstMenuAcc4 > li.itemCommunaute > a {
    flex-direction: column;
  }
  #menuAcc4 .lstMenuAcc4 > li.itemCommunaute > a:before {
    content: "";
    background: url("../../img/icones/ico_communaute_blanc.svg") center center no-repeat;
    background-size: contain;
    display: block;
    width: 48px;
    height: 32px;
    margin: 0 0 8px;
  }
  .no-svg #menuAcc4 .lstMenuAcc4 > li.itemCommunaute > a:before {
    background-image: url("../../img/icones/png/ico_communaute_blanc.png");
  }
  .ie9 #menuAcc4 .lstMenuAcc4 > li.itemCommunaute > a:before {
    content: none;
  }
}

/* ==================================================
 * Section zoneContenu
 * ================================================== */
#zoneContenu #contenu, #zoneContenu #navPageForm {
  /* Min-width 768px
   * Remplacement du comportement par défaut de #contenu */
  /* Min-width 992px */
}
@media screen and (min-width: 768px) {
  #zoneContenu #contenu.merge12, #zoneContenu #navPageForm.merge12 {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: 0%;
  }
}
@media screen and (min-width: 992px) {
  #zoneContenu #contenu.merge12, #zoneContenu #navPageForm.merge12 {
    width: 83.33333%;
    padding-left: 80px;
    padding-right: 80px;
    margin-left: 8.33333%;
  }
}

/* ==================================================
 * NAVPAGE (Navigation précédent/suivant)
 * Table des matieres :
 * General
 * ================================================== */
#contenu #navPageForm ul {
  margin: 0;
}

/* ==================================================
 * General
 * ================================================== */
#navPageForm {
  padding: 0 0 30px 0;
}
#navPageForm ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
#navPageForm ul li {
  margin: 0;
}
#navPageForm ul li a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #4b4b4b;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
}
#navPageForm ul li a::before {
  -webkit-transition: transform 250ms ease-out;
  -moz-transition: transform 250ms ease-out;
  transition: transform 250ms ease-out;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#navPageForm ul li:before {
  display: none !important;
  visibility: hidden;
}
#navPageForm ul li.alignGauche {
  text-align: left;
}
#navPageForm ul li.alignDroite {
  text-align: right;
}
#navPageForm ul li.itemPrec a {
  padding-left: 17px;
}
#navPageForm ul li.itemPrec a:hover::before {
  transform: translateX(-5px);
}
#navPageForm ul li.itemPrec a::before {
  width: 11px;
  height: 16px;
  margin-left: 0;
}
#navPageForm ul li.itemHaut {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}
#navPageForm ul li.itemHaut.focusable:active, #navPageForm ul li.itemHaut.focusable:focus {
  position: static;
  clip: auto;
  width: auto !important;
  height: auto;
  overflow: visible;
  white-space: normal;
}
#navPageForm ul li.itemSuiv a {
  padding-right: 17px;
}
#navPageForm ul li.itemSuiv a:hover::before {
  transform: translateX(5px);
}
#navPageForm ul li.itemSuiv a::before {
  width: 11px;
  height: 16px;
  margin-right: 0;
}

/* ==================================================
 * CONTENU
 * Table des matieres :
 * General
 * Titres
 * Fil d'ariane
 * Tableaux
 * Images et schemas (figure)
 * Listes
 * Boites
 * Panneau d'onglets
 * Accordeons
 * Video/audio JW Player
 * Plan du site
 * Particularités
 * Autodiagnostic
 * ================================================== */
/* ==================================================
 * General
 * ================================================== */
.entete {
  margin: 0 auto;
}
.entete .image {
  background: none;
  margin: 0;
}
.entete .image.accueil .titreSection {
  padding-bottom: 50px;
}
.entete .titreSection {
  background-color: rgba(240, 120, 13, 0.9);
  color: white;
  padding: 50px 20px;
  position: relative;
  text-align: center;
}
.p1 .entete .titreSection {
  background-color: rgba(220, 31, 61, 0.9);
}
.p2 .entete .titreSection {
  background-color: rgba(135, 46, 92, 0.9);
}
.p3 .entete .titreSection {
  background-color: rgba(16, 146, 152, 0.9);
}
.entete .titre {
  margin: 0;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 43px;
  line-height: 4.3rem;
  letter-spacing: 3.6px;
  font-weight: 300;
  text-transform: uppercase;
  color: #FFFFFF;
}
.entete .titre .itemEnfant {
  display: block;
  margin: 5px 0 -25px 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 19px;
  line-height: 1.9rem;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: none;
}
@media screen and (min-width: 480px) {
  .entete .image {
    background-repeat: norepeat;
    background-size: cover;
  }
  .p1 .entete .image {
    background-image: url(../../img/structure/entete_p1.jpg);
  }
  .p2 .entete .image {
    background-image: url(../../img/structure/entete_p2.jpg);
  }
  .p3 .entete .image {
    background-image: url(../../img/structure/entete_p3.jpg);
  }
  .entete .image.avec-image {
    padding-top: 40%;
  }
}
@media screen and (min-width: 768px) {
  .entete .titre .itemEnfant {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 29px;
    line-height: 2.9rem;
  }
}
@media screen and (min-width: 850px) {
  .entete {
    margin: 0 auto;
  }
}

.btnPoursuivre {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 70px;
  height: 35px;
  margin: 0 auto;
  background: url("../../img/icones/ico_navigbas.svg") no-repeat top left;
}
.no-svg .btnPoursuivre {
  background: url("../../img/icones/png/ico_navigbas.png") no-repeat top left;
}
.btnPoursuivre.retourHaut {
  background-image: url("../../img/icones/ico_navighaut.svg");
}
.no-svg .btnPoursuivre.retourHaut {
  background-image: url("../../img/icones/png/ico_navighaut.png");
}

#contenu {
  padding: 50px 0 40px;
}
.adm6010-blogue #contenu {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #d8d8d8;
  margin-top: 60px;
  margin-bottom: 70px;
  padding-left: 20px;
  padding-right: 20px;
}
#contenu:focus {
  outline: none;
}
#contenu p, #contenu ul, #contenu ol {
  margin-bottom: 15px;
}
#contenu .note, #contenu figure figcaption, #contenu .source, #contenu .legende, #contenu .indication {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 400;
  margin: 24px auto;
}
#contenu .source.expChiffre {
  position: relative;
  padding-left: 30px;
}
#contenu .source.rond {
  padding-left: 30px;
  position: relative;
}
#contenu .source.rond > a:first-child {
  position: absolute;
  left: 0;
  margin-left: 0;
}
#contenu .majuscule {
  text-transform: uppercase;
}
#contenu .rond {
  top: -1px;
}
#contenu .rond > a:first-child {
  color: white !important;
  display: inline-block;
  position: relative;
  top: -1px;
  width: 20px;
  margin-left: 3px;
  margin-right: 2px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  z-index: 600;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
}
#contenu .rond > a:first-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #F0780D;
  z-index: -2;
}
#contenu .rond > a:first-child:hover {
  color: white;
}
#contenu .rond > a:first-child:hover::after {
  background-color: #d86c0c;
}
.p1 #contenu .rond > a:first-child::after {
  background-color: #DC1F3D;
}
.p1 #contenu .rond > a:first-child:hover::after {
  background-color: #c61c37;
}
.p2 #contenu .rond > a:first-child::after {
  background-color: #872E5C;
}
.p2 #contenu .rond > a:first-child:hover::after {
  background-color: #74284f;
}
.p3 #contenu .rond > a:first-child::after {
  background-color: #109298;
}
.p3 #contenu .rond > a:first-child:hover::after {
  background-color: #0e7c81;
}
#contenu .rond.symbol {
  top: 6px;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 0px;
  line-height: 0rem;
}
#contenu .rond.symbol:after {
  top: -14px;
}
#contenu blockquote {
  margin-left: 30px;
  font-style: italic;
}
#contenu blockquote .source {
  font-style: normal;
}
#contenu a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  color: #F0780D;
  text-decoration: underline;
}
#contenu a:hover, #contenu a:focus {
  color: #c0600a;
  text-decoration: none;
}
.p1 #contenu a {
  color: #DC1F3D;
}
.p1 #contenu a:hover, .p1 #contenu a:focus {
  color: #af1931;
}
.p2 #contenu a {
  color: #872E5C;
}
.p2 #contenu a:hover, .p2 #contenu a:focus {
  color: #612142;
}
.p3 #contenu a {
  color: #109298;
}
.p3 #contenu a:hover, .p3 #contenu a:focus {
  color: #0b666a;
}
#contenu .manuel {
  *zoom: 1;
}
#contenu .manuel:before, #contenu .manuel:after {
  display: table;
  content: "";
}
#contenu .manuel:after {
  clear: both;
}
#contenu .manuel .couverture {
  float: left;
  width: 150px;
  height: auto;
  margin-right: 20px;
}

/* Animation keyframe */
@-webkit-keyframes skeleton {
  0% {
    background-position: 15% 0%;
  }
  50% {
    background-position: 86% 100%;
  }
  100% {
    background-position: 15% 0%;
  }
}
@-moz-keyframes skeleton {
  0% {
    background-position: 15% 0%;
  }
  50% {
    background-position: 86% 100%;
  }
  100% {
    background-position: 15% 0%;
  }
}
@-o-keyframes skeleton {
  0% {
    background-position: 15% 0%;
  }
  50% {
    background-position: 86% 100%;
  }
  100% {
    background-position: 15% 0%;
  }
}
@keyframes skeleton {
  0% {
    background-position: 15% 0%;
  }
  50% {
    background-position: 86% 100%;
  }
  100% {
    background-position: 15% 0%;
  }
}
/* Media Queries---------------------------------- */
@media screen and (min-width: 992px) {
  #contenu.merge10, .contenu_entete.merge10 {
    width: 66.66667%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 16.66667%;
  }
  #contenu.merge9, .contenu_entete.merge9 {
    width: 58.33333%;
    padding-left: 0;
    padding-right: 0;
  }
  #contenu.merge9.sidebar-right, .contenu_entete.merge9.sidebar-right {
    margin-left: 8.33333%;
  }
}
/* ==================================================
 * Titres
 * ================================================== */
#contenu h1, #contenu h2, #contenu h3 {
  font-family: "Barlow", sans-serif;
}
#contenu h2, #contenu h3, #contenu h4, #contenu h5, #contenu h6, #contenu .interTitre {
  margin: 30px 0 10px 0;
}
#contenu h2.itemEntete, #contenu h3.itemEntete, #contenu h4.itemEntete, #contenu h5.itemEntete, #contenu h6.itemEntete, #contenu .interTitre.itemEntete {
  margin-top: 10px;
}
#contenu h4, #contenu h5, #contenu h6, #contenu .interTitre {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
}
#contenu h1 {
  margin: 0 0 40px 0;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 31px;
  line-height: 3.1rem;
  font-weight: 600;
  color: #000000;
}
#contenu h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 29px;
  line-height: 2.9rem;
  color: #F0780D;
  font-weight: 500;
  margin-bottom: 19px;
}
.p1 #contenu h2 {
  color: #DC1F3D;
}
.p2 #contenu h2 {
  color: #872E5C;
}
.p3 #contenu h2 {
  color: #109298;
}
#contenu h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: #F0780D;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
.p1 #contenu h3 {
  color: #DC1F3D;
}
.p2 #contenu h3 {
  color: #872E5C;
}
.p3 #contenu h3 {
  color: #109298;
}
#contenu h4 {
  font-weight: 500;
}
#contenu h5 {
  font-weight: 300;
}
#contenu h6 {
  font-weight: 300;
}
#contenu .surtitre {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: #F0780D;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}
.p1 #contenu .surtitre {
  color: #DC1F3D;
}
.p2 #contenu .surtitre {
  color: #872E5C;
}
.p3 #contenu .surtitre {
  color: #109298;
}
#contenu .titre-icone {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: #F0780D;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
.p1 #contenu .titre-icone {
  color: #DC1F3D;
}
.p2 #contenu .titre-icone {
  color: #872E5C;
}
.p3 #contenu .titre-icone {
  color: #109298;
}
#contenu .titre-icone [class^="ico-"] {
  width: 1.75em;
  height: 1.75em;
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-4px);
}
#contenu .interTitre {
  display: block;
  font-weight: 500;
  color: #F0780D;
}
.p1 #contenu .interTitre {
  color: #DC1F3D;
}
.p2 #contenu .interTitre {
  color: #872E5C;
}
.p3 #contenu .interTitre {
  color: #109298;
}
@media screen and (min-width: 992px) {
  #contenu h1 {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 38px;
    line-height: 3.8rem;
  }
  #contenu h2 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 31px;
    line-height: 3.1rem;
  }
  #contenu .surtitre {
    font-size: 20px;
    font-size: 2rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

/* ==================================================
 * Fil d'ariane
 * Fonctionne à la fois pour le fil d'ariane maison
 * ou l'extension Breadcrumb NavXT.
 * ================================================== */
#main #filAriane {
  min-height: 50px;
  margin-bottom: 40px;
  padding: 15px 0 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  background-color: #d9e3dc;
  background-color: rgba(217, 227, 220, 0.9);
}
#main #filAriane ul li {
  display: inline-block;
  list-style-type: none;
}
#main #filAriane a {
  text-decoration: underline;
  color: #4d4d4d;
}
#main #filAriane .separator {
  margin: 0 5px;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 768px) {
  #main #filAriane {
    padding: 15px 0 15px 0;
  }
}
@media screen and (min-width: 992px) {
  #main #filAriane {
    margin-bottom: 80px;
  }
  #main #filAriane .merge12 {
    width: 83.33333%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 8.33333%;
  }
}
/* ==================================================
 * Tableaux
 * ================================================== */
/* Tableau par défaut ---------------------------- */
#contenu .tableau {
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#contenu .tableau table {
  width: 100%;
  min-width: 575px;
}
#contenu .tableau caption {
  caption-side: top;
}
#contenu .tableau th, #contenu .tableau td, #contenu .tableau caption {
  padding: 10px;
  vertical-align: top;
}
#contenu .tableau th > *:first-child, #contenu .tableau td > *:first-child, #contenu .tableau caption > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
#contenu .tableau th > *:last-child, #contenu .tableau td > *:last-child, #contenu .tableau caption > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
#contenu .tableau th {
  font-weight: 700;
  text-align: left;
}
#contenu .tableau th.dixieme, #contenu .tableau td.dixieme {
  width: 10%;
}
#contenu .tableau th.quinzieme, #contenu .tableau td.quinzieme {
  width: 15%;
}
#contenu .tableau th.vingtieme, #contenu .tableau td.vingtieme {
  width: 20%;
}
#contenu .tableau th.quart, #contenu .tableau td.quart {
  width: 25%;
}
#contenu .tableau th.trentaine, #contenu .tableau td.trentaine {
  width: 30%;
}
#contenu .tableau th.tier, #contenu .tableau td.tier {
  width: 33.33333%;
}
#contenu .tableau th.quarantaine, #contenu .tableau td.quarantaine {
  width: 40%;
}
#contenu .tableau th.demi, #contenu .tableau td.demi {
  width: 50%;
}
#contenu .tableau th.alignCentre, #contenu .tableau td.alignCentre {
  text-align: center !important;
}
#contenu .tableau tr {
  background-color: rga(0, 0, 0, 0);
}
#contenu .tableau tr.alignCentre th, #contenu .tableau tr.alignCentre td {
  text-align: center;
}
#contenu .tableau.style1 table {
  border-collapse: collapse;
}
#contenu .tableau.style1 tr td {
  background-color: #f2f2f2;
}
#contenu .tableau.style1 tr:nth-of-type(even) td {
  background-color: #fafafa;
}
#contenu .tableau.style1 th {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 2.4rem;
  background-color: #d8d8d8;
  color: #333333;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
}
#contenu .tableau.style1 th, #contenu .tableau.style1 td {
  border-right: 1px solid #d8d8d8;
}
#contenu .tableau.style1 th:last-child, #contenu .tableau.style1 td:last-child {
  border-right: 0;
}
#contenu .tableau.style1 td {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 300;
}
#contenu .tableau.matrice table {
  border-collapse: collapse;
  max-width: 600px;
  margin: 20px auto;
}
#contenu .tableau.matrice tr th {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
#contenu .tableau.matrice tr th:last-child {
  border-right: 1px solid #F0780D;
}
.p1 #contenu .tableau.matrice tr th:last-child {
  border-right-color: #DC1F3D;
}
.p2 #contenu .tableau.matrice tr th:last-child {
  border-right-color: #872E5C;
}
.p3 #contenu .tableau.matrice tr th:last-child {
  border-right-color: #109298;
}
#contenu .tableau.matrice tr td {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  border-right: 1px solid #4b4b4b;
  border-bottom: 1px solid #4b4b4b;
  color: #7b7b7b;
  font-family: "Barlow Semi Condensed", sans-serif;
}
#contenu .tableau.matrice tr td.sans-bordure {
  border: 0;
}
#contenu .tableau.matrice tr:last-child th[scope="row"] {
  border-bottom-color: #F0780D;
}
.p1 #contenu .tableau.matrice tr:last-child th[scope="row"] {
  border-bottom-color: #DC1F3D;
}
.p2 #contenu .tableau.matrice tr:last-child th[scope="row"] {
  border-bottom-color: #872E5C;
}
.p3 #contenu .tableau.matrice tr:last-child th[scope="row"] {
  border-bottom-color: #109298;
}
#contenu .tableau.matrice th {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  background-color: #F0780D;
  color: white;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  padding: 40px 20px;
  vertical-align: middle;
}
#contenu .tableau.matrice th[scope="row"] {
  background-color: #f4933c;
}
.p1 #contenu .tableau.matrice th {
  background-color: #DC1F3D;
}
.p1 #contenu .tableau.matrice th[scope="row"] {
  background-color: #e66a64;
}
.p2 #contenu .tableau.matrice th {
  background-color: #872E5C;
}
.p2 #contenu .tableau.matrice th[scope="row"] {
  background-color: #bb496d;
}
.p3 #contenu .tableau.matrice th {
  background-color: #109298;
}
.p3 #contenu .tableau.matrice th[scope="row"] {
  background-color: #1cacdb;
}
#contenu .tableau.tabGen table {
  font-family: "Barlow", sans-serif;
}
#contenu .tableau.tabGen caption {
  font-weight: 700;
  background-color: #F0780D;
  border-top: solid 1px #F0780D;
}
#contenu .tableau.tabGen tr.itemEnteteSec th, #contenu .tableau.tabGen tr.itemEnteteSec td {
  font-weight: 700;
  background-color: #f0ede6;
}
#contenu .tableau.tabGen tr.itemEmphase th, #contenu .tableau.tabGen tr.itemEmphase td {
  font-weight: 700;
  background-color: #F0780D;
}
#contenu .tableau.tabGen tr.itemSansFond th, #contenu .tableau.tabGen tr.itemSansFond td {
  background: none;
}
#contenu .tableau.tabGen th {
  font-weight: 700;
  border: solid 1px #F0780D;
  color: #F0780D;
}
#contenu .tableau.tabGen td {
  border: solid 1px #F0780D;
}
.p1 #contenu .tableau.tabGen caption {
  background-color: #DC1F3D;
  border-top: solid 1px #DC1F3D;
}
.p1 #contenu .tableau.tabGen tr.itemEmphase th, .p1 #contenu .tableau.tabGen tr.itemEmphase td {
  background-color: #DC1F3D;
}
.p1 #contenu .tableau.tabGen th {
  border-color: #DC1F3D;
  color: #DC1F3D;
}
.p1 #contenu .tableau.tabGen td {
  border-color: #DC1F3D;
}
.p2 #contenu .tableau.tabGen caption {
  background-color: #872E5C;
  border-top: solid 1px #872E5C;
}
.p2 #contenu .tableau.tabGen tr.itemEmphase th, .p2 #contenu .tableau.tabGen tr.itemEmphase td {
  background-color: #872E5C;
}
.p2 #contenu .tableau.tabGen th {
  border-color: #872E5C;
  color: #872E5C;
}
.p2 #contenu .tableau.tabGen td {
  border-color: #872E5C;
}
.p3 #contenu .tableau.tabGen caption {
  background-color: #109298;
  border-top: solid 1px #109298;
}
.p3 #contenu .tableau.tabGen tr.itemEmphase th, .p3 #contenu .tableau.tabGen tr.itemEmphase td {
  background-color: #109298;
}
.p3 #contenu .tableau.tabGen th {
  border-color: #109298;
  color: #109298;
}
.p3 #contenu .tableau.tabGen td {
  border-color: #109298;
}
#contenu .tableau.fdr {
  color: #333333;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 500;
  margin: 30px auto;
}
#contenu .tableau.fdr [class^="ico-"] {
  vertical-align: middle;
}
#contenu .tableau.fdr tr:nth-child(even) td {
  background-color: #f2f2f2;
}
#contenu .tableau.fdr tr th, #contenu .tableau.fdr tr td {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 2.4rem;
  border-left: 2px solid #e5e5e5;
  background-color: #fafafa;
  vertical-align: middle;
}
#contenu .tableau.fdr tr th:first-of-type, #contenu .tableau.fdr tr td:first-of-type {
  border-left: 0;
}
#contenu .tableau.fdr tr td.clear {
  background-color: transparent;
  border-color: transparent;
  border: 0;
}
#contenu .tableau.fdr tr td.evaluation {
  background-color: #4b4b4b;
  border-color: #4b4b4b;
  color: white;
  font-weight: 700;
}
#contenu .tableau.fdr tr td.evaluation + td {
  border-color: #4b4b4b;
}
#contenu .tableau.fdr tr td.etudes {
  background-color: #F0780D;
  border-color: #F0780D;
  color: white;
  font-weight: 700;
}
#contenu .tableau.fdr tr td.etudes + td {
  border-color: #F0780D;
}
#contenu .tableau.fdr tr th {
  background-color: #e8e8e8;
  font-weight: 700;
}
#contenu .tableau.fdr tr th.fonce {
  background-color: #d8d8d8;
  text-transform: uppercase;
}
#contenu .tableau.fdr tr th[scope="col"] {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 24px;
  line-height: 2.4rem;
}
#contenu .tableau.fdr tr th[scope="row"] {
  max-width: 175px;
}
#contenu .tableau.fdr tr.p1 a {
  color: #DC1F3D;
}
#contenu .tableau.fdr tr.p1 th {
  text-align: left;
}
#contenu .tableau.fdr tr.p1 th, #contenu .tableau.fdr tr.p1 td.etudes {
  background-color: #E29FAA;
  border-color: #E29FAA;
  color: white;
}
#contenu .tableau.fdr tr.p1 th + td, #contenu .tableau.fdr tr.p1 td.etudes + td {
  border-color: #E29FAA;
}
#contenu .tableau.fdr tr.p1.fonce th:first-of-type, #contenu .tableau.fdr tr.p1.fonce td.etudes {
  background-color: #DC1F3D;
  border-color: #DC1F3D;
}
#contenu .tableau.fdr tr.p1.fonce th:first-of-type + td, #contenu .tableau.fdr tr.p1.fonce td.etudes + td {
  border-color: #DC1F3D;
}
#contenu .tableau.fdr tr.p2 a {
  color: #872E5C;
}
#contenu .tableau.fdr tr.p2 th {
  text-align: left;
}
#contenu .tableau.fdr tr.p2 th, #contenu .tableau.fdr tr.p2 td.etudes {
  background-color: #C994B0;
  border-color: #C994B0;
  color: white;
}
#contenu .tableau.fdr tr.p2 th + td, #contenu .tableau.fdr tr.p2 td.etudes + td {
  border-color: #C994B0;
}
#contenu .tableau.fdr tr.p2.fonce th:first-of-type, #contenu .tableau.fdr tr.p2.fonce td.etudes {
  background-color: #872E5C;
  border-color: #872E5C;
}
#contenu .tableau.fdr tr.p2.fonce th:first-of-type + td, #contenu .tableau.fdr tr.p2.fonce td.etudes + td {
  border-color: #872E5C;
}
#contenu .tableau.fdr tr.p3 a {
  color: #109298;
}
#contenu .tableau.fdr tr.p3 th {
  text-align: left;
}
#contenu .tableau.fdr tr.p3 th, #contenu .tableau.fdr tr.p3 td.etudes {
  background-color: #7DBBBE;
  border-color: #7DBBBE;
  color: white;
}
#contenu .tableau.fdr tr.p3 th + td, #contenu .tableau.fdr tr.p3 td.etudes + td {
  border-color: #7DBBBE;
}
#contenu .tableau.fdr tr.p3.fonce th:first-of-type, #contenu .tableau.fdr tr.p3.fonce td.etudes {
  background-color: #109298;
  border-color: #109298;
}
#contenu .tableau.fdr tr.p3.fonce th:first-of-type + td, #contenu .tableau.fdr tr.p3.fonce td.etudes + td {
  border-color: #109298;
}

/* Media Queries---------------------------------- */
@media screen and (max-width: 767px) {
  /* Tableau flip ---------------------------------- */
  /* Change la position de l'entete en taille mobile. Si flexbox ne fonctionne pas, le tableau garde ses styles par défaut. */
  .flexbox #contenu .tableau.flip table {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    border-collapse: collapse;
    border-spacing: 0;
    display: flex;
    overflow: hidden;
    background: none;
  }
  .flexbox #contenu .tableau.flip thead {
    display: flex;
    flex-shrink: 0;
    min-width: min-content;
  }
  .flexbox #contenu .tableau.flip tbody {
    display: flex;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .flexbox #contenu .tableau.flip tr {
    display: flex;
    flex-direction: column;
    min-width: min-content;
    flex-shrink: 0;
  }
  .flexbox #contenu .tableau.flip td, .flexbox #contenu .tableau.flip th {
    display: block;
  }
  .flexbox #contenu .tableau.flip th.demi, .flexbox #contenu .tableau.flip th.tier, .flexbox #contenu .tableau.flip th.quart {
    width: auto;
  }
  .flexbox #contenu .tableau.flip td {
    border-left: none !important;
  }
  .flexbox #contenu .tableau.flip td:not(:last-child) {
    border-bottom: none !important;
  }
  .flexbox #contenu .tableau.flip tbody tr:last-child td {
    border-right: none !important;
  }
  .flexbox #contenu .tableau.flip.tabGen {
    border: none;
  }
  .flexbox #contenu .tableau.flip.tabGen tbody {
    border-top: solid 1px #F0780D;
    border-bottom: solid 1px #F0780D;
    border-right: solid 1px #F0780D;
  }
  .p1 .flexbox #contenu .tableau.flip.tabGen tbody {
    border-top: solid 1px #DC1F3D;
    border-bottom: solid 1px #DC1F3D;
    border-right: solid 1px #DC1F3D;
  }
  .p2 .flexbox #contenu .tableau.flip.tabGen tbody {
    border-top: solid 1px #872E5C;
    border-bottom: solid 1px #872E5C;
    border-right: solid 1px #872E5C;
  }
  .p3 .flexbox #contenu .tableau.flip.tabGen tbody {
    border-top: solid 1px #109298;
    border-bottom: solid 1px #109298;
    border-right: solid 1px #109298;
  }
  .flexbox #contenu .tableau.flip.tabGen th:first-child {
    border-left: solid 1px #F0780D;
  }
  .p1 .flexbox #contenu .tableau.flip.tabGen th:first-child {
    border-left: solid 1px #DC1F3D;
  }
  .p2 .flexbox #contenu .tableau.flip.tabGen th:first-child {
    border-left: solid 1px #872E5C;
  }
  .p3 .flexbox #contenu .tableau.flip.tabGen th:first-child {
    border-left: solid 1px #109298;
  }
  .flexbox #contenu .tableau.flip.tabGen td {
    border-right: solid 1px #F0780D;
  }
  .p1 .flexbox #contenu .tableau.flip.tabGen td {
    border-right: solid 1px #DC1F3D;
  }
  .p2 .flexbox #contenu .tableau.flip.tabGen td {
    border-right: solid 1px #872E5C;
  }
  .p3 .flexbox #contenu .tableau.flip.tabGen td {
    border-right: solid 1px #109298;
  }
  .flexbox #contenu .tableau.flip.tabGen td:first-child {
    border-top: none;
  }
  .flexbox #contenu .tableau.flip.tabGen td:last-child {
    border-bottom: none;
  }
}
/* ==================================================
 * Images et schemas (figure)
 * ================================================== */
#contenu img {
  margin-bottom: 15px;
}
#contenu figure {
  margin: 20px 0 20px 0;
}
#contenu figure .interTitre {
  text-align: center;
}
#contenu figure img {
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}
#contenu figure figcaption {
  text-align: center;
}
#contenu figure > :first-child {
  margin-top: 0;
}
#contenu figure > :last-child {
  margin-bottom: 0;
}
#contenu figure.espaceInt {
  padding: 15px;
  background-color: #ffffff;
}
#contenu img.emphase, #contenu figure.emphase {
  border: solid 1px #e6e6e6;
}
#contenu figure.schema {
  padding: 30px;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
}
#contenu img.alignPosGauche, #contenu figure.alignPosGauche {
  float: left;
  margin-right: 30px;
}
#contenu img.alignPosDroite, #contenu figure.alignPosDroite {
  margin-left: 30px;
}
#contenu .schemaGrille {
  text-align: center;
}
#contenu .schemaGrille img {
  display: inline-block;
  margin: 0 0 15px 30px;
}
#contenu .schemaGrille img:first-child {
  margin-left: 0;
}

/* ==================================================
 * Listes
 * ================================================== */
#contenu ul, #contenu ol {
  margin-left: 30px;
}
#contenu ul > li, #contenu ol > li {
  position: relative;
  margin-bottom: 5px;
}
#contenu ul > li:before, #contenu ol > li:before {
  display: block;
  position: absolute;
  top: 0px;
  left: -15px;
}
#contenu ul.sansPuce, #contenu ol.sansPuce {
  margin-left: 0;
  padding-left: 0;
}
#contenu ul.sansPuce > li, #contenu ol.sansPuce > li {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}
#contenu ul.sansPuce > li:before, #contenu ol.sansPuce > li:before {
  display: none;
}
#contenu ul.grandeMarge > li, #contenu ol.grandeMarge > li {
  margin-bottom: 15px;
}
#contenu ul.exGrandeMarge > li, #contenu ol.exGrandeMarge > li {
  margin-bottom: 30px;
}
#contenu ul.section > li:before, #contenu ol.section > li:before {
  display: none;
}
#contenu ul.reference, #contenu ol.reference {
  margin-left: 0;
  padding-left: 0;
}
#contenu ul.reference > li, #contenu ol.reference > li {
  margin-bottom: 0.75em;
}
#contenu ul.reference > li:before, #contenu ol.reference > li:before {
  display: none;
}
#contenu ul > li:before {
  content: "";
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #4d4d4d;
}
#contenu ul > li > ul > li {
  padding-left: 5px;
}
#contenu ul > li > ul > li:before {
  content: "–";
  top: 4px;
  width: auto;
  height: auto;
  line-height: 1;
  border: none;
  background: none;
}
#contenu ol > li {
  padding-left: 5px;
  list-style-type: decimal;
}
#contenu ol.listeBasPage {
  position: relative;
  margin-top: 50px;
  padding-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
}
#contenu ol.listeBasPage:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 5px;
  width: 30%;
  border-top: 1px solid #a4a2a1;
}
#contenu ol.listeEmphase {
  counter-reset: lstEmpItem;
}
#contenu ol.listeEmphase > li {
  list-style-type: none;
  counter-increment: lstEmpItem;
}
#contenu ol.listeEmphase > li:before {
  content: counter(lstEmpItem) ".";
  font-weight: bold;
}
#contenu ol.listeLettre > li {
  list-style-type: lower-alpha;
}
#contenu ol.listeLettre.listeEmphase > li {
  list-style-type: none;
}
#contenu ol.listeLettre.listeEmphase > li:before {
  content: counter(lstEmpItem,lower-alpha) ")";
}
#contenu ul.grandeMarge ul, #contenu ul.grandeMarge ol, #contenu ol.grandeMarge ul, #contenu ol.grandeMarge ol {
  margin-bottom: 15px;
}
#contenu ul.navigation {
  margin-left: 0;
}
#contenu ul.navigation li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: 500;
}
#contenu ul.navigation li a {
  text-decoration: none;
}
#contenu ul.navigation li a:hover {
  text-decoration: underline;
}
#contenu ul.navigation li:before {
  content: none;
}
#contenu ul.equipe strong {
  font-weight: 500;
}
#contenu ul.legende {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  color: #333333;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
  list-style-type: none;
  margin: 20px 0;
}
#contenu ul.legende li {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
}
#contenu ul.legende li:before {
  content: none;
}
#contenu ul.legende [class^="ico-"], #contenu ul.legende .carre {
  margin-right: 10px;
}

/* ==================================================
 * Boites
 * ================================================== */
#contenu .boite {
  position: relative;
  margin: 30px auto;
  padding: 20px;
}
#contenu .boite > :first-child {
  margin-top: 0;
}
#contenu .boite > :last-child {
  margin-bottom: 0;
}
#contenu .boite.icone.sans-titre {
  padding-left: 70px;
}
#contenu .boite.icone.sans-titre [class^="ico-"] {
  width: 35px;
  height: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
}
#contenu .boite.icone.sans-titre.sans-espacement {
  margin: 20px auto;
  padding: 0 0 0 50px;
}
#contenu .boite.icone.sans-titre.sans-espacement [class^="ico-"] {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto auto 0;
}
#contenu .boite .interTitre {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
#contenu .boite .interTitre [class^="ico-"] {
  width: 35px;
  height: 30px;
  vertical-align: middle;
  margin-right: 16px;
  transform: translateY(-0.1em);
}
#contenu .boite.emphase {
  border: solid 1px #F0780D;
}
.p1 #contenu .boite.emphase {
  border-color: #DC1F3D;
}
.p2 #contenu .boite.emphase {
  border-color: #872E5C;
}
.p3 #contenu .boite.emphase {
  border-color: #109298;
}
#contenu .boite.profil {
  padding: 0;
  position: relative;
  min-height: 100px;
}
#contenu .boite.profil .photo {
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  max-width: 100px;
}
#contenu .boite.profil h1 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #contenu .boite.profil {
    padding: 0 0 0 120px;
  }
  #contenu .boite.profil .photo {
    position: absolute;
    top: 0;
    left: 0;
  }
}
#contenu .boiteAlignPos {
  *zoom: 1;
}
#contenu .boiteAlignPos:before, #contenu .boiteAlignPos:after {
  display: table;
  content: "";
}
#contenu .boiteAlignPos:after {
  clear: both;
}
#contenu .boiteAnimVideo, #contenu .animAudioPlaylist {
  margin: 0 0 15px 0;
  line-height: 1;
}

/* ==================================================
 * Panneau d'onglets
 * ================================================== */
#contenu .panneauOnglets {
  position: relative;
  margin: 0 auto 20px auto;
}
#contenu .panneauOnglets .onglets {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  background-color: white;
}
.ie #contenu .panneauOnglets .onglets {
  background-color: #f0f0f0;
}
#contenu .panneauOnglets .onglets li {
  display: none;
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.ie #contenu .panneauOnglets .onglets li {
  display: inline-block;
  width: auto;
}
#contenu .panneauOnglets .onglets li:before {
  content: none;
}
#contenu .panneauOnglets .onglets li a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  background-color: #f0f0f0;
  border-left: 1px solid #F0780D;
  border-bottom: 1px solid #F0780D;
  color: #F0780D;
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  letter-spacing: 0.9px;
  outline: none;
  position: relative;
  padding: 12px 7px 7px;
  text-decoration: none;
  text-transform: uppercase;
}
.p1 #contenu .panneauOnglets .onglets li a {
  border-color: #DC1F3D;
}
.p2 #contenu .panneauOnglets .onglets li a {
  border-color: #872E5C;
}
.p3 #contenu .panneauOnglets .onglets li a {
  border-color: #109298;
}
.p1 #contenu .panneauOnglets .onglets li a {
  color: #DC1F3D;
}
.p2 #contenu .panneauOnglets .onglets li a {
  color: #872E5C;
}
.p3 #contenu .panneauOnglets .onglets li a {
  color: #109298;
}
#contenu .panneauOnglets .onglets li a:hover {
  background-color: #e0e0e0;
}
#contenu .panneauOnglets .onglets li a.desactive {
  cursor: text;
}
#contenu .panneauOnglets .onglets li a.desactive span {
  color: #5a5a5a;
  color: rgba(0, 0, 0, 0.3);
}
#contenu .panneauOnglets .onglets li a.desactive:hover {
  text-decoration: none;
}
.ie #contenu .panneauOnglets .onglets li a {
  border: 0;
}
#contenu .panneauOnglets .onglets li [class^="ico-"] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-3px);
}
#contenu .panneauOnglets .onglets li [class^="ico-"].persona {
  display: block;
  margin: 0 auto 5px;
  width: 60px;
  height: 60px;
}
#contenu .panneauOnglets .onglets li.ui-tabs-active a {
  background-color: white;
  border-bottom-color: white;
}
#contenu .panneauOnglets .onglets li.ui-tabs-active a:hover {
  background-color: white;
}
#contenu .panneauOnglets .onglets li:first-child a {
  border-left: 0;
}

/* Media Queries---------------------------------- */
@media screen and (max-width: 549px) {
  #contenu .panneauOnglets > div {
    display: block !important;
  }
}
@media screen and (min-width: 550px) {
  #contenu .panneauOnglets {
    border: 1px solid #F0780D;
    margin: 30px auto;
  }
  .p1 #contenu .panneauOnglets {
    border-color: #DC1F3D;
  }
  .p2 #contenu .panneauOnglets {
    border-color: #872E5C;
  }
  .p3 #contenu .panneauOnglets {
    border-color: #109298;
  }
  #contenu .panneauOnglets .onglets.main-nav-scrolled {
    position: fixed;
    top: 0;
    z-index: 10;
  }
  #contenu .panneauOnglets .onglets li {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    text-align: center;
  }
  #contenu .panneauOnglets .onglets li:last-child:after {
    content: "";
  }
  #contenu .panneauOnglets > div {
    position: relative;
    padding: 40px 40px 20px;
    z-index: 1;
  }
  #contenu .panneauOnglets > div h1:first-child:not(.visuallyHidden), #contenu .panneauOnglets > div h2:first-child:not(.visuallyHidden), #contenu .panneauOnglets > div h3:first-child:not(.visuallyHidden), #contenu .panneauOnglets > div h4:first-child:not(.visuallyHidden), #contenu .panneauOnglets > div h5:first-child:not(.visuallyHidden), #contenu .panneauOnglets > div h6:first-child:not(.visuallyHidden) {
    margin-top: 0;
  }
  #contenu .panneauOnglets > div > .interTitre:first-child {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
  }
  #contenu .panneauOnglets > div > .interTitre:first-child.focusable:active, #contenu .panneauOnglets > div > .interTitre:first-child.focusable:focus {
    position: static;
    clip: auto;
    width: auto !important;
    height: auto;
    overflow: visible;
    white-space: normal;
  }
  #contenu .panneauOnglets > div > :first-child, #contenu .panneauOnglets > div > .interTitre:first-child + * {
    margin-top: 0;
    padding-top: 0;
  }
  #contenu .panneau > div > *:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  #contenu .panneauOnglets .onglets li a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
  #contenu .panneauOnglets .onglets li [class^="ico-"] {
    width: 30px;
    height: 30px;
  }
  .ie #contenu .panneauOnglets .onglets li a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
  .ie #contenu .panneauOnglets .onglets li [class^="ico-"] {
    width: 18px;
    height: 18px;
  }
}
/* ==================================================
 * Accordeons
 * Icône : 14px x 8px
 * ================================================== */
#contenu .accordeon {
  border: 1px solid #F0780D;
  margin-bottom: 20px;
}
#contenu .accordeon .toggler {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  position: relative;
  margin: 15px 0 0 0;
  margin-bottom: 0;
  padding: 20px 50px 20px 20px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #F0780D;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
#contenu .accordeon .toggler:first-child {
  margin-top: 0;
}
#contenu .accordeon .toggler .icone {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  height: 8px;
  margin: auto;
  padding: 0 14px 0 0;
  line-height: 8px;
  line-height: 0.8rem;
  background: url("../../img/icones/ico_acc.svg") right top no-repeat;
  background-size: 14px 14px;
}
.no-svg #contenu .accordeon .toggler .icone {
  background: url("../../img/icones/png/ico_acc.png") right top no-repeat;
}
#contenu .accordeon .toggler.active {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contenu .accordeon .toggler.active .icone {
  background-position: right -7px;
}
#contenu .accordeon > div {
  padding: 0 20px 20px;
}
#contenu .accordeon > div > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
#contenu .accordeon > div > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.p1 #contenu .accordeon {
  border-color: #DC1F3D;
}
.p1 #contenu .accordeon .toggler {
  color: #DC1F3D;
}
.p1 #contenu .accordeon .toggler .icone {
  background-image: url("../../img/icones/ico_acc_p1.svg");
}
.no-svg .p1 #contenu .accordeon .toggler .icone {
  background-image: url("../../img/icones/png/ico_acc_p1.png");
}
.p2 #contenu .accordeon {
  border-color: #872E5C;
}
.p2 #contenu .accordeon .toggler {
  color: #872E5C;
}
.p2 #contenu .accordeon .toggler .icone {
  background-image: url("../../img/icones/ico_acc_p2.svg");
}
.no-svg .p2 #contenu .accordeon .toggler .icone {
  background-image: url("../../img/icones/png/ico_acc_p2.png");
}
.p3 #contenu .accordeon {
  border-color: #109298;
}
.p3 #contenu .accordeon .toggler {
  color: #109298;
}
.p3 #contenu .accordeon .toggler .icone {
  background-image: url("../../img/icones/ico_acc_p3.svg");
}
.no-svg .p3 #contenu .accordeon .toggler .icone {
  background-image: url("../../img/icones/png/ico_acc_p3.png");
}

/**
 * Captures d'écran (Accueil)
 */
#contenu .capture {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  border: 1px solid #F0780D;
  padding: 20px;
  text-align: center;
}
#contenu .capture.focusable:active, #contenu .capture.focusable:focus {
  position: static;
  clip: auto;
  width: auto !important;
  height: auto;
  overflow: visible;
  white-space: normal;
}
#contenu .capture img {
  margin-bottom: 10px;
}
#contenu .capture figcaption {
  margin: 10px 0 0;
}
#contenu .capture:target {
  position: static;
  clip: auto;
  width: auto !important;
  height: auto;
  overflow: visible;
  white-space: normal;
  position: relative;
}
#contenu .capture:focus {
  outline: none;
}
#contenu .capture-lien:after {
  content: "+";
  background-color: #F0780D;
  border-radius: 50%;
  color: white;
  display: inline-block;
  font-weight: 700;
  width: 1em;
  height: 1em;
  line-height: 0.9;
  margin-left: 0.3em;
  text-align: center;
  transform: translateY(-0.2);
}
#contenu .capture-masquer {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -99em;
}
#contenu .capture-masquer:before, #contenu .capture-masquer:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#contenu .capture-masquer:before {
  content: "";
  background-color: #F0780D;
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
}
#contenu .capture-masquer:after {
  content: "X";
  color: white;
  font-weight: 700;
  text-align: center;
  text-indent: 0;
  line-height: 1;
  width: 1em;
  height: 1em;
}
#contenu .capture-masquer:hover:before {
  background-color: #d86c0c;
}
.ie6 #contenu .capture, .ie7 #contenu .capture, .ie8 #contenu .capture {
  position: static;
  clip: auto;
  width: auto !important;
  height: auto;
  overflow: visible;
  white-space: normal;
}
.ie6 #contenu .capture-masquer, .ie7 #contenu .capture-masquer, .ie8 #contenu .capture-masquer {
  display: none;
}

/* ==================================================
 * Video/audio JW Player
 * ================================================== */
#contenu .animVideoPlaylist ul.jw-rightclick-list li.jw-rightclick-item:before, #contenu .animAudioPlaylist ul.jw-rightclick-list li.jw-rightclick-item:before {
  display: none;
}
#contenu .animVideoPlaylist ul.jw-rightclick-list li.jw-rightclick-item.jw-featured, #contenu .animAudioPlaylist ul.jw-rightclick-list li.jw-rightclick-item.jw-featured {
  display: none;
}
#contenu .animVideoPlaylist ul.jw-rightclick-list li.jw-rightclick-item a, #contenu .animAudioPlaylist ul.jw-rightclick-list li.jw-rightclick-item a {
  color: #fff;
}
#contenu .animVideoPlaylist .interTitre {
  margin-top: 20px;
}
#contenu .animVideoPlaylist figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.23%;
}
#contenu .animVideoPlaylist figure .boiteAnimVideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #b6b6b6, #dadada, #ffffff);
  background-size: 600% 600%;
  -webkit-animation: skeleton 3s infinite, 1;
  -moz-animation: skeleton 3s infinite, 1;
  -o-animation: skeleton 3s infinite, 1;
  animation: skeleton 3s infinite, 1;
}
#contenu .animVideoPlaylist video {
  background-color: #ffffff;
}
#contenu .animVideoPlaylist.visionneuse figure, #contenu .animAudioPlaylist.visionneuse figure {
  margin-bottom: 0;
}
#contenu .animVideoPlaylist.visionneuse ul.listeOnglets, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets {
  width: 100%;
  margin-top: 7px;
  margin-left: 0px;
}
#contenu .animVideoPlaylist.visionneuse ul.listeOnglets li, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li {
  width: 100%;
  padding-right: 0px;
  list-style: none;
  box-sizing: border-box;
}
#contenu .animVideoPlaylist.visionneuse ul.listeOnglets li:before, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li:before {
  content: none;
}
#contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a {
  -webkit-transition: background-color 200ms ease-in-out;
  -moz-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
  border: 1px solid #F0780D;
  color: #F0780D;
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
  font-weight: 300;
}
#contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:active, #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a.active, #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:hover, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:active, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a.active, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:hover {
  background-color: #F0780D;
  color: white;
}
.p1 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a, .p1 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a {
  border-color: #DC1F3D;
  color: #DC1F3D;
}
.p1 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:active, .p1 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a.active, .p1 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:hover, .p1 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:active, .p1 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a.active, .p1 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:hover {
  background-color: #DC1F3D;
  color: white;
}
.p2 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a, .p2 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a {
  border-color: #872E5C;
  color: #872E5C;
}
.p2 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:active, .p2 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a.active, .p2 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:hover, .p2 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:active, .p2 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a.active, .p2 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:hover {
  background-color: #872E5C;
  color: white;
}
.p3 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a, .p3 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a {
  border-color: #109298;
  color: #109298;
}
.p3 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:active, .p3 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a.active, .p3 #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:hover, .p3 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:active, .p3 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a.active, .p3 #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:hover {
  background-color: #109298;
  color: white;
}

#contenu .zone-video {
  position: relative;
  padding: 40px 0;
}
#contenu .zone-video__contenu {
  position: relative;
  z-index: 1;
}
#contenu .zone-video:before {
  content: "";
  background-color: #fafafa;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
#contenu > .zone-video:first-child {
  margin-top: -50px;
  margin-bottom: 60px;
}

/* ==================================================
 * Formulaires Ninja Forms (extension WP)
 * ================================================== */
#contenu .nf-form-title {
  display: none;
}
#contenu .nf-form-fields-required {
  padding: 15px 20px 15px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 300;
  background-color: #e6e6e6;
  border-radius: 10px;
}
#contenu .nf-field-container {
  margin-bottom: 15px;
}
#contenu .nf-field-label {
  margin-bottom: 5px;
}
#contenu .nf-field-label label {
  font-weight: normal;
}
#contenu .nf-field-element ul > li:before, #contenu .nf-field-element ol > li:before {
  display: none;
}
#contenu .nf-field-element textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: solid 1px #9b9b9b;
}
#contenu .submit-container {
  text-align: right;
}
#contenu .submit-container input[type=button] {
  display: inline-block;
  padding: 10px 30px 10px 30px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #CCCCCC;
  border-radius: 4px;
  color: #000000;
  transition: all 0.3s ease;
}
#contenu .submit-container input[type=button]:hover, #contenu .submit-container input[type=button]:focus, #contenu .submit-container input[type=button]:active {
  background-color: #4D4D4D;
  color: #ffffff;
}

/* ==================================================
 * Plan du site
 * ================================================== */
#contenu.planSite h1 {
  margin-bottom: 0px;
}
#contenu.planSite .lstPlanSite ul {
  margin-left: 0;
}
#contenu.planSite .lstPlanSite ul li:before {
  display: none;
}
#contenu.planSite .lstPlanSite ul li .sub {
  margin-top: 15px;
}
#contenu.planSite .lstPlanSite ul li .sub.visuallyHidden {
  position: static;
  width: auto;
  height: auto;
  margin: 0px;
  clip: auto;
  overflow: visible;
}
#contenu.planSite .lstPlanSite ul li.parent > a {
  font-weight: 700;
  text-decoration: none;
  color: #4d4d4d;
  cursor: default;
}
#contenu.planSite .lstPlanSite > ul > li {
  margin-bottom: 20px;
}
#contenu.planSite .lstPlanSite > ul > li > a {
  text-transform: uppercase;
}
#contenu.planSite .lstPlanSite > ul > li .sub {
  margin-bottom: 20px;
}
#contenu.planSite .lstPlanSite > ul > li .sub .row {
  margin: 0;
}
#contenu.planSite .lstPlanSite > ul > li .sub ul {
  margin-bottom: 0;
}
#contenu.planSite .lstPlanSite > ul > li .sub > div {
  padding: 0;
}

/* ==================================================
 * Particularités
 * ================================================== */
#contenu .sansMarge {
  margin-bottom: 5px;
}
#contenu .sansMargeTop {
  margin-top: 10px;
}
#contenu .sansEmphase {
  font-weight: normal;
}
#contenu .sansItal {
  font-style: normal;
}
#contenu .tableau.sansMarge {
  margin-bottom: 10px;
}

/* ==================================================
 * Autodiagnostic
 * ================================================== */
#contenu .tableau.type_textarea th {
  background-color: #EBEBEB;
}

/* ==================================================
 * SIDEBAR
 * Table des matieres :
 * General
 * Documents
 * Consignes
 * ================================================== */
/* ==================================================
 * General
 * ================================================== */
#sidebar {
  padding: 0;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.9);
}

/* Media Queries---------------------------------- */
@media screen and (max-width: 767px) {
  #sidebar.noBlocks {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  main > .container > .row {
    display: flex;
  }
  main > .container > .row.row-reverse {
    flex-direction: row-reverse;
  }

  #contenu.col, #sidebar.col {
    height: auto;
  }

  #sidebar.merge3 {
    padding-right: 0;
  }
  #sidebar.merge3.col-right {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  #sidebar.merge3 {
    margin-left: 8.33333%;
  }
  #sidebar.merge3.col-right {
    margin-left: 0%;
    margin-right: 8.33333%;
  }
}
#contenu .auteur-extrait {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 20px 0 10px;
}
#contenu .auteur-extrait__photo {
  background-color: #c5c5c5;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  margin: 0 20px 0 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  position: relative;
}
#contenu .auteur-extrait__photo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
#contenu .auteur-extrait__infos {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
}
#contenu .auteur-extrait__infos li {
  margin-bottom: 0;
}
#contenu .auteur-extrait__infos li::before {
  content: none;
}
#contenu .utilisateur-liste {
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  margin: 40px 0;
  padding-bottom: 20px;
}
#contenu .boite.profil.blogue {
  padding: 0 0 0 120px;
}
#contenu .boite.profil.blogue .photo {
  background-color: #c5c5c5;
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 20px;
}
#contenu .boite.profil.blogue .photo img.photo {
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto;
  height: auto;
}
#contenu .article-liste {
  border-top: 1px solid #4d4d4d;
  margin-top: 40px;
}
#contenu .article-liste__titre {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: black;
  font-weight: 600;
  letter-spacing: 0.36px;
  margin: 20px 0 40px;
}
#contenu .article-liste .article-extrait:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
#contenu .article-extrait {
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 30px;
}
#contenu .article-extrait__titre {
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
  text-transform: none;
}
#contenu .nav-sequentielle {
  *zoom: 1;
  margin: 20px 0;
}
#contenu .nav-sequentielle:before, #contenu .nav-sequentielle:after {
  display: table;
  content: "";
}
#contenu .nav-sequentielle:after {
  clear: both;
}
#contenu .nav-sequentielle ul {
  margin: 0;
}
#contenu .nav-sequentielle li::before {
  content: none;
}
#contenu .nav-sequentielle .alignGauche {
  float: left;
}
#contenu .nav-sequentielle .alignDroite {
  float: right;
}
#contenu .commentaires {
  margin-top: 80px;
}
#contenu .commentlist {
  margin-left: 0;
}
#contenu .commentlist > .comment {
  border-top: 1px solid #4d4d4d;
  padding: 20px 0 0;
}
#contenu .comment {
  list-style-type: none;
  margin: 20px 0;
}
#contenu .comment .children {
  margin: 20px 0 20px 10px;
}
#contenu .comment .children .comment {
  list-style-type: none;
}
#contenu .comment .children .comment::before {
  content: none;
}
#contenu .comment-author {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
#contenu .comment-author .photo {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin: 0 10px 0 0;
}
#contenu .comment-author .fn {
  margin-right: 0.25em;
}
#contenu .comment-meta {
  margin-bottom: 10px;
}
#contenu .comment-respond {
  border: 1px solid #4d4d4d;
  margin: 30px 0;
  padding: 20px;
}
#contenu .comment-respond > *:first-child {
  margin-top: 0;
}
#contenu .comment-respond > *:last-child {
  margin-bottom: 0;
}
.p1 #contenu .comment-respond {
  border-color: #DC1F3D;
}
.p2 #contenu .comment-respond {
  border-color: #872E5C;
}
.p3 #contenu .comment-respond {
  border-color: #109298;
}
#contenu .comment-form label {
  display: block;
  margin-bottom: 10px;
}
#contenu .comment-form textarea {
  border: 1px solid #d8d8d8;
  resize: none;
  width: 100%;
}
#contenu .comment-form .form-submit {
  margin-bottom: 0;
}

/* ==================================================
 * RETOUR HAUT
 * Bouton de retour vers le haut de la page
 * Table des matieres :
 * General
 * ================================================== */
/* ==================================================
 * General
 * ================================================== */
#lienHautPage {
  display: inline-block;
  position: fixed;
  bottom: -40px;
  right: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  background: #000;
  -webkit-transition: bottom 0.2s ease-in-out;
  -moz-transition: bottom 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out;
}
#lienHautPage:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
#lienHautPage.show {
  bottom: 20px;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 768px) {
  #lienHautPage {
    width: 25px;
    height: 25px;
  }
  #lienHautPage:after {
    margin-top: 10px;
  }
}
/* ==================================================
 * OUTILS RECHERCHE
 * Le style de base est appliqué au parent
 * Sinon, changer le style ici
 * Table des matieres :
 * Élements partagé (share/extended en sass)
 * Outils de recherche (Header)
 * ================================================== */
/* ==================================================
 * Élements partagé (share/extended en sass)
 * ================================================== */
/* ==================================================
 * Outils de recherche (Header)
 * ================================================== */
#outilsRecherche {
  float: right;
  min-height: 30px;
}
#outilsRecherche .toggleRecherche {
  display: block;
  height: 24px;
  width: 24px;
  margin-top: 13px;
  padding: 0;
  line-height: 1;
  background: transparent;
  border: none;
}
#outilsRecherche .toggleRecherche > span {
  display: inline-block;
  height: 24px;
  width: 24px;
  line-height: 1;
  vertical-align: middle;
  background: url("../../img/icones/ico_recherche.svg") no-repeat 0 0 !important;
  background-size: 24px;
  overflow: hidden;
}
.no-svg #outilsRecherche .toggleRecherche > span {
  background-image: url("../../img/icones/png/ico_recherche.png");
}
#outilsRecherche #searchBoxForm form, #outilsRecherche #teluqSearchBox {
  box-sizing: border-box;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: solid 1px #b2b2b2;
}
#outilsRecherche #searchBoxForm form input[type="text"], #outilsRecherche #teluqSearchBox input[type="text"] {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 30px;
  padding: 0px 100px 0 10px;
  border: solid 1px #dadada;
  color: #4d4d4d;
  z-index: 4;
}
#outilsRecherche #searchBoxForm form button[type="submit"], #outilsRecherche #searchBoxForm form input[type="button"], #outilsRecherche #teluqSearchBox button[type="submit"], #outilsRecherche #teluqSearchBox input[type="button"] {
  position: relative;
  float: right;
  height: 30px;
  margin-top: -30px;
  padding: 5px 10px;
  background-color: #3b3b3b !important;
  border: none;
  z-index: 5;
  -webkit-transition: background-color 300ms ease-out;
  -moz-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
#outilsRecherche #searchBoxForm form button[type="submit"]:hover, #outilsRecherche #searchBoxForm form button[type="submit"]:focus, #outilsRecherche #searchBoxForm form input[type="button"]:hover, #outilsRecherche #searchBoxForm form input[type="button"]:focus, #outilsRecherche #teluqSearchBox button[type="submit"]:hover, #outilsRecherche #teluqSearchBox button[type="submit"]:focus, #outilsRecherche #teluqSearchBox input[type="button"]:hover, #outilsRecherche #teluqSearchBox input[type="button"]:focus {
  background-color: #F0780D !important;
}
#outilsRecherche .fake-form {
  display: none;
}
#outilsRecherche .fake-input {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 30px;
  padding: 0px 100px 0 10px;
  border: solid 1px #dadada;
  color: #4d4d4d;
  z-index: 4;
  background-color: #fff;
}
#outilsRecherche .fake-button {
  position: relative;
  float: right;
  height: 30px;
  margin-top: -30px;
  padding: 5px 10px;
  background-color: #3b3b3b !important;
  border: none;
  z-index: 5;
  -webkit-transition: background-color 300ms ease-out;
  -moz-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
#outilsRecherche .fake-button:hover, #outilsRecherche .fake-button:focus {
  background-color: #F0780D !important;
}

.-ms- #outilsRecherche #searchBoxForm form button[type="submit"], .-ms- #outilsRecherche #searchBoxForm form input[type="button"], .-ms- #outilsRecherche #teluqSearchBox form button[type="submit"], .-ms- #outilsRecherche #teluqSearchBox form input[type="button"] {
  position: absolute;
  top: 10px;
  right: 20px;
  margin: 0;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 768px) {
  #outilsRecherche {
    position: relative;
    min-width: 205px;
    min-height: 30px;
    margin-bottom: 10px;
  }
  #outilsRecherche .toggleRecherche {
    display: none;
  }
  #outilsRecherche #searchBoxForm form, #outilsRecherche #teluqSearchBox {
    display: table-cell !important;
    position: static;
    padding: 0;
    vertical-align: middle;
    background-color: transparent;
    border-bottom: none;
  }
  #outilsRecherche #searchBoxForm form input[type="text"], #outilsRecherche #teluqSearchBox input[type="text"] {
    float: left;
    width: 175px;
    margin: auto 0px auto 0px;
    padding: 0px 5px 0px 5px;
    background-image: none;
    border: none;
  }
  #outilsRecherche #searchBoxForm form button[type="submit"], #outilsRecherche #searchBoxForm form input[type="button"], #outilsRecherche #teluqSearchBox button[type="submit"], #outilsRecherche #teluqSearchBox input[type="button"] {
    display: block;
    float: left;
    width: 30px;
    margin: 0;
    padding: 0;
    background-image: url("../../img/icones/ico_recherche.svg") !important;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    text-indent: -9999px;
  }
  #outilsRecherche #searchBoxForm form button[type="submit"]:before, #outilsRecherche #searchBoxForm form input[type="button"]:before, #outilsRecherche #teluqSearchBox button[type="submit"]:before, #outilsRecherche #teluqSearchBox input[type="button"]:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
  }
  .no-svg #outilsRecherche #searchBoxForm form button[type="submit"], .no-svg #outilsRecherche #searchBoxForm form input[type="button"], .no-svg #outilsRecherche #teluqSearchBox button[type="submit"], .no-svg #outilsRecherche #teluqSearchBox input[type="button"] {
    background-image: url("../../img/icones/png/ico_recherche.png") !important;
  }
  #outilsRecherche .fake-form {
    display: inline-block;
    position: absolute;
  }
  #outilsRecherche .fake-input {
    float: left;
    width: 175px;
    margin: auto 0px auto 0px;
    padding: 0px 5px 0px 5px;
    background-image: none;
    border: none;
  }
  #outilsRecherche .fake-button {
    display: block;
    float: left;
    width: 30px;
    margin: 0;
    padding: 0;
    background-image: url("../../img/icones/ico_recherche.svg") !important;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    text-indent: -9999px;
  }
  #outilsRecherche .fake-button:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
  }
  .no-svg #outilsRecherche .fake-button {
    background-image: url("../../img/icones/png/ico_recherche.png") !important;
  }

  .-ms- #outilsRecherche #searchBoxForm form button[type="submit"], .-ms- #outilsRecherche #searchBoxForm form input[type="button"], .-ms- #outilsRecherche #searchBoxForm .fake-button, .-ms- #outilsRecherche #teluqSearchBox form button[type="submit"], .-ms- #outilsRecherche #teluqSearchBox form input[type="button"], .-ms- #outilsRecherche #teluqSearchBox .fake-button {
    position: absolute;
    top: 0;
    right: 0;
  }
}
/* ==================================================
 * QUIZ (créé à l'interne module JS)
 * Table des matieres :
 * Boîtes :
 ** questions
 *** texte
 *** choix de réponses
 *** choix de réponses (ordre)
 *** choix de réponses (association)
 *** répondues
 *** contrôles
 *** rétroactions
 *** états
 * Tableau
 * ================================================== */
/* ==================================================
 * General
 * ================================================== */
#contenu .boiteQuiz {
  padding: 10px 10px 10px 10px;
  background-color: #dde4e7;
}
#contenu .boiteQuiz .lstQuestions, #contenu .boiteQuiz .lstChReponses, #contenu .boiteQuiz .controles .navigation ul, #contenu .boiteQuiz .lstQuestions > li, #contenu .boiteQuiz .lstChReponses > li {
  padding-left: 0px;
  list-style-type: none;
}
#contenu .boiteQuiz .lstQuestions {
  margin: 0px 0px 30px 0px;
}
#contenu .boiteQuiz .lstQuestions li {
  position: relative;
}
#contenu .boiteQuiz .lstQuestions li:before, #contenu .boiteQuiz .lstQuestions li:after {
  content: none;
}
#contenu .boiteQuiz .txtQuestion {
  padding-left: 25px;
}
#contenu .boiteQuiz .txtQuestion:before {
  position: absolute;
  left: 0;
  content: attr(data-numero) ".";
  font-weight: 500;
}
#contenu .boiteQuiz .txtQuestion p, #contenu .boiteQuiz .txtQuestion span, #contenu .boiteQuiz .txtQuestion ul, #contenu .boiteQuiz .txtQuestion ol {
  font-weight: 500;
}
#contenu .boiteQuiz .txtQuestion .miseSituationExt p, #contenu .boiteQuiz .txtQuestion .miseSituationExt ul, #contenu .boiteQuiz .txtQuestion .miseSituationExt ol {
  font-weight: 300;
}
#contenu .boiteQuiz .txtQuestion table p, #contenu .boiteQuiz .txtQuestion table span, #contenu .boiteQuiz .txtQuestion table ul, #contenu .boiteQuiz .txtQuestion table ol {
  font-weight: 300;
}
#contenu .boiteQuiz .txtQuestion > ul, #contenu .boiteQuiz .txtQuestion > ol, #contenu .boiteQuiz .txtQuestion div > ul, #contenu .boiteQuiz .txtQuestion div > ol {
  margin-bottom: 15px;
}
#contenu .boiteQuiz .txtQuestion.imgPosDroite {
  min-height: 175px;
  margin-bottom: 15px;
  padding-right: 190px;
}
#contenu .boiteQuiz .txtQuestion .posDroite {
  position: absolute;
  top: 0;
  right: 0;
}
#contenu .boiteQuiz .txtQuestion .miseEnSituation {
  padding-right: 25px;
}
#contenu .boiteQuiz .txtQuestion .miseEnSituation p, #contenu .boiteQuiz .txtQuestion .miseEnSituation ul, #contenu .boiteQuiz .txtQuestion .miseEnSituation ol {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
}
#contenu .boiteQuiz .lstChReponses li {
  margin: 15px 0px 0px 0px;
  padding-left: 26px;
}
#contenu .boiteQuiz .lstChReponses li:first-child {
  margin-top: 0px;
}
#contenu .boiteQuiz .lstChReponses li:before, #contenu .boiteQuiz .lstChReponses li:after {
  content: none;
}
#contenu .boiteQuiz .lstChReponses .retro {
  margin-top: 15px;
}
#contenu .boiteQuiz .lstChReponses > li.showAnswer > label:after {
  content: "";
  display: block;
  background: url("../../img/icones/ico_quizretro_correct.svg") no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  position: absolute;
  left: -3px;
  top: 0;
}
.no-svg #contenu .boiteQuiz .lstChReponses > li.showAnswer > label:after {
  background-image: url("../../img/icones/png/ico_quizretro_correct.png");
}
#contenu .boiteQuiz input.custom[type="checkbox"], #contenu .boiteQuiz input.custom[type="radio"] {
  display: none;
}
#contenu .boiteQuiz input.custom[type="checkbox"] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  content: "";
  cursor: pointer;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #959595;
}
#contenu .boiteQuiz input.custom[type="checkbox"]:checked + label:before {
  background-color: #959595;
  background: url("../../img/icones/ico_crochet.svg") center center #ffffff no-repeat;
}
.no-svg #contenu .boiteQuiz input.custom[type="checkbox"]:checked + label:before {
  background-image: url("../../img/icones/png/ico_crochet.png");
}
#contenu .boiteQuiz input.custom[type="radio"] + label:before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  content: "";
  cursor: pointer;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #959595;
}
#contenu .boiteQuiz input.custom[type="radio"]:checked + label:before {
  top: 0;
  left: 0;
  border: 3px solid #ffffff;
  background-color: #959595;
}
#contenu .boiteQuiz label {
  cursor: pointer;
}
#contenu .boiteQuiz .ordre li {
  display: block;
  width: 75%;
  padding: 0px 15px 0px 15px;
  background-color: #d6cace;
  border: solid 1px #959595;
  cursor: pointer;
}
#contenu .boiteQuiz .ordre li:before, #contenu .boiteQuiz .ordre li:after {
  content: none;
}
#contenu .boiteQuiz .ordre p {
  margin: 5px 0px 5px 0px;
}
#contenu .boiteQuiz li.placeholder {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
}
#contenu .boiteQuiz li.placeholder:before {
  position: absolute;
  top: 1px;
  left: -6px;
  content: "";
  width: 0;
  height: 0;
  margin-top: 0px;
  border: 6px solid transparent;
  border-left-color: #333333;
}
#contenu .boiteQuiz li.placeholder:first-child:before {
  top: -14px;
}
#contenu .boiteQuiz li.dragged:first-child + li.placeholder:before {
  top: -14px;
}
#contenu .boiteQuiz li.dragged {
  position: absolute;
  background-color: #ebe7e9;
  z-index: 2000;
}
#contenu .boiteQuiz .associations > div {
  float: left;
  width: 50%;
}
#contenu .boiteQuiz .associations > div > p strong {
  display: block;
  padding: 5px 15px;
  text-align: center;
  background-color: #333;
  color: #fff;
}
#contenu .boiteQuiz .associations > div:first-child > p strong {
  margin-right: 5px;
}
#contenu .boiteQuiz .associations ol {
  margin-left: 0;
  padding: 0;
}
#contenu .boiteQuiz .associations ol li {
  display: block;
  padding: 0px 15px 0px 15px;
  list-style: none;
}
#contenu .boiteQuiz .associations ol li p {
  margin: 5px 0px 5px 0px;
}
#contenu .boiteQuiz .associations .lstIndices li {
  margin: 15px 5px 0px 0px;
  border: solid 1px #ccc;
}
#contenu .boiteQuiz .associations .lstChReponses li {
  background-color: #d6cace;
  border: solid 1px #959595;
  cursor: pointer;
}
#contenu .boiteQuiz .associations .lstChReponses li:first-child {
  margin: 15px 0px 0px 0px;
}
#contenu .boiteQuiz .associations .lstChReponses li.placeholder {
  border: none;
}
#contenu .boiteQuiz .associations .lstChReponses li.bonneReponse {
  background-color: #dee8e3;
  border-color: #5d756a;
}
#contenu .boiteQuiz .associations .lstChReponses li.mauvaiseReponse {
  background-color: #efcece;
  border-color: #b92025;
}
#contenu .boiteQuiz .qRepondue .lstChReponses {
  opacity: 0.8;
}
#contenu .boiteQuiz .qRepondue input.custom[type="checkbox"] + label:before, #contenu .boiteQuiz .qRepondue input.custom[type="radio"] + label:before, #contenu .boiteQuiz .qRepondue label {
  cursor: default;
}
#contenu .boiteQuiz .qRepondue .ordre li {
  cursor: default;
}
#contenu .boiteQuiz .qRepondue .ordre li:before, #contenu .boiteQuiz .qRepondue .ordre li:after {
  content: none;
}
#contenu .boiteQuiz .controles {
  display: table;
  width: 100%;
  margin: 0px 0px 0px 0px;
}
#contenu .boiteQuiz .controles > div {
  display: table-cell;
  vertical-align: bottom;
}
#contenu .boiteQuiz .controles div > * {
  margin: 0px;
}
#contenu .boiteQuiz .validation {
  width: 35%;
  text-align: left;
}
#contenu .boiteQuiz .validation button {
  display: block;
  padding: 0px 15px 0px 15px;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: 300;
  text-shadow: none;
  background-color: #555555;
  background-image: none;
  box-shadow: none;
  border: none;
  border-radius: 4px;
  color: #ffffff;
}
#contenu .boiteQuiz .validation button:hover {
  background-color: #005d7b;
  transition: all 0.3s ease-out;
}
#contenu .boiteQuiz .validation button:focus {
  outline: none;
}
#contenu .boiteQuiz .status {
  text-align: center;
}
#contenu .boiteQuiz .status p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  color: #828282;
}
#contenu .boiteQuiz .navigation {
  width: 35%;
  text-align: right;
}
#contenu .boiteQuiz .navigation li {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
}
#contenu .boiteQuiz .navigation li:before, #contenu .boiteQuiz .navigation li:after {
  content: none;
}
#contenu .boiteQuiz .navigation li.prec a {
  background-image: url("../../img/icones/ico_quizbt_prec.svg");
}
.no-svg #contenu .boiteQuiz .navigation li.prec a {
  background-image: url("../../img/icones/png/ico_quizbt_prec.png");
}
#contenu .boiteQuiz .navigation li.suiv a {
  background-image: url("../../img/icones/ico_quizbt_suiv.svg");
}
.no-svg #contenu .boiteQuiz .navigation li.suiv a {
  background-image: url("../../img/icones/png/ico_quizbt_suiv.png");
}
#contenu .boiteQuiz .navigation a:link, #contenu .boiteQuiz .navigation a:visited {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #555555;
  background-position: center center;
  background-repeat: no-repeat;
}
#contenu .boiteQuiz .navigation a:hover, #contenu .boiteQuiz .navigation a:active, #contenu .boiteQuiz .navigation a:focus {
  background-color: #005d7b;
  transition: all 0.3s ease-out;
}
#contenu .boiteQuiz .retro {
  margin: 15px 0px 0px 0px;
  padding: 10px 10px 0px 40px;
  background-color: #ffffff;
}
#contenu .boiteQuiz .retro * {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
#contenu .boiteQuiz .retro th, #contenu .boiteQuiz .retro strong {
  font-weight: 600;
}
#contenu .boiteQuiz .retro > ul, #contenu .boiteQuiz .retro > ol, #contenu .boiteQuiz .retro div > ul, #contenu .boiteQuiz .retro div > ol {
  margin-bottom: 15px;
}
#contenu .boiteQuiz .retro > ul li, #contenu .boiteQuiz .retro > ol li, #contenu .boiteQuiz .retro > ul p, #contenu .boiteQuiz .retro > ol p {
  margin: 0px 0px 5px 0px;
}
#contenu .boiteQuiz .retro .lib {
  display: block;
}
#contenu .boiteQuiz .retro.correcte {
  border: solid 1px #5d756a;
  background-image: url("../../img/icones/ico_quizretro_correct.svg");
  background-repeat: no-repeat;
  background-position: top left;
}
.no-svg #contenu .boiteQuiz .retro.correcte {
  background-image: url("../../img/icones/png/ico_quizretro_correct.png");
}
#contenu .boiteQuiz .retro.correcte .lib {
  color: #5d756a;
}
#contenu .boiteQuiz .retro.incorrecte {
  border: solid 1px #b92025;
  background-image: url("../../img/icones/ico_quizretro_incorrect.svg");
  background-repeat: no-repeat;
  background-position: top left;
}
.no-svg #contenu .boiteQuiz .retro.incorrecte {
  background-image: url("../../img/icones/png/ico_quizretro_incorrect.png");
}
#contenu .boiteQuiz .retro.incorrecte .lib {
  color: #b92025;
}
#contenu .boiteQuiz .retro.neutre {
  border: solid 1px #5f5b7b;
  background-image: url("../../img/icones/ico_quizretro_neutre.svg");
  background-repeat: no-repeat;
  background-position: top left;
}
.no-svg #contenu .boiteQuiz .retro.neutre {
  background-image: url("../../img/icones/png/ico_quizretro_neutre.png");
}
#contenu .boiteQuiz .retro.neutre .lib {
  color: #5f5b7b;
}
#contenu .boiteQuiz .retro .interTitre.figure {
  font-size: 17px;
  font-size: 1.7rem;
}
#contenu .boiteQuiz .retro ul {
  list-style-type: none;
}
#contenu .boiteQuiz .retro ul > li {
  position: relative;
}
#contenu .boiteQuiz .retro ul > li:before {
  position: absolute;
  top: -10px;
  left: -15px;
  content: ".";
  font-size: 38px;
  vertical-align: middle;
}
#contenu .boiteQuiz .retro ul ul {
  list-style-type: none;
}
#contenu .boiteQuiz .retro ul ul li {
  text-indent: -15px;
}
#contenu .boiteQuiz .retro ul ul li:before {
  position: inherit;
  top: -2px;
  left: 0;
  content: "-";
  margin-right: 5px;
  font-size: 26px;
  text-indent: -2px;
}
#contenu .boiteQuiz .etats {
  margin: 0;
  padding: 0;
  text-align: center;
}
#contenu .boiteQuiz ul.msg {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-weight: 500;
}
#contenu .boiteQuiz ul.msg.erreur {
  color: #ba2025;
}
#contenu .boiteQuiz ul.msg.erreur > li:after {
  display: none;
}
#contenu .boiteQuiz ul.msg li {
  margin: 5px 0px 0px 0px;
}
#contenu .boiteQuiz ul.msg li:before {
  content: "";
  position: static;
}

#contenu .tableau.styleQuiz {
  border: solid 1px #d8d8d8;
}
#contenu .tableau.styleQuiz th {
  background-color: #4d4d4d;
  border: solid 1px #d8d8d8;
  border-top: none;
  color: #fff;
}
#contenu .tableau.styleQuiz td {
  position: relative;
  border: solid 1px #d8d8d8;
}
#contenu .tableau.styleQuiz td label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
#contenu .tableau.styleQuiz tr th:first-child, #contenu .tableau.styleQuiz tr td:first-child {
  border-left: none;
}
#contenu .tableau.styleQuiz tr th:last-child, #contenu .tableau.styleQuiz tr td:last-child {
  border-right: none;
}
#contenu .tableau.styleQuiz tr:last-child td {
  border-bottom: none;
}
#contenu .tableau.styleQuiz td.showAnswer label:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url("../../img/icones/ico_quizretro_correct.svg") no-repeat;
  background-size: cover;
}
.no-svg #contenu .tableau.styleQuiz td.showAnswer label:after {
  background-image: url("../../img/icones/png/ico_quizretro_correct.png");
}
#contenu .tableau.styleQuiz td.showError label:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url("../../img/icones/ico_quizretro_incorrect.svg") no-repeat;
  background-size: cover;
}
.no-svg #contenu .tableau.styleQuiz td.showError label:after {
  background-image: url("../../img/icones/png/ico_quizretro_incorrect.png");
}

/* ==================================================
 * SLICK-SLIDER
 * Besoin de la librairie JS Slick Slider
 *
 * Table des matieres :
 * General (Propre à la librairie JS)
 * Contenu (slide)
 * Navigation (precedent/suivant)
 * ================================================== */
/* ==================================================
 * General
 * ================================================== */
.slick-slider {
  display: block;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
.slick-track:after, .slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* ==================================================
 * Contenu
 * ================================================== */
#contenu .mod-slick-slider {
  position: relative;
  max-width: 675px;
  margin-bottom: 30px;
  border: 1px solid #414141;
}
#contenu .mod-slick-slider > .interTitre:first-child {
  display: block;
  margin: 0px;
  padding: 5px 7px 7px 7px;
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 27px;
  line-height: 2.7rem;
  font-weight: 100;
  text-align: center;
  background-color: #282828;
  color: #ffffff;
}
#contenu .mod-slick-slider .slider {
  position: relative;
  padding-bottom: 90px;
  background-color: #eeeeee;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
#contenu .mod-slick-slider .slider .chapeau {
  position: relative;
  padding: 15px;
  background-color: #fff;
  color: #ffffff;
}
#contenu .mod-slick-slider .slider .chapeau:after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  border-bottom: 0;
  height: 0;
  width: 0;
}
#contenu .mod-slick-slider .slider .chapeau:before {
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #414141;
  border-bottom: 0;
  height: 0;
  width: 0;
}
#contenu .mod-slick-slider .slider .chapeau img {
  max-width: 50%;
  height: auto;
  max-height: 200px;
  margin: 0 auto;
}
#contenu .mod-slick-slider .chapeau {
  position: relative;
  padding: 15px;
  color: #ffffff;
}
#contenu .mod-slick-slider .chapeau:before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -15px;
}
#contenu .mod-slick-slider .chapeau img {
  max-width: 50%;
  margin: 0px auto 15px;
}
#contenu .mod-slick-slider .chapeau .fleche {
  display: none;
}
#contenu .mod-slick-slider .corps {
  padding: 30px 15px 15px 15px;
  border-top: 1px solid #414141;
}

/* ==================================================
 * Navigation (precedent/suivant)
 * ================================================== */
#contenu .mod-slick-slider .slick-arrow li button,
#contenu .mod-slick-slider .slick-dots li button {
  width: 25px;
  height: 25px;
  padding: 0;
  background-color: #323232;
  background-image: none;
  border: none;
  border-radius: 50%;
  color: #ffffff;
}
#contenu .mod-slick-slider .slick-arrow {
  position: absolute;
  bottom: 15px;
  width: 25px;
  height: 25px;
  font-size: 0;
  line-height: 0;
  background: url("../../img/icones/ico_slider.svg") #323232;
  border: none;
  border-radius: 50%;
}
.no-svg #contenu .mod-slick-slider .slick-arrow {
  background-image: url("../../img/icones/png/ico_slider.png");
}
#contenu .mod-slick-slider .slick-arrow:hover {
  background-color: #44727e;
}
#contenu .mod-slick-slider .slick-dots {
  position: absolute;
  left: 55px;
  bottom: 15px;
  right: 55px;
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-align: center;
}
#contenu .mod-slick-slider .slick-dots li {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0px 10px;
  padding: 0;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  background-color: #323232;
  background-image: none;
  border: none;
  border-radius: 50%;
}
#contenu .mod-slick-slider .slick-dots li:before {
  content: "";
  position: static;
}
#contenu .mod-slick-slider .slick-dots li button {
  display: none;
  width: 25px;
  height: 25px;
  padding: 0;
  background-color: #323232;
  background-image: none;
  border: none;
  border-radius: 50%;
  color: #ffffff;
}
#contenu .mod-slick-slider .slick-arrow:hover,
#contenu .mod-slick-slider .slick-arrow:active,
#contenu .mod-slick-slider .slick-dots li.slick-active,
#contenu .mod-slick-slider .slick-dots li button:hover,
#contenu .mod-slick-slider .slick-dots li button:active,
#contenu .mod-slick-slider .slick-dots li.slick-active button {
  background-color: #44727e;
}
#contenu .mod-slick-slider .slick-prev {
  left: 15px;
  background-position: top;
}
#contenu .mod-slick-slider .slick-next {
  right: 15px;
  background-position: bottom;
}
#contenu .mod-slick-slider .indication {
  position: absolute;
  bottom: 45px;
  padding: 0 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17.5px;
  line-height: 1.75rem;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 480px) {
  #contenu .mod-slick-slider .slick-dots li {
    width: 15px;
    height: 15px;
  }
}
@media screen and (min-width: 768px) {
  #contenu .mod-slick-slider > .interTitre:first-child {
    font-size: 20px;
    font-size: 2rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
  #contenu .mod-slick-slider .corps {
    padding-left: 35px;
    padding-right: 35px;
  }
  #contenu .mod-slick-slider .texte {
    margin: 15px 77px;
  }
  #contenu .mod-slick-slider .slick-prev {
    left: 35px;
  }
  #contenu .mod-slick-slider .slick-next {
    right: 35px;
  }
  #contenu .mod-slick-slider .slick-dots li {
    width: 25px;
    height: 25px;
    background-color: transparent;
  }
  #contenu .mod-slick-slider .slick-dots li button {
    display: block;
    width: 25px;
    height: 25px;
  }
  #contenu .mod-slick-slider .indication {
    padding: 0 35px;
  }
}
/* ==================================================
 * SCHEMAS INTERACTIFS
 *
 * Table des matieres :
 * General
 * animationSVG
 * blocsCliquables
 * blocsNonCliquables
 * ================================================== */
/* ==================================================
 * General (Bloc info sous le schéma)
 * ================================================== */
#contenu .schemaInteractif {
  position: relative;
  margin: 0 0 30px 0;
  padding-bottom: 65px;
  border-bottom: dashed 1px #333333;
}
#contenu .schemaInteractif > ol > li {
  list-style-type: none;
}
#contenu .schemaInteractif .indication {
  margin-top: 30px;
}
#contenu .schemaInteractif .indication.disabled {
  color: #bababa;
}
#contenu .schemaInteractif .nav {
  position: absolute;
  bottom: 30px;
  width: 25px;
  height: 25px;
  font-size: 0;
  line-height: 0;
  background-color: #3f3f3f;
  background-image: url("../../img/icones/ico_slider.svg");
  border: none;
  border-radius: 50%;
  color: #ffffff;
}
.no-svg #contenu .schemaInteractif .nav {
  background-image: url("../../img/icones/png/ico_slider.png");
}
#contenu .schemaInteractif .nav.precedent {
  left: 0px;
  background-position: top;
}
#contenu .schemaInteractif .nav.suivant {
  right: 0px;
  background-position: bottom;
}
#contenu .schemaInteractif .nav:hover, #contenu .schemaInteractif .nav:active {
  background-color: #000000;
}
#contenu .schemaInteractif .nav.disabled, #contenu .schemaInteractif .nav.disabled:hover, #contenu .schemaInteractif .nav.disabled:active {
  background-color: #cccccc;
  cursor: default;
}
#contenu .schemaInteractif > div {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ececec;
}
#contenu .schemaInteractif > div > div > .interTitre {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 700;
}
#contenu .schemaInteractif > div > div > .interTitre:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 100%;
}
#contenu .schemaInteractif > div > div > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
#contenu .schemaInteractif > div > div > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ==================================================
 * animationSVG (exemple)
 * ================================================== */
#contenu .schemaInteractif#schemeRel > ol {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto 20px;
}
#contenu .schemaInteractif#schemeRel > ol > li {
  position: absolute;
  margin-bottom: 0px;
  z-index: 100;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#contenu .schemaInteractif#schemeRel > ol > li .titre {
  position: absolute;
  font-family: "Barlow", sans-serif;
  font-weight: normal;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#contenu .schemaInteractif#schemeRel > ol > li svg .forme, #contenu .schemaInteractif#schemeRel > ol > li svg .centre {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  fill: #FFFFFF;
}
#contenu .schemaInteractif#schemeRel > ol > li.consideration {
  top: 0;
  right: 7px;
}
#contenu .schemaInteractif#schemeRel > ol > li.consideration .titre {
  top: 57px;
  left: 20px;
}
#contenu .schemaInteractif#schemeRel > ol > li.securite {
  top: 128px;
  right: -2px;
}
#contenu .schemaInteractif#schemeRel > ol > li.securite .titre {
  top: 74px;
  left: 71px;
}
#contenu .schemaInteractif#schemeRel > ol > li.dispo {
  bottom: -9px;
  left: 76px;
}
#contenu .schemaInteractif#schemeRel > ol > li.dispo .titre {
  top: 74px;
  left: 61px;
}
#contenu .schemaInteractif#schemeRel > ol > li.confiance {
  top: 126px;
  left: 1px;
}
#contenu .schemaInteractif#schemeRel > ol > li.confiance .titre {
  top: 73px;
  left: 15px;
}
#contenu .schemaInteractif#schemeRel > ol > li.congruence {
  top: 0;
  left: 11px;
}
#contenu .schemaInteractif#schemeRel > ol > li.congruence .titre {
  top: 57px;
  left: 57px;
}
#contenu .schemaInteractif#schemeRel > ol > li.empathie {
  top: 83px;
  left: 85px;
  z-index: 400;
}
#contenu .schemaInteractif#schemeRel > ol > li.empathie .titre {
  top: 84px;
  left: 62px;
}
#contenu .schemaInteractif#schemeRel > ol > li.masque {
  transform: scale(0.95);
}
#contenu .schemaInteractif#schemeRel > ol > li.masque .titre {
  color: #969696;
}
#contenu .schemaInteractif#schemeRel > ol > li.masque svg .forme {
  stroke: #D3D3D3 !important;
}
#contenu .schemaInteractif#schemeRel > ol > li.masque svg .contour {
  fill: #D3D3D3 !important;
}
#contenu .schemaInteractif#schemeRel > ol > li.masque.active svg .forme, #contenu .schemaInteractif#schemeRel > ol > li.masque.active svg .centre {
  fill: #ededed !important;
}
#contenu .schemaInteractif#schemeRel > ol > li.masque.active svg .contour {
  fill: #D3D3D3 !important;
}
#contenu .schemaInteractif#schemeRel > ol > li.survol {
  transform: scale(1.05);
  z-index: 900;
}
#contenu .schemaInteractif#schemeRel > ol > li.active .titre, #contenu .schemaInteractif#schemeRel > ol > li.survol .titre {
  font-weight: 700;
  text-decoration: underline;
}
#contenu .schemaInteractif#schemeRel > ol > li.active svg#consideration .forme, #contenu .schemaInteractif#schemeRel > ol > li.survol svg#consideration .forme {
  fill: #E0CBD7;
}
#contenu .schemaInteractif#schemeRel > ol > li.active svg#securite .forme, #contenu .schemaInteractif#schemeRel > ol > li.survol svg#securite .forme {
  fill: #F9D3D7;
}
#contenu .schemaInteractif#schemeRel > ol > li.active svg#dispo .forme, #contenu .schemaInteractif#schemeRel > ol > li.survol svg#dispo .forme {
  fill: #FEEECB;
}
#contenu .schemaInteractif#schemeRel > ol > li.active svg#confiance .forme, #contenu .schemaInteractif#schemeRel > ol > li.survol svg#confiance .forme {
  fill: #BFE7E5;
}
#contenu .schemaInteractif#schemeRel > ol > li.active svg#congruence .forme, #contenu .schemaInteractif#schemeRel > ol > li.survol svg#congruence .forme {
  fill: #D2D5E5;
}
#contenu .schemaInteractif#schemeRel > ol > li.active svg#empathie .forme, #contenu .schemaInteractif#schemeRel > ol > li.survol svg#empathie .forme {
  fill: #8AB71F;
}
#contenu .schemaInteractif#schemeRel > ol > li.active svg#empathie .forme .centre, #contenu .schemaInteractif#schemeRel > ol > li.survol svg#empathie .forme .centre {
  fill: #8AB71F;
  opacity: 0.25;
  filter: alpha(opacity=25);
}
#contenu .schemaInteractif#schemeRel > div > div:first-of-type > .interTitre:before {
  background-color: #781F50;
}
#contenu .schemaInteractif#schemeRel > div > div:nth-of-type(2) > .interTitre:before {
  background-color: #E53F4F;
}
#contenu .schemaInteractif#schemeRel > div > div:nth-of-type(3) > .interTitre:before {
  background-color: #F9B620;
}
#contenu .schemaInteractif#schemeRel > div > div:nth-of-type(4) > .interTitre:before {
  background-color: #00958D;
}
#contenu .schemaInteractif#schemeRel > div > div:nth-of-type(5) > .interTitre:before {
  background-color: #3E488B;
}
#contenu .schemaInteractif#schemeRel > div > div:nth-of-type(6) > .interTitre:before {
  background-color: #8AB71F;
}

/* ==================================================
 * blocsCliquables (exemple)
 * ================================================== */
#contenu .schemaInteractif {
  /* blocsCliquables : Exemple du processus d'equilibre dynamique */
}
#contenu .schemaInteractif#eqDynamique {
  /* Couleurs des pastilles de titres */
}
#contenu .schemaInteractif#eqDynamique .blocs {
  min-height: 215px;
  margin-top: 60px;
}
#contenu .schemaInteractif#eqDynamique .blocs > li {
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
#contenu .schemaInteractif#eqDynamique .blocs > li strong {
  font-weight: 700;
}
#contenu .schemaInteractif#eqDynamique .blocs > li .nivEq {
  padding: 16px;
}
#contenu .schemaInteractif#eqDynamique .blocs > li .nivEq li {
  font-size: 14px;
  font-size: 1.4rem;
}
#contenu .schemaInteractif#eqDynamique .blocs > li .nivEqTitre {
  padding: 22px 0;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  -webkit-transition: background-color 0.5s ease-out;
  -moz-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv1 .nivEq {
  padding: 19px 16px 8px;
  background-color: #e5f5f5;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv1 .nivEqTitre {
  padding: 22px 20px;
  background-color: white;
  border: 3px solid #00a099;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv1.active .nivEqTitre, #contenu .schemaInteractif#eqDynamique .blocs > li.niv1:hover .nivEqTitre {
  background-color: #e5f5f5;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv2 {
  margin: 20px 0;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv2 .nivEq {
  width: 100%;
  padding: 35px 10px 2px;
  background-color: #f3f7cd;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv2 .nivEqTitre {
  width: 100%;
  padding: 22px 10px;
  background-color: white;
  border: 3px solid #bbd14f;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv2.active .nivEqTitre, #contenu .schemaInteractif#eqDynamique .blocs > li.niv2:hover .nivEqTitre {
  background-color: #f3f7cd;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv3 .nivEq {
  padding: 15px 6px 13px;
  background-color: #feebc0;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv3 .nivEqTitre {
  padding: 22px 10px;
  background-color: white;
  border: 3px solid #fbbe30;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.niv3.active .nivEqTitre, #contenu .schemaInteractif#eqDynamique .blocs > li.niv3:hover .nivEqTitre {
  background-color: #feebc0;
}
#contenu .schemaInteractif#eqDynamique .blocs > li.active .nivEqTitre, #contenu .schemaInteractif#eqDynamique .blocs > li.hover .nivEqTitre {
  font-weight: 700;
  text-decoration: underline;
}
#contenu .schemaInteractif#eqDynamique > div > div:first-of-type > .interTitre:before {
  background-color: #00a099;
}
#contenu .schemaInteractif#eqDynamique > div > div:nth-of-type(2) > .interTitre:before {
  background-color: #bbd14f;
}
#contenu .schemaInteractif#eqDynamique > div > div:nth-of-type(3) > .interTitre:before {
  background-color: #fbbe30;
}
@media screen and (min-width: 480px) {
  #contenu .schemaInteractif#eqDynamique .blocs > li {
    float: left;
    width: 33.33%;
    width: calc(100% / 3.1);
  }
  #contenu .schemaInteractif#eqDynamique .blocs > li:not(:last-of-type) {
    padding-right: 20px;
  }
  #contenu .schemaInteractif#eqDynamique .blocs > li.niv2 {
    margin: 0;
    transform: rotate(-4deg);
  }
  #contenu .schemaInteractif#eqDynamique .blocs > li.niv2 .nivEq {
    position: relative;
    top: 38px;
    left: -7px;
  }
  #contenu .schemaInteractif#eqDynamique .blocs > li.niv2 .nivEqTitre {
    position: absolute;
    top: -16px;
    width: 90%;
    z-index: 200;
  }
}

/* ==================================================
 * blocsNonCliquables (exemple)
 * ================================================== */
#contenu .schemaInteractif {
  /* blocsNonCliquables : Exemple Les composantes de la structure d’ensemble */
}
#contenu .schemaInteractif#structure_ensemble {
  /* Couleurs des pastilles de titres */
}
#contenu .schemaInteractif#structure_ensemble .blocs > li {
  text-align: center;
}
#contenu .schemaInteractif#structure_ensemble > div > div:first-of-type > .interTitre:before {
  background-color: #1d71b8;
}
#contenu .schemaInteractif#structure_ensemble > div > div:nth-of-type(2) > .interTitre:before {
  background-color: #1d71b8;
}
#contenu .schemaInteractif#structure_ensemble > div > div:nth-of-type(3) > .interTitre:before {
  background-color: #3aaa35;
}
#contenu .schemaInteractif#structure_ensemble > div > div:nth-of-type(4) > .interTitre:before {
  background-color: #1d71b8;
}

/* ==================================================
 * TELUQ NOTE
 * Table des matieres :
 * General
 * ================================================== */
/* ==================================================
 * General
 * ================================================== */
#contenu .teluqNote {
  clear: both;
  margin-bottom: 15px;
}
#contenu .teluqNote .reponse {
  min-height: 100px;
  width: 100%;
  border: 1px solid #999;
}
#contenu .teluqNote .enregistrer {
  display: inline-block;
  position: relative;
  margin: 4px 2px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  background-color: #F0780D;
  border: none;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 500ms ease-out;
  -moz-transition: background-color 500ms ease-out;
  transition: background-color 500ms ease-out;
}
#contenu .teluqNote .enregistrer:hover {
  background-color: #a85409;
}
#contenu .teluqNote .enregistrer.onclic {
  background-color: #555;
  color: #ccc;
  cursor: default;
}
#contenu .teluqNote .enregistrer.validate {
  background-color: #367A55;
}

/* ==================================================
 * TELUQ FDR
 * En lien avec le plugin WP
 * TÉLUQ - Feuille de route
 * 
 * Table des matieres :
 * Barre de progression
 * Menu principal
 * ================================================== */
/* ==================================================
 * Barre de progression
 * ================================================== */
.etatSuivi {
  text-align: center;
}
.etatSuivi .pourcentSuivi {
  font-weight: bold;
}

#etatSuiviReduit, .etatSuivi {
  width: 100%;
  margin-bottom: 20px;
}
#etatSuiviReduit h2, .etatSuivi h2 {
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17.5px;
  line-height: 1.75rem;
  border-bottom: dotted 1px #959595;
}
#etatSuiviReduit .barreSuivi, .etatSuivi .barreSuivi {
  position: relative;
  height: 24px;
  padding: 2px;
  background-color: #ffffff;
  border: 1px solid #959595;
}
#etatSuiviReduit .barreSuivi .pourcentSuivi, .etatSuivi .barreSuivi .pourcentSuivi {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 24px;
  line-height: 2.4rem;
  text-align: center;
  color: #000000;
}
#etatSuiviReduit .barreSuivi .remp, .etatSuivi .barreSuivi .remp {
  width: 0;
  height: 18px;
  background-color: #f67441;
}

/* ==================================================
 * Menu principal
 * ================================================== */
