@import url("font/font.css");

/* GENERAL */
html{
	width:100%;
	height:100%;
}
body{
	margin: 0;
	font-weight: 400;
	background-color: #f9f9f9;
	font-family: 'Open Sans', Helvetica, sans-serif;
	font-size: 1em;
	color: #313131;
	min-height: 100%;
	width:100%;
	scroll-behavior: smooth;
	overflow-x:hidden;
	display: flex;
	flex-direction: column;
}

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

:focus{
	outline:none;
}

a {
	color: var(--mainColor);
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}

a:hover {
	text-decoration: none;
	color: #313131;
}

a img {
	border-width: 0px;
}

q::before,
q::after {
	content: "";
}

ul,
ol {
	margin: 5px 0 0 0;
	list-style-position: outside;
}

li li {
	list-style-type: disc;
}

p {
	margin: 0.5em 0;
	line-height: 145%;
	color: #676767;
}

table {
	border-collapse: separate;
	border-spacing: 10px;
}

h2,
h3,
h4,
h5 {
	margin-bottom: 0.5em;
}

h3 {
	font-size: 1.4em;
	line-height: 105%;
}

.bkSec>h3.bkBase_ti {
	font-size: 1.8em;
	padding: 1.5em 0 0.5em 0;
}

h4,
h5 {
	font-size: 1.2em;
	margin: 1em 0 0.5em 0;
}

.txt_tb {
	margin: auto;
	border: 2px solid #777;
}

.txt_tb caption {
	color: #676767;
	font-style: normal;
	font-size: 0.95em;
	padding-bottom: 0.25em;
}

.txt_tb td,
.txt_tb th {
	border: 1px solid #777;
}

.txt_tb thead {
	border-bottom: 2px solid #777;
}

.txt_tb tfoot {
	border-top: 2px solid #777;
}

.txt_tb p {
	margin: 1px 0;
}

.txt_t_tbcl,
.txt_t_tbtr {
	background-color: #fff5ea;
}

.txt_n_tbtd p {
	text-align: right;
}

.txt_w_tbtd p {
	text-align: center;
}

/* HEADER */
#header{
	width:100%;
	padding: 1em 0.8em;
	margin:0;
	z-index: 2;
	display:flex;
	align-items: center;
	box-sizing: border-box;
}
body.nav_stuck_yes #header{
	position: fixed;
	background-color: #fff;
}
#header .inline{
	display: flex;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
}

#header .tplTitle {
	margin:1px 0px 0px 0px;
	height:55px;
	overflow:hidden;
	flex: 0 0 auto;
	padding-left: 0.5em;
}

#header .tplTitle a {
	text-decoration: none;
	color: #313131;
	font-weight: 800;
	font-size: 0.8em;
	background: transparent url("img/tpl/logo.svg") no-repeat left center / auto 100%;
	padding-left: 1.6em;
}

#header .tplTitle a:hover {
	text-decoration: none;
	color: var(--mainColor);
}

.lang_bk a {
    background-color: var(--mainColor);
    color: #fff;
    text-transform: uppercase;
    padding: 0.3em 0.5rem;
    box-shadow: 0 0 3px #666;
    font-size: .9em;
    border-radius: 0.3em;
	height: 32px;
    box-sizing: border-box;
	text-decoration: none;
}

.lang_bk a:hover{
	background-color: var(--darkColor);
	text-decoration: none;
}

/* 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: var(--mainColor);
	text-decoration: none;
	opacity: 0;
}

ul#accessibility a:hover {
	color: #333333;
}

ul#accessibility a:focus {
	opacity: 1;
	color: #333333;
}

ul#accessibility li {
	float: left;
	margin-right: 10px;
}

/*	MENU PRINCIPAL	*/
ul.outCat {
	list-style-type: none;
	text-align: right;
	margin: 0;
	padding-right: 1em;
}

ul.outCat li {
	display: inline-block;
	position: relative;
	margin: 0 0.8em;
}

body.home ul.outCat li:first-child {
	display: none;
}

ul.outCat li:first-child a::before {
	font-family: "fontello";
	content: "\e816";
}

ul.outCat li:first-child a span {
	position: absolute;
	left: -9999px;
}

ul.outCat span.outCat_i {
	cursor: default;
}

ul.outCat a.outCat_i:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

ul.outCat li.outCat_sel_yes a.outCat_i {
	border-bottom: 2px solid #313131;
	color: #313131;
}

ul.outCat li.outCat_sel_yes a.outCat_i:hover::after {
	display: none;
}

ul.outCat .outCat_i {
	display: inline-block;
	/*margin: 0 0.8em;*/
	padding: 0.2em 0;
	font-size: 1.1em;
	text-decoration: none;
}

ul.outCat a.outCat_i {
	color: var(--mainColor);
	transition: color 0.2s linear 0s;
}

ul.outCat a.outCat_i:hover {
	text-decoration: none;
	color: #313131;
}

ul.outCat a.outCat_i::after {
	background-color: #313131;
	bottom: -2px;
	content: "";
	height: 2px;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	transform: scaleX(0);
	transform-origin: 50% 50% 0;
	transition: all 0.6s cubic-bezier(0.1, 0.84, 0.2, 1) 0s;
	width: auto;
}

/*	MENU RETOUR	*/
#navigation {
	align-self:center;
}
#navigation ul.outBk {
	list-style-type: none;
	margin: 10px 6% 0;
	padding-left: 0px;
}

#navigation ul.outBk .outBk_i span {
	display: none;
}

#navigation ul.outBk .outBk_i {
	display: block;
	width: 50px;
	height: 45px;
	background: transparent url("img/co/back.svg") no-repeat center center / 40px auto;
}

#navigation ul.outBk .outBk_i:hover {
	opacity: 0.7;
}


/* FOOTER */
footer {
	flex: 0 1 auto;
	padding:0;
	padding: 6em 0 3em 0;
	background-color: var(--darkColor);
	color: #fff;
	font-size: 0.8em;
}

#extras {
	padding: 0 2em;
	display: flex;
	justify-content: center;
	position:relative;
}
.permMargin {
	display: flex;
	flex-flow:wrap;
	width: 100%;
	flex:2 1 auto;
}
div.margin{
	margin: 0 10px;
	padding: 5px;
	flex: 1 1 auto;
}

footer img {
	vertical-align: middle;
}

footer .margin_ti {
	margin: 0 0 0.5em;
	font-weight: bold;
}

footer .margin_co p {
	color: #fff;
	text-align: left;
	margin: 0;
}

footer .margin:nth-child(1) .margin_co p {
	margin-bottom: 15px;
}

footer .margin_co a {
	text-decoration: none;
	color: #bcbcbc;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}

footer .margin_co a:hover{
	color: #71a5ff;
}

footer .margin_co .txt_ico_tim {
	margin: 0 5px;
}

footer .margin_co .event .tt_a {
	display: block;
}

footer a img:hover{
	filter: brightness(0.5);
}

/* BANNER HOME	*/
#banner {
	display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    margin-top: 0!important;
}

#banner > img{
	height: auto;
	width: 100%;
	flex: 0 1 auto;
	align-self: flex-start;
}

#banner .baseline {
	padding: 2em 2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
    align-items: stretch;
	z-index: 1;
}

#banner .baseline p {
	max-width: 500px;
	color: #646464;
	margin: 0.2em 0;
}

#banner .baseline > p:first-child{
	color: #333333;
	font-size: 1.7em;
	line-height: 1.4em;
	margin-bottom: 0.5em;
}

area:hover{
	background-color: red;
}

/* HOME */
.home .bkBase {
	margin: 1em auto;
}

.home .threeway>* {
	padding: 0 !important;
}

.home .threeway table {
	height: 100%;
	border-spacing: unset;
	border-collapse: collapse;
	width: 100%;
}

.home .threeway tbody tr:first-child {
	height: 130px;
	background-color: rgba(57, 54, 52, 0.1);
}

.home .threeway tbody tr {
	text-align: center;
}

.threeway tbody tr:last-child {
	background-color: rgba(57, 54, 52, 0.2);
}

.threeway tbody tr:last-child td {
	padding: 0.2em 0.5em;
}

.homeBanner ul.screenZones {
	list-style: none;
}

.homeBanner ul.screenZones > li {
	display: none!important;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity ease-in-out 200ms;
}

.homeBanner .screenZone_co {
	position: absolute;
	top: 0;
	left: 0;
	filter: brightness(0.3) blur(1px);
}

.homeBanner .screenZone_ti {
	position: relative;
	z-index: 2;
	text-align: center;
	font-weight: bold;
	color: #FFFFFF;
	pointer-events: none;
}

/* CONTENT */
.hasSimpleTitle h2, .home h2.bkBase_ti, .bkProjSheet h2 {
	left: -1000px;
	position: absolute;
	top: -1000px;
}
div.bkBase.bkProjSheet{
	max-width: 800px;
	margin: 0 auto;
}
#content {
	flex: 2 1 auto;
	margin: 0 auto;
	max-width: 1024px;
	width: 100%;
	margin-top: 0!important;
	padding: 2em 0 5em 0;
}
#content .txt_ili > .txt_p, #content .txt_oli > .txt_p{
	margin:0 0 5px 5px;
}

table.docHead th {
	padding-right: 5px;
	text-align: right;
}

#content>.bkBase:first-child>.bkBase_ti {
	font-size: 2.5em;
}

.blockAnchor {
	visibility: hidden;
	text-decoration: none;
	color: silver;
	font-size: .95em;
	margin-left: 0.2em;
}

.blockAnchor::before {
	font-family: "fontello";
	content: "\e817";
	font-weight: normal;
}

.blockAnchor span {
	position: absolute;
	left: -9999px;
}

*:hover>.blockAnchor,
.blockAnchor:focus {
	visibility: visible;
}

.blockAnchor:hover {
	text-decoration: none;
	opacity: 0.7;
}

.binCap {
	text-align: center;
	margin: 10px;
}

.binCap img {
	width: 100%;
	height: auto;
}

.animFra .binCap {
	margin: 0px;
}

.binCap_ti {
	color: #676767;
	font-style: normal;
	padding-top: 0.25em;
	font-size: 0.9em;
}

.webCap {
	text-align: center;
	margin: 0;
}

.webCap_ti {
	color: #676767;
	font-style: italic;
}

div.margin_co .binCap,
div.margin_co .webCap {
	margin: 2px 0 3px 0;
}

.binImgInline {
	vertical-align: middle;
}

.bkEmphasis {
	background-color: #EBF3FF;
	padding: 1em 2em;
	margin: 2em 0;
	border-radius: 8px;
}

.bkEmphasis .bkBase_co {
	padding: 0.6em 0;
}

.bkBase.bkKeyPoint {
	background-color: #fff;
	border: 5px solid #dbe4f7;
	border-radius: 20px;
	padding: 1.2em;
	margin: 1em 0;
}

#content .bkMargin {
	position: relative;
	text-align: center;
	padding: 2em;
	margin: 3em 0;
}

#content .bkMargin::before{
	content: "";
	background-repeat: no-repeat;
	/*background-image: url("img/co/oval-deco.svg");*/
	width: 44px;
	height: 44px;
	position: absolute;
	top: -1em;
	right: 6em;
	z-index: 2001;
}

#content .bkMargin::after{
	content: "";
	background-repeat: no-repeat;
	/*background-image: url("img/co/triangle-deco.svg");*/
	width: 90px;
	height: 92px;
	position: absolute;
	bottom: -3em;
	left: 1em;
	z-index: -3;
}

#content .bkMargin .margin_ti {
	margin-top: 0;
}

.visavis {
	display: flex;
	flex-flow: row;
	margin-bottom: 1em;
	align-items: center;
	overflow-x: scroll;
	transform: scroll(calc(var(--i,0)/var(--n)*-100%));
	scroll-behavior: smooth;
	position: relative;
	background-color: #fff;
	padding: 1em;
}

.visavis::-webkit-scrollbar{
	height: 10px;
	width: 150px;
}

.visavis::-webkit-scrollbar-track {
	background: transparent;
}
.visavis::-webkit-scrollbar-thumb {
	background: var(--mainColor);
}
.visavis::-webkit-scrollbar-thumb:hover {
	background: #333;
	cursor: pointer;
}

.visavis>.first {
	margin-right: 0.5em;
	padding-right: 0.5em;
}

.visavis.half-half>.first {
	flex: 1 1 50%;
}

.visavis.half-half>.next {
	flex: 1 1 50%;
}

.visavis.one-two>.first {
	flex: 1 1 33%;
}

.visavis.one-two>.next {
	flex: 1 1 67%;
}

.visavis.two-one>.first {
	flex: 1 1 67%;
}

.visavis.two-one>.next {
	flex: 1 1 33%;
}

.visavis.one-three>.first {
	flex: 1 1 25%;
}

.visavis.one-three>.next {
	flex: 1 1 75%;
}

.visavis.three-one>.first {
	flex: 1 1 75%;
}

.visavis.three-one>.next {
	flex: 1 1 25%;
}

.visavis.auto>div {
	flex: 1 1 auto;
}

.threeway {
	display: flex;
	flex-flow: row;
	margin: 1em 0;
}

.threeway>.first {
	margin-right: 0.5em;
	padding-right: 0.5em;
}

.threeway>.next {
	margin-right: 0.5em;
	padding-right: 0.5em;
}

.threeway.one-one-one>.first {
	flex: 1 1 33%;
}

.threeway.one-one-one>.next {
	flex: 1 1 33%;
}

.threeway.one-one-one>.last {
	flex: 1 1 33%;
}

.threeway.two-one-one>.first {
	flex: 1 1 50%;
}

.threeway.two-one-one>.next {
	flex: 1 1 25%;
}

.threeway.two-one-one>.last {
	flex: 1 1 25%;
}

.threeway.one-two-one>.first {
	flex: 1 1 25%;
}

.threeway.one-two-one>.next {
	flex: 1 1 50%;
}

.threeway.one-two-one>.last {
	flex: 1 1 25%;
}

.threeway.one-one-two>.first {
	flex: 1 1 25%;
}

.threeway.one-one-two>.next {
	flex: 1 1 25%;
}

.threeway.one-one-two>.last {
	flex: 1 1 50%;
}

.threeway.auto>div {
	flex: 1 1 auto;
}

/* TYPES DE FICHIERS */
.lnkBin::before {
	font-family: "fontello";
	margin-right: 5px;
}

.lnkBinDoc::before,
.lnkBinRtf::before {
	content: '\e80a';
}

.lnkBinXls::before {
	content: '\e80e';
}

.lnkBinZip::before {
	content: '\e80f';
}

.lnkBinMp3::before {
	content: '\e80c';
}

.lnkBinPdf::before {
	content: '\e80b';
}

.lnkBinPpt::before {
	content: '\e80d';
}

.lnkBinFlv::before,
.lnkBinOdg::before,
.lnkBinOdp::before,
.lnkBinOds::before,
.lnkBinOdt::before,
.lnkBinSwf::before {
	content: '\e810';
}

/* TOOLTIPS */
.tt_a {
	cursor: pointer;
}

.tt_fra {
	background-color: white;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 20%);
	border-radius: 8px;
	padding: 15px;
}

.tt {
	font-size: 100%;
}

.tt_ti {
	font-weight: bold;
	text-align: center;
	padding: 2px 20px 2px 2px;
	color: #4a4949;
}

.tt_x {
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 1px;
	right: 1px;
	background: url("img/co/close.svg") no-repeat left top / 24px auto;
}

.tt_x:hover {
	opacity: 0.7;
}

.tt_x span {
	display: none;
}

div.tt_co {
	padding: 5px;
}

div.tt_co p {
	text-align: left;
}

a.ttEvt_a {
	color: #0d405d;
	border-bottom: 0px;
}

a.ttEvt_a:hover {
	border-bottom: 0px;
	text-decoration: underline;
}

a.ttEvt_act {
	color: #F17C0B;
}

div.ttEvt_ti {
	display: none;
}

div.ttEvt_co {
	padding: 0 18px 0 0;
	background-color: #0d405d;
}

div.ttExtCo {
	padding: 5px 5px 5px 5px;
	background-color: white;
}

ol.footNotes {
	margin: 10px;
	font-size: 80%;
	padding-top: 5px;

	padding-left: 20px;
}

li.footNotes_it {
	margin-bottom: 10px;
	padding: 2px;
}

ol.footNotes p {
	margin: 0 0 5px 0;
}

div.footNotes_itti {
	font-weight: bold;
}

ol.footNotes .tt_x {
	display: none;
}

/* ---------- Gallery ---------- */

.imgLoading .scImgGalCvs::before {
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("img/co/loader.svg");
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

.imgLoading .scImgGalFra {
	display: none;
}

.galFra,
.galMiniFra {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.galMiniFra {
	justify-content: start;
}

/* .galFra {
	width: 90%;
	margin: auto;
} */

.galFra img {
	padding: 5px;
}

.galMiniFra img {
	height: 80px;
	width: auto;
}

.scImgSep {
	display: none;
}

a.galPvLnk:hover {
	opacity: 0.8;
}

.scImgGalCvs {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.scImgGalImgFra {
	background-color: white;
	border-radius: 5px;
	padding: 5px;
	padding-bottom: 30px;
	overflow: hidden;
}

.scImgGalCo {
	list-style: none;
	padding: 0;
	margin: 0;
	height: 0;
}

.scImgGalTbr {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.scImgGalTbr .scImgGalCount {
	display: inline;
	bottom: 5px;
	right: 35px;
	font-style: italic;
	color: gray;
	cursor: default;
}

div.scImgGalOver,
div.scImgZmOver {
	background-color: black;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

div.scImgGalTi {
	font-style: italic;
	color: gray;
	cursor: default;
	font-size: 12px;
	position: absolute;
	bottom: 5px;
	left: 5px;
}

div.scImgGalTbr span,
a.scImgGalBtnCls span {
	display: none;
	position: absolute;
}

a.scImgGalBtnCls,
a.scImgZmBtnCls,
a.scImgSeqBtnCls,
div.scImgGalTbr a,
a.scImgSeqBtnPrv,
a.scImgSeqBtnNxt,
a.scImgSeqBtnPlay,
a.scImgSeqBtnPause {
	font-family: "galleryPlayer" !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #ffffff;
	width: 30px;
	text-align: center;
	text-decoration: none;
}

a.scImgGalBtnCls:before,
a.scImgZmBtnCls:before,
a.scImgSeqBtnCls:before {
	content: "\ea0f";
}

a.scImgGalBtnCls,
a.scImgZmBtnCls,
a.scImgSeqBtnCls {
	display: block;
	top: 5px;
	right: 5px;
	font-size: 2em;
}

.isMobile_true a.scImgGalBtnCls,
.isMobile_true a.scImgZmBtnCls,
.isMobile_true a.scImgSeqBtnCls {
	top: 10px;
}

a.scImgGalBtnCls,
.isMobile_true a.scImgZmBtnCls,
.isMobile_true a.scImgSeqBtnCls {
	position: absolute;
}

div.scImgGalTbr a {
	display: block;
	position: absolute;
}

div.scImgGalTbr a:hover {
	text-decoration: none;
}

a.scImgGalBtnPrv,
a.scImgGalBtnNxt {
	top: 1.5em;
	font-size: 4em;
	margin-top: -1.25em;
	position: fixed !important;
	width: 1em !important;
	height: 100%;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.isMobile_true a.scImgGalBtnPrv,
.isMobile_true a.scImgGalBtnNxt {
	position: absolute !important;
}

a.scImgGalBtnPrv:before {
	content: "\e833";
}

a.scImgGalBtnPrv {
	left: 5px;
}

a.scImgGalBtnNxt:before {
	content: "\ea34";
}

a.scImgGalBtnNxt {
	right: 5px;
}

a.scImgGalBtnPse:before {
	content: "\ea16";
}

a.scImgGalBtnPly,
a.scImgGalBtnPse {
	font-size: 1.5em;
	color: gray !important;
	bottom: 4px;
	right: 0;
}

a.scImgGalBtnPly:before {
	content: "\ea15";
}

.noScroll {
	overflow: hidden;
}

/* ---------- sequence ---------- */
.scImgSeqOver {
	background-color: black;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.scImgSeqMag {
	box-shadow: 0 0 5px 0 #000000;
	cursor: crosshair;
}

.seqFra,
.seqFraMini {
	display: flex;
	justify-content: center;
}

a.scImgSeqBtnPrv:before {
	content: "\e833";
}

a.scImgSeqBtnPrv {
	left: 5px;
}

a.scImgSeqBtnNxt:before {
	content: "\ea34";
}

a.scImgSeqBtnNxt {
	right: 5px;
}

a.scImgSeqBtnPause:before {
	content: "\ea16";
}

a.scImgSeqBtnPlay,
a.scImgSeqBtnPause {
	margin-top: 2px;
}

a.scImgSeqBtnPlay:before {
	content: "\ea15";
}

.scImgSeqToolsOver {
	background: #eee;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
}

.scImgSeqToolsOver a {
	color: #666 !important;
	font-size: 1.7em;
}

.seqFra .galPv {
	margin-top: 0.3em;
	visibility: hidden;
}

.seqFraMini .galPv {
	visibility: hidden;
}

.seqFraMini img {
	width: 180px;
	height: auto;
}

a.scImgSeqBtnCls span,
a.scImgSeqBtnPrv span,
a.scImgSeqBtnNxt span,
a.scImgSeqBtnPlay span,
a.scImgSeqBtnPause span {
	display: none;
}

/* ---------- zoom ---------- */
div.scImgZmCvs,
div.scImgSeqCvs {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

.imgLoading .scImgZmCvs::before,
.imgLoading .scImgSeqCvs::before {
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("img/co/loader.svg");
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

div.scImgZmFra {
	background-color: white;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 5px;
}

div.scImgZmTlb {
	margin-top: 5px;
	text-align: right;
}

a.scImgZmBtnCls,
a.scImgSeqBtnCls {
	position: fixed;
}

a.scImgZmBtnCls span,
a.scImgGalBtnNoPrv {
	display: none;
}

.scImgZmCo,
.scImgSeqCo {
	text-align: center;
}

.scImgZmCo div,
.scImgSeqCo div {
	z-index: 2002;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	border: 0px;
}

.scImgZmCo iframe,
.scImgSeqCo iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	border: 0px;
}

.scImgZmCo a,
.scImgSeqCo a {
	text-decoration: none;
}

.scImgZmCo a img,
.scImgSeqCo a img {
	border: 0px;
}

.scImgZmCo img,
.scImgSeqCo img {
	background-color: white;
}


/* EVENT LISTS */
.evtList {
	position: relative;
}

.evtListEvt {
	list-style-type: none;
}

.evtListDesc {
	list-style-type: square;
}

.event_closed::before {
	font-family: "fontello";
	content: '\e806';
	margin-right: 5px;
}

.event_open::before {
	font-family: "fontello";
	content: '\e806';
	margin-right: 5px;
}

.event_closed:hover,
.event_open:hover {
	text-decoration: none;
	color: #ff8c00;
}

.event {
	margin-bottom: 5px;
	margin-left: 5px;
}

.event::before {
	color: #ff8c00;
	content: '\e808';
	font-family: "fontello";
	font-size: 1.2em;
	left: 3px;
	position: absolute;
}

.event_co {
	margin-bottom: 10px;
}

.event_co li {
	list-style-image: none;
}

.lnkZoom {
	background: rgba(0, 0, 0, 0) url("img/co/search.svg") no-repeat scroll left 0 / 12px auto;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 3px;
}

.lnkZoom:hover {
	background: rgba(0, 0, 0, 0) url("img/co/search.svg") no-repeat scroll left -12.75px / 12px auto;
}

.lnkZoom span {
	display: none;
}

/* VOIR + OU - */
/* VOIR + OU - */
#content .bkBase_closed,
#content .bkBase_open {
	background-color: #fff;
	border-radius: 8px;
	border-top: var(--mainColor) 3px solid;
	text-decoration: none;
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
}
#content .bkBase_closed:hover,
#content .bkBase_open:hover {
	background-color: #f5f5f5;
}

#content .bkBase_open:hover{
	border-radius: 8px 8px 0 0;
}

#content .bkBase_closed span,
#content .bkBase_open span {
	flex: 2 1 auto;
}

#content .bkBase_closed::after {
	font-family: "fontello";
	font-weight: normal;
	margin-left: 0.5em;
	content: "\e818";
}
#content .bkKeyPointMore .bkBase_closed::after {
	display: none;
}

#content .bkKeyPointMore .bkBase_closed::before {
	font-family: "fontello";
	font-weight: normal;
	margin-right: 0.2em;
	content: "\e818";
}

#content .bkBase_open::after {
	font-family: "fontello";
	font-weight: normal;
	margin-left: 0.5em;
	content: "\e800";
}
#content .bkKeyPointMore .bkBase_open::after {
	display: none;
}

#content .bkKeyPointMore .bkBase_open::before {
	font-family: "fontello";
	font-weight: normal;
	margin-right: 0.2em;
	content: "\e800";
}

#content .bkExtra>.bkBase_ti {
	padding: 0.5em 0 0;
	margin-bottom: 0;
}

#content .bkExtra>.bkBase_ti>a {
	padding: 1em;
}

#content .bkExtra>.bkBase_ti>.bkBase_open {
	border-bottom: none;
}

#content .bkBase_co.collBlk_open {
	background-color: #fff;
	padding: 1.2em;
}

#content .bkExtra>.bkBase_co.collBlk_open {
	border-radius: 0 0 8px 8px;
	background-color: #fff;
}

#content .bkBase.bkExtra.cbkClosed {
	border-radius: 8px;
	/*box-shadow: 0 8px 13px 0 rgb(0 0 0 / 5%);*/
}

#content .bkKeyPointMore .bkBase_closed,
#content .bkKeyPointMore .bkBase_open {
	margin: 1em 0;
	background-color: transparent;
	color: var(--mainColor);
	border: 2px solid var(--mainColor);
	padding: 0.5em;
	text-decoration: none;
	box-sizing: border-box;
	transition: none;
}

#content .bkKeyPointMore .bkBase_open:hover,
#content .bkKeyPointMore .bkBase_closed:hover {
	color: #333;
	background-color: #E9E9E9;
}

#content .bkKeyPointMore .bkBase_open {
	border-radius: 8px 8px 0 0;
	margin-bottom: 0;
	border-bottom: 0px;
}

#content .bkKeyPointMore>.bkBase_co.collBlk_open {
	border-radius: 0 0 8px 8px;
	border: 2px solid var(--mainColor);
	border-top: none;
}

/* OPTIONS */
.optContent {
	background-color: #fff;
	padding: 30px 15px;
}


/* ---------- animation ---------- */
.seqCap_co {
	text-align: center;
}

.animFra {
	margin: 0 auto;
	text-align: left;
}

div.scImgAnmCtrl {
	background-color: white;
	position: absolute;
	bottom: 20px;
	right: 5px;
	height: 25px;
	width: 80px;
}

div.scImgAnmCtrl span {
	display: none;
	position: absolute;
}

div.scImgAnmCtrl a {
	display: block;
	width: 15px;
	height: 15px;
	background: rgba(0, 0, 0, 0) url("img/co/btns.svg") no-repeat scroll 0 0 / 15px auto;
	position: absolute;
	bottom: 4px;
}

a.scImgAnmBtnPrv:hover,
a.scImgAnmBtnNxt:hover,
a.scImgAnmBtnPse:hover,
a.scImgAnmBtnPly:hover {
	opacity: 0.7;
}

div.scImgAnmCtrl a.scImgAnmBtnNxt {
	background-position: 0px -30px;
	right: 5px;
}

div.scImgAnmCtrl a.scImgAnmBtnPly {
	background-position: 0px -45px;
	left: 33px;
}

div.scImgAnmCtrl a.scImgAnmBtnPrv {
	background-position: 0px -60px;
	left: 5px;
}

div.scImgAnmCtrl a.scImgAnmBtnPse {
	background-position: 0px -75px;
	left: 33px;
}

/* === START - STACK ======================================================== */
#stack {
	margin-bottom: 2em;
}

#stack>.sw_context_navRoot {
	display: block;
	margin: 0 auto;
	max-width: 1024px;
}

#stack>.sw_context_navRoot a {
	text-decoration: none;
}

/* === STOP - STACK ========================================================= */

/* === START - LOCAL OUTLINE ================================================ */
#outSec {
	position: fixed;
	right: 1em;
	top: 10em;
}

#outSec>ul {
	margin: 0;
	list-style: outside none none;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

#outSec>ul>li {
	width: 210px;
	display: inline-block;
}

#outSec a {
	display: block;
	padding: 0.5em 1em;
	text-decoration: none;
	border-radius: 5px;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}

#outSec a:hover {
	text-decoration: none;
	color: #333333;
	background-color: #e8e8e8;
}

#outSec a.currentSection_yes{
	background-color: #e8e8e8;
	color: #333333;
	cursor: default;
}

/*#outSec a:hover::after,
#outSec a.currentSection_yes::after {
	transform: scaleX(1);
	opacity: 1;
}

#outSec a::after {
	background-color: #fff;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	transform: scaleX(0);
	transform-origin: 50% 50% 0;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
	width: auto;
}*/

/*body.nav_stuck_yes #outSec {
	position: fixed;
	left: 0px;
	top: 60px;
	margin: 0;
	width: 100%;
	z-index: 11;
	border-radius: 0;
}*/

/*body.navigation.nav_stuck_yes #outSec {
	visibility: hidden;
}*/

/*body.nav_stuck_yes #outSec a {
	line-height: 1.5;
}*/

/* === STOP - LOCAL OUTLINE ================================================= */

/* === START - NEXT ========================================================= */
.nextSection {
	display: flex;
	justify-content: flex-end;
	margin: 2em 0;
}

.nextSection .sectionLink {
	text-decoration: none;
	background-color: var(--mainColor);
	color: #fff;
	padding: 1em;
	border-radius: 5px;
	display: flex;
	align-items: center;
}

.nextSection .sectionLink::after {
	content: "\e815";
	font-family: "fontello";
	margin-left: 0.5em;
}

.nextSection .sectionLink:hover {
	text-decoration: none;
	background-color: var(--darkColor);
}

.nextSection a.sectionLink[href="404.html"] { /* to do */
	display: none;
}

/* === STOP - NEXT ========================================================== */


/* === START - TILES ======================================================== */
div.tiles {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2em;
	margin: 2em 0;
}

div.tiles[layout="two"] {
	grid-template-columns: 1fr 1fr;
}

div.tiles[layout="one"] {
	grid-template-columns: 1fr;
}

article.tile {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

#content article.tile p.txt_p {
	padding: 0px;
	margin: 0;
	text-align: left;
	color: #686866;
}

.tile_ti {
	margin: 0.5em 0;
	font-size: 1.25em;
}

.tileLink{
	border: 1px solid #f5f5f5;
	border-radius: 1.5em;
	color: #1a1a1a;
	background-color: white;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	align-items: flex-start;
	padding: 2em;
}

a.tileLink {
	text-decoration: none;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	box-shadow: 0 8px 13px 0 rgb(0 0 0 / 5%);
}

a.tileLink:hover {
	box-shadow: 0 4px 5px 0 rgb(0 0 0 / 15%);
	text-decoration: none;
	background-color: white;
}

.tileImage {
	margin-right: 0.5em;
	align-self: center;
}

.tileText img {
	max-width: 100%;
	height: auto;
}

/* HOME */
.home div.tiles {
	grid-template-columns: 1fr 1fr;
}
a.tileLink:before {
	color: var(--mainColor);
	order: 3;
	align-self: flex-end;
	margin-top: -14px;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}
html[lang="fr"] a.tileLink:before{
	content: "Découvrir";
}
html[lang="en"] a.tileLink:before{
	content: "Learn more";
}
a.tileLink:hover::before{
	color: #313131;
	padding-right: 35px;
}
a.tileLink:after{
	content: "";
	width: 0px;
	height: 4px;
	background-color: var(--mainColor);
	align-self: flex-end;
	margin-top: 15px;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}
a.tileLink:hover::after {
	background-color: #313131;
	width: 25px;
}

.home .tile_ti{
	text-align: left;
	min-height: 0px;
}

.home .tileImage {
	margin: 0 1em;
}

/* CATALOG */
.filterFrame:not(:empty) + div.tiles .tileLink {
	flex-direction: row;
	align-items: center;
}

.filterFrame:not(:empty) + div.tiles a.tileLink:after {
	display: none;
}

.filterFrame:not(:empty) + div.tiles a.tileLink:hover::after {
	display: none;
}

.filterFrame:not(:empty) + div.tiles a.tileLink:before {
	color: var(--mainColor);
	order: 4;
	align-self: flex-end;
	margin-left: 25px;
	margin-top: 0;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}
.filterFrame:not(:empty) + div.tiles a.tileLink:hover::before {
	padding-right: 0px!important;
	color: #313131;
	border-bottom: 2px solid #313131;
}

.filterFrame:not(:empty) + div.tiles .tile_ti{
	text-align: left;
}

.filterFrame:not(:empty) + div.tiles .tileImage {
	align-self: flex-start;
	margin: 0 2em;
}


.abstract {
	display: flex;
	margin: 0 auto;
	background-color: #fff;
	padding: 1.5em;
	border-radius: 8px;
}

.abstractImage {
	margin: 0 1.5em;
}

.filterFrame:empty {
	display: none;
}

.filterFrame {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 2em 0;
	position: relative;
}

.filterFrame>div {
	display: flex;
	flex: 1 1 auto;
	flex-direction: row;
	justify-content: center;
	padding: 1em 0;
	position: relative;
}

.filterFrame>div.domainFilter {
	display: none;
}

.filterFrame label {
	color: #8C8C8C;
	display: flex;
	flex: 0 1 200px;
	justify-content: center;
	margin: 0.2em 0.5em;
	text-align: center;
	cursor: pointer;
}

.filterFrame label:hover {
	color: var(--mainColor);
}

.filterFrame label:focus-within {
	outline: 1px dotted #2c3563;
}

.filterFrame input {
	position: absolute;
	left: -9999px;
}

.filterFrame input:checked~span {
	color: #2c3563;
}

.filterFrame label span::before {
	display: block;
	font-family: "fontello";
	font-size: 2.2em;
	margin-bottom: 0.2em;
}

.domains_all span::before,
.sectors_all span::before {
	content: "\f14a";
}

.domains_teaching span::before {
	content: "\e801";
}

.domains_documatation span::before {
	content: "\e800";
}

.domains_comunication span::before {
	content: "\e804";
}

.sectors_industry span::before {
	content: "\f275";
}

.sectors_services span::before {
	content: "\e802";
}

.sectors_public span::before {
	content: "\e803";
}

/* === STOP - TILES ========================================================= */

.bkProjSheet>h2>span {
	display: flex;
	align-items: center;
}

.bkProjSheet>h2>span>span:first-child {
	flex: 10 10 auto;
}

.bkProjSheet .animFra {
	margin: 0 auto;
}

/*=== START - Content : tab-box ===================================================*/
.tab-box {
	margin: 2em 0 0 0;
}

.tab-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border-bottom: 2px solid #e8e8e8;
}

.tab-list input[type="radio"] {
	position: absolute;
	left: -9999px;
}

.tab-list label {
	color: var(--mainColor);
	display: block;
	padding: 0.5em 1em;
	border-radius: 5px 5px 0 0;
	font-weight: normal;
	background: transparent;
	cursor: pointer;
	position: relative;
	top: 0px;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}

.tab-list label:hover {
	background-color: #e8e8e8;
	color: #333333;
}

.tab-panels {
	margin-top: 1em;
}

/*.tab-panels .tab-content {
	border-top: 2px solid #e8e8e8;
}*/

.tab-panels .tab-content.inactive {
	display: none;
}

.tab-list [id^="tab"]:checked+label {
	background: #e8e8e8;
	color: #333333;
	cursor: default;
}

.tab-content_ti {
	visibility: hidden;
	position: absolute;
	left: -9999px;
}

/*=== END - Content : tab-box ======================================================= */

/* PROJECT GALLERY */
.projGalTt_co {
	border: 1px solid #ececec;
	background-color: white;
	z-index: 10;
}

.projGalTt .bkBase_ti {
	padding-right: 20px;
	font-size: 1.1em;
}

.projGalTt .moreBk {
	text-align: right;
	padding: 0 1em;
}

.projGalTt_co {
	padding: 0 0.5em 1em;
}

.projGalTt_co .abstractImage img {
	max-width: 120px;
	height: auto;
}

.projGalTt_co .abstract {
	margin-left: 0px;
	margin-right: 0px;
	padding: 0;
}

.projGalTt_co table {
	border-spacing: 2px;
}

.projGalTt_x {
	background: url("img/co/close.svg") no-repeat left top / 20px auto;
	height: 20px;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 20px;
}

.projGalTt_x:hover {
	opacity: 0.7;
}

.projGalTt_x span {
	display: none;
}

.projGalTt .logoPG {
	display: none;
}

.projGalNavBtns {
	bottom: 7%;
	display: block;
	position: fixed;
	right: 7%;
	width: 50px;
}

.projGalBtnNxt,
.projGalBtnPrv {
	width: 15px;
	height: 15px;
	display: inline-block;
	padding: 5px;
}

.projGalWidget {
	text-align: center;
}

.projGalBtnNxt span,
.projGalBtnPrv span {
	display: none;
}

a.projGalBtnNxt a.projGalBtnPrv {
	background: rgba(0, 0, 0, 0) url("img/co/btns.svg") no-repeat scroll 0 0 / 15px auto;
}

a.projGalBtnNxt {
	background-position: 0px -30px;
	right: 5px;
}

a.projGalBtnPrv {
	background-position: 0px -60px;
	left: 5px;
}

a.projGalBtnPrv:hover,
a.projGalBtnNxt:hover {
	opacity: 0.7;
}

.projGalCountBk {
	bottom: 5%;
	color: gray;
	display: block;
	font-size: 10px;
	position: fixed;
	right: 3%;
	width: 100px;
}

a.GalBoxBtnPrv,
a.GalBoxBtnNxt {
	display: none;
}

.projGalWidget a.btnNoAct {
	display: none;
}

.projGalWidget a.btnOff {
	visibility: hidden;
}

.projGalBox {
	padding: 5px;
	margin: auto;
	display: inline-block;
}

.projGalBtnLogo {
	padding: 2px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 5px;
}

.projGalBtnLogo span {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logoPG {
	display: none;
}

.projGalbinImgInline {
	max-width: 120px;
	max-height: 80px;
}

a.projGalBtnLogo:hover,
.projGalBtnLogo.projGalTt_act {
	box-shadow: 0px 0px 5px #888;

}

.bkSec .bkProjGal .bkBase_ti {
	color: grey;
	font-size: 0.9em;
	font-style: normal;
	font-variant: small-caps;
	font-weight: normal;
	text-transform: uppercase;
	clear: both;
	text-align: center;
}
section.bkBase.bkSec{
	max-width: 800px;
	margin: 0 auto;
}

/* MAP */
.map_base {
	margin: 0 auto;
}
ul.screenZones{
	display: none;
}


/* === START - RESPONSIVE =================================================== */
@media (max-width: 1312px) {
	#outSec {
		display: none;
	}
}

@media (max-width: 1020px){
	#banner{
		flex-direction: column-reverse;
	}
	#banner .baseline{
		padding:2em 4em;
	}
	#banner .baseline p{
		max-width: none;
	}
	#content > .bkBase{
		margin:1.5em;
	}
}

@media (max-width: 900px) {
	#stack {
		padding: 0 1.5em;
	}

	.home .threeway {
		flex-flow: column;
	}

	.home .threeway>* {
		margin: 10px 0;
		width: 100%;
		align-self: center;
	}
}

@media (max-width: 750px){
	body {
		font-size: 1.3em!important;
	}
	#content{
		padding: 1.5em 0 2em 0;
	}
	.multipleSections #header .inline{
		flex-direction:column;
	}
	#banner .baseline{
		padding: 1em 1.5em;
		margin-bottom: 1.5em;
	}
	#banner .baseline > p:first-child {
		font-size: 1.2em;
	}

	li.outCat_l,
	li.outCat_b,
	li.outBkBtn {
		padding: 0px;
		margin-left: 1px !important;
		margin-right: 1px !important;
	}

	ul.outCat .outCat_i {
		font-size: 0.8em;
	}

	#header .tplTitle {
		font-size: 1.2em;
		display: flex;
		flex-direction: column;
    	justify-content: center;
	}

	#header .tplTitle a {
		font-size: 1em;
	}

	#content>.bkBase:first-child>.bkBase_ti {
		font-size: 2em;
	}

	.visavis,
	.threeway {
		flex-flow: column;
		padding: 0.5em 0;
	}

	.filterFrame:not(:empty) + div.tiles .tileLink {
		flex-direction: column;
	}
	.filterFrame:not(:empty) + div.tiles .tileImage{
		align-self: center;
		margin: 0 1em;
	}
	.tileLink {
		padding: 2em 1.5em;
	}

	/*
		.filterFrame>div {
			padding: 0 1em;
		}*/
	/*
		.domainFilter {
			border-right: 1px dashed #999;
			border-bottom: none;
		}*/

	.filterFrame>div {
		display: grid;
		grid-template-columns: 1fr 1fr;
		font-size: 0.8em!important;
		padding: 0;
	}

	.filterFrame label {
		margin-bottom: 1.5em;
	}

	ul.screenZones{
		display: inherit;
		list-style-type: none;
		padding: 0 1.5em;
		display: none;
	}
	li.screenZone {
		display: flex;
		align-items: stretch;
		flex-direction: column-reverse;
		margin-bottom: 2em;
		display: none;
	}
	.screenZone_co a img {
		/*width: 100%;
		height: auto;*/
		display: none;
	}
	.screenZone_ti {
		display: none;
		text-align: center;
		color: var(--mainColor);
	}

	div.map_base{
		display: none;
	}
	.permMargin {
		grid-template-columns: 1fr!important;
	}
}

@media (max-width: 620px) {
	img.binImg {
		width: 100%;
		height: auto;
	}

	td img.binImg {
		width: auto;
	}

	.abstract {
		flex-direction: column;
	}

	/*	.abstractImage {
			align-self: center;
		}*/
}

/* RESPONSIVE TILES */
@media (max-width: 1050px) {
	div.tiles {
		grid-template-columns: 1fr 1fr;
		margin: 1em;
		gap: 1em;
	}
	.home div.tiles {
		grid-template-columns: 1fr 1fr;
		margin: 1em;
		gap: 1em;
	}
	.permMargin {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1em;
		margin: 0;
	}
}

/* RESPONSIVE MENU AND OTHERS*/
@media (max-width: 750px) {
	div.tiles, div.tiles[layout="two"] {
		grid-template-columns: 1fr;
	}

	#header #navigation {
		display: none;
	}

	#header #accessibility .tplWaiNav {
		position: fixed;
		top: 13px;
		right: 10px;
	}

	#header #accessibility .tplWaiNav a {
		opacity: 1;
	}

	#header #accessibility .tplWaiNav a::before {
		content: "☰";
		font-size: 2em;
		font-weight: bold;
	}

	#header #accessibility .tplWaiNav span {
		display: none;
	}

	div.tiles {
		margin: 1em 0;
	}

	#navigation {
		align-self: flex-start;
	}

	ul.outCat,
	ul.outBk {
		text-align: left;
	}

	ul.outCat li,
	ul.outBk li {
		display: block;
	}

	.home div.tiles {
		grid-template-columns: 1fr;
	}

	.home .tileImage {
		max-height: 80px;
	}

	.home .tileImage img {
		height: 100%;
		width: auto;
	}

	#header {
		padding: 0.3em 0 0 0;
	}

	#header #navigation:target {
		display: block;
		align-self: stretch;
		box-shadow: 0 8px 13px 0 rgb(0 0 0 / 5%);
		font-size: 1.3em;
		margin-top:-70px;
		padding-top:70px;
	}
	#header #navigation ul.outCat {
		padding: 0;
	}
	#header #navigation ul.outCat li {
		padding: 0 0.5em 0.5em;
	}
	#stack {
		padding: 0 1.5em;
	}
	.nextSection {
		font-size: 1em;
	}
}

.txt_ili {
	margin-bottom: 0.8em;
}

/* RESPONSIVE GALLERY */
@media (max-width: 700px) {
	.projGalBox {
		width: 496px;
	}

	.projGalTt_co .abstractImage img {
		max-width: 100px;
	}
}

@media (max-width: 650px) {
	.projGalBox {
		width: 372px;
	}
}

@media (max-width: 500px) {
	.projGalBox {
		width: 246px;
	}
}

@media (max-width: 400px) {
	.projGalBox {
		width: 124px;
	}

	.projGalBoxContent {
		width: inherit !important;
	}

	.GalBoxBtnNxt,
	.GalBoxBtnPrv {
		display: none;
	}
}


/* === STOP - RESPONSIVE ====================================================
