/*===== HTML =====*/

* {
  box-sizing: border-box;
}

html {
  margin: 0;
}

body {
  margin: 0 0 0 0;
  font: 12pt "Ubuntu", "Arial", sans-serif;

}

.clearfix {
  overflow: auto;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

h1 {
  margin: 0 0 5 0;
  padding: 4mm;
  font: 18pt "Roboto Slab", "Arial", sans-serif;
  font-weight: 800;
  color: #111;
  background: #f7f7f7;
  border: 1px solid #ddd;
  text-align: left;
}


p {
  padding: 3pt 0 3pt 0;
  margin: 0 0 3mm 0;
  text-align: justify;
}


img {
  max-width: 100%;
  display: block;
  margin:10mm auto;
  box-shadow: 0 0 6px #ccc;
}

figure {
  position: relative;
  padding: 0 0 15mm 0;
}
figure.image-left {
    display: inline-block;
    float: left;
    width: auto;
  }
figure.nopadding {
  padding: 0;
}

figure figcaption {
    position: absolute;
    width: 100%;
    display: inline-block;
    bottom: 10px;
    text-align: center;
    font-weight: bold;
}

figure img {
  margin: 0 auto;
}
img.image-left {
  float: left;
  margin-right: 5mm;
  max-width: 35%;
  margin: 0 5mm 5mm 0;
}


@media only screen {
  .main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
  }
}


/*===== TOC =====*/

div.toc .toctitle {
  font-size: 20pt;
  margin: 0 0 5mm 0;
  font-weight: bold;
  text-align: center;
}
div.toc a {
  text-decoration: none; color: black
}


div.toc ul, div.toc ul li {
  margin: 2pt 0 0 0;
  padding: 0;
  list-style: none;
  font-weight: bold;
}


div.toc ul li ul {
  margin: 0 0 0 15pt;
  padding: 0;
}


div.toc ul li ul li {
  list-style: none;
  font-weight: normal;
  margin-bottom: 1pt;
}


/*===== STYLES =====*/

ul.liste li {
  list-style: none;
  padding: 0 0 0 1.3em;
}

ul.liste li:before {
  position: relative;
  content: '\f105';
   font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  left: -.8em;
  color: #E36C0A;
}


div ol {
  margin:0;
}

div.clearfix p {
  display: inline;
}

.infos {
  display: block;
  text-align: left;
  width: auto;
  background: #FEF2E8;
  border: 1px solid #E36C0A;
  margin: 10mm auto;
}

.infos .icon-infos, 
.infos .text-infos {
  display: block;
  float: left;
  padding: 4mm;
}

.infos .icon-infos {
  width: 20%;
  text-align: center;
}

.infos .icon-infos span {
  font-size: 52px;
  color: #E36C0A;
}

.infos .text-infos {
  clear: both;
}

.infos i {
  color: #E36C0A ;
  font-size: 20pt;
}

/*===== TABLEAU =====*/

table th {
  background: #ddd;
  padding: 5mm;
  font-size: 16pt;
  font-weight: bold;
}

table td {
  padding: 3mm;
}

table tr td:first-child,
table tr td:nth-child(2) {
  text-align: center;
  font-weight: bold;
}

table tr td:first-child {
  color: #E36C0A;
  font-size: 16pt;
}

table tbody tr:nth-child(even) {
  background: #f7f7f7;
}
