@charset "UTF-8";
/* *********************************************** */
/* Projet : modele TELUQ                           */
/* Fichier CSS global                              */
/* Dernieres modifications : Septembre 2017        */
/* Auteur : Alex Bourque                           */
/*                                                 */
/* *********************************************** */
/* *********************************************** */
/* MIXINS                                          */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Media queries                                 */
/* - Layout                                        */
/* - Texte                                         */
/* - Animations et transformations                 */
/* - Visibilite et opacite                         */
/* - Borders                                       */
/* - Autres                                        */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* 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". */
/* =============================================== */
/* 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                   */
/* ----------------------------------------------- */
/* =============================================== */
/* 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. */
/* 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. */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@font-face {
  font-family: "Univers";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/Univers_67_Bold_Condensed.eot?") format("eot"), url("../fonts/Univers_67_Bold_Condensed.ttf") format("truetype"), url("../fonts/Univers_67_Bold_Condensed.woff2") format("woff2"), url("../fonts/Univers_67_Bold_Condensed.woff") format("woff");
}

/* *********************************************** */
/* 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.                                    */
/* ----------------------------------------------- */
/* Personnalisé */
/* 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 divers                                */
/* ----------------------------------------------- */
/* Hauteur */
/* *********************************************** */
/* COMMUN                                          */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Base                                          */
/* - Outils                                        */
/* - Grille                                        */
/* - Boutons                                       */
/* - Recherche                                     */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Base                                            */
/* ----------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* ::-moz-selection {
  color: #fff;
  background: #000;
}

* ::selection {
  color: #fff;
  background: #000;
}

*:before, *:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  background: url("https://m2.teluq.ca/theme/edu1090/style/../img/structure/im_bandeau.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-position-y: -150px;
  background-size: 951px;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333333;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: normal;
  background-color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  /* jPushMenu */
}

body.cbp-spmenu-push {
  position: relative;
  overflow-x: hidden;
  left: 0;
  transition: left 0.5s ease;
}

body.cbp-spmenu-push-toright {
  left: 250px;
}

#main {
  z-index: 0;
}

a {
  color: #EB6C10;
}

a:hover, a:focus {
  color: #C85C0E;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

input, textarea {
  padding: 5px;
  border: none;
  border-radius: 0;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 480px) {
  body.cbp-spmenu-push-toright {
    left: 400px;
  }
}

@media screen and (min-width: 790px) {
  body.cbp-spmenu-push-toright {
    left: 0;
  }
  #wrapper {
    min-height: 100% !important;
  }
}

@media screen and (max-width: 1211px) {
  body {
    background-repeat: no-repeat;
    background-position: center center;
    background-position-y: -215px;
    background-size: 1210px;
  }
}

@media screen and (max-width: 1024px) {
  body {
    background-size: 1027px;
    background-position-y: -150px;
  }
}

@media screen and (max-width: 840px) {
  body {
    background-size: 845px;
    background-position-y: -90px;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 700px) {
  body {
    background-size: 700px;
    background-position-y: -45px;
  }
}

@media screen and (max-width: 579px) {
  body {
    background-size: 579px;
    background-position-y: -5px;
  }
}

@media screen and (max-width: 471px) {
  body {
    background: url("https://m2.teluq.ca/theme/edu1090/style/../img/structure/im_bandeau_320.png") no-repeat;
    background-size: contain;
    background-position-y: 94px;
  }
}

@media screen and (max-width: 320px) {
  body {
    background: url("https://m2.teluq.ca/theme/edu1090/style/../img/structure/im_bandeau_320.png") no-repeat;
  }
}

/* =============================================== */
/* Outils                                          */
/* ----------------------------------------------- */
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

.visuallyHidden, .visuallyhidden {
  overflow: hidden;
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.visuallyHidden.focusable:active, .visuallyHidden.focusable:focus, .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible;
}

.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;
}

.print {
  display: none !important;
  visibility: hidden;
}

/* =============================================== */
/* Grille                                          */
/* ----------------------------------------------- */
.container {
  min-width: 320px;
  max-width: 1200px;
  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%;
  float: left;
  border: 0px solid transparent;
  min-height: 1px;
  zoom: 1;
  background-clip: padding-box !important;
  box-sizing: border-box;
}

.col.merge1 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge2 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge3 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge4 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge5 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge6 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge7 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge8 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge9 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge10 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge11 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.merge12 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.col-right {
  float: right;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 790px) {
  .col.merge1 {
    width: 8.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset1 {
    margin-left: 8.3333333333%;
  }
  .col.merge2 {
    width: 16.6666666667%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset2 {
    margin-left: 16.6666666667%;
  }
  .col.merge3 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset3 {
    margin-left: 25%;
  }
  .col.merge4 {
    width: 33.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset4 {
    margin-left: 33.3333333333%;
  }
  .col.merge5 {
    width: 41.6666666667%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset5 {
    margin-left: 41.6666666667%;
  }
  .col.merge6 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset6 {
    margin-left: 50%;
  }
  .col.merge7 {
    width: 58.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset7 {
    margin-left: 58.3333333333%;
  }
  .col.merge8 {
    width: 66.6666666667%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset8 {
    margin-left: 66.6666666667%;
  }
  .col.merge9 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset9 {
    margin-left: 75%;
  }
  .col.merge10 {
    width: 83.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset10 {
    margin-left: 83.3333333333%;
  }
  .col.merge11 {
    width: 91.6666666667%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset11 {
    margin-left: 91.6666666667%;
  }
  .col.merge12 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .col.offset12 {
    margin-left: 100%;
  }
}

/* =============================================== */
/* Boutons                                         */
/* ----------------------------------------------- */
.bouton {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  background-color: #EB6C10;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: background-color 0.2s ease;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 15.6px;
  line-height: 1.56rem;
}

.bouton:hover, .bouton:focus {
  background-color: #bb560c;
}

/* *********************************************** */
/* HEADER                                          */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Base                                          */
/* - Zone utilisateur                              */
/* - Zone identitaire                              */
/* - BodyFilter et autre                           */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Base                                            */
/* ----------------------------------------------- */
#header {
  position: relative;
  z-index: 2000;
}

#header * {
  color: #000;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 1212px) {
  #header .merge12 {
    width: 83.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10%;
    padding-left: 0;
    padding-right: 40px;
  }
}

/* =============================================== */
/* Zone utilisateur                                */
/* ----------------------------------------------- */
#zoneUtilisateur {
  z-index: 3;
  display: block;
  background-color: #292e33;
  min-height: 35px;
}

#zoneUtilisateur * {
  color: #fff;
}

#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 {
  z-index: 2;
}

#zoneIdentitaire a {
  text-decoration: none;
}

/* Logo ------------------------------------------ */
#logo {
  display: block;
  float: right;
  margin: 5px 0;
  background-image: url("https://www.teluq.ca/logo_teluq/logo_teluq_nb_xs.svg");
  background-size: 35px auto;
  background-repeat: no-repeat;
  width: 35px;
  height: 38.0434782609px;
}

.no-backgroundsize #logo {
  width: 46px;
  height: 50px;
}

/* Sigle et titre du cours ----------------------- */
#blocInfoCours {
  display: inline-block;
}

#blocInfoCours:focus {
  opacity: 0.1;
}

#sigleCours {
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 700;
  color: transparent;
  margin-top: 12px;
}

#titreCours {
  font-weight: 400;
  color: transparent;
  margin: 0;
  display: none;
  margin-bottom: 10px;
  width: 100%;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 480px) {
  #zoneIdentitaire {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #logo {
    margin: 0;
    background-size: 40px auto;
    width: 40px;
    height: 43.4782608696px;
  }
  #sigleCours {
    margin-top: 0;
  }
  #titreCours {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22.5px;
    line-height: 2.25rem;
  }
}

@media screen and (min-width: 790px) {
  #logo {
    background-image: url("https://www.teluq.ca/logo_teluq/logo_teluq_nb.svg");
    background-size: 100px auto;
    width: 100px;
    height: 34.756097561px;
  }
  #blocInfoCours {
    min-height: 185px;
    width: 100%;
  }
  .no-backgroundsize #logo {
    width: 164px;
    height: 89px;
  }
  #sigleCours {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 17.5px;
    line-height: 1.75rem;
  }
  #titreCours {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 28.75px;
    line-height: 2.875rem;
  }
}

@media screen and (min-width: 992px) {
  #logo {
    background-size: 126px auto;
    width: 126px;
    height: 43.7926829268px;
  }
  #sigleCours {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
  #titreCours {
    margin-bottom: 0;
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 31.25px;
    line-height: 3.125rem;
  }
}

@media screen and (min-width: 1212px) {
  #zoneIdentitaire {
    background-position: center 85%;
    background-size: 1051px 252px;
  }
}

@media screen and (max-width: 789px) {
  #zoneIdentitaire {
    height: 153px;
  }
}

@media screen and (max-width: 471px) {
  #zoneIdentitaire {
    height: 108px;
  }
}

/* =============================================== */
/* BodyFilter et autre                             */
/* ----------------------------------------------- */
/* Body filter ----------------------------------- */
.bodyFilter {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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: 790px) {
  .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;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 790px) {
  #zoneMenu {
    position: relative;
    height: auto;
    padding: 0;
  }
}

@media screen and (min-width: 1212px) {
  #zoneMenu > .container > .col > .row > .merge12 {
    width: 80%;
    padding-left: 90px;
    padding-right: 90px;
    margin: 0 auto;
  }
  #zoneMenu .sub .merge12 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
  }
}

/* =============================================== */
/* 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;
}

/* jPushMenu */
.cbp-spmenu {
  position: absolute;
  min-height: auto;
  background-color: #0D2F4E;
}

.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");
}

.cbp-spmenu-vertical {
  width: 250px;
  height: 100%;
  top: 0;
  z-index: 3000;
  overflow-y: hidden;
}

.cbp-spmenu-left {
  left: -250px;
}

/* Menu principal -------------------------------- */
#menuPrincipal {
  background-color: #0D2F4E;
}

#menuPrincipal .lstMenuPrincipal {
  padding-top: 47px;
}

#menuPrincipal .lstMenuPrincipal li {
  display: block;
}

#menuPrincipal .lstMenuPrincipal li a {
  display: inline-block;
  text-decoration: none;
  padding: 8px 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

#menuPrincipal .lstMenuPrincipal li.active {
  padding-bottom: 6px;
  background-color: #fff;
}

#menuPrincipal .lstMenuPrincipal li.active a {
  color: #0D2F4E;
}

#menuPrincipal .lstMenuPrincipal > li {
  padding: 0 20px;
}

#menuPrincipal .lstMenuPrincipal > li > a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
}

#menuPrincipal .lstMenuPrincipal > li.parent > a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 2px;
  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 #0D2F4E;
  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: 14px;
  font-size: 1.4rem;
  color: #fff;
}

#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;
}

#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 {
  padding-left: 12px;
  position: relative;
}

#menuPrincipal .lstMenuPrincipal .sub ul li .sousSub ul > li > a:before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
  font-size: 15px;
  font-size: 1.5rem;
}

#menuPrincipal ul.lstMenuPrincipal.lstMenuDeroulant li:nth-child(n+2):nth-child(-n+4) ul.col.merge3 {
  width: 100% !important;
}

/* Media Queries---------------------------------- */
@media screen and (max-width: 790px) {
  #menuPrincipal .lstMenuPrincipal .sub ul li a {
    color: #0D2F4E;
  }
}

@media screen and (min-width: 480px) {
  .cbp-spmenu-vertical {
    width: 400px;
  }
  .cbp-spmenu-left {
    left: -400px;
  }
  #menuPrincipal .lstMenuPrincipal {
    padding-top: 79px;
  }
}

@media screen and (min-width: 790px) {
  .toggle-menu {
    display: none;
  }
  .cbp-spmenu {
    display: block !important;
    min-height: auto !important;
    float: left;
    position: static;
    background-color: transparent;
    overflow: visible;
  }
  .cbp-spmenu .toggle-menu {
    margin-top: 12px;
  }
  .cbp-spmenu-vertical {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cbp-spmenu-vertical .lstMenuPrincipal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .cbp-spmenu-vertical .lstMenuPrincipal > li {
    float: none;
  }
}

@media screen and (min-width: 1212px) {
  .cbp-spmenu-vertical {
    padding-left: 90px;
    padding-right: 90px;
    background-color: #0D2F4E;
  }
}

/* =============================================== */
/* Menu Header                                     */
/* ----------------------------------------------- */
/* Media Queries---------------------------------- */
@media screen and (max-width: 1211px) {
  #zoneMenu {
    background-color: #0D2F4E !important;
  }
}

@media screen and (min-width: 790px) {
  #zoneMenu {
    position: relative;
    box-sizing: padding-box;
    /*&:before
			content: ""
			position: absolute
			width: 100%
			display: block
			height: 5px
			bottom: 0
			left: 0
			background-color: $blanc*/
  }
  body[data-typemenu="header"] #menuPrincipal {
    margin-top: 0;
    position: relative;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal {
    padding-top: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal li a {
    color: #fff;
    padding: 5px 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal li.active {
    padding-bottom: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal li.active a {
    color: #fff;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li {
    float: left;
    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 {
    padding: 2px 20px;
    margin: 0;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    font-size: 13px;
    font-size: 1.3rem;
    /*border-bottom: 5px solid $blanc*/
    overflow: visible;
    position: relative;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 700;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li > a:before {
    content: "";
    width: 100%;
    height: 5px;
    background-color: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
    overflow: visible;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li > a:first-child {
    margin-left: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.parent > a:after {
    border: 4px solid transparent;
    border-top: 8px solid #fff;
    border-bottom: 0;
    height: 0;
    width: 0;
  }
  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:hover > a {
    background-color: #fff;
    color: #000000;
    /*border-bottom: 5px solid $jaune*/
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li:hover > a:before, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li:focus > a:before, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.active > a:before, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.itemActif:hover > a:before {
    background-color: #EC8416;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li:hover.parent > a:after, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li:focus.parent > a:after, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.active.parent > a:after, body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.itemActif:hover.parent > a:after {
    border: 4px solid transparent;
    border-top: 8px solid #0D2F4E;
    border-bottom: 0;
    height: 0;
    width: 0;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.itemActif > a {
    background-color: #fff;
    color: #000000;
    /*border-bottom: 5px solid $jaune*/
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal > li.itemActif > a:before {
    background-color: #EC8416;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub {
    display: none;
    background: #0D2F4E;
    position: absolute;
    left: 0;
    right: 0;
    padding: 15px 20px;
    margin-top: 5px;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul {
    padding-left: 20px;
    padding-right: 20px;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li a {
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li a:before {
    left: -10px;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li a[href="#"] {
    color: #EEC430;
    text-transform: uppercase;
    font-weight: 600;
  }
  body[data-typemenu="header"] #menuPrincipal .lstMenuPrincipal .sub ul li ul li a {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 15px;
    line-height: 1.5rem;
  }
}

/*		margin-top: 10px*/
/* *********************************************** */
/* FOOTER                                          */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Base                                          */
/* - Menu footer                                   */
/* - Copyright                                     */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Base                                            */
/* ----------------------------------------------- */
#footer {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background-color: #1C1C1C;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
}

#footer * {
  color: #ffffff;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 992px) {
  #footer .merge12 {
    width: 83.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 8.3333333333%;
  }
}

/* =============================================== */
/* Menu footer                                     */
/* ----------------------------------------------- */
#footer #menu_footer, #footer #menuFooter {
  margin: 10px 0;
  *zoom: 1;
}

#footer #menu_footer:before, #footer #menu_footer:after, #footer #menuFooter:before, #footer #menuFooter:after {
  display: table;
  content: "";
}

#footer #menu_footer:after, #footer #menuFooter:after {
  clear: both;
}

#footer #menu_footer ul, #footer #menuFooter ul {
  list-style: none;
  padding-left: 0;
}

#footer #menu_footer ul li, #footer #menuFooter ul li {
  margin-right: 20px;
  margin-bottom: 5px;
}

#footer #menu_footer ul li a, #footer #menuFooter ul li a {
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

#footer #menu_footer ul li a:after, #footer #menuFooter ul li a:after {
  content: "";
  display: block;
  visibility: visible;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  height: 1px;
}

#footer #menu_footer ul li a:after, #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 #menu_footer ul li a:hover, #footer #menu_footer ul li a:focus, #footer #menuFooter ul li a:hover, #footer #menuFooter ul li a:focus {
  color: #ffffff;
}

#footer #menu_footer ul li a:hover:after, #footer #menu_footer ul li a:focus:after, #footer #menuFooter ul li a:hover:after, #footer #menuFooter ul li a:focus:after {
  visibility: visible;
  width: 100%;
}

#footer #menu_footer ul li.itemActif a, #footer #menu_footer ul li.current-page-item a, #footer #menuFooter ul li.itemActif a, #footer #menuFooter ul li.current-page-item a {
  position: relative;
  color: #ffffff;
}

#footer #menu_footer ul li.itemActif a:after, #footer #menu_footer ul li.current-page-item a:after, #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;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 790px) {
  #footer #menu_footer, #footer #menuFooter {
    max-width: none;
  }
  #footer #menu_footer ul, #footer #menuFooter ul {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
  }
  #footer #menu_footer ul li, #footer #menuFooter ul li {
    display: inline-block;
  }
}

/* =============================================== */
/* Copyright                                       */
/* ----------------------------------------------- */
#footer #copyright {
  text-align: center;
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 15px;
  line-height: 1.5rem;
}

/* *********************************************** */
/* NAVPAGE "Navigation précédent/suivant           */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General                                       */
/*                                                 */
/* *********************************************** */
#contenu #navPageForm ul {
  margin: 0;
}

/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
#navPageForm {
  padding: 30px 0 20px;
  margin-top: 30px;
  clear: both;
}

#navPageForm ul {
  margin: 0;
  padding: 0;
}

#navPageForm ul li {
  position: relative;
  float: left;
  width: 33.33333333333333%;
  height: 18px;
  margin: 0;
  color: #333;
}

#navPageForm ul li:before {
  display: none !important;
  visibility: hidden;
}

#navPageForm ul li.alignGauche {
  text-align: left;
}

#navPageForm ul li.itemPrec a {
  padding: 0 0 0 30px;
  background: url(../img/icones/ico_pagePrecedent_15x36.svg) 10% top no-repeat;
  -webkit-transition: background-position-x 500ms ease;
  -moz-transition: background-position-x 500ms ease;
  transition: background-position-x 500ms ease;
}

#navPageForm ul li.itemPrec a:hover {
  background-position: 0% -18px;
}

#navPageForm ul li.alignCentre a span {
  position: relative;
}

#navPageForm ul li.alignCentre a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -2px;
  left: 0;
  background: #767676;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

#navPageForm ul li.alignCentre a span:hover:before, #navPageForm ul li.alignCentre a span:focus:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
}

#navPageForm ul li.alignDroite {
  text-align: right;
}

#navPageForm ul li.itemSuiv a {
  padding: 0 30px 0 0;
  background: url(../img/icones/ico_pageSuivant_15x36.svg) 90% top no-repeat;
  -webkit-transition: background-position-x 500ms ease;
  -moz-transition: background-position-x 500ms ease;
  transition: background-position-x 500ms ease;
}

#navPageForm ul li.itemSuiv a:hover {
  background-position: 100% -18px;
}

#navPageForm ul li a:link, #navPageForm ul li a:visited {
  display: inline-block;
  height: 18px;
  text-transform: lowercase;
  text-decoration: none;
  color: #333;
}

#navPageForm ul li a:hover span {
  color: #767676;
  -webkit-transition: color 500ms ease-out;
  -moz-transition: color 500ms ease-out;
  transition: color 500ms ease-out;
}

#navPageForm ul li span {
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.37462;
  display: block;
  vertical-align: middle;
  height: 18px;
}

/* *********************************************** */
/* CONTENU                                         */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General                                       */
/* - Titres                                        */
/* - fil ariane                                    */
/* - Tableaux                                      */
/* - Listes                                        */
/* - Panneau d'onglets                             */
/* - Accordeons                                    */
/* - video jwplayer                                */
/* - Plan du site                                  */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
.cManquant, .cmanquant, .contenu-manquant {
  background-color: pink;
}

.dropdown.nav-item {
  display: none;
}

.btn-primary {
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  padding: 5px 15px 7px 15px;
}

#main #contenu {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}

#main {
  /*background-image: url("../img/structure/img_background.jpg")*/
}

#contenu {
  padding-top: 40px !important;
  padding-bottom: 15px;
  background-color: #fff;
  position: relative;
}

#contenu a[id^="source"], #contenu a[id^="ref"] {
  background-color: #6C6B6C;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 19px;
  line-height: 1.9rem;
  vertical-align: middle;
  padding: 1px 7px 2px 7px;
  border-radius: 20px;
  text-decoration: none;
}

#contenu a[id^="source"] {
  margin-right: 10px;
}

#contenu a[id^="ref"] {
  margin-left: 10px;
}

#contenu p {
  margin-bottom: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

#contenu .note, #contenu .source {
  font-weight: 300;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
}

#contenu sup.rond, #contenu .source.rond {
  position: relative;
  padding-left: 25px;
}

#contenu sup.rond > a:first-of-type, #contenu .source.rond > a:first-of-type {
  font-weight: 700;
  position: absolute;
  text-decoration: none;
  z-index: 600;
  color: #56597e;
  display: inline-block;
  text-align: center;
  top: -1px;
  left: 0;
  width: 20px;
  line-height: 20px;
  line-height: 2rem;
  font-size: 12px;
  font-size: 1.2rem;
}

#contenu sup.rond > a:first-of-type:after, #contenu .source.rond > a:first-of-type:after {
  content: "";
  background-color: #c9cad6;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

#contenu sup.rond > a {
  top: 1px;
  left: 2px;
}

#contenu p img, #contenu figure img {
  max-width: 100%;
  display: block;
  margin: auto;
  padding: 10px;
}

#contenu p .signature, #contenu figure .signature {
  max-width: 210px;
}

#contenu p.petit, #contenu figure.petit {
  text-align: center;
}

#contenu p.petit img, #contenu figure.petit img {
  width: auto;
  max-width: 100%;
}

#contenu figure {
  margin: 0 0 35px;
}

#contenu a {
  text-decoration: underline;
  word-break: break-word;
}

#contenu .contenu-manquant, #contenu .cmanquant {
  background-color: pink;
}

#contenu .sansMarge {
  margin-bottom: 5px;
}

#contenu .borderImg {
  padding: 10px;
  border: 1px solid #707070;
}

#contenu .borderImg img {
  margin-bottom: 5px;
}

#contenu .encadre {
  border: 1px solid #707070;
  padding: 45px 52px 15px 40px;
  margin-top: 55px;
  margin-bottom: 40px;
  position: relative;
  border-radius: 5px;
}

#contenu .encadre.lectures:before {
  content: "";
  position: absolute;
  display: block;
  width: 54px;
  height: 57px;
  top: -24px;
  left: 20px;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/icones/png/im_lectures.png");
}

#contenu .encadre.lectures:after {
  content: "Lectures";
  position: absolute;
  text-transform: uppercase;
  top: -17px;
  left: 74px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #2B304D;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
  padding-right: 20px;
  padding-left: 22px;
  background-color: #fff;
}

#contenu .encadre.objectif:before {
  content: "";
  position: absolute;
  display: block;
  width: 73px;
  height: 65px;
  top: -40px;
  left: 20px;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/icones/png/im_objectifs.png");
}

#contenu .encadre.objectif:after {
  content: "Objectifs";
  position: absolute;
  top: -17px;
  left: 91px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #2B304D;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
  padding-left: 8px;
  padding-right: 20px;
  background-color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
}

#contenu .encadre.essentiel:before {
  content: "";
  position: absolute;
  display: block;
  width: 57px;
  height: 65px;
  top: -33px;
  left: 20px;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/icones/png/im_retenir.png");
}

#contenu .encadre.essentiel:after {
  content: "L’essentiel à retenir";
  position: absolute;
  text-transform: uppercase;
  top: -17px;
  left: 77px;
  color: #2B304D;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
  padding-left: 22px;
  padding-right: 20px;
  background-color: #fff;
}

#contenu .encadre.ouvrage {
  border: 2px solid #B1CE55;
  padding: 70px 40px 20px 40px;
  text-align: center;
  font-weight: inherit;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}

#contenu .encadre.ouvrage h3 {
  text-align: center;
}

#contenu .encadre.ouvrage:before {
  content: "";
  position: absolute;
  display: block;
  width: 65px;
  height: 65px;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 65px;
  background-color: #B1CE55;
  background-position: center center;
  background-repeat: no-repeat;
}

#contenu .encadre.ouvrage.lectures:before {
  background-image: url("../img/icones/png/icone_dictionnaire.png");
}

#contenu .encadre.ouvrage.livre-conjugaisons:before {
  background-image: url("../img/icones/png/icone_conjugaison.png");
}

#contenu .encadre.ouvrage.mannuel-grammaire:before {
  background-image: url("../img/icones/png/icone_grammaire.png");
}

#contenu .encadre.ouvrage.autres-ouvrages:before {
  background-image: url("../img/icones/png/icone_autres_ouvrages.png");
}

#contenu .encadre.ouvrage.oeuvres-journaux:before {
  background-image: url("../img/icones/png/icone_journal.png");
}

#contenu .encadre.activite {
  border: 1px solid #5E7294;
  color: #5E7294;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}

#contenu .encadre.activite h2 {
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: none;
}

#contenu .encadre.activite:after {
  position: absolute;
  text-transform: uppercase;
  top: -17px;
  font-weight: 500;
}

#contenu .encadre.notee:after {
  content: "Activité obligatoire notée";
}

#contenu .encadre.non-notee:after {
  content: "Activité obligatoire non notée";
}

#contenu .encadre.attention:before {
  content: "";
  display: block;
  width: 43px;
  height: 43px;
  position: absolute;
  top: -21.5px;
  left: 10px;
  background-image: url(https://m2.teluq.ca/theme/fra3005/img/icones/png/icone_point_exclamation.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

#contenu .mgb-60 {
  margin-bottom: 60px !important;
}

#contenu .mgb-20 {
  margin-bottom: 60px !important;
}

#contenu .mgt-30 {
  margin-top: 30px !important;
}

#contenu .mgb-55 {
  margin-bottom: 55px !important;
}

#contenu .mgl-0 {
  margin-left: 0 !important;
}

#contenu .emphase {
  background-color: #D6D6D7;
  font-weight: 600;
}

#contenu .emphase-plus {
  background-color: #707070;
  color: #fff;
  font-weight: 600;
}

#contenu .encadre.activite .btn-primary {
  background-color: #EB6C10;
  border-color: #EB6C10;
  margin: 0 auto;
  border-radius: 4px;
}

#contenu .mod-slick-slider {
  max-width: 100% !important;
}

#contenu .slick-list {
  height: auto !important;
}

#contenu blockquote {
  padding-left: 2em;
}

#contenu #sommaire {
  width: 100%;
  margin-bottom: 40px;
}

#contenu #sommaire .dropdown-toggle {
  border-color: #c4c4c4;
  width: 100%;
  padding: 5px 10px;
  border-radius: 3px;
  text-align: left;
  font-weight: 600;
  background-color: transparent;
  font-size: 16px;
}

#contenu #sommaire .dropdown-toggle:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  color: #c4c4c4;
  width: 7px;
  height: 4px;
  border: none;
  background-image: url(https://m2.teluq.ca/theme/fra3005/img/icones/ico_chevron.svg);
  background-repeat: no-repeat;
}

#contenu #sommaire .dropdown-menu {
  width: 100%;
  font-size: 16px;
  background-color: #f2f2f2;
}

#contenu #sommaire .dropdown-menu .dropdown-item {
  padding: 7px 15px 7px 15px;
  text-decoration: none;
}

#contenu .animVideoPlaylist .sidebar {
  width: 100%;
  height: 100% !important;
  background-color: #fff !important;
  border-top: none !important;
  border-bottom: none !important;
  margin-bottom: 35px;
  padding: 16px;
  padding-bottom: 30px;
}

#contenu .animVideoPlaylist .sidebar .searchbox input {
  display: none;
}

/* 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: 790px) {
  #contenu, .contenu_entete {
    width: 100%;
  }
  #contenu.col.offset1, .contenu_entete.col.offset1 {
    margin-left: 0;
  }
  #contenu.merge10, .contenu_entete.merge10 {
    padding-left: 20px;
    padding-right: 20px;
  }
  #contenu .encadre.activite:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 1212px) {
  #contenu.col.offset1, .contenu_entete.col.offset1 {
    margin-left: 10%;
  }
  #contenu.merge10, .contenu_entete.merge10 {
    width: 80%;
    padding-left: 90px;
    padding-right: 90px;
    margin: 0 auto;
  }
  #contenu.merge9, .contenu_entete.merge9 {
    width: 58.3333333333%;
    padding-left: 40px;
    padding-right: 40px;
  }
  #contenu.merge9.sidebar-right, .contenu_entete.merge9.sidebar-right {
    margin-left: 8.3333333333%;
  }
}

/* =============================================== */
/* Titres                                          */
/* ----------------------------------------------- */
#contenu a[href^="/mod/page/view"] {
  margin-bottom: 20px;
}

#contenu img {
  max-width: 100%;
}

#contenu h1:not(.titreModule), #contenu .h1:not(.titreModule), #contenu h2, #contenu .h2, #contenu h3, #contenu .h3, #contenu h4, #contenu .h4, #contenu h5, #contenu .h5, #contenu h6, #contenu .h6 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

#contenu h1:not(.titreModule):not(.h2), #contenu .h1:not(.titreModule) {
  margin-top: 0;
  margin-bottom: 35px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #000000;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 300;
}

#contenu h2, #contenu .h2 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 29px;
  line-height: 2.9rem;
  color: #2B304D;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 16px;
}

#contenu h3, #contenu .h3 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18.75px;
  line-height: 1.875rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #2B304D;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  font-style: normal;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

#contenu h3.exercice {
  background-color: #4E6580;
  padding: 3px 0 3px 97px;
  color: #fff;
  font-weight: 500;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  position: relative;
  margin-bottom: 20px !important;
  margin-top: 40px !important;
  height: 30px !important;
  font-size: 15px;
  font-size: 1.5rem;
}

#contenu h3.exercice:before {
  content: "";
  position: absolute;
  display: block;
  width: 73px;
  height: 65px;
  top: -23px;
  left: 20px;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/icones/png/im_exercice.png");
}

#contenu h3.exercice > span {
  text-transform: uppercase;
}

#contenu h4, #contenu .h4 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-style: italic;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #000000;
}

#contenu .encadre > h1, #contenu .encadre > h2, #contenu .encadre > h3, #contenu .encadre > h4, #contenu .encadre > h5, #contenu .encadre > h6 {
  margin-top: 0;
}

#contenu .interTitre {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #48433F;
}

#contenu .encadre .interTitre {
  color: #000000;
}

#contenu .titreModule {
  vertical-align: middle;
  padding-top: 22px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

#contenu .titreModule span {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 33px;
  line-height: 3.3rem;
  padding-right: 20px;
  display: inline-block;
  border-right: 4px solid #EC8416;
  margin-right: 20px;
  font-weight: 400;
}

#contenu .titreModuleSecond {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  position: relative;
  padding-top: 22px;
}

#contenu .titreModuleSecond .noModule {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 32px;
  line-height: 3.2rem;
}

#contenu .titreModuleSecond .titleModule {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
}

#contenu .titreModuleSecond:after {
  content: "";
  display: block;
  width: 64px;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 6px solid #EC8416;
}

/* =============================================== */
/* fil ariane                                      */
/* ----------------------------------------------- */
#main #filAriane {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

#main #filAriane .separator {
  margin: 0 5px;
}

#main #filAriane li {
  list-style-type: none;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17.5px;
  line-height: 1.75rem;
}

#main #filAriane li a {
  color: #333333;
  font-weight: 300;
  text-decoration: underline;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17.5px;
  line-height: 1.75rem;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 790px) {
  #main #filAriane {
    padding-top: 25px;
    padding-bottom: 0;
    position: absolute;
    background-color: transparent;
    z-index: 200;
    padding-left: 0;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 300;
  }
}

@media screen and (min-width: 1212px) {
  #main #filAriane {
    display: block;
    width: 100%;
    margin-left: 20px;
  }
  #main #filAriane .merge12 {
    width: 80%;
    padding-left: 70px;
    margin: 0 auto;
  }
}

/* =============================================== */
/* Tableaux                                        */
/* ----------------------------------------------- */
/* Intertitre ------------------------------------ */
#contenu .interTitre.tableau1, #contenu .interTitre.tableau2 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
}

#contenu .interTitre.tableau1 {
  color: #0D2F4E;
}

#contenu .interTitre.tableau2 {
  color: #2c3e50;
}

/* Tableau par défaut ---------------------------- */
#contenu .tableau {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

#contenu .tableau table {
  width: 100%;
  min-width: 575px;
  border: 1px solid #000;
}

#contenu .tableau th, #contenu .tableau td {
  padding: 15px;
  vertical-align: top;
}

#contenu .tableau th[valign='middle'], #contenu .tableau td[valign='middle'] {
  vertical-align: middle;
}

#contenu .tableau th > *:first-child, #contenu .tableau td > *:first-child {
  padding-top: 0;
  margin-top: 0;
}

#contenu .tableau th > *:last-child, #contenu .tableau td > *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

#contenu .tableau th {
  font-weight: 700;
}

#contenu .tableau th.demi {
  width: 50%;
}

#contenu .tableau th.tier {
  width: 33.33333333333333%;
}

#contenu .tableau th.quart {
  width: 25%;
}

#contenu .tableau tr {
  background-color: rga(0, 0, 0, 0);
}

#contenu .tableau.style1 th {
  border: solid 1px #fff;
  border-top: none;
  background-color: #0D2F4E;
  text-align: center;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  vertical-align: middle;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
}

#contenu .tableau.style1 th:first-child {
  border-left: none;
  border-right: 1px solid #fff !important;
}

#contenu .tableau.style1 th:last-child {
  border-left: 1px solid #fff !important;
}

#contenu .tableau.style1 th > p {
  margin-bottom: 0 !important;
  line-height: 20px;
  line-height: 2rem;
}

#contenu .tableau.style1 td {
  border: solid 1px #070707;
}

#contenu .tableau.style1 td > p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 300;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

#contenu .tableau.style1 tr th:first-child, #contenu .tableau.style1 tr td:first-child {
  border-left: none;
}

#contenu .tableau.style1 tr th:last-child, #contenu .tableau.style1 tr td:last-child {
  border-right: none;
}

#contenu .tableau.style1 tr:last-child td {
  border-bottom: none;
}

#contenu .tableau.feuille-route {
  border: none;
}

#contenu .tableau.feuille-route table {
  border-spacing: 5px;
  border-collapse: separate;
}

#contenu .tableau.feuille-route th, #contenu .tableau.feuille-route td {
  border: none;
}

#contenu .tableau.feuille-route td {
  background-color: #E6E6E6;
}

#contenu .tableau.feuille-route .emphase {
  background-color: #D6D6D7;
}

#contenu .tableau.feuille-route .emphase-plus {
  background-color: #707070;
  color: #fff;
}

#contenu .tableau.style2 th {
  background-color: #2c3e50;
  color: #fff;
  text-align: left;
}

#contenu .tableau.style2 tbody tr:nth-child(odd) {
  background-color: #b4c5d6;
}

#contenu .tableau.demarche-apprentissage table {
  text-align: center;
  border: none;
  border-collapse: separate;
  border-spacing: 0 1em;
}

#contenu .tableau.demarche-apprentissage thead th {
  background-color: #4A4949;
  color: #ffffff;
  border: none;
  padding: 15px;
  border-right: 2px solid #ffffff;
  text-transform: uppercase;
  vertical-align: middle;
  font-family: "Univers", Helvetica, Arial, sans-serif;
}

#contenu .tableau.demarche-apprentissage thead th:last-of-type {
  border-right: none;
}

#contenu .tableau.demarche-apprentissage td {
  color: #707070;
  border: none;
  vertical-align: middle;
}

#contenu .tableau.demarche-apprentissage tr.reussite td {
  border-top: 2px solid #4CB57C;
  border-bottom: 2px solid #4CB57C;
}

#contenu .tableau.demarche-apprentissage tr.reussite td:first-of-type, #contenu .tableau.demarche-apprentissage tr.reussite td:last-of-type {
  background-color: #4CB57C;
  color: #ffffff;
}

#contenu .tableau.demarche-apprentissage tr.echec td {
  border-top: 2px solid #C9132F;
  border-bottom: 2px solid #C9132F;
}

#contenu .tableau.demarche-apprentissage tr.echec td:first-of-type, #contenu .tableau.demarche-apprentissage tr.echec td:last-of-type {
  background-color: #C9132F;
  color: #ffffff;
}

#contenu .tableau.demarche-apprentissage tr td:first-of-type {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 700;
}

#contenu .tableau.demarche-apprentissage tr td:last-of-type {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}

#contenu .tableau .bgBleu {
  background-color: #0D2F4E;
  color: #fff;
}

/* Media Queries---------------------------------- */
@media screen and (max-width: 789px) {
  /* 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.style1 {
    border: none;
  }
  .flexbox #contenu .tableau.flip.style1 tbody {
    border-top: solid 1px #a6a7a8;
    border-bottom: solid 1px #a6a7a8;
    border-right: solid 1px #a6a7a8;
  }
  .flexbox #contenu .tableau.flip.style1 tr th:first-child {
    border-left: solid 1px #a6a7a8;
  }
  .flexbox #contenu .tableau.flip.style1 tr th:last-child, .flexbox #contenu .tableau.flip.style1 tr td:last-child {
    border-right: solid 1px #a6a7a8;
  }
  .flexbox #contenu .tableau.flip.style1 tr td:first-child {
    border-top: none;
  }
  .flexbox #contenu .tableau.flip.style1 tr td:last-child {
    border-bottom: none;
  }
  .flexbox #contenu .tableau.flip.style2 tbody {
    border-top: solid 1px #b4c5d6;
    border-bottom: solid 1px #b4c5d6;
    border-right: solid 1px #b4c5d6;
  }
}

#contenu .animVideoPlaylist video {
  border: 1px solid #000;
}

/* =============================================== */
/* Listes                                          */
/* ----------------------------------------------- */
#contenu ul, #contenu ol {
  margin: 0 0 18px 15px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

#contenu ul > li, #contenu ol > li {
  margin-bottom: 8px;
  line-height: 2.4rem !important;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
}

#contenu ul > li > ul, #contenu ul > li > ol, #contenu ol > li > ul, #contenu ol > li > ol {
  margin-bottom: 15px;
}

#contenu ol > li {
  list-style: decimal;
}

#contenu ol.listeLettre > li, #contenu ol.listeAlpha > li, #contenu ol.liste-alpha > li, #contenu ol.listAlpha > li {
  list-style: lower-alpha;
}

#contenu ul > li {
  list-style: none;
  position: relative;
}

#contenu ul > li:before {
  content: ".";
  font-size: 35px;
  font-size: 3.5rem;
  vertical-align: middle;
  position: absolute;
  top: -10px;
  left: -15px;
}

#contenu ul > li > ul > li {
  list-style: none;
  position: relative;
}

#contenu ul > li > ul > li:before {
  content: "-";
  font-size: 18px;
  font-size: 1.8rem;
  vertical-align: middle;
  position: absolute;
  top: -1px;
  left: -15px;
}

#contenu ul.sansPuce {
  margin: 0 0 15px 0;
}

#contenu ul.sansPuce > li:before {
  display: none;
}

#contenu ul.sansPuce > li > ol, #contenu ul.sansPuce > li > ul:not(.sansPuce) {
  margin: 0 0 15px 30px;
}

/* =============================================== */
/* Panneau d'onglets                               */
/* ----------------------------------------------- */
#contenu .panneauOnglets {
  margin-bottom: 30px;
  position: relative;
}

#contenu .panneauOnglets .onglets {
  margin: 0;
  padding: 0;
  *zoom: 1;
  background-color: white;
}

#contenu .panneauOnglets .onglets:before, #contenu .panneauOnglets .onglets:after {
  display: table;
  content: "";
}

#contenu .panneauOnglets .onglets:after {
  clear: both;
}

#contenu .panneauOnglets .onglets li {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  display: none;
}

#contenu .panneauOnglets .onglets li:before {
  content: "";
  position: static;
}

#contenu .panneauOnglets .onglets li a {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-decoration: none;
  display: block;
  padding: 7px 0;
  position: relative;
  color: #333333;
  border-bottom: 7px solid #497e7d;
  outline: none;
}

#contenu .panneauOnglets .onglets li a span.visite {
  background-color: #ccf3e8;
}

#contenu .panneauOnglets .onglets li a span {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  line-height: 1.8rem;
}

#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;
}

#contenu .panneauOnglets .onglets li.ui-tabs-active a {
  font-weight: bold;
  border-bottom: 7px solid #56d8b4;
}

#contenu .panneauOnglets .onglets li.ui-tabs-active a:hover {
  text-decoration: underline;
}

#contenu .panneauOnglets .onglets li.ui-tabs-active a span {
  font-weight: bold;
}

#contenu .panneauOnglets .onglets li.ui-tabs-active a span.visite {
  background-color: transparent;
}

#contenu .panneauOnglets > div {
  padding-top: 10px;
}

#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 .boite {
  background-color: #f0f3f1;
  margin-left: -10px;
  margin-right: -10px;
  padding: 20px 10px;
}

#contenu .panneauOnglets > div .boite *:last-child {
  margin-bottom: 0;
}

/* Media Queries---------------------------------- */
@media screen and (max-width: 549px) {
  #contenu .panneauOnglets > div {
    display: block !important;
  }
}

@media screen and (min-width: 550px) {
  #contenu .panneauOnglets .onglets.main-nav-scrolled {
    position: fixed;
    top: 0;
    z-index: 10;
  }
  #contenu .panneauOnglets .onglets li {
    position: relative;
    display: inline-block;
    width: 20%;
    float: left;
    text-align: center;
    margin-bottom: 0;
  }
  #contenu .panneauOnglets .onglets li:after {
    position: absolute;
    top: 50%;
    right: -2px;
    margin-top: -16px;
    content: "|";
  }
  #contenu .panneauOnglets .onglets li:last-child:after {
    content: "";
  }
  #contenu .panneauOnglets > div {
    border-left: 1px dotted #56d8b4;
    padding: 25px 10px;
    position: relative;
    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.general:first-child {
    overflow: hidden;
    position: absolute;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  #contenu .panneauOnglets > div > .interTitre.general:first-child.focusable:active, #contenu .panneauOnglets > div > .interTitre.general:first-child.focusable:focus {
    position: static;
    clip: auto;
    height: auto;
    width: auto;
    margin: 0;
    overflow: visible;
  }
  #contenu .panneauOnglets > div > h3 {
    text-transform: uppercase;
  }
  #contenu .panneauOnglets > div > h3.titreIco {
    text-transform: none;
  }
  #contenu .panneauOnglets > div > h3 + h4 {
    margin-top: 0;
  }
  #contenu .panneauOnglets > div > :first-child, #contenu .panneauOnglets > div > span.interTitre.general.visuallyHidden:first-child + * {
    margin-top: 0;
    padding-top: 0;
  }
  #contenu .panneauOnglets > div > :last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* =============================================== */
/* Accordeons                                      */
/* ----------------------------------------------- */
#contenu .accordeon.transcipt {
  margin-bottom: 0;
}

#contenu .accordeon {
  margin-bottom: 30px;
  /* Accordéons : avec image */
}

#contenu .accordeon .toggler {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 300;
  position: relative;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 7px 30px 7px 10px;
  background-color: #fff;
  border-bottom: 1px solid #707070;
  cursor: pointer;
  color: #48433F;
  margin-left: 20px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 15px;
  line-height: 1.5rem;
}

#contenu .accordeon .toggler:first-child {
  margin-top: 0;
}

#contenu .accordeon .toggler .icone {
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  padding: 0px 20px 0px 0px;
  height: 20px;
  line-height: 20px;
  line-height: 2rem;
  background: url("../img/icones/ico_accordeon.svg") no-repeat top right;
  background-size: 20px;
  color: #48433F;
}

#contenu .accordeon .toggler.active {
  background-color: #fff;
  color: #48433F;
  border-bottom: 1px solid #707070;
  -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 -20px;
  color: #48433F;
}

#contenu .accordeon > div {
  background-color: #fff;
  padding: 15px 15px 0 0;
  margin-left: 20px;
}

#contenu .accordeon > div > p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
}

#contenu .accordeon > div > *:first-child {
  padding-top: 0;
  margin-top: 0;
}

#contenu .accordeon > div > *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  /* Accordéons : transcription */
}

#contenu .accordeon.transcipt .toggler {
  background-color: #fff;
  border: none;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 15px 10px 10px 0 !important;
  margin-left: 0;
}

#contenu .accordeon.transcipt > div {
  background-color: #fff;
  padding: 0;
  margin-left: 0 !important;
  /* Accordéons : transcription v2 */
}

#contenu .accordeon.transcipt2 .toggler {
  background-color: #fff;
  border: 1px solid #707070;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 15px 10px 10px 20px !important;
  margin-left: 0;
  margin-top: 5px;
}

#contenu .accordeon.transcipt2 > div {
  background-color: #fff;
  padding: 0 0 15px 15px;
  margin-left: 0 !important;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

#contenu .accordeon.image .toggler {
  font-size: 100%;
  line-height: 100%;
}

#contenu .accordeon.image .toggler:before {
  display: none;
  content: "";
  background: url("../img/structure/img_accordeon_image.png");
  position: absolute;
  top: 0;
  left: 0;
  max-width: 140px;
  width: 100%;
  max-height: 60px;
  height: 100%;
  border-right: 5px solid #fff;
}

#contenu .accordeon.image .toggler span.interTitre {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 400;
  margin-left: 0;
  display: inline-block;
}

#contenu .accordeon.image .toggler.active span.interTitre {
  color: #ffffff;
}

#contenu .accordeon.image .toggler .icone {
  top: 10px;
  bottom: auto;
}

#contenu .accordeon.image > div p {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 300;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 480px) {
  #contenu .accordeon.image .toggler {
    min-height: 60px;
  }
  #contenu .accordeon.image .toggler:before {
    display: block;
  }
  #contenu .accordeon.image .toggler span.interTitre {
    margin-left: 140px;
  }
}

@media screen and (min-width: 790px) {
  #contenu .accordeon .toggler {
    padding: 7px 78px 7px 10px !important;
  }
  #contenu .accordeon .toggler .icone {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-size: 1.6rem;
  }
  #contenu .accordeon .toggler .icone:before {
    content: "Ouvrir";
    text-transform: uppercase;
    position: relative;
    left: -8px;
  }
  #contenu .accordeon .toggler.active .icone:before {
    content: "Fermer";
  }
}

@media screen and (min-width: 992px) {
  #contenu .accordeon .toggler {
    padding: 5px 78px 5px 0px !important;
  }
  #contenu .accordeon .toggler .icone {
    padding: 0px 16px 0px 0px;
    height: 16px;
    background-size: 16px;
    font-weight: 300;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 16px;
    line-height: 1.6rem;
  }
  #contenu .accordeon .toggler.active .icone {
    background-position: right -16px;
  }
}

/* =============================================== */
/* Video/audio jwplayer                            */
/* ----------------------------------------------- */
#contenu .borderVideo {
  border: 1px solid #707070;
  padding: 10px 10px 0 10px;
}

#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 figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.23%;
  margin-bottom: 0;
}

#contenu .animVideoPlaylist figure .boiteAnimVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  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 .sidebar {
  width: 100%;
  height: 250px;
  background-color: #f7f7f7;
  border-top: 5px solid #666;
  border-bottom: 5px solid #666;
  margin-bottom: 35px;
  padding: 20px;
}

#contenu .animVideoPlaylist .sidebar h3 {
  padding: 20px;
  margin: 0;
  color: #ffffff;
  text-align: left;
}

#contenu .animVideoPlaylist .sidebar .searchbox {
  display: block;
  position: relative;
}

#contenu .animVideoPlaylist .sidebar .searchbox input {
  border-radius: 5px;
  box-sizing: border-box;
  color: #333333;
  width: 100%;
  padding: 10px 20px 10px 30px;
  background: white url(../img/icones/png/ico_recherche_gris.png) no-repeat left center;
  border: none;
}

#contenu .animVideoPlaylist .sidebar .searchbox .match {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #333333;
}

#contenu .animVideoPlaylist .sidebar .transcript {
  padding: 15px 20px 0 0;
  position: relative;
  max-height: 75%;
  overflow: auto;
}

#contenu .animVideoPlaylist .sidebar .transcript p {
  overflow: hidden;
  text-align: left;
  color: #333333;
  line-height: 1.5;
}

#contenu .animVideoPlaylist .sidebar .transcript a {
  padding: 4px 2px;
  cursor: pointer;
  color: #333333;
  text-decoration: none;
}

#contenu .animVideoPlaylist .sidebar .transcript a em {
  font-style: normal;
  border: 2px solid #cccccc;
}

#contenu .animVideoPlaylist .sidebar .transcript a em.current {
  background: #FEFDC7;
}

#contenu .animVideoPlaylist .sidebar .transcript a.current {
  background: #fdfca4;
}

#contenu .animVideoPlaylist .sidebar .transcript a:hover {
  background-color: #e6e5e5;
}

#contenu .animVideoPlaylist .sidebar .transcript h4 {
  margin: 20px 0 10px;
  text-align: left;
  color: #333333;
  font-weight: bold;
}

#contenu .animVideoPlaylist video {
  background-color: #fff;
}

#contenu .animVideoPlaylist.visionneuse figure, #contenu .animAudioPlaylist.visionneuse figure {
  margin-bottom: 0;
}

#contenu .animVideoPlaylist.visionneuse ul.listeOnglets, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets {
  margin-top: 7px;
  width: 100%;
  margin-left: 0px;
}

#contenu .animVideoPlaylist.visionneuse ul.listeOnglets li, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li {
  list-style: none;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  padding-right: 0px;
}

#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 {
  display: block;
  padding: 13px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
  font-weight: 300;
  background-color: #00676d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 17px;
  line-height: 1.7rem;
  -webkit-transition: background-color 200ms ease-in-out;
  -moz-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}

#contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:active, #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a.active, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:active, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a.active {
  background-color: #3d3d3d;
}

#contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a:hover, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a:hover {
  background-color: #6c6b6a;
}

.-ms- #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li {
  width: 100%;
}

@media screen and (min-width: 470px) {
  .-ms- #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li {
    width: 50%;
  }
}

@media screen and (min-width: 610px) {
  .-ms- #contenu .animVideoPlaylist.visionneuse ul.listeOnglets:not(.demi) li {
    width: 33.33%;
  }
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 470px) {
  #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li {
    float: left;
    width: 50%;
    padding-right: 6px;
  }
  #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li:nth-child(2n), #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li:nth-child(2n) {
    padding-right: 0px;
  }
  #contenu .animVideoPlaylist.visionneuse ul.listeOnglets li a .temps, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets li a .temps {
    display: block;
    width: 100%;
  }
}

@media screen and (min-width: 610px) {
  #contenu .animVideoPlaylist.visionneuse ul.listeOnglets:not(.demi) li, #contenu .animAudioPlaylist.visionneuse ul.listeOnglets:not(.demi) li {
    width: calc(100%/3);
    margin-bottom: 6px;
    padding-right: 6px;
  }
  #contenu .animVideoPlaylist.visionneuse ul.listeOnglets:not(.demi) li:nth-child(2n), #contenu .animAudioPlaylist.visionneuse ul.listeOnglets:not(.demi) li:nth-child(2n) {
    padding-right: auto;
  }
  #contenu .animVideoPlaylist.visionneuse ul.listeOnglets:not(.demi) li:nth-child(3n), #contenu .animAudioPlaylist.visionneuse ul.listeOnglets:not(.demi) li:nth-child(3n) {
    padding-right: 0px;
  }
}

/* =============================================== */
/* 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, #contenu.planSite .lstPlanSite ul li .sousSub.visuallyHidden {
  overflow: visible;
  position: static;
  height: auto;
  width: auto;
  margin: 0px;
  clip: auto;
}

#contenu.planSite .lstPlanSite ul li .sub .parent > a, #contenu.planSite .lstPlanSite ul li .sousSub .parent > a {
  display: inline-block;
  padding: 10px 0;
}

#contenu.planSite .lstPlanSite ul li .sousSub .container {
  padding-left: 0;
}

#contenu.planSite .lstPlanSite ul li.parent > a {
  cursor: default;
  text-decoration: none;
  color: #333333;
  font-weight: 700;
}

#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;
}

/* =============================================== */
/* Accessibilité                                   */
/* ----------------------------------------------- */
#contenu article a[target="_blank"]:not(a[href*="pluginfile.php"])::after {
  background-image: url(../img/icones/ico_autre_fenetre.svg);
  background-repeat: no-repeat;
}

#contenu article a[target="_blank"]:not(a[href*="pluginfile.php"])::after:hover {
  background-image: url(../img/icones/ico_autre_fenetre-hover.svg);
}

#contenu article a[target="_blank"]:not(a[href*="pluginfile.php"])::after {
  content: "";
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  position: relative;
  top: -4px;
  display: inline-block;
}

#contenu article a[target="_blank"]:not(a[href*="reserve.teluq.ca"], a[href*="https://mareussite.teluq.ca"], a[href*="https://www.teluq.ca"], a[href*="https://bibliotheque.teluq.ca"], a[href*="https://univ.teluq.ca/mateluq/"], a[href*="http://www.teluq.ca/mateluq"])::after {
  background-image: url(../img/icones/ico_obstacle_accessibilite.svg);
  background-repeat: no-repeat;
}

#contenu article a[target="_blank"]:not(a[href*="reserve.teluq.ca"], a[href*="https://mareussite.teluq.ca"], a[href*="https://www.teluq.ca"], a[href*="https://bibliotheque.teluq.ca"], a[href*="https://univ.teluq.ca/mateluq/"], a[href*="http://www.teluq.ca/mateluq"])::after {
  content: "";
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  position: relative;
  top: 0px;
  display: inline-block;
}

/* *********************************************** */
/* SIDEBAR                                         */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General                                       */
/* - Documents                                     */
/* - Consignes                                     */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
#sidebar {
  padding: 20px;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.9);
}

/* Media Queries---------------------------------- */
@media screen and (max-width: 789px) {
  #sidebar.noBlocks {
    padding: 0;
  }
}

@media screen and (min-width: 790px) {
  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: 20px;
  }
}

@media screen and (min-width: 992px) {
  #sidebar.merge3 {
    margin-left: 8.3333333333%;
  }
  #sidebar.merge3.col-right {
    margin-left: 0%;
    margin-right: 8.3333333333%;
  }
}

/* *********************************************** */
/* QUIZ MOODLE 									   */
/* (Pour la ressoucre Moodle de type Test)         */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General 	                                   */
/* - Navigation/Pages                              */
/* - Descriptions                                  */
/* - Questions                                     */
/* - Boutons                                       */
/* - Feedback                                      */
/* - Fin quiz                                      */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
body[class*="quiz"] #main #contenu {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

body[class*="quiz"] #contenu .box.quizinfo.p-y-1 {
  display: none !important;
  visibility: hidden;
}

body[class*="quiz"] #contenu .que .formulation {
  color: #333333;
}

body[class*="quiz"] #contenu .answer input, body[class*="quiz"] #contenu .answer textarea {
  border: 1px solid #414141;
}

body[class*="quiz"] #contenu table td {
  vertical-align: middle;
  padding: 10px 0;
}

body[class*="quiz"] #contenu table td p {
  margin-bottom: 0;
}

body[class*="quiz"] #contenu .que select.custom-select {
  font-size: 12px;
}

/* =============================================== */
/* Navigation/Pages                                */
/* ----------------------------------------------- */
#sidebar #mod_quiz_navblock h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
}

#sidebar #mod_quiz_navblock .thispageholder {
  border-radius: 0px;
}

#sidebar #mod_quiz_navblock .endtestlink, #sidebar #mod_quiz_navblock .othernav a {
  display: block;
  max-width: 150px;
  width: 100%;
  color: #000;
  background-color: #ee6f5a;
  border: 2px solid #ee6f5a;
  padding: 15px 20px;
  text-align: center;
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  font-size: 18.4px;
  font-size: 1.84rem;
  line-height: 24.84px;
  line-height: 2.484rem;
  text-transform: none;
  font-weight: 400;
}

#sidebar #mod_quiz_navblock .endtestlink:hover, #sidebar #mod_quiz_navblock .othernav a:hover {
  background: none;
}

#sidebar #mod_quiz_navblock .othernav a {
  max-width: 200px;
  width: 100%;
}

/* =============================================== */
/* Descriptions                                    */
/* ----------------------------------------------- */
body[class*="quiz"] #contenu .secondary-navigation {
  padding-bottom: 0;
}

body[class*="quiz"] #contenu article > h2 {
  display: none;
}

body[class*="quiz"] #contenu .description .info {
  display: none !important;
  visibility: hidden;
}

body[class*="quiz"] #contenu .description .content {
  margin-left: 0;
}

body[class*="quiz"] #contenu .description .content .formulation {
  background-color: #f5f5f5;
  border: none;
}

body[class*="quiz"] #contenu .description .content h2 {
  margin-top: 10px;
}

body[class*="quiz"] #contenu .description .content h2 .interTitre {
  color: #333;
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  font-size: 18.4px;
  font-size: 1.84rem;
  line-height: 23px;
  line-height: 2.3rem;
}

body[class*="quiz"] #contenu .description .content h3 {
  font-size: 1em;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #333333;
  font-weight: 500;
  margin-bottom: 10px;
}

body[class*="quiz"] #contenu .description .content .boite.miniature {
  max-width: 590px;
  height: 320px;
  position: relative;
}

body[class*="quiz"] #contenu .description .content .boite.miniature .bouton.activite {
  position: absolute;
  top: 35%;
}

body[class*="quiz"] #contenu .description .content .boite.miniature .bouton.activite:hover, body[class*="quiz"] #contenu .description .content .boite.miniature .bouton.activite:focus {
  text-decoration: none;
}

body[class*="quiz"] #contenu .description .content .boite.plan {
  background-color: #fff;
  padding: 20px 25px;
  margin-top: 25px;
  font-size: 15.36px;
  font-size: 1.536rem;
  line-height: 19.2px;
  line-height: 1.92rem;
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

body[class*="quiz"] #contenu .description .content .boite.plan h3 {
  text-transform: uppercase;
  font-size: 15.36px;
  font-size: 1.536rem;
  line-height: 19.2px;
  line-height: 1.92rem;
  font-weight: 400;
  margin: 15px 0 0 0;
}

body[class*="quiz"] #contenu .description .content .boite.plan h3:first-child {
  margin: 0;
}

body[class*="quiz"] #contenu .description .content .boite.plan dl {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 10px 0 0 0;
}

body[class*="quiz"] #contenu .description .content .boite.plan dl dt {
  padding: 0;
  margin: 0;
}

body[class*="quiz"] #contenu .description .content .boite.plan dl dd {
  padding: 0 0 7px 0;
  margin: 0;
}

/* Media Queries---------------------------------- */
body[class*="quiz"] #main > .container {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  max-width: 993px;
}

body[class*="quiz"] #main > .container .merge3 {
  margin-left: 0;
  margin-top: 60px;
}

body[class*="quiz"] #main > .container .merge9 {
  width: 75%;
}

body[class*="quiz"] #main > .container .merge9 .moremenu {
  height: auto;
  display: none;
}

body[class*="quiz"] #contenu .description .content .boite.plan dl dt {
  float: left;
  width: 10%;
  padding: 0 0 7px 0;
  font-weight: 400;
}

body[class*="quiz"] #contenu .description .content .boite.plan dl dd {
  float: left;
  width: 90%;
}

@media screen and (min-width: 992px) {
  body[class*="quiz"] #contenu .description .content h2 .interTitre {
    font-size: 19.84px;
    font-size: 1.984rem;
    line-height: 24.8px;
    line-height: 2.48rem;
  }
}

/* =============================================== */
/* Questions                                       */
/* ----------------------------------------------- */
body[class*="quiz"] #contenu .que .formulation, body[class*="quiz"] #contenu .que .info {
  background: none;
  border: none;
}

body[class*="quiz"] #contenu .que .formulation .qtext {
  margin-bottom: 0;
}

body[class*="quiz"] #contenu .que .info h3, body[class*="quiz"] #contenu .que .info .qno {
  font-weight: 400;
  font-size: 18.4px;
  font-size: 1.84rem;
  line-height: 20px;
  line-height: 2rem;
}

body[class*="quiz"] #contenu .que .info h3 {
  padding-top: 4px;
}

body[class*="quiz"] #contenu .que.multichoice .formulation .answer div[class^="r"] {
  text-indent: 0;
  padding-left: 0;
}

body[class*="quiz"] #contenu .que .tableau table {
  min-width: 455px;
}

body[class*="quiz"] #contenu .que .tableau table th {
  background-color: #e2dfcf;
  color: #000;
}

body[class*="quiz"] #contenu .que .interTitre.tableau1 {
  color: #000;
}

body[class*="quiz"] #contenu .que select.custom-select {
  max-width: 150px;
}

body[class*="quiz"] #contenu .que .formulation input, body[class*="quiz"] #contenu .que .formulation textarea {
  border: 1px solid #555;
}

/* =============================================== */
/* Boutons                                         */
/* ----------------------------------------------- */
body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns {
  *zoom: 1;
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns:before, body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns:after {
  display: table;
  content: "";
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns:after {
  clear: both;
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .btn:not(.p-a-0), body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns a {
  display: inline-block;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #0f6cbf;
  border: none;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  font-weight: 300;
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .btn:not(.p-a-0):hover, body[class*="quiz"]:not(.pagelayout-admin) #contenu .btn:not(.p-a-0):focus, body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns a:hover, body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns a:focus {
  background-color: #78786e;
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .que .btn {
  display: block;
  color: #EB6C10;
  background-color: #fff;
  border: 2px solid #218587;
  float: right;
  *zoom: 1;
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .que .btn:before, body[class*="quiz"]:not(.pagelayout-admin) #contenu .que .btn:after {
  display: table;
  content: "";
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .que .btn:after {
  clear: both;
}

body[class*="quiz"]:not(.pagelayout-admin) #contenu .que .btn:hover, body[class*="quiz"]:not(.pagelayout-admin) #contenu .que .btn:focus {
  color: #fff;
  background-color: #334B58;
  border-color: #334B58;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 480px) {
  body[class*="quiz"]:not(.pagelayout-admin) #contenu .btn:not(.p-a-0), body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns a {
    padding: 15px 30px;
  }
}

@media screen and (min-width: 790px) {
  body[class*="quiz"]:not(.pagelayout-admin) #contenu .btn:not(.p-a-0), body[class*="quiz"]:not(.pagelayout-admin) #contenu .submitbtns a {
    min-width: 160px;
  }
}

/* =============================================== */
/* Feedbacks                                       */
/* ----------------------------------------------- */
body[class*="quiz"] #contenu .outcome {
  background-color: #F0F1E9;
  border: none;
  color: #333333;
}

body[class*="quiz"] #contenu ol.listeLettre > li, body[class*="quiz"] #contenu ol.listeAlpha > li, body[class*="quiz"] #contenu ol.liste-alpha > li, body[class*="quiz"] #contenu ol.listAlpha > li {
  list-style: lower-alpha;
}

/* =============================================== */
/* Fin quiz                                        */
/* ----------------------------------------------- */
body[class*="quiz"] #contenu table.quizsummaryofattempt, body[class*="quiz"] #contenu table.quizattemptsummary {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

body[class*="quiz"] #contenu table.quizsummaryofattempt th, body[class*="quiz"] #contenu table.quizsummaryofattempt td, body[class*="quiz"] #contenu table.quizattemptsummary th, body[class*="quiz"] #contenu table.quizattemptsummary td {
  border: none;
  border-bottom: 1px solid #a6a7a8;
  padding: 5px 10px;
  text-align: center !important;
}

body[class*="quiz"] #contenu table.quizsummaryofattempt th, body[class*="quiz"] #contenu table.quizattemptsummary th {
  background: #0D2F4E;
}

body[class*="quiz"] #contenu table.quizsummaryofattempt td, body[class*="quiz"] #contenu table.quizattemptsummary td {
  background: #fff;
  text-align: left !important;
}

body[class*="quiz"] #contenu table.quizsummaryofattempt .c4, body[class*="quiz"] #contenu table.quizattemptsummary .c4 {
  display: none;
}

body[class*="quiz"] #contenu .history {
  border: none;
}

body[class*="quiz"] #contenu .history table th, body[class*="quiz"] #contenu .history table td {
  border: none;
  border-bottom: 1px solid #a6a7a8;
  padding: 5px 10px;
}

body[class*="quiz"] #contenu .history table th {
  background: #0D2F4E;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 790px) {
  body[class*="quiz"] #contenu table.quizsummaryofattempt, body[class*="quiz"] #contenu table.quizattemptsummary {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* *********************************************** */
/* LECON IFRAME                                    */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Animations                                    */
/* - Base                                          */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Animations                                      */
/* ----------------------------------------------- */
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* =============================================== */
/* Base                                            */
/* ----------------------------------------------- */
html, body {
  height: auto !important;
  background-color: #ffffff;
}

#page-mod-lesson-view {
  animation: fadeInAnimation ease-in-out 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#page-mod-lesson-view #header, #page-mod-lesson-view #filAriane, #page-mod-lesson-view #footer, #page-mod-lesson-view #navPageForm, #page-mod-lesson-view .push, #page-mod-lesson-view h2 {
  display: none;
}

#page-mod-lesson-view #wrapper, #page-mod-lesson-view #main {
  background-image: none;
}

#page-mod-lesson-view #contenu {
  padding-top: 1rem !important;
}

#page-mod-lesson-view #contenu h3 {
  margin-top: 1rem;
}

#page-mod-lesson-view #contenu .lessonbutton.pr-3 {
  display: block;
  padding: 1rem 0;
}

#page-mod-lesson-view #contenu form fieldset {
  border: 0;
}

#page-mod-lesson-view #contenu form fieldset .form-group .col-md-3 {
  display: none;
}

#page-mod-lesson-view #contenu form #fitem_id_submitbutton .col-md-3 {
  display: none;
}

#contenu .boiteIframe {
  border: 1px solid #333333;
  padding: 2rem;
  margin: 2rem 0;
}

#contenu .boiteIframe iframe {
  border: 0;
}

/* Media Queries---------------------------------- */
/* *********************************************** */
/* Bouton retour vers le haut de page              */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General                                       */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
#lienHautPage {
  position: fixed;
  bottom: -40px;
  right: 20px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  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;
  margin-top: 18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

#lienHautPage.show {
  bottom: 20px;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 790px) {
  #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;
  padding: 0;
  line-height: 1;
  margin-top: 13px;
  border: none;
  background: transparent;
}

#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;
}

#outilsRecherche #searchBoxForm form {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: solid 1px #b2b2b2;
  box-sizing: border-box;
}

#outilsRecherche #searchBoxForm form input[type="text"] {
  width: 100%;
  position: relative;
  z-index: 4;
  height: 30px;
  padding: 0px 100px 0 10px;
  color: #333333;
  border: solid 1px #dadada;
  box-sizing: border-box;
}

#outilsRecherche #searchBoxForm form button[type="submit"], #outilsRecherche #searchBoxForm form input[type="button"] {
  float: right;
  position: relative;
  height: 30px;
  z-index: 5;
  margin-top: -30px;
  padding: 5px 10px;
  background-color: #292e33 !important;
  border: none;
  -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 {
  background-color: #EB6C10 !important;
}

#outilsRecherche .fake-form {
  display: none;
}

#outilsRecherche .fake-input {
  width: 100%;
  position: relative;
  z-index: 4;
  height: 30px;
  padding: 0px 100px 0 10px;
  color: #333333;
  border: solid 1px #dadada;
  box-sizing: border-box;
  background-color: #fff;
}

#outilsRecherche .fake-button {
  float: right;
  position: relative;
  height: 30px;
  z-index: 5;
  margin-top: -30px;
  padding: 5px 10px;
  background-color: #292e33 !important;
  border: none;
  -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: #EB6C10 !important;
}

.-ms- #outilsRecherche #searchBoxForm form button[type="submit"], .-ms- #outilsRecherche #searchBoxForm form input[type="button"] {
  position: absolute;
  top: 10px;
  right: 20px;
  margin: 0;
}

/* Media Queries---------------------------------- */
@media screen and (min-width: 790px) {
  #outilsRecherche {
    position: relative;
    min-width: 205px;
    min-height: 30px;
    margin-bottom: 10px;
  }
  #outilsRecherche .toggleRecherche {
    display: none;
  }
  #outilsRecherche #searchBoxForm form {
    display: table-cell !important;
    vertical-align: middle;
    background-color: transparent;
    position: static;
    padding: 0;
    border-bottom: none;
  }
  #outilsRecherche #searchBoxForm form 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"] {
    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 {
    content: "";
    display: block;
    width: 0;
    height: 150%;
  }
  #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%;
  }
  .-ms- #outilsRecherche #searchBoxForm form button[type="submit"], .-ms- #outilsRecherche #searchBoxForm form input[type="button"], .-ms- #outilsRecherche #searchBoxForm .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                                         */
/* *********************************************** */
#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;
  padding-right: 190px;
  margin-bottom: 15px;
}

#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: "Roboto Condensed", Arial, Helvetica, 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;
}

#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;
}

#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 {
  border: 3px solid #ffffff;
  background-color: #959595;
  left: 0px;
  top: 0;
}

#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;
  content: "";
  width: 0;
  height: 0;
  margin-top: 0px;
  left: -6px;
  top: 1px;
  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 {
  text-align: center;
  display: block;
  padding: 5px 15px;
  background-color: #333;
  color: #fff;
}

#contenu .boiteQuiz .associations > div:first-child > p strong {
  margin-right: 5px;
}

#contenu .boiteQuiz .associations ol {
  padding: 0;
  margin-left: 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 {
  border: solid 1px #ccc;
  margin: 15px 5px 0px 0px;
}

#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 {
  border-color: #5d756a;
  background-color: #dee8e3;
}

#contenu .boiteQuiz .associations .lstChReponses li.mauvaiseReponse {
  border-color: #b92025;
  background-color: #efcece;
}

#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 {
  text-align: left;
  width: 35%;
}

#contenu .boiteQuiz .validation button {
  display: block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  border: none;
  border-radius: 4px;
  padding: 0px 15px 0px 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 3rem;
  background-color: #555555;
  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 {
  text-align: right;
  width: 35%;
}

#contenu .boiteQuiz .navigation li {
  display: inline-block;
  vertical-align: bottom;
  margin: 0px;
  padding: 0px;
}

#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");
}

#contenu .boiteQuiz .navigation li.suiv a {
  background-image: url("../img/icones/ico_quizbt_suiv.svg");
}

#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: "Open Sans", Arial, Helvetica, 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;
}

#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;
}

#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;
}

#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 {
  content: ".";
  font-size: 38px;
  vertical-align: middle;
  position: absolute;
  top: -10px;
  left: -15px;
}

#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;
  font-size: 26px;
  content: "-";
  left: 0;
  margin-right: 5px;
  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 #a6a7a8;
}

#contenu .tableau.styleQuiz th {
  border: solid 1px #a6a7a8;
  border-top: none;
  background-color: #333333;
  color: #fff;
}

#contenu .tableau.styleQuiz td {
  position: relative;
  border: solid 1px #a6a7a8;
}

#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 {
  content: "";
  display: block;
  background: url("../img/icones/ico_quizretro_correct.svg") no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
}

#contenu .tableau.styleQuiz td.showError label:after {
  content: "";
  display: block;
  background: url("../img/icones/ico_quizretro_incorrect.svg") no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
}

/* *********************************************** */
/* QUIZ ACCESSIBILITE 				        					   */
/* (Pour la ressoucre Moodle de type Test)         */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General 	                                     */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
#contenu .boiteQuiz .lstQuestions .txtQuestion textarea {
  width: 100%;
  min-height: 150px;
}

#contenu .boiteQuiz .lstQuestions .lstChReponses li {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

#contenu .boiteQuiz .lstQuestions .lstChReponses li input.custom {
  display: flex;
  margin: 0.5rem;
}

@media screen and (min-width: 480px) {
  #contenu .boiteQuiz .lstQuestions .lstChReponses li input.custom {
    margin: 1rem;
  }
}

#contenu .boiteQuiz .lstQuestions .lstChReponses li input.custom[type=checkbox] + label, #contenu .boiteQuiz .lstQuestions .lstChReponses li input.custom[type=radio] + label {
  margin: 0;
  width: 90%;
}

#contenu .boiteQuiz .lstQuestions .lstChReponses li input.custom[type=checkbox] + label:before, #contenu .boiteQuiz .lstQuestions .lstChReponses li input.custom[type=radio] + label:before {
  display: none !important;
}

/* *********************************************** */
/* 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 {
  position: relative;
  display: block;
  -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 {
  position: relative;
  display: block;
  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 {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.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 {
  border: 1px solid #414141;
  position: relative;
  max-width: 675px;
  margin-bottom: 30px;
}

#contenu .mod-slick-slider .interTitre {
  padding: 5px;
  margin-bottom: 0;
}

#contenu .mod-slick-slider h3 {
  margin-top: 0;
}

#contenu .mod-slick-slider > .interTitre:first-child {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 100;
  color: #ffffff;
  text-align: center;
  margin: 0px;
  padding: 5px 7px 7px 7px;
  display: block;
  background-color: #282828;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 27px;
  line-height: 2.7rem;
}

#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 {
  padding: 15px;
  position: relative;
  background-color: #fff;
}

#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 {
  margin: 0 auto;
  height: auto;
  max-width: 100%;
}

#contenu .mod-slick-slider .chapeau {
  padding: 15px;
  position: relative;
}

#contenu .mod-slick-slider .chapeau:before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -15px;
  display: none;
}

#contenu .mod-slick-slider .chapeau img {
  margin: 0px auto 15px;
  max-width: 50%;
}

#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 {
  background-color: #323232;
  border: none;
  color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  padding: 0;
  background-image: none;
}

#contenu .mod-slick-slider .slick-arrow {
  position: absolute;
  bottom: 15px;
  font-size: 0;
  line-height: 0;
  background: url("../img/icones/ico_slider.svg") #323232;
  width: 25px;
  height: 25px;
  border: none;
  border-radius: 50%;
}

#contenu .mod-slick-slider .slick-arrow:hover {
  background-color: #44727e;
}

#contenu .mod-slick-slider .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 55px;
  right: 55px;
  list-style: none;
  text-align: center;
  margin: 0px;
  padding: 0px;
}

#contenu .mod-slick-slider .slick-dots li {
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0px 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #323232;
  background-image: none;
  font-size: 15px;
  font-size: 1.5rem;
}

#contenu .mod-slick-slider .slick-dots li:before {
  content: "";
  position: static;
}

#contenu .mod-slick-slider .slick-dots li button {
  display: none;
  color: #ffffff;
  width: 25px;
  height: 25px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #323232;
  background-image: none;
}

#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: #EB6C10;
}

#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: 790px) {
  #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 {
    background-color: transparent;
    width: 25px;
    height: 25px;
  }
  #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;
  border: none;
  color: #ffffff;
  border-radius: 50%;
  background-image: url("../img/icones/ico_slider.svg");
}

#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 {
  background-color: #ececec;
  padding: 20px;
  margin-bottom: 20px;
}

#contenu .schemaInteractif > div > div > .interTitre {
  font-weight: 700;
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
}

#contenu .schemaInteractif > div > div > .interTitre:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#contenu .schemaInteractif > div > div > *:first-child {
  padding-top: 0;
  margin-top: 0;
}

#contenu .schemaInteractif > div > div > *:last-child {
  padding-bottom: 0;
  margin-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;
  z-index: 100;
  margin-bottom: 0px;
  -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 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: normal;
  cursor: pointer;
  position: absolute;
  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 {
  z-index: 400;
  top: 83px;
  left: 85px;
}

#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 {
  text-align: left;
  position: relative;
  width: 100%;
  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: "Open Sans", Arial, Helvetica, sans-serif;
  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;
  font-size: 15px;
  font-size: 1.5rem;
}

#contenu .schemaInteractif#eqDynamique .blocs > li.niv1 .nivEq {
  padding: 19px 16px 8px;
  background-color: #e5f5f5;
}

#contenu .schemaInteractif#eqDynamique .blocs > li.niv1 .nivEqTitre {
  border: 3px solid #00a099;
  background-color: white;
  padding: 22px 20px;
}

#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 {
  background-color: #f3f7cd;
  width: 100%;
  padding: 35px 10px 2px;
}

#contenu .schemaInteractif#eqDynamique .blocs > li.niv2 .nivEqTitre {
  border: 3px solid #bbd14f;
  background-color: white;
  width: 100%;
  padding: 22px 10px;
}

#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 {
  border: 3px solid #fbbe30;
  background-color: white;
  padding: 22px 10px;
}

#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;
    width: 90%;
    z-index: 200;
    top: -16px;
  }
}

/* =============================================== */
/* 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;
}

/* *********************************************** */
/* TELUQNOTE                                       */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General                                       */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/*  General                                        */
/* ----------------------------------------------- */
#contenu .teluqNote {
  clear: both;
  margin-bottom: 15px;
}

#contenu .teluqNote .reponse {
  border: 1px solid #999;
  width: 100%;
  min-height: 100px;
}

#contenu .teluqNote .enregistrer {
  position: relative;
  color: #fff;
  background-color: #EB6C10;
  border: none;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  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: #a24a0b;
}

#contenu .teluqNote .enregistrer.onclic {
  background-color: #555;
  color: #ccc;
  cursor: default;
}

#contenu .teluqNote .enregistrer.validate {
  background-color: #367A55;
}

/* *********************************************** */
/* Styles de base poir la lisibilité de l'outil de
    Vérificateur de liens */
/* *********************************************** */
body[class*="linkschecker"] #contenu #linksDiv .resource {
  height: auto;
  padding: 10px !important;
  margin: 40px 0 10px 0 !important;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  background-color: #545759;
  color: #ffffff;
  border-radius: 10px;
}

body[class*="linkschecker"] #contenu #linksDiv .resource > a {
  color: #EAEBEF;
}

body[class*="linkschecker"] #contenu #linksDiv .resource > a:hover {
  color: #ffffff;
  font-weight: bold;
}

body[class*="linkschecker"] #contenu #linksDiv .linkstype {
  padding: 5 15px;
  border: none;
  background-color: #C9C9C9;
  color: #000;
  border-radius: 10px;
}

body[class*="linkschecker"] #contenu #linksDiv ul > li {
  margin-left: 30px;
}

body[class*="linkschecker"] #contenu #linksDiv ul > li > a {
  color: #333;
}

body[class*="linkschecker"] #contenu #linksDiv ul > li > a:hover {
  color: #164547;
  font-weight: bold;
}

/* *********************************************** */
/* No SVG                                          */
/* ----------------------------------------------- */
/* Indiquer les images svg a remplacer par un png. */
/*                                                 */
/* *********************************************** */
.no-svg #outilsRecherche .toggleRecherche > span {
  background: url("../img/icones/png/ico_recherche.svg") no-repeat 0 0;
}

.no-svg #menuPrincipal .toggle-menu > span {
  background: url("../img/icones/png/ico_menu_ouvrir.png") center center;
}

.no-svg #menuPrincipal .cbp-spmenu .toggle-menu > span {
  background-image: url("../img/icones/png/ico_menu_fermer.png");
}

.no-svg #contenu .boiteQuiz .navigation li.prec a {
  background-image: url("../img/icones/png/ico_quizbt_prec.png");
}

.no-svg #contenu .boiteQuiz .navigation li.suiv a {
  background-image: url("../img/icones/png/ico_quizbt_suiv.png");
}

.no-svg #contenu .boiteQuiz input.custom[type="checkbox"]:checked + label:before {
  background-image: url("../img/icones/png/ico_crochet.png");
}

.no-svg #contenu .boiteQuiz .retro.correcte {
  background-image: url("../img/icones/png/ico_quizretro_correct.png");
}

.no-svg #contenu .boiteQuiz .retro.incorrecte {
  background-image: url("../img/icones/png/ico_quizretro_incorrect.png");
}

.no-svg #contenu .boiteQuiz .retro.neutre {
  background-image: url("../img/icones/png/ico_quizretro_neutre.png");
}

.no-svg #contenu .schemaInteractif .nav {
  background-image: url("../img/icones/png/ico_slider.png");
}

.no-svg #contenu .accordeon .toggler .icone {
  background: url("../img/icones/png/ico_accordeon.png") no-repeat top right;
}

.no-svg #contenu #ligneDuTemps .slick-arrow {
  background-image: url("../img/icones/png/ico_slider.png");
}

.no-svg #navPageForm ul li.itemPrec a {
  background: url("../img/icones/png/ico_pagePrecedent_15x36.svg") 10% top no-repeat;
}

.no-svg #navPageForm ul li.itemSuiv a {
  background: url("../img/icones/png/ico_pageSuivant_15x36.svg") 90% top no-repeat;
}
