/* STRUCT.CSS */

/* GENERAL */
html,body{
	margin:0;
	padding:0;
	height:100%;
}
.hidden{
	position: absolute;
	width:1px;
	height:1px;
	visibility: hidden;
	top:-10000px;
	left:-10000px;
}

/*	AGENCEMENT VERTICAL	*/
body {
    display:-ms-flexbox;
	display:flex;
	-ms-flex-direction:column;
	flex-direction:column;
}
#header {
    flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	padding:0;
	margin:0;
	z-index: 100;
	display:flex;
}
#content {
    flex: 2 1 auto;
	-ms-flex: 2 1 auto;
	margin-top: 60px;
	padding-top:30px;
}
#footer {
    flex: 0 0 auto;
	-ms-flex: 0 0 auto;
}

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

/* NAVIGATION */
#navigation {
    align-self: flex-end;
    flex: 2 1 auto;
}

/* ACCESSIBILITE */
ul#accessibility {
	list-style-type:none;
	margin:0;
	padding:0;
	position:absolute;
	right:0;
	width:auto;
	z-index:90;
	font-size:0.6em;
	top:5px;
}
ul#accessibility a{
	color:#ffffff;
	text-decoration:none;
	opacity: 0;
}
ul#accessibility a:hover{
	opacity: 0.1;
}
ul#accessibility a:focus{
	opacity: 1;
}
ul#accessibility li{
	float: left;
	margin-right:10px;
}

/* SEARCH */
.searchFra {
    padding: 2px 10px 3px;
}
.schLabel {
	position: absolute;
	left: -9999px;
}
.schResFrame {
	position: fixed;
	left:50%;
	bottom:-80px;
    width:700px;
	height: 50px;
    margin-left:-350px;
	z-index: 91;
}
.schDisplay_on .schResFrame {
	bottom: 0px;
}
.schDisplayList_on .schResFrame{
	height: 530px;
}
.schResList {
	position: absolute;
	bottom: 5px;
	left: 5px;
	top: 5px;
	right: 5px;
	display: none;
}
.schDisplayList_on .schResList {
	display: block;
}
.schResListSrl {
	position: absolute;
	left: 0px;
	right: 0px;
	overflow: auto;
	padding: 5px;
}

/* CONTENT */
.bkBase_ti > span {
    display: block;
}
#content .txt_p, #content .txt_il, #content .txt_ol,
#content .bkBase_ti > span, #content .bkBase_ti > a, #content table,
#content .evtList, .bkBase_co.collBlk_open > div, .treeRoot.treeHasToolbar {
    margin: 0 auto;
    max-width: 1024px;
}
#content table .txt_p, #content table .txt_il, #content table .txt_ol,
#content .bkBase_co.collBlk_open .txt_p, #content .bkBase_co.collBlk_open .txt_il, #content .bkBase_co.collBlk_open .txt_ol, #content .bkBase_co.collBlk_open table{
	max-width:100%;
}
#content .txt_ili > .txt_p, #content .txt_oli > .txt_p{
	margin:0 0 5px 5px;
}
.hasIllustation #content {
	margin-top: 0;
	padding-top:55px;
}

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

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

/*	MENU SECONDAIRE	*/
#outSec {
	position: fixed;
	top: 60px;
	width:100%;
	z-index:100;
}
#outSec:empty {
    display: none;
}

/* FOOTER */
.permMargin {
    display: flex;
	justify-content: center;
}
div.margin{
	margin: 0 40px 0 0;
    flex: 0 0 250px;
}

/*	RESPONSIVE DESIGN	*/
@media (max-width: 800px){ 
	#header {
		flex-direction: column;
	}
	#outSec {
		top: 96px;
	}
}