/* STRUCT.CSS */

/* GENERAL */
html,
body {
	margin: 0;
	padding: 0;
}

html{
	height:100%;
}

body{
	display:flex;
	flex-direction: column;
	min-height: 100%;
}

.hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	visibility: hidden;
	top: -10000px;
	left: -10000px;
}

/* #header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	margin: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
}

#header .inline {
	display: flex;
	margin: 0 auto;
    max-width: 1024px;
	width: 100%;
	align-items: center;
	height: 75px;
}

/* TITRE DU SITE */
#header .tplTitle {
	margin: 1px 0px 0px 0px;
	overflow: hidden;
	flex: 0 0 auto;
}

/* NAVIGATION */
#navigation {
	flex: 1 1 auto;
}

/* CONTENT */
#content {
	width: 100%;
	overflow: hidden;
	flex:2 1 auto;
}

.hasSlider #content {
	min-height: 550px;
}

.bkBase_ti>span {
	display: block;
}

.bkBase_co {
	margin: 0 auto;
	max-width: 1024px;
}

#content .txt_ili>.txt_p,
#content .txt_oli>.txt_p {
	margin: 0 0 5px 5px;
}

/* ILLUS HOME	*/
.illus {
	position: fixed;
	z-index: -1;
	overflow: hidden;
	width: 100%;
}

.illus img {
	height: auto;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(0px, -50%);
}

/* FOOTER */
footer {
	clear: both;
	float: left;
	width: 100%;
	padding: 0;
}

#extras {
	width: 100%;
	padding-top: 20px;
	display: flex;
	justify-content: center;
	position: relative;
}

.permMargin {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
}

div.margin {
	margin: 0 1em;
	padding: 5px;
	width: 280px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.multipleSections #header .inline {
		flex-direction: column;
	}
}

@media (max-width: 900px) {
	#header .inline {
		flex-direction: column;
	}
}