/* ------
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;
	margin:10px 0;
	line-height: 120%;
	font-weight: normal;
}
h1, .like-h1{
	color:var(--white);
    font-family: 'mb', sans-serif;
	font-size: 24px;
	font-size: 2.4rem;
	text-transform: uppercase;
	display: inline-block;
}
@media (min-width:1024px){
	h1, .like-h1{
		font-size: 30px;
		font-size: 3.0rem;
	}
}
@media (min-width:1400px){
	h1, .like-h1{
		font-size: 48px;
		font-size: 4.8rem;
	}
}
h1::after, .like-h1::after {
	content: '';
	height: 8px;
	width: 40%;
	background: var(--white);
	display: block;
	margin-top: 30px;
}
h2, .like-h2{
	font-size: 35px;
	font-size: 3.5rem;
	line-height: 120%;
	font-family: 'mm';
	color: var(--black);
	display: inline-block;
}
h2 strong, .like-h2 strong{
	color: var(--color-primary);
}
h2::after, .like-h2::after {
	content: '';
	height: 8px;
	width: 100%;
	background: var(--black);
	display: block;
	margin-top: 20px;
}
h3, .like-h3{
	font-size: 24px;
	font-size: 2.4rem;
	color: var(--black);
}
h3 strong, .like-h2 strong {
	font-family: 'mb';
}
h4, .like-h4{
	font-size:20px;
	font-size:2rem;
}
h5, .like-h5{
	font-size: 18px;
	font-size: 1.8rem;
}
h6, .like-h6{
	color: #007AAA;
	font-size: 14px;
	font-size: 1.4rem;
}










/* ------------
06 - CONTENU WYSIWYG
--------------*/
p{
	margin: 0 0 10px 0;
}
strong{
	font-family: 'mb', sans-serif;
	font-weight: normal;
}
.green_text, .green-text, .text-green, .text_green {
	color: var(--color-primary);
}
em{
	font-style:italic;
}
	em strong, strong em{
		font-family: 'mb', sans-serif;
		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;
}
p.text-intro {
    font-family: "rb", sans-serif;
    color: var(--color02);
}
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: #5A5A5A;
	margin: 30px 0 30px 34px;
}
ul.noMargin {
	margin: 0;
}
	ul li{
		list-style: none;
		padding: 0 0 0 16px;
		position: relative;
		font-family: 'rm';
		font-size: 1.2rem;
	}
	@media (min-width:1024px){
		ul li{
			font-size: 1.4rem;
		}
	}
	@media (min-width:1200px){
		ul li{
			font-size: 1.6rem;
		}
	}
	ul li.noPadding {
		padding: 0;
	}
	#wrapperInner ul li::before {
		content: '';
		width: 8px;
		height: 8px;
		background-color: var(--color-primary);
		border-radius: 50%;
		position: absolute;
		top: 8px;
		left: 0;
	}
	ul li.noBefore::before {
		display: none;
	}

ol {
    counter-reset: numList;
    color: #5A5A5A;
	margin: 30px 0 30px 34px;
}
	#wrapperInner ol li {
		list-style-type: none;
		font-family: 'rm';
		font-size: 1.6rem;
		position: relative;
		padding: 0 0 0 16px;
	}
	#wrapperInner ol li::before {
		counter-increment: numList;
		content: counter(numList) ".";
		font-family: "rb", sans-serif;
		color: var(--color-primary);
		margin: 0 5px 0 0;
		position: absolute;
		top: 0;
		left: 0;
	}

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;
	}

table{
	border-collapse:collapse;
	border-spacing:0;
	border:1px solid #ccc;
	margin:auto;
	width:100%;
	margin-bottom:15px;
}
	table caption{
		color: #ccc;
		font-size: 14px;
		font-weight:bold;
		margin:5px 0;
		text-align:left;
	}
th{
	color:#fff;
	border:1px solid #ccc;
	color:#666;
	font-size:14px;
	font-weight:bold;
	padding:2px;
}
td{
	border:1px solid #ccc;
	padding:2px;
}
td img{
	padding:3px;
}




/* Liens */
a, a:link, a:visited{
	color: #4d4d4d;
	text-decoration: none;
}
a:hover, a:active{
	color: #000;
}

