@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. */
/* *********************************************** */
/* FONTS                                           */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Exemple avec font-face                        */
/* - Roboto Slab                                   */
/* - Roboto                                        */
/* - Roboto Condensed                              */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Univers (exemple) :                             */
/*                                                 */
/* - Light 300                                     */
/* - Light 300 italic                              */
/* - Normal 500                                    */
/* - Normal 500 italic                             */
/* - bold 700                                      */
/* - bold 700 italic                               */
/* ----------------------------------------------- */
/* Typographies Google Fonts (152 ko) */
/* ================================================== */
/* Roboto Slab - thin - 100 (serif) */
/* Roboto Slab - Light - 300 (serif) */
/* Roboto Slab - Normal - 400 (serif) */
/* Roboto Slab - Bold - 700 (serif) */
/* Roboto - Thin - 100 (sans-serif) */
/* Roboto - Thin Italic - 100 (sans-serif) */
/* Roboto - Light - 300 (sans-serif) */
/* Roboto - Light Italic - 300 (sans-serif) */
/* Roboto - Normal - 400 (sans-serif) */
/* Roboto - Normal Italic - 400 (sans-serif) */
/* Roboto - Medium - 500 (sans-serif) */
/* Roboto - Medium Italic - 500 (sans-serif) */
/* Roboto Condensed - Light - 300 (sans-serif) */
/* Roboto Condensed - Light Italic - 300 (sans-serif) */
/* Roboto Condensed - Normal - 400 (sans-serif) */
/* Roboto Condensed - Normal Italic - 400 (sans-serif) */
/* Roboto Condensed - Bold - 700 (sans-serif) */
/* Roboto Condensed - Bold Italic - 700 (sans-serif) */
/* ================================================== */
/* Open Sans - Semi-bold - 600 (sans-serif) */
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700|Roboto:100,300,400,500,700,100italic,300italic,400italic,500italic,700italic,900|Roboto+Condensed:300,400,700,300italic,400italic,700italic);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600");
/*+font-face("misoregular", "fontes/miso-regular-webfont", normal, normal, eot woff2 woff ttf svg) */
@font-face {
  font-family: "misoregular";
  src: url("fontes/miso-regular-webfont.eot");
  src: url("fontes/miso-regular-webfont.eot?#iefix") format("embedded-opentype"), url("fontes/miso-regular-webfont.woff2") format("woff2"), url("fontes/miso-regular-webfont.woff") format("woff"), url("fontes/miso-regular-webfont.ttf") format("truetype"), url("fontes/miso-regular-webfont.svg#misoregular") format("svg"); }
/* *********************************************** */
/* 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.                                    */
/* ----------------------------------------------- */
/* 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 */
/* *********************************************** */
/* FUNCTIONS                                       */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* *********************************************** */
/* Retourne un pourcentage en fonction de la largeur d'un element par rapport a son conteneur. */
/* Retourne une couleur solide a partir d'une couleur rgba avec opacite et une couleur d'arriere-plan */
/* *********************************************** */
/* 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 {
  /*height: 100% */
  position: relative;
  margin: 0;
  padding: 0;
  color: #555;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: normal;
  background-color: #e1eafb;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18.75px;
  line-height: 1.875rem;
  /* jPushMenu */
  /* Min-width 768px */ }
  body.cbp-spmenu-push {
    position: relative;
    overflow-x: hidden;
    left: 0;
    transition: left 0.5s ease; }
  body.cbp-spmenu-push-toright {
    left: 250px; }
  @media screen and (min-width: 768px) {
    body {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 20px;
      line-height: 2rem; } }

#wrapper {
  background-color: #fff;
  /* Min-width 768px */ }
  @media screen and (min-width: 768px) {
    #wrapper {
      min-height: 100% !important; } }

#main {
  z-index: 0; }

a {
  color: #005d7b; }
  a:hover, a:focus {
    text-decoration: none; }

ul, ol {
  list-style: none; }

input, textarea {
  border: none;
  border-radius: 0;
  padding: 5px; }

/* =============================================== */
/* Outils                                          */
/* ----------------------------------------------- */
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    display: table;
    content: ""; }
  .clearfix:after {
    clear: both; }

.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 {
    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;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%; }

.row {
  *zoom: 1;
  height: 100%; }
  .row:before, .row:after {
    display: table;
    content: ""; }
  .row:after {
    clear: both; }

.col {
  float: left;
  border: 0px solid rgba(0, 0, 0, 0);
  min-height: 1px;
  zoom: 1;
  background-clip: padding-box !important;
  box-sizing: border-box;
  height: 100%;
  /* Min-width 768px */ }
  .col.col-right {
    float: right; }
  .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; }
  @media screen and (min-width: 768px) {
    .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%; } }

/* Permet d'afficher une grille en semi-transparence par dessus le site pour faire des tests durant la conception. */
#grille {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99; }
  #grille .container, #grille .row, #grille .col {
    height: 100%; }
  #grille .col {
    background-color: #d9d9d9;
    background-color: rgba(0, 0, 0, 0.15); }
    #grille .col.merge1 {
      width: 8.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset1 {
      margin-left: 8.3333333333%; }
    #grille .col.merge2 {
      width: 16.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset2 {
      margin-left: 16.6666666667%; }
    #grille .col.merge3 {
      width: 25%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset3 {
      margin-left: 25%; }
    #grille .col.merge4 {
      width: 33.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset4 {
      margin-left: 33.3333333333%; }
    #grille .col.merge5 {
      width: 41.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset5 {
      margin-left: 41.6666666667%; }
    #grille .col.merge6 {
      width: 50%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset6 {
      margin-left: 50%; }
    #grille .col.merge7 {
      width: 58.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset7 {
      margin-left: 58.3333333333%; }
    #grille .col.merge8 {
      width: 66.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset8 {
      margin-left: 66.6666666667%; }
    #grille .col.merge9 {
      width: 75%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset9 {
      margin-left: 75%; }
    #grille .col.merge10 {
      width: 83.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset10 {
      margin-left: 83.3333333333%; }
    #grille .col.merge11 {
      width: 91.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset11 {
      margin-left: 91.6666666667%; }
    #grille .col.merge12 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #grille .col.offset12 {
      margin-left: 100%; }

/* =============================================== */
/* Boutons                                         */
/* ----------------------------------------------- */
.bouton {
  display: inline-block;
  color: #fff;
  background-color: #d24332;
  padding: 8px 20px;
  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: scale-lightness(#d24332, -20%); }

/* =============================================== */
/* Recherche                                       */
/* ----------------------------------------------- */
#contenu .statusRecherche {
  background-color: #ccc;
  padding: 10px; }
#contenu #lstResultatsRecherche {
  margin: 30px 0; }
  #contenu #lstResultatsRecherche > div {
    border-bottom: solid 1px #ccc; }
    #contenu #lstResultatsRecherche > div h3 {
      margin: 15px 0 5px 0;
      font-weight: 600;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 20px;
      line-height: 2rem; }
  #contenu #lstResultatsRecherche mark {
    background-color: #ccc; }
#contenu #navResultatsRecherche ul {
  margin-left: 0; }
  #contenu #navResultatsRecherche ul li {
    list-style: none; }

article, aside, footer, header, hgroup, main, nav, section {
  clear: both;
  display: block; }

#outilsRecherche {
  display: none; }

@media screen and (min-width: 480px) {
  body.cbp-spmenu-push-toright {
    left: 400px; } }
@media screen and (min-width: 768px) {
  body.cbp-spmenu-push-toright {
    left: 0; } }
/* *********************************************** */
/* HEADER                                          */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Base                                          */
/* - Zone utilisateur                              */
/* - Zone identitaire                              */
/* - Zone menu (deplacer dans menu_principal.sass) */
/* - BodyFilter et autre                           */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Base                                            */
/* ----------------------------------------------- */
#header {
  position: relative;
  z-index: 2000;
  /* Min-width 992px */ }
  #header * {
    color: #fff; }
  @media screen and (min-width: 992px) {
    #header .merge12 {
      width: 83.3333333333%;
      padding-left: 20px;
      padding-right: 20px;
      margin-left: 8.3333333333%;
      position: relative; } }

/* =============================================== */
/* Zone utilisateur                                */
/* ----------------------------------------------- */
#zoneUtilisateur {
  z-index: 3;
  display: block;
  background-color: #292e33;
  /* Min-width 992px */ }
  #zoneUtilisateur * {
    color: #fff; }
  #zoneUtilisateur p {
    text-align: right;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    font-size: 1.2rem; }
    #zoneUtilisateur p a:hover {
      text-decoration: none; }
  @media screen and (min-width: 992px) {
    #zoneUtilisateur p {
      height: 30px;
      line-height: 30px; } }

/* =============================================== */
/* Zone identitaire                                */
/* ----------------------------------------------- */
#zoneIdentitaire {
  z-index: 2;
  background-color: #000000;
  /* Min-width 480px */
  /* Min-width 768px */ }
  #zoneIdentitaire a {
    text-decoration: none; }
  @media screen and (min-width: 480px) {
    #zoneIdentitaire {
      padding-top: 0px;
      padding-bottom: 0px;
      height: 70px; }
      #zoneIdentitaire a {
        position: absolute;
        right: 0; } }
  @media screen and (min-width: 768px) {
    #zoneIdentitaire {
      padding-top: 0px; } }

/* Logo ------------------------------------------ */
#logo {
  display: block;
  z-index: 300;
  float: right;
  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;
  /* Min-width 480px */
  /* Min-width 768px */
  /* Min-width 992px */ }
  @media screen and (min-width: 480px) {
    #logo {
      margin: 0;
      background-size: 40px auto;
      width: 40px;
      height: 43.4782608696px; } }
  @media screen and (min-width: 768px) {
    #logo {
      background-image: url("../img/structure/logo_teluq_nb.svg");
      background-size: 167px auto;
      margin-top: 26px;
      margin-right: 20px;
      width: 167px;
      height: 89px; } }
  @media screen and (min-width: 992px) {
    #logo {
      background-size: 167px auto;
      margin-top: 26px;
      width: 167px;
      height: 89px; } }

.no-backgroundsize #logo {
  width: 46px;
  height: 50px;
  /* Min-width 768px */ }
  @media screen and (min-width: 768px) {
    .no-backgroundsize #logo {
      width: 164px;
      height: 89px; } }

li.logo {
  position: absolute;
  z-index: 5000;
  right: 10px;
  margin-top: 5px; }

@media screen and (min-width: 992px) {
  li.logo {
    position: absolute;
    z-index: 5000;
    right: 100px;
    margin-top: 0px; } }
/* Sigle et titre du cours ----------------------- */
#blocInfoCours {
  z-index: 2;
  /*display: inline-block */
  position: relative;
  width: 100%; }

#id_cours {
  font-variant: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 36px;
  font-family: "Open Sans", sans-serif;
  color: #000;
  padding-top: 26px;
  margin-bottom: 2px; }

#baniere {
  margin-left: 4%;
  margin-right: 20px;
  padding-bottom: 1px; }
  #baniere h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 36px;
    width: 100%; }
    #baniere h1 a {
      text-decoration: none;
      color: #000;
      text-rendering: optimizeLegibility !important;
      -webkit-font-smoothing: antialiased !important; }

.al_rigth {
  text-align: right; }

/* 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;
  /* Min-width 768px */ }
  @media screen and (min-width: 768px) {
    .cbp-spmenu-push-toright .bodyFilter {
      display: none; } }

/* Outils de recherche --------------------------- */
#outilsRecherche {
  float: right;
  /* Toggle */
  /* Champ et bouton de recherche */ }
  #outilsRecherche .toggleRecherche {
    display: block;
    height: 24px;
    width: 24px;
    padding: 0;
    line-height: 1;
    margin-top: 13px;
    border: none;
    background: transparent;
    /* Min-width 768px */ }
    #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;
      background-size: 24px;
      overflow: hidden; }
    @media screen and (min-width: 768px) {
      #outilsRecherche .toggleRecherche {
        display: none; } }
  #outilsRecherche 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;
    /* Min-width 768px */ }
    #outilsRecherche form .triangle {
      display: block;
      position: absolute;
      right: 28px;
      top: -9px;
      border: 6px solid transparent;
      border-opposite-position(top): 9px solid #fff;
      border-top: 0;
      height: 0;
      width: 0; }
    #outilsRecherche form input[type="text"] {
      width: 100%;
      position: relative;
      z-index: 4;
      height: 30px;
      padding: 0px 100px 0 10px;
      color: #555;
      border: solid 1px #dadada;
      box-sizing: border-box; }
    #outilsRecherche form button[type="submit"] {
      float: right;
      position: relative;
      z-index: 5;
      margin-top: -30px;
      padding: 5px 10px;
      background-color: #292e33;
      border: none;
      -webkit-transition: all 300ms ease-out;
      -moz-transition: all 300ms ease-out;
      transition: all 300ms ease-out; }
      #outilsRecherche form button[type="submit"]:hover, #outilsRecherche form button[type="submit"]:focus {
        background-color: #d24332; }
    @media screen and (min-width: 768px) {
      #outilsRecherche form {
        display: table-cell !important;
        vertical-align: middle;
        background-color: transparent;
        position: static;
        padding: 0;
        border-bottom: none; }
        #outilsRecherche form .triangle {
          display: none; }
        #outilsRecherche form input[type="text"] {
          float: left;
          width: 175px;
          height: 30px;
          margin: auto 0px auto 0px;
          padding: 0px 5px 0px 5px;
          background-image: none;
          border: none; }
        #outilsRecherche form button[type="submit"] {
          display: block;
          float: left;
          width: 30px;
          height: 30px;
          margin: 0;
          padding: 0;
          background-image: url("../img/icones/ico_recherche.svg");
          background-size: 20px;
          background-repeat: no-repeat;
          background-position: center center; } }

.ie #outilsRecherche form button[type="submit"] {
  position: absolute;
  top: 10px;
  right: 20px;
  margin: 0;
  /* Min-width 768px */ }
  @media screen and (min-width: 768px) {
    .ie #outilsRecherche form button[type="submit"] {
      position: static; } }

@media screen and (min-width: 768px) {
  #baniere {
    margin-left: 4%;
    margin-right: 160px;
    padding-bottom: 0px; }
    #baniere h1 {
      font-family: "Open Sans", sans-serif;
      font-weight: bold;
      margin: 0;
      font-size: 20px;
      line-height: 36px !important;
      margin-bottom: 36px;
      width: 100%; } }
/* *********************************************** */
/* 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 {
  background-color: #292e33; }

/* Media Queries---------------------------------- */
@media screen and (min-width: 768px) {
  #zoneMenu {
    position: relative;
    height: auto;
    background-color: #000000;
    padding: 0; } }
@media screen and (min-width: 992px) {
  #zoneMenu .merge12 {
    width: 83.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 8.3333333333%; } }
/* =============================================== */
/* Elements communs (des 2 types)                  */
/* ----------------------------------------------- */
.toggle-menu {
  display: block;
  float: left;
  height: 30px;
  width: 30px;
  padding: 0;
  background: #000;
  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;
    margin: 5px;
    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: #000; }
  .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; }

.cbp-spmenu-left {
  left: -250px; }

/* Menu principal -------------------------------- */
#menuPrincipal .lstMenuPrincipal {
  background: #000; }
  #menuPrincipal .lstMenuPrincipal li {
    display: block; }
    #menuPrincipal .lstMenuPrincipal li a {
      display: inline-block;
      text-decoration: none;
      padding: 8px 0;
      color: #fff; }
    #menuPrincipal .lstMenuPrincipal li.active {
      padding-bottom: 6px; }
  #menuPrincipal .lstMenuPrincipal > li {
    padding: 0 20px;
    border-bottom: solid 1px #444; }
    #menuPrincipal .lstMenuPrincipal > li:first-child {
      border-top: solid 1px #444; }
    #menuPrincipal .lstMenuPrincipal > li > a {
      display: block;
      padding: 14px 0;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 18px;
      font-size: 1.8rem; }
      #menuPrincipal .lstMenuPrincipal > li > a span {
        text-transform: none;
        font-weight: normal;
        font-size: 14px;
        font-size: 1.4rem; }
    #menuPrincipal .lstMenuPrincipal > li.parent > a:after {
      content: "";
      display: inline-block;
      vertical-align: middle;
      margin-left: 5px;
      border: 4px solid transparent;
      border-opposite-position(right): 8px solid #fff;
      border-right: 0;
      height: 0;
      width: 0; }
    #menuPrincipal .lstMenuPrincipal > li.parent.active > a:after {
      border: 4px solid transparent;
      border-opposite-position(bottom): 8px solid #fff;
      border-bottom: 0;
      height: 0;
      width: 0; }
  #menuPrincipal .lstMenuPrincipal li.current-menu-ancestor a {
    color: #6778a2; }
  #menuPrincipal .lstMenuPrincipal ul.sub-menu {
    padding-left: 25px;
    padding-right: 0;
    display: none; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu.on {
      display: block; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li a {
      color: #fff;
      font-size: 16px;
      font-size: 1.6rem; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li:not(.parent).itemActif a {
      text-decoration: underline; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li:not(.parent) a:hover {
      text-decoration: underline; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li.parent > a {
      position: relative;
      font-weight: 500; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li.parent.type_label:not(.toggler) > a {
      cursor: default; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li.toggler a {
      width: 100%;
      padding-right: 16px; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu 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 ul.sub-menu li.toggler.active > a:after {
      transform: rotate(180deg); }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item a {
      color: #6778a2 !important;
      font-weight: bold; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item ul li {
      margin-left: 0px; }
      #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item ul li a {
        font-size: 14px;
        font-size: 1.4rem; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item .sousSub .container {
      padding-left: 15px; }
    #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item .sousSub ul {
      padding-left: 0;
      padding-right: 0; }
      #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item .sousSub ul > li {
        list-style: none; }
        #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item .sousSub ul > li > a {
          padding-left: 12px;
          position: relative; }
          #menuPrincipal .lstMenuPrincipal ul.sub-menu li.current_page_item .sousSub ul > li > a:before {
            content: "-";
            color: #fff;
            position: absolute;
            left: 0;
            font-size: 15px;
            font-size: 1.5rem; }

/*** Media Queries---------------------------------- ** */
@media screen and (min-width: 480px) {
  .cbp-spmenu-vertical {
    width: 400px; }

  .cbp-spmenu-left {
    left: -400px; } }
/*****------------------768PX----------------------******** */
@media screen and (min-width: 768px) {
  .toggle-menu {
    display: none; }

  .cbp-spmenu {
    display: block !important;
    min-height: auto !important;
    float: left;
    position: static;
    background-color: transparent; }
    .cbp-spmenu .toggle-menu {
      margin-top: 12px; }

  .cbp-spmenu-vertical {
    width: auto; }

  #menuPrincipal {
    border-top: solid 2px #6778a2;
    border-bottom: solid 2px #6778a2;
    margin-top: 2px;
    display: flex; }
    #menuPrincipal .lstMenuPrincipal {
      padding-top: 0; }
      #menuPrincipal .lstMenuPrincipal li a {
        padding: 5px 0; }
      #menuPrincipal .lstMenuPrincipal li.active {
        padding-bottom: 0; }
      #menuPrincipal .lstMenuPrincipal li span {
        color: #000;
        font-weight: 400;
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        max-width: 120px;
        line-height: 14px;
        padding-top: 0px; }
      #menuPrincipal .lstMenuPrincipal > li {
        float: left;
        padding: 0;
        border-bottom: none;
        margin-right: 1px; }
        #menuPrincipal .lstMenuPrincipal > li:first-child {
          border-top: none; }
        #menuPrincipal .lstMenuPrincipal > li > a {
          display: block;
          font-weight: bold;
          background: #fff;
          color: #000;
          text-decoration: none;
          margin: 0px;
          height: 72px;
          padding: 13px 5px;
          margin: 0px !important;
          -webkit-transition: all 300ms ease-out;
          -moz-transition: all 300ms ease-out;
          transition: all 300ms ease-out;
          font-size: 18px;
          font-size: 1.8rem; }
          #menuPrincipal .lstMenuPrincipal > li > a:first-child {
            margin-left: 0; }
        #menuPrincipal .lstMenuPrincipal > li:hover > a, #menuPrincipal .lstMenuPrincipal > li:focus > a, #menuPrincipal .lstMenuPrincipal > li.active > a, #menuPrincipal .lstMenuPrincipal > li.itemActif:hover > a {
          margin: 0 5px;
          background-color: #000;
          color: #6778a2; }
          #menuPrincipal .lstMenuPrincipal > li:hover > a span, #menuPrincipal .lstMenuPrincipal > li:focus > a span, #menuPrincipal .lstMenuPrincipal > li.active > a span, #menuPrincipal .lstMenuPrincipal > li.itemActif:hover > a span {
            color: #fff; }
        #menuPrincipal .lstMenuPrincipal > li.itemActif > a {
          background-color: scale-lightness(#000000, -20%); }
          #menuPrincipal .lstMenuPrincipal > li.itemActif > a span {
            font-weight: 400;
            display: block;
            max-width: 120px;
            padding-top: 0px;
            font-size: 12px;
            font-size: 1.2rem; }
      #menuPrincipal .lstMenuPrincipal .sub-menu {
        display: none;
        background: #000 !important;
        position: absolute;
        left: 0;
        right: 0;
        padding: 15px 100px !important;
        margin: 0px 10px; }
        #menuPrincipal .lstMenuPrincipal .sub-menu ul {
          padding-left: 20px;
          padding-right: 20px; }
          #menuPrincipal .lstMenuPrincipal .sub-menu ul li a {
            color: #fff;
            padding: 5px 0;
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 18px;
            line-height: 1.8rem; }
            #menuPrincipal .lstMenuPrincipal .sub-menu ul li a:before {
              left: -10px; }
          #menuPrincipal .lstMenuPrincipal .sub-menu ul li ul li a {
            font-size: 13px;
            font-size: 1.3rem;
            line-height: 15px;
            line-height: 1.5rem; }

  #menuPrincipal a:hover {
    color: #6778a2 !important; }
  #menuPrincipal a.open {
    background: #000 !important;
    color: #fff !important; }
    #menuPrincipal a.open span {
      color: #fff !important; }
  #menuPrincipal li.current-menu-ancestor a {
    background: #6778a2 !important;
    color: #fff !important; }
    #menuPrincipal li.current-menu-ancestor a:hover {
      color: #fff !important; }
    #menuPrincipal li.current-menu-ancestor a span {
      color: #fff !important; }

  #menuPrincipal li.current-menu-ancestor ul.sub-menu a {
    background: #000 !important; }

  #menuPrincipal ul li:last-child {
    width: 100px; }

  #menuPrincipal ul.sub-menu li:last-child {
    width: auto !important; } }
#menuPrincipal button.jPushMenuBtn {
  width: 100%;
  height: 40px;
  float: none; }

@media screen and (min-width: 992px) {
  #menuPrincipal .lstMenuPrincipal .sub-menu {
    margin: 0px 100px; } }
@media screen and (min-width: 1002px) {
  #menuPrincipal .lstMenuPrincipal > li > a {
    padding: 13px 10px; } }
@media screen and (min-width: 1066px) {
  #menuPrincipal ul li:last-child {
    width: auto !important; } }
/* *********************************************** */
/* FOOTER                                          */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Base                                          */
/* - Menu footer                                   */
/* - Copyright                                     */
/* - Ressources                                    */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Base                                            */
/* ----------------------------------------------- */
#footer {
  background-color: #292e33;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 19px;
  line-height: 1.9rem;
  /* Min-width 992px */ }
  #footer * {
    color: #ffffff; }
  @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;
  max-width: 150px;
  *zoom: 1;
  /* Min-width 768px */
  /* Min-width 768px */ }
  #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 {
      float: left;
      margin-right: 20px; }
      #footer #menu_footer ul li a, #footer #menuFooter ul li a {
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 18.75px;
        line-height: 1.875rem;
        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 screen and (min-width: 768px) {
    #footer #menu_footer, #footer #menuFooter {
      max-width: none; }
      #footer #menu_footer ul, #footer #menuFooter ul {
        list-style: none;
        padding-left: 0; }
        #footer #menu_footer ul li, #footer #menuFooter ul li {
          float: left;
          margin-right: 20px; }
          #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; } }
  @media screen and (max-width: 768px) {
    #footer #menu_footer li, #footer #menuFooter li {
      width: 100%;
      margin-bottom: 5px; } }

/* =============================================== */
/* Ressources                                      */
/* ----------------------------------------------- */
#footer .ressources {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

#footer .ressources p {
  margin: 0 5px;
}

/* =============================================== */
/* Copyright                                       */
/* ----------------------------------------------- */
#footer #copyright {
  text-align: center;
  margin: 0;
  border-top: solid 1px #666666;
  padding: 10px 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  line-height: 1.2rem; }

/* *********************************************** */
/* SIDEBAR                                         */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General                                       */
/* - Documents                                     */
/* - Consignes                                     */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
#sidebar {
  padding-right: 20px;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.9);
  /* Min-width 768px */ }
  @media screen and (min-width: 768px) {
    #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%;
      width: 20%; }
      #sidebar.merge3.col-right {
        margin-left: 0%;
        margin-right: 8.3333333333%; } }

#sidebar .card-block {
  padding: 0px 0px;
  height: 55px; }
  @media screen and (min-width: 992px) {
    #sidebar .card-block {
      height: 1px; } }

/* *********************************************** */
/* ACCUEIL                                         */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - Intro                                         */
/* - Outils                                        */
/*                                                 */
/* *********************************************** */
/* =============================================== */
/* Intro                                           */
/* ----------------------------------------------- */
/* Avec photo ------------------------------------ */
#intro.avecPhoto {
  /* Max-width 480px */
  /* Min-width 480px */
  /* Min-width 992px */ }
  @media screen and (max-width: 480px) {
    #intro.avecPhoto {
      background-image: none !important; } }
  @media screen and (min-width: 480px) {
    #intro.avecPhoto {
      padding: 20px 0;
      background-position: 80% center;
      background-size: cover; }
      #intro.avecPhoto .col.merge1 {
        width: 8.3333333333%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset1 {
        margin-left: 8.3333333333%; }
      #intro.avecPhoto .col.merge2 {
        width: 16.6666666667%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset2 {
        margin-left: 16.6666666667%; }
      #intro.avecPhoto .col.merge3 {
        width: 25%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset3 {
        margin-left: 25%; }
      #intro.avecPhoto .col.merge4 {
        width: 33.3333333333%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset4 {
        margin-left: 33.3333333333%; }
      #intro.avecPhoto .col.merge5 {
        width: 41.6666666667%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset5 {
        margin-left: 41.6666666667%; }
      #intro.avecPhoto .col.merge6 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset6 {
        margin-left: 50%; }
      #intro.avecPhoto .col.merge7 {
        width: 58.3333333333%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset7 {
        margin-left: 58.3333333333%; }
      #intro.avecPhoto .col.merge8 {
        width: 66.6666666667%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset8 {
        margin-left: 66.6666666667%; }
      #intro.avecPhoto .col.merge9 {
        width: 75%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset9 {
        margin-left: 75%; }
      #intro.avecPhoto .col.merge10 {
        width: 83.3333333333%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset10 {
        margin-left: 83.3333333333%; }
      #intro.avecPhoto .col.merge11 {
        width: 91.6666666667%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset11 {
        margin-left: 91.6666666667%; }
      #intro.avecPhoto .col.merge12 {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.offset12 {
        margin-left: 100%; }
      #intro.avecPhoto .blocTexte {
        background: #fff;
        padding: 15px 20px 1px 20px;
        margin: 0 0 20px 0; } }
  @media screen and (min-width: 992px) {
    #intro.avecPhoto {
      background-position: right center; }
      #intro.avecPhoto .col.merge1 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge2 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge3 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge4 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge5 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge6 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge7 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge8 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge9 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge10 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecPhoto .col.merge11 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; } }

/* Avec vignette --------------------------------- */
#intro.avecVignette {
  /* Min-width 480px */
  /* Min-width 768px */
  /* Min-width 480px / Max-width 992px */
  /* Min-width 992px */ }
  #intro.avecVignette .vignette img {
    max-width: 100%; }
  #intro.avecVignette .vignette p {
    text-align: right; }
  @media screen and (min-width: 480px) {
    #intro.avecVignette #boutonIntro {
      position: absolute;
      bottom: 20px;
      right: 20px; } }
  @media screen and (min-width: 768px) {
    #intro.avecVignette {
      padding: 20px 0 50px 0; }
      #intro.avecVignette #boutonIntro {
        right: auto; } }
  @media screen and (min-width: 480px) and (max-width: 991px) {
    #intro.avecVignette .row:first-child .col.merge9 {
      width: 7%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVignette .row:first-child .col.merge3 {
      width: 41.6666666667%;
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (min-width: 992px) {
    #intro.avecVignette #boutonIntro {
      bottom: 40px; } }

/* Avec video ------------------------------------ */
#intro.avecVideo {
  /* Min-width 480px */
  /* Min-width 768px */
  /* Min-width 992px */ }
  #intro.avecVideo .zoneVideo {
    padding-bottom: 20px; }
  #intro.avecVideo .blocTexte, #intro.avecVideo #boutonIntro {
    background-color: #fff;
    margin-left: -20px;
    margin-right: -20px; }
  #intro.avecVideo .blocTexte {
    padding: 20px 0 5px 0; }
    #intro.avecVideo .blocTexte p {
      margin-left: 20px;
      margin-right: 20px; }
  #intro.avecVideo #boutonIntro {
    text-align: center;
    margin-bottom: 0;
    padding: 0 0 20px 0; }
  @media screen and (min-width: 480px) {
    #intro.avecVideo .col.merge1 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge2 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge3 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge4 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge5 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge6 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge7 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge8 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge9 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge10 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge11 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.merge12 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (min-width: 768px) {
    #intro.avecVideo {
      padding: 20px 0; }
      #intro.avecVideo .col.merge1 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge2 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge3 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge4 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge5 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge6 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge7 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge8 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge9 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge10 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .col.merge11 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #intro.avecVideo .zoneVideo {
        padding-bottom: 0;
        padding-right: 20px; }
      #intro.avecVideo .blocTexte, #intro.avecVideo #boutonIntro {
        background-color: transparent;
        margin-left: 0;
        margin-right: 0;
        padding: 0; }
      #intro.avecVideo .blocTexte p {
        margin-left: 0;
        margin-right: 0; }
      #intro.avecVideo #boutonIntro {
        text-align: left; } }
  @media screen and (min-width: 992px) {
    #intro.avecVideo .col.merge1 {
      width: 8.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset1 {
      margin-left: 8.3333333333%; }
    #intro.avecVideo .col.merge2 {
      width: 16.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset2 {
      margin-left: 16.6666666667%; }
    #intro.avecVideo .col.merge3 {
      width: 25%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset3 {
      margin-left: 25%; }
    #intro.avecVideo .col.merge4 {
      width: 33.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset4 {
      margin-left: 33.3333333333%; }
    #intro.avecVideo .col.merge5 {
      width: 41.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset5 {
      margin-left: 41.6666666667%; }
    #intro.avecVideo .col.merge6 {
      width: 50%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset6 {
      margin-left: 50%; }
    #intro.avecVideo .col.merge7 {
      width: 58.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset7 {
      margin-left: 58.3333333333%; }
    #intro.avecVideo .col.merge8 {
      width: 66.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset8 {
      margin-left: 66.6666666667%; }
    #intro.avecVideo .col.merge9 {
      width: 75%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset9 {
      margin-left: 75%; }
    #intro.avecVideo .col.merge10 {
      width: 83.3333333333%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset10 {
      margin-left: 83.3333333333%; }
    #intro.avecVideo .col.merge11 {
      width: 91.6666666667%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset11 {
      margin-left: 91.6666666667%; }
    #intro.avecVideo .col.merge12 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
    #intro.avecVideo .col.offset12 {
      margin-left: 100%; } }

/* =============================================== */
/* Outils                                          */
/* ----------------------------------------------- */
#outils {
  padding: 5px 0 0 0;
  /* Min-width 480px */
  /* Min-width 992px */
  /* Colonnes */
  /* Contenu */ }
  @media screen and (min-width: 480px) {
    #outils {
      padding: 20px 0 0 0; } }
  @media screen and (min-width: 992px) {
    #outils {
      padding: 40px 0 0 0; } }
  #outils .col {
    text-align: center;
    padding-bottom: 5px;
    /* Max-width 768px */
    /* Min-width 992px */ }
    @media screen and (max-width: 767px) {
      #outils .col.merge1 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge2 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge3 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge4 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge5 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge6 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge7 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge8 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge9 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge10 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col.merge11 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px; }
      #outils .col:nth-child(odd) {
        clear: left; } }
    @media screen and (min-width: 992px) {
      #outils .col {
        padding-bottom: 25px; } }
  #outils a {
    display: block;
    max-width: 250px;
    margin: 0 auto;
    text-decoration: none;
    color: #000;
    /* Min-width 480px */
    /* Min-width 768px */
    /* Min-width 992px */ }
    #outils a img {
      transition: transform 0.2s ease;
      width: 55px; }
    #outils a h2 {
      font-weight: 600;
      margin: 10px 0;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 20px;
      line-height: 2rem; }
    #outils a p {
      margin-bottom: 15px;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 17px;
      line-height: 1.7rem; }
    #outils a:hover img, #outils a:focus img {
      transform: scale(1.1); }
    #outils a:hover h2, #outils a:focus h2 {
      text-decoration: underline;
      color: #ff6969; }
    @media screen and (min-width: 480px) {
      #outils a img {
        width: 65px; } }
    @media screen and (min-width: 768px) {
      #outils a img {
        width: 55px; } }
    @media screen and (min-width: 992px) {
      #outils a img {
        width: 65px; }
      #outils a h2 {
        margin: 15px 0;
        font-size: 16px;
        font-size: 1.6rem; }
      #outils a p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 18px;
        line-height: 1.8rem; } }

article h2 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 34px;
  line-height: 3.4rem;
  color: #6778a2; }
article h3 {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 26px;
  line-height: 2.6rem;
  padding-top: 25px; }
article h4 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  padding-top: 18px; }
article p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  line-height: 1.8rem;
  padding-top: 7px; }
article ol {
  margin-left: 20px;
  list-style-type: lower-alpha;
  padding-bottom: 7px; }
  article ol li {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 18px;
    line-height: 1.8rem;
    padding-top: 7px;
    padding-left: 7px; }
article ul {
  padding-bottom: 7px;
  margin-left: 20px;
  list-style: initial; }
  article ul li {
    padding-top: 7px;
    padding-left: 7px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 18px;
    line-height: 1.8rem; }
article table {
  margin-top: 7px; }
  article table ul li {
    padding-left: 0px; }

.visuallyHidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

#enTete {
  background: #6778a2;
  padding-top: 5px;
  padding-bottom: 5px; }

div.wrapper {
  position: relative;
  min-width: 240px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px; }

#header {
  height: 210px;
  position: relative; }
  #header div.bgImgHead {
    background: #fff; }

#main {
  margin-top: 0px; }
  #main div.container {
    background: #fff;
    padding: 0px; }

.noMarge {
  margin: 0px;
  padding: 0px; }

#header, #footer, #main {
  padding-left: 10px !important;
  padding-right: 10px !important; }

@media screen and (min-width: 992px) {
  #header, #footer, #main {
    padding-left: 100px !important;
    padding-right: 100px !important; } }
/* *********************************************** */
/* NAVPAGE "Navigation précédent/suivant           */
/* ----------------------------------------------- */
/* Table des matieres :                            */
/*                                                 */
/* - General                                       */
/*                                                 */
/* *********************************************** */
#contenu #navPageForm ul {
  margin: 0; }

/* =============================================== */
/* General                                         */
/* ----------------------------------------------- */
#navPageForm {
  padding: 10px 30px 10px;
  margin-top: 30px;
  clear: both;
  border-top: solid 1px #b7b7b7; }
  #navPageForm ul {
    margin: 0;
    padding: 0; }
    #navPageForm ul li {
      position: relative;
      float: left;
      width: 33.3333333333%;
      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; }

/* Sass Document */
/* menu */
#menuPrincipal .lstMenuPrincipal .sub ul li.itemActif .sousSub {
  display: block !important; }

/* =============================================== */
/* boite special                                  */
/* ---------------------------------------------- */
article ol.chiffre {
  list-style-type: decimal; }

#wpadminbar {
  position: fixed; }

div.animVideoPlaylist {
  margin: 0px; }
  div.animVideoPlaylist figure {
    margin: 15px 0px 5px; }

article table#froute {
  width: 100%;
  margin-bottom: 50px;
  margin-top: 20px; }
  article table#froute th.bleuPale {
    background: #f2f7fd;
    border-top: 2px solid #6778a2; }
  article table#froute td.jaunePale {
    background: #f7f7e3; }
  article table#froute tr:last-child {
    border-bottom: 2px solid #6778a2; }

@media screen and (min-width: 768px) {
  #main .container .col .col {
    padding-bottom: 0px;
    margin-bottom: 0px; } }
.col.merge9 {
  width: 100%;
  padding: 0px; }

.bouton {
  background-color: #019ac6; }
  .bouton a {
    color: #ffffff; }

body[class*="quiz"] #contenu table.quizsummaryofattempt th, body[class*="quiz"] #contenu table.quizattemptsummary th {
  background-color: #019ac6; }

main div.loupe, main div.cas, main div.livre, main div.gab, main div.froute, main div.activite {
  padding-left: 48px;
  padding-bottom: 8px;
  margin-top: 10px; }
  main div.loupe div, main div.cas div, main div.livre div, main div.gab div, main div.froute div, main div.activite div {
    border-bottom: solid 1px #6778a2;
    background: #f2f7fd;
    padding-left: 10px;
    min-height: 48px; }
main div.froute {
  background: #f2f7fd;
  background: url(../img/icones/ico_Froute.png);
  background-repeat: no-repeat;
  background-size: 48px; }
main div.activite {
  background: #f2f7fd;
  background: url(../img/icones/ico_act.png);
  background-repeat: no-repeat;
  background-size: 48px; }
main div.loupe {
  background: url(../img/structure/icon_Question.png);
  background-repeat: no-repeat;
  background-size: 48px;
  background-position: 6px 6px; }
  main div.loupe div {
    padding-bottom: 20px; }
main div.cas {
  background: url(../img/structure/icon_Cas.png);
  background-repeat: no-repeat;
  background-size: 48px;
  background-position: 6px 6px; }
main div.livre {
  background: url(../img/structure/icon_lecture.png);
  background-repeat: no-repeat;
  background-size: 48px;
  background-position: 6px 6px; }
main div.gab {
  background: url(../img/structure/icon_Gabarit.png);
  background-repeat: no-repeat;
  background-size: 48px;
  background-position: 6px 6px; }
main div.encadre {
  border: 2px solid #6778a2;
  padding: 20px;
  margin: 10px 20px; }
  main div.encadre div {
    padding: 10px 20px 20px 20px; }
  main div.encadre p.titreEnc {
    font-weight: bold;
    text-align: center;
    line-height: 36px;
    background: #017799;
    color: #fff; }
main div.citation {
  padding: 40px;
  margin-bottom: 25px;
  background-color: #6778a2;
  color: #fff;
  text-align: right; }
  main div.citation p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 20px;
    line-height: 2rem;
    color: #fff; }
main blockquote {
  padding: 0px 50px; }

#contenu article {
  padding: 0px 20px; }

main p.titreTab {
  display: block;
  background: #6778a2;
  color: #fff;
  text-transform: uppercase;
  padding: 3px;
  text-align: center;
  margin-top: 18px; }

div.tabOverFlow {
  overflow-x: scroll; }

table th {
  min-height: 36px;
  padding: 10px;
  border: solid 1px #6778a2;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #000;
  background: #f2f7fd;
  text-transform: uppercase;
  text-align: left; }
  table th:first-child {
    }
  table th:last-child {
    }
table td {
  padding: 10px;
  border: solid 1px #6778a2;
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  color: #000;
  line-height: 18px;
  vertical-align: top;
  background: #fff; }
  table td:first-child {
   }
  table td:last-child {
   }

div.quizattempt {
  text-align: center;
  margin-top: 25px; }

main div.container div.row {
  padding: 0px; }
  main div.container div.row div.m40x {
    padding: 20px 40px 20px; }

#bgImage0, #bgImagemod1 {
  background: url(../img/fond_livre.jpg) no-repeat top center;
  background-size: 100%;
  position: absolute;
  width: 100%;
  top: 28px;
  bottom: 0px; }

span.pointiller {
  border-bottom: 1px dotted #000;
  width: 50%;
  display: inline-block;
  text-align: right; }

table.noBorder td {
  border: 0px;
  vertical-align: bottom;
  padding: 6px 1px; }
table.noBorder td:last-child {
  width: 20px;
  text-align: right; }
table.noBorder div {
  position: absolute;
  background: #fff;
  padding: 1px 0px !important; }
table.noBorder span.pointiller {
  width: 100%;
  display: block;
  border-bottom: 1px dotted #000; }

main div.encadre {
  margin: 10px 0px; }

.margeTop {
  margin-top: 15px; }

.centre {
  text-align: center; }

article h3.centre {
  padding-bottom: 20px; }

div.connection a {
  padding-right: 120px !important;
  color: #fff !important; }

@media screen and (min-width: 768px) {
  #bgImage0, #bgImagemod1 {
    top: 276px; }

  #main {
    margin-top: 80px; }

  div.tabOverFlow {
    overflow-x: initial; }

  main div.encadre {
    margin: 10px 20px; } }
@media screen and (min-width: 586px) {
  #baniere h1 {
    font-size: 28px !important;
    line-height: 30px;
    max-width: 535px; } }
/* *********************************************** */
/* No SVG                                          */
/* ----------------------------------------------- */
/* Indiquer les images svg a remplacer par un png. */
/*                                                 */
/* *********************************************** */
.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; }
