@charset "utf-8";
/* CSS Document */

/* ------------------ CONTENU PRINCIPAL ----------------------*/

main h1 {
    text-align: center;
    font-size: 220%;
    color:#069;
    text-shadow: 1px 1px 3px #036;
    counter-reset: num_question;
}
main h2 {
    font-size: 180%;
    margin:24px 0 0 0;
    color: #036;
    text-shadow: 1px 1px 2px #036;
}

main h3 {
    font-size: 150%;
    font-style: italic;
    text-shadow: 1px 1px 2px #036;
    text-decoration: underline;
    margin:24px 0 0 0;
    color: #036;
}

main h4 {
    font-size: 130%;
    font-style: italic;
    margin:20px 0 0 0;
    color: #036;
    counter-reset: lettre_reponse;
}

main h4::after {
    counter-increment: num_question;
    content: " n° " counter(num_question);
}

main p {
    margin:4px 6px 6px 6px;
}
.divReponses {
    margin-left:0.8em;
    border-left: transparent solid 0.4em;
}

.spanReponse {
    font-weight: bold;
    font-style: italic;
}

main pre[class*="language-"] {
    margin-left: 20px;
}

main table {
    border-collapse: collapse;
    margin:12px 0 20px 50px;
}

main td {
    text-align: center;
    border-right: solid 1px black;
    border-bottom: solid 1px black;
    padding: 0.2em
}

main th {
    text-align: center;
    border-right: solid 1px black;
    border-bottom: solid 1px black;
    background-color: #f0f0f0;
    padding: 0.2em
}

main figure {
    text-align: center;
    font-size: 0.9em;
    font-style: italic;
}
main figure img {
    max-width: 100%;
}

main sup {
    position: relative;
    font-size:80%;
    top:-0.3em;
    margin:0 0.2em;
}

main ul {
    margin: 0;
}

main li {
    list-style: none;
}