/* ------
SOMMAIRE
---------*/
/*

01 - TITRES

*/







/* ------
01 - TITRES
---------*/
h1, h2, h3, h4, h5, h6, .like-h1, .like-h2, .like-h3, .like-h4, .like-h5, .like-h6{
	line-height:normal;
	line-height: 120%;
  margin-bottom: 30px;
}
h1, .like-h1{
	font-weight:normal;
	font-size: 40px;
	font-size: 4rem;
	margin:0 0 10px 0;
}
h2, .like-h2{
	font-size: 30px;
	line-height: 1;
	font-size: 3rem;
}
h3, .like-h3{
	font-size: 26px;
	font-size: 2.6rem;
}
h3::after, .like-h3::after{
  content: '';
  display: block;
  border-top: solid 8px var(--color-primary);
  width: 90px;
  margin-top: 10px;
}
h4, .like-h4{
	font-size:18px;
	font-size:1.8rem;
}
h5, .like-h5{
	font-size: 12px;
	font-size: 1.2rem;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: var(--regular);
}



/* Tablette */
@media (min-width:1200px){
	h1, .like-h1{
		font-size: 48px;
		font-size: 4.8rem;
	}
	h2, .like-h2{
		font-size: 37px;
		font-size: 3.7rem;
	}
	h3, .like-h3{
		font-size: 32px;
		font-size: 3.2rem;
	}
	h4, .like-h4{
		font-size:20px;
		font-size:2rem;
	}
	h5, .like-h5{
		font-size: 15px;
		font-size: 1.5rem;
	}
}


/* ------------
06 - CONTENU WYSIWYG
--------------*/
p{
	margin: 0 0 10px 0;
}
b,
strong{
	font-weight: 800;
}
em{
	font-style:italic;
    font-size: 1.4rem;
}
	em strong, strong em{
		font-style: italic;
		font-weight: normal;
	}
u{
	text-decoration:underline;
}
strike{
	text-decoration: line-through;
}
address{
	color: #007AAA;
}
pre{
	background:#ccc;
	border:1px solid #007aaa;
	font-family:Courier, MS Courier New, Prestige, Everson Mono;
	font-size:1.1em;
	margin:20px auto;
	overflow:auto;
	padding:5%;
	width:80%;
}
code{
	background:#007aaa;
	color:#fff;
	font-family:Courier, MS Courier New, Prestige, Everson Mono;
	font-size:1.1em;
	padding:2px;
}
cite{
	color:#000;
	font-family: Arial, sans-serif;
	font-size:1.1em;
	padding:0 3px 0 3px;
}

acronym{
	border-bottom:1px dashed #007aaa;
	cursor:help;
}
q{
	color:#007aaa;
	font-style:italic;
}
	q:after{
		content: " ' Source: "attr(cite)" ";
		font-size:1em;
	}

ul{
	color: var(--Black);
}
ul.noMargin {
	margin: 0;
}
	#wrapperInner ul > li {
		list-style: none;
		padding: 0 0 0 22px;
		position: relative;
    font-weight: var(--bold);
	}
  #wrapperInner ul > li:not(:last-child) {
    padding-bottom: 20px;
  }
	ul li.noPadding {
		padding: 0;
	}
	#wrapperInner ul > li::before {
		content: '';
		width: 11px;
		height: 11px;
		background-color: var(--color-primary);
		border-radius: 50%;
		position: absolute;
		top: 10px;
		left: 0;
	}
  #wrapperInner ul > li > ul {
    margin-left: 18px;
    margin-top: 20px;
  }
  #wrapperInner ul > li > ul > li {
    font-weight: var(--regular);
    line-height: 140%;
  }
  #wrapperInner ul > li > ul > li::before {
    content: '';
		width: 8px;
		height: 8px;
		border: solid 1px var(--color-primary);
    background-color: var(--white);
		border-radius: 50%;
		position: absolute;
		top: 7px;
		left: 0;
  }
	ul li.noBefore::before {
		display: none;
	}

ol {
    counter-reset: numList;
    margin: 5px 0 5px 15px;
}
	#wrapperInner ol > li {
    list-style-type: none;
    position: relative;
    padding-left: 54px;
    margin-bottom: 17px;
	}
	#wrapperInner ol > li::before {
    counter-increment: numList;
    content: counter(numList);
    margin: 0 5px 0 0;
    font-weight: var(--Black);
    width: 23px;
    height: 23px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    position: absolute;
    top: 0;
    left: 0;
	}
	#wrapperInner ol > li::after {
		content: '';
		width: 7px;
		height: 7px;
		background-color: #000;
		border-radius: 50%;
		position: absolute;
		top: 10px;
		left: 33px;
	}

hr{
	border-bottom:2px ridge #666;
	border:0;
}
.separator{
	clear:both;
	visibility:hidden;
	margin: 5px 0 5px 0;
}
dl{
	margin:10px 5px;
}
	dt{
		color:#000;
		font-size:1.1em;
		font-weight:bold;
	}
	dd{
		font-style:normal;
		margin:0;
		padding:0;
		text-indent:10px;
	}

/* tableau */
table thead tr td::after {
  content: "";
  display: block;
  height: 5px;
  background: var(--white);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

table thead tr td {
	border-top: solid 5px var(--color-primary);
	padding: 15px 20px 20px;
	position: relative;
	color: var(--white);
	font-weight: var(--bold);
	text-transform: uppercase;
}
table{
	border-collapse:collapse;
	border-spacing:0;
	margin:auto;
	width:100%;
	margin-bottom:15px;
}
	table caption{
		color: #ccc;
		font-size: 14px;
		font-weight:bold;
		margin:5px 0;
		text-align:left;
	}

table thead {
  background: var(--color-primary);
}
table thead tr th{
  color: var(--white);
  font-weight: var(--Black);
  text-transform: uppercase;
  padding: 15px 20px;
}
tbody td:first-child,
tbody th:first-child {
	border: transparent;
}
table tbody tr td:not(:first-child),
table thead tr td:not(:first-child) {
  border-left: solid 1px var(--black);
}
tbody > tr > td {
	padding: 32px 20px;
	border: transparent;
}
tbody th {
  font-size: 1.7rem;
  font-weight:bold;
  color: var(--black);
}
tbody tr:nth-child(odd) {
  background: var(--gray-100);
}
tbody tr:nth-child(even) {
  background-color: var(--white);
}
td{
	padding:2px;
}
td img{
	padding:3px;
}




/* Liens */
a, a:link, a:visited{
	color: var(--color-primary);
	text-decoration: underline;
}
a:hover, a:active{
	color: var(--yellow);
}

