:root {
    --md-primary-fg-color:        #F47920;
    --md-accent-fg-color:         #F47920;
}  


/* ENTETE */

/* Gérer le titre */
.md-header__title {
    font-size: xx-large;
}
.md-header__topic:first-child {
    font-weight: 400;
}

/* Rendre le bandeau d'entête plus couvrant */
.md-header {
    height: 12em;
    padding: 2vh;
}

/* Logo entête */
.md-header__button.md-logo img, .md-header__button.md-logo svg {
    height: 2.4rem;
}

/* Pas d'ombre entête */
.md-header--shadow {
    box-shadow: 0 0 0;
}

/* Couleur de la barre de recherche
.md-search__form {
    background-color: #ffffff;
} */


/* CONTENU DE LA PAGE */

.md-content__inner {
    padding-top: 0rem; 
}

.md-content__inner:before {
 height: 0rem;
}

.md-main__inner {
    display: flex;
    height: 100%;
    margin-top: .5rem;
}

.md-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.md-nav--primary .md-nav__title, .md-nav--secondary .md-nav__title {
    background-color:#f5f5f5;
    box-shadow: 0 0 0;
}

.md-nav--primary .md-nav__title[for=__drawer] {
    color: #f5f5f5;
}

/* Menu et table des matières sur les côtés */ 
.md-sidebar__scrollwrap {
    background-color:#f5f5f5;
    box-shadow: 0 0 0;
    position: fixed;
    width: 23em;
    height: 76% !important;
}

/* Mise en page des liens */
.md-content a {
    color: #F47920;
    text-decoration: underline;
}

/* Mise en page des titres */
.md-content h1 {
    color: #F47920;
    font-weight: normal;
    font-size: 16pt;
    margin-bottom: 6pt;
    margin-top: 20pt;
}
.md-content h2 {
    font-weight: normal;
    color: #000;
    font-size: 13pt;
    margin-bottom: 6pt;
    margin-top: 15pt;
}
.md-content h3 {
    font-weight: normal;
    color: #000;
    font-size: 12pt;
    margin-bottom: 6pt;
    margin-top: 15pt;
}
.md-content h4 {
    font-weight: normal;
    color: #000;
    font-size: 12.0pt;
}
.md-content h5 {
    font-weight: normal;
    color: #000;
    font-size: 10.0pt;
}
.md-content h6 {
    font-weight: normal;
    color: #000;
    font-size: 8.0pt;
}
.md-content p, li {
    font-weight: normal;
    font-size: 11pt;
    margin-bottom: 0pt;
    margin-top: 0pt;
}

/* Pour que la page en elle-même ne soit pas cachée par le pied de page */
body {
    padding-bottom: 5vh;
}

/* Sépateur dans le tableau*/
.md-typeset table:not([class]) td:not([align]), .md-typeset table:not([class]) th:not([align]) {
    text-align: left;
    border: .05rem solid var(--md-typeset-table-color);
}