body{
	background-color:#F5F5F5;
	margin: 0px;
	padding: 0px;
	
	/* pour fixer le footer en bas */
	display:flex;
	flex-direction:column;
	min-height:100vh;
	height:100%; /* ajouté pour que le lightcase des artistes remarche bien */
}
.fixed_scroll{
	touch-action:none;
	overflow:hidden; /* quand desactivé le scroll du menu burger ne marche plus */
}

/* ------------------------------ global ---- flex justify */
.flex{
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex_wrap{
	flex-wrap: wrap;
}
.flex_justify_space_evenly{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-evenly;
	-moz-justify-content: space-evenly;
	-ms-justify-content: space-evenly;
	justify-content: space-evenly; 
}
.flex_justify_space_between{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between; 
}
.flex_align_end{
	-webkit-box-align: end;
	-webkit-align-items: end; /* Safari 7.0+ */
	align-items:flex-end;
}
.flex_align_start{
	-webkit-box-align: start;
	-webkit-align-items: start; /* Safari 7.0+ */
	align-items:flex-start;
}
.inline_block{
	display:inline-block;
}
.inline_grid{
	display:inline-grid;
}
.no_wrap{
	white-space: nowrap;
}
.debug{
	border:solid 1px red;
}
.link_over{
	text-decoration:none;
	color: inherit;
}
.link_over:hover{
	text-decoration:underline;
}
.link_over_invert{
	text-decoration:underline;
	color: inherit;
}
.link_over_invert:hover{
	text-decoration:none;
}
.mobile_dual2single_table_main{
	display:flex;
	justify-content:center;
	align-items:flex-start;
	gap:20px;
}
.mobile_dual2single_table_cell{
	flex: 1 1 0;
	text-align:left;
}


/* ------------------------------ site container */
.site_container_outer{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width:100%;
}
.site_container_menu{
	margin-top: 10px;
	margin-left: 30px;
}
.site_container_inner{
	margin: 10px 30px 30px 30px;
}

/* ------------------------------ header */
.header_link{
	text-decoration:none;
	color: inherit;
	margin: 0px 0px 0px 0px;
}
.header_link:hover{
	text-decoration:none;
}

/* ------------------------------ menus */
.menu_art_paca{
	margin-top:40px;
	margin-bottom:40px; /*80*/
}
.menu_cell_right_spacing{
	margin-right:auto;
	min-width:10px;
}
.menu_cell_links_align{
	align-self: baseline;
}
.menu_cell_icons_align{
	align-self: center;
	margin-top:-4px;
}
.menu_cell_links_spacing{
	width:40px;
	min-width:10px;
}
.menu_cell_icons_spacing{
	width:10px;
}

.sub_menu{
	margin-bottom: 45px;
	margin-top: 20px; /*40*/
}
.sub_menu_item{
	background-color: #0000DC;
	padding:0px 50px 0px 50px;
	max-height: 0px;
	-moz-transition: max-height 0.2s linear;
	-webkit-transition: max-height 0.2s linear;
	-o-transition: max-height 0.2s linear;
	transition: max-height 0.2s linear;
	overflow:hidden;
	white-space: nowrap;
}
.sub_menu_item_text{
	text-align:center;
	margin:40px;
	letter-spacing: 1px;
}
.sub_menu_item_link{
	margin-bottom:10px;
}

/* ------------------------------ sous menu onglets : mission, action... */
.sous_menu_onglets .onglets_contents{
	margin-left: auto;
	margin-right: auto;
	max-width:700px;
	display:flex;
	flex-wrap: wrap;
	justify-content: center; 
	column-gap: 10px;
}
.sous_menu_onglets .onglet{
	padding-left:10px;
	padding-right:10px;
}

/* ------------------------------ input */
.form_input{
	border-style:none;
	text-align: center;
	border: none;
	border-color: transparent;
	background: transparent;
	height: 30px;
	width:100%;	
}
.form_no_appearance{
	padding:0px 5px 0px 5px;
    appearance:none;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
}
.form_select_bg{
	background: url(/site/images/form_arrow.png) no-repeat right center;
}
/* ------------------------------ footer */
.footer_wraper{
	flex:1; /* pour fixer le footer en bas */
}
.footer_main{
	margin-top: 20px;
	background-color:#0000DC;
	padding:30px 0px 30px 0px;
}
.footer_table_newsletter{
	margin:20px 0px 40px 0px;
	border-collapse: collapse;
}
.footer_table_newsletter tr td{
	border: 1px solid white;
	width:190px;
	padding:0px 0px 0px 0px;
	text-align:center;
}

.footer_table_infos_main{
	margin:20px 0px 20px 0px;
}
.footer_table_infos_cell{
	max-width:350px;
	padding:15px 0px 15px 0px;
}

.footer_images{
	margin:10px;
}
.footer_message{
	overflow:hidden;
}
.footer_message_raw{
	position:relative;
	left:0px;
	display:flex;
	flex-direction: row;
}
.footer_message_phrase{
	white-space: nowrap;
	padding-right: 80px;
}

/* ------------------------------ Fonts */
@font-face {
    font-family: "RobotoRegular";
    font-weight:normal;
    font-style:normal;
    font-variant:normal;
    src: url('/site/fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: "RobotoRegularItalic";
    font-weight:normal;
    font-style:italic;
    font-variant:normal;
    src: url('/site/fonts/Roboto-LightItalic.ttf') format('truetype');
}
@font-face {
    font-family:SimplonMonoRegular;
    font-weight:normal;
    font-style:normal;
    font-variant:normal;
    src: url('/site/fonts/SimplonMono-Regular-WebXL.eot'), url('/site/fonts/SimplonMono-Regular-WebXL.woff2') format('woff2'), url('/site/fonts/SimplonMono-Regular-WebXL.woff') format('woff2'), url('/site/fonts/SimplonMono-Regular-WebXL.svg#Font') format('svg');
}
@font-face {
    font-family:SimplonNormMedium;
    font-weight:bold;
    font-style:normal;
    font-variant:normal;
    src: url('/site/fonts/SimplonNorm-Medium-WebXL.eot'), url('/site/fonts/SimplonNorm-Medium-WebXL.woff2') format('woff2'), url('/site/fonts/SimplonNorm-Medium-WebXL.woff') format('woff'), url('/site/fonts/SimplonNorm-Medium-WebXL.svg#Font') format('svg');
}
@font-face {
    font-family:SimplonNormMediumNoBold;
    font-weight:normal;
    font-style:normal;
    font-variant:normal;
    src: url('/site/fonts/SimplonNorm-Medium-WebXL.eot'), url('/site/fonts/SimplonNorm-Medium-WebXL.woff2') format('woff2'), url('/site/fonts/SimplonNorm-Medium-WebXL.woff') format('woff'), url('/site/fonts/SimplonNorm-Medium-WebXL.svg#Font') format('svg');
}
@font-face {
    font-family:SimplonNormRegular;
    font-weight:normal;
    font-style:normal;
    font-variant:normal;
    src: url('/site/fonts/SimplonNorm-Regular-WebXL.eot'), url('/site/fonts/SimplonNorm-Regular-WebXL.woff2') format('woff2'), url('/site/fonts/SimplonNorm-Regular-WebXL.woff') format('woff'), url('/site/fonts/SimplonNorm-Regular-WebXL.svg#Font') format('svg');
}
@font-face {
    font-family:SimplonNormLight;
    font-weight:normal;
    font-style:normal;
    font-variant:normal;
    src: url('/site/fonts/SimplonNorm-Light.otf') format("opentype");
}

/* ------------------------------ burger */
.menu_burger {
	/*background: #0000DC;*/
	width: 30px;
	padding:5px;
	cursor: pointer;
}
.menu_burger:before, .menu_burger:after, .menu_burger div {
	background: #0000DC;
	content: "";
	display: block;
	height: 3px;
	border-radius: 2px;
	margin: 5px 0px;
	transition: all 0.5s;
}
.menu_burger.burger_open:before {
	transform: translateY(10px) rotate(135deg);
}
.menu_burger.burger_open:after {
	transform: translateY(-6px) rotate(-135deg);
}
.menu_burger.burger_open div {
	transform: scale(0);
}
.div_burger {
	position:fixed;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	background: rgba(0,0,220,1);
	opacity:0;
	z-index: 100;
	transition: all 0.5s;
	pointer-events: none;
}
.div_burger .menu_burger:before,.div_burger .menu_burger:after,.div_burger .menu_burger div {
	background: #FFFFFF;
}
.div_burger.burger_open {
	opacity:1;
	pointer-events: all;
	overflow: auto;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
.div_burger.burger_open::-webkit-scrollbar {
  display: none;
}


.div_burger_vspace{
	margin-top:10px;
	margin-bottom:10px;
}
.div_burger_hspace{
	margin-left:15px;
}


/* ------------------------------ textes */
/* -------- text colors */
.doctext_underline_offset{
	text-underline-offset: 2px;
}
.doctext_C_1{
	color:#0000DC;
}
.doctext_C_2{
	color:#FFFFFF;
}
.doctext_C_3{
	color:#000000;
}
/* -------- text formats */
.doctext_F_1{
	font-family: RobotoRegular, Helvetica, Arial, sans-serif;
}
.doctext_F_2{
	font-family: SimplonNormRegular, Helvetica, Arial, sans-serif;
}
.doctext_F_3{
	font-family: SimplonNormMedium, Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.doctext_F_4{
	font-family: SimplonMonoRegular, Helvetica, Arial, sans-serif;
}
.doctext_F_5{
	font-family: RobotoRegularItalic, Helvetica, Arial, sans-serif;
	font-style: italic;
}
.doctext_F_6{
	font-family: SimplonNormLight, Helvetica, Arial, sans-serif;
}
.doctext_F_7{
	font-family: SimplonNormMediumNoBold, Helvetica, Arial, sans-serif;
}
/* -------- text sizes */
.doctext_S_1{ /* header en haut à gauche // footer // index bas */
	font-size: 9pt;
}
.doctext_S_2{ /* les corps de textes */
	font-size: 11pt;
}
.doctext_S_3{ /* logo docart + lettre MAJ bleu */
	font-size: 27pt;
}
.doctext_S_4{ /* les menus */
	font-size: 12pt;
}
.doctext_S_5{ /* sous menu (zone bleu) texte + artist name grand bleu */
	font-size: 20pt;
}
.doctext_S_3 sup{ /* EXPOSANT logo */
	font-size: 15pt;
}
.doctext_S_5 sup{ /* EXPOSANT sous menu (zone bleu) texte + artist name grand bleu */
	font-size: 12pt;
}
.doctext_S_6{ /* texte home page sous menu */
	font-size: 25pt;
}
.doctext_S_7{ /* texte div burger */
	font-size: 17pt;
}

.doctext_S_8{
	font-size: 15pt;
}

/* -------- panoramaV2 default settings */
.panoramaV2{ /* main panorama div */
	touch-action:pan-y;
	overflow:hidden;
	width:100%;
}
.panoramaV2 .raw{ /* whole slider raw div */
	display:flex;
	position:relative; /* needed to handle left setting */
	width: max-content;
}
.panoramaV2 .navigation{ /* div containing left & right button */
	display:flex;
	position:absolute;
	justify-content: space-between;
    width: inherit;
	z-index:1;
	pointer-events: none;
}
.panoramaV2 .left_bt{
	background-position: center;
	background-repeat: no-repeat;
	cursor:pointer;
	pointer-events: all;
}
.panoramaV2 .right_bt{
	background-position: center;
	background-repeat: no-repeat;
	cursor:pointer;
	pointer-events: all;
}
.panoramaV2 .left_bt:hover{
	background-color: rgba(0, 0, 0, 0.4);
}
.panoramaV2 .right_bt:hover{
	background-color: rgba(0, 0, 0, 0.4);
}
.panoramaV2 .left_bt.disabled{
	display:none;
}
.panoramaV2 .right_bt.disabled{
	display:none;
}
.panoramaV2 .column{ /* div containing media and legend */
	padding:0px 30px 0px 0px;/*0px 10px 0px 10px;*/
	display:flex;
	flex-direction:column;
	align-items:left;
	justify-content: space-between; 
}
.panoramaV2 .column.clickable{ /* column when clickable */
	cursor:pointer;
}
.panoramaV2 .media img{
	height:auto;
	width:auto;
}
.panoramaV2 .media iframe{
	height:auto;
	width:auto;
	border:0px;
}
.panoramaV2 .media video{
	height:auto;
	width:auto;
}
.panoramaV2 .legend{
	color:#0000DC;
}


/* -------- panorama */
.panorama_main_div{
}
.panorama_buttons_div{
	margin:0px;
	padding:0px;
	display: table-row;
}
.panorama_buttons_img{
	cursor:pointer;
}
.panorama_button_prev{
	display: table-cell;
	background-image: url("/site/images/panorama-prev.png");
	background-size: contain;
	background-repeat: no-repeat;
	width:30;
	height:65;
}
.panorama_button_next{
	display: table-cell;
	background-image: url("/site/images/panorama-next.png");
	background-size: contain;
	background-repeat: no-repeat;
	width:30;
	height:65;
}
.panorama_legends_div{
	margin:0px;
	padding:0px;
}
.panorama_slides_div{
	cursor:grab;	
}
.panorama_img_div{
	justify-content: left;	
}


/* -------- mobile */
.mobile_overlay{
	background-color:rgba(0,0,0,0.90);
}
.mobile_content{
	margin:50;
	box-shadow:none;
}
.mobile_header{
	background-color:#0000DC;
	padding:10 50 10 10;
	overflow:hidden;
}
.mobile_button_close{
	cursor:pointer;
	background-image: url("/site/images/mobile_close.png");
	background-size: contain;
	background-repeat: no-repeat;
	width:80;
	height:80;
	top:10;
	right:0;
}
.mobile_slide{
	background-color:#EEEEEE;
}
.mobile_footer{
	padding:10;
	background-color:#FFFFFF;
}
.mobile_legend{
	font-size:2em;
}
.mobile_icon{
	cursor:pointer;
	background-image: url("/site/images/mobile_icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	height:200;
	display:none;
}
.mobile_pagecount{
	font-size:2em;
	color:#0000DC;
	padding:0 0 0 20;
}
.mobile_docart{
}
.mobile_artist{
}
.mobile_display_flex{ /* devient flex quand mode mobile */
	display: none;
}

/* tout ça juste pour le lien retour des pages evenements */
/* copie de art_style.css */
.lien_couleur:link{
	text-transform: uppercase;
	font-family: SimplonNormRegular, Helvetica, Arial, sans-serif;
	font-size: 11pt;
	text-decoration:none;
	color: #0000DC;
}
.lien_couleur:hover{
	text-transform: uppercase;
	text-decoration:underline;
	color: #0000DC;
}
.lien_couleur:visited{
	text-transform: uppercase;
	color: #0000DC;
}


@media only screen and (max-device-width: 480px), (max-width: 900px) {
	.mobile_display_none{
		display: none;
	}
	.mobile_display_flex{
		display: flex;
	}
	.doctext_S_3{
		font-size: 20pt;
	}
	.div_burger .doctext_S_3{
		font-size: 14pt;
	}
	.mobile_dual2single_table_main{
		display:block;
	}
}	

/*
@media only screen and (min-height: 600px) {
	.footer_main{
		position: absolute;
		width: 100%;
		bottom: 0px;
	}
}	
*/
