
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body, p, h1, h2 {
    font-family: "Open Sans",  sans-serif;
    font-weight: 400;
    font-size: 14px;
}

body {

    counter-reset: chapter;
    margin-left: 7vw;
    margin-right: 7vw;

}

h1 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
}

.chapter h2::before {
    counter-increment: chapter;
    content: counter(chapter) ". ";
}

.chapter h2 {
    counter-reset: section;
    margin-top: 2em;

    font-weight: 700;
    text-transform: uppercase;
}

.section::before {
    counter-increment: section;
    content: counter(chapter) "." counter(section) " ";
    display: inline;
    position: absolute;
}

.section {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 2em;
}

.section ul {
    list-style-type: square;
    position: relative;
    margin-left: 5em;
}

.section ul li {
    margin-top: 0.3em;
    text-align: justify;
}

.section ul ul {
    list-style-type: circle;
    margin-left: 3em;
}

.emph {
    font-weight: 700;
}

.un-emph {
    font-weight: 400;
}

p {
    margin-top: 1em;
    text-align: justify;
}

.section p {
    margin-left: 2em;
}

.preambule ul {
    margin-left: 4em;
    margin-top: 1em;
    list-style: none;
}

.preambule li {
    margin-top: 0.3em;
}

.section p:first-child {
    margin-top: 0;
}


.quote::before {
    content: '\201E';
}

.quote::after {
    content: '\201C';
}

.section ol {
    counter-reset: list;
    margin-left: 5em;
}

.section ol > li {
    list-style: none;
    position: relative;
}

.section ol > li:before {
    counter-increment: list;
    content: counter(list, lower-alpha) ") ";
    position: absolute;
    left: -1.4em;
}

.section ol li {
    margin-top: 0.3em;
    text-align: justify;
}





