/*------------------------------------------------------------------------------------*/
/*-------------------------------- Contenu de la page --------------------------------*/
/*------------------------------------------------------------------------------------*/

.contenu
{
	display: none;
}

#Tout:target, #Europe_Est:target, #Russie:target, #Chine:target
{
	width: 95%;
	margin: auto;
	padding: 0px;
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;	
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	justify-content: space-around;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
}

@media all and (max-width: 1000px)
{
	#Tout:target, #Europe_Est:target, #Russie:target, #Chine:target
	{		
		-webkit-box-pack: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;	
		-webkit-justify-content: center;
		-moz-justify-content: center;
		justify-content: center;
	}
}

/*Partie de gauche*/

.Section_Menu
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;	
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	position: absolute;
	top: 100px;
	left: 3%;
	padding: 0px;
	margin: 0px;
}

.Section_Menu_liste
{
	width: 150px;
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.choix, .non-choix
{
	display: block;
	width: 100%;
	text-decoration: none;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.choix div, .non-choix div
{
	border-radius: 1px;
	font-size: 0.9em;
	color: #b8b8b8;
	text-align: center;
}

.choix:hover, .non-choix:hover
{
	background: #b8b8b8;
}

.choix:hover div
{
	color: #ffffff;
}

#Tout:target #Tout_Menu div, #Europe_Est:target #Europe_Est_Menu div, #Russie:target #Russie_Menu div, #Chine:target #Chine_Menu div
{
	color: #6e6e6e;
}

#Tout:target #Tout_Menu:hover div, #Europe_Est:target #Europe_Est_Menu:hover div, #Russie:target #Russie_Menu:hover div, #Chine:target #Chine_Menu:hover div
{
	color: #ffffff;
}

#Section_Menu_fantome
{
	width: 150px;
}

#logo_triangle_menu
{
	display: none;
	position: relative;
	height: 40px;
	width: 15px;
}

.svg-logo_triangle_menu
{
	position: absolute;
	height: 100%;
	width: 100%;
	cursor: pointer;
}

#logo-triangle-path6
{
	fill:#b8b8b8;
	stroke:#b8b8b8;
}

.svg-logo_triangle_menu:hover #logo-triangle-path6
{
	fill:#d6d6d6;
	stroke:#d6d6d6;
}

@media all and (max-width: 1000px)
{
	#Section_Menu_fantome
	{
		width: 0px;
	}
	.Section_Menu
	{
		left: -155px;
		z-index: 901;
	}
	.Section_Menu_liste
	{
		border: solid 2px #ffffff;
		border-radius: 3px;
		background: #ffffff;
	}
	#logo_triangle_menu
	{
		display: block;
	}
}

@media all and (max-width: 330px)
{
	#logo_triangle_menu
	{
		height: 20px;
		width: 10px;
	}
}

/*Partie de droite*/

.Section_mozaique
{
	width: 75%;
	padding: 0px;
	padding-top: 120px;
	padding-bottom: 100px;
	margin: 0px;
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;	
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

@media all and (max-width: 1000px)
{
	.Section_mozaique
	{
		width: 90%;
	}
}

.Section_mozaique_ligne
{
	width: 90%;
	padding: 0px;
	margin: 0px;
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;	
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	overflow: hidden;
}

@media all and (max-width: 1000px)
{
	.Section_mozaique_ligne
	{
		width: 100%;
	}
}

.Section_mozaique_ligne img
{
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	z-index: 1;
}

.Photo_seule
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

.Photo_double
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 50%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

.Photo_16_9_3_4
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 70.32967%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

.Photo_16_9_4_3
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 57.142857%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

.Photo_3_4_16_9
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 29.67033%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

.Photo_3_4_4_3
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 36%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

.Photo_4_3_16_9
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 42.857143%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

.Photo_4_3_3_4
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	position: relative;
	cursor: pointer;
	width: 64%;
	height: auto;
	padding: 0px;
	margin: 5px;
}

@media all and (max-width: 750px)
{
	.Photo_4_3_3_4, .Photo_4_3_16_9, .Photo_3_4_4_3, .Photo_3_4_16_9, .Photo_16_9_4_3, .Photo_16_9_3_4, .Photo_double, .Photo_seule
	{
		margin: 3px;
	}
}

@media all and (max-width: 500px)
{
	.Photo_4_3_3_4, .Photo_4_3_16_9, .Photo_3_4_4_3, .Photo_3_4_16_9, .Photo_16_9_4_3, .Photo_16_9_3_4, .Photo_double, .Photo_seule
	{
		width: 100%;
		overflow: hidden;
	}
	.Section_mozaique_ligne
	{
		-webkit-box-orient: vertical;
		-moz-box-orient: vertical;
		-ms-flex-direction: column;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		flex-direction: column;
	}
}

.Photo_background
{
	position:absolute;
    right:0px;
	left: 0px;
	bottom: 0px;
	top: 0px;
	background: #6e6e6e;
	opacity: 0;
	z-index: 2;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.Photo_info
{
	position:absolute;
    right:0px;
	left: 0px;
	bottom: 0px;
	top: 0px;
	z-index: 3;
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	opacity:0;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.Photo_info_users
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	margin: 20px;
}

.Photo_logo
{
	height: 30px;
	width: 30px;
	position: relative;
}

.svg_photo_logo
{
	position: absolute;
	height: 100%;
	width: 100%;
}

.Photo_info p
{
	margin: 0px;
	margin-left: 5px;
	padding: 0px;
	color: #ffffff;
}

.Section_mozaique_ligne div:hover .Photo_background
{
	opacity: 0.7;
}

.Section_mozaique_ligne div:hover .Photo_info
{
	opacity: 1;
}

/*------------------------------------------------------------------------------------*/
/*------------------------------------- Pop-ups --------------------------------------*/
/*------------------------------------------------------------------------------------*/

/* Loader */

#svg-loader-img
{
	display: none;
}

#svg-loader-img.popup
{
	display: block;
	position: fixed;
	top: 40%;
	left: 48%;
	z-index: 902;
	width: 5%;
}

@media all and (min-width: 460px) and (max-width: 750px)
{
	#svg-loader-img.popup
	{
		display: block;
		position: fixed;
		top: 40%;
		left: 48%;
		z-index: 902;
		width: 7%;
	}
}

@media all and (max-width: 460px)
{
	#svg-loader-img.popup
	{
		display: block;
		position: fixed;
		top: 40%;
		left: 48%;
		z-index: 902;
		width: 10%;
	}
}

/* Pop-up Background */

.Photo_popup_background
{
	display:none;
}

.Photo_popup_background.popup
{
	display: block;
	position: fixed;
	opacity: 0.85;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 902;
	background: #6e6e6e;
}

/* Pop-up Contenu */

.Photo_popup_window
{
	display:none;
}

.Photo_popup_window.popup
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 903;
}

/* Partie centrale du pop_up*/

.Photo_popup_window.popup .frame_popup
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.Photo_popup_window.popup .Photo_popup_info
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;	
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	width: 100%;
}

.Photo_popup_window.popup .Photo_popup_descriptif
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;	
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.Photo_popup_window.popup .Photo_popup_lieu, .Photo_popup_window.popup .Photo_popup_date
{
	color: #ffffff;
	font-size: 1em;
	margin: 5px 20px 5px 20px;
}

@media all and (min-width: 620px) and (max-width: 1000px)
{
	.Photo_popup_window.popup .Photo_popup_lieu, .Photo_popup_window.popup .Photo_popup_date
	{
		font-size: 0.9em;
		margin: 5px 15px 5px 15px;
	}
}

@media all and (max-width: 620px)
{
	.Photo_popup_window.popup .Photo_popup_lieu, .Photo_popup_window.popup .Photo_popup_date
	{
		font-size: 0.9em;
		margin: 3px 10px 3px 10px;
	}
}

.Photo_popup_window.popup .Photo_popup_coeurs
{
	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: -moz-flex;		   /* Firefox 18+*/
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin: 10px 20px 10px 20px;
	cursor: pointer;
}

@media all and (min-width: 620px) and (max-width: 1000px)
{
	.Photo_popup_window.popup .Photo_popup_coeurs
	{
		margin: 5px 15px 5px 15px;
	}
}

@media all and (max-width: 620px)
{
	.Photo_popup_window.popup .Photo_popup_coeurs
	{
		height: 30px;
		margin: 3px 10px 3px 10px;
	}
}

.Photo_popup_window.popup .logo_popup_coeurs
{
	height: 35px;
	width: 35px;
	position: relative;
}

@media all and (max-width: 620px)
{
	.Photo_popup_window.popup .logo_popup_coeurs
	{
		width: 30px;
		height: 30px;
	}
}

.Photo_popup_window.popup .svg-logo_popup
{
	position: absolute;
	height: 100%;
	width: 100%;
}

.Photo_popup_window.popup .Photo_popup_coeurs p
{
	display: none;
	margin: 0px;
	margin-left: 5px;
	padding: 0px;
	color: #ffffff;
}

.Photo_popup_window.popup .Photo_popup_coeurs:hover p
{
	display: block;
}

/* Parties extérieures du pop_up*/

.Photo_popup_window.popup .menuleft_popup
{
	width: 80px;
	margin-right: 40px;
}

.Photo_popup_window.popup .menuright_popup
{
	-webkit-box-align-self: start;
	-moz-box-align-self: start;
	-ms-flex-item-align: start;
	-webkit-align-self: flex-start;
	-moz-align-self: flex-start;
	align-self: flex-start;
	width: 80px;
	margin-left: 40px;
}

.bouton_defilement-droite
{
	position: absolute;
	top: 38%;
	height: 80px;
	width: 80px;
	margin: 0px;
	padding:0px;
	cursor: pointer;
	z-index: 903;
}

.bouton_defilement-gauche
{
	position: absolute;
	top: 38%;
	height: 80px;
	width: 80px;
	margin: 0px;
	padding:0px;
	cursor: pointer;
	z-index: 903;
}

@media all and (min-width: 750px) and (max-width: 1000px)
{
	.Photo_popup_window.popup .menuleft_popup
	{
		width: 60px;
		margin-right: 30px;
	}

	.Photo_popup_window.popup .menuright_popup
	{
		width: 60px;
		margin-left: 30px;
	}

	.bouton_defilement-droite
	{
		height: 60px;
		width: 60px;
	}

	.bouton_defilement-gauche
	{
		height: 60px;
		width: 60px;
	}
}

@media all and (min-width: 500px) and (max-width: 750px)
{
	.Photo_popup_window.popup .menuleft_popup
	{
		width: 60px;
		margin-right: 0px;
	}

	.Photo_popup_window.popup .menuright_popup
	{
		width: 60px;
		margin-left: 0px;
	}

	.bouton_defilement-droite
	{
		height: 60px;
		width: 60px;
	}

	.bouton_defilement-gauche
	{
		height: 60px;
		width: 60px;
	}
}

@media all and (min-width: 460px) and (max-width: 500px)
{
	.Photo_popup_window.popup .menuleft_popup
	{
		width: 40px;
		margin-right: 0px;
	}

	.Photo_popup_window.popup .menuright_popup
	{
		width: 40px;
		margin-left: 0px;
	}

	.bouton_defilement-droite
	{
		height: 40px;
		width: 40px;
	}

	.bouton_defilement-gauche
	{
		height: 40px;
		width: 40px;
	}
}

@media all and (max-width: 460px)
{
	.Photo_popup_window.popup .menuleft_popup
	{
		width: 0px;
		margin-right: 0px;
	}

	.Photo_popup_window.popup .menuright_popup
	{
		width: 0px;
		margin-left: 0px;
	}

	.bouton_defilement-droite
	{
		display: fixed;
		top: 38%;
		right: 5%;
		height: 40px;
		width: 40px;
	}

	.bouton_defilement-gauche
	{
		display: fixed;
		top: 38%;
		left: 5%;
		height: 40px;
		width: 40px;
	}
}

.svg-fleche 
{
	position: absolute;
	height: 100%;
	width: 100%;
}

#path-droite
{
	stroke:#ffffff;
	stroke-width:13;
	stroke-opacity:0;
}

#path-gauche
{
	stroke:#ffffff;
	stroke-width:13;
	stroke-opacity:0;
}

#circle-droite
{
	stroke:none;
	fill:#ffffff;
	fill-opacity:0;
}

#circle-gauche
{
	stroke:none;
	fill:#ffffff;
	fill-opacity:0;
}

#layer-droite:hover #path-droite
{
	stroke-opacity:0.9;	
}

#layer-gauche:hover #path-gauche
{
	stroke-opacity:0.9;
}

.logo_close
{
	height: 40px;
	width: 40px;
	position: relative;
	margin: 0px;
	margin-top: 20px;
	margin-left: 40px;
	padding:0px;
}

.logo_close_bis
{
	display: none;
	position: absolute;
	top: 4%;
	right: 3%;
	height: 30px;
	width: 30px;
	margin: 0px;
	padding:0px;
}

@media all and (min-width: 750px) and (max-width: 1000px)
{
	.logo_close
	{
		height: 30px;
		width: 30px;
		margin-left: 30px;
		padding:0px;
	}
}

@media all and (min-width: 460px) and (max-width: 750px)
{
	.logo_close
	{
		height: 30px;
		width: 30px;
		margin-left: 10px;
		padding:0px;
	}
}

@media all and (max-width: 460px)
{
	.logo_close
	{
		display: none;
	}
	.logo_close_bis
	{
		display: block;
	}
	
}

.svg-logo-close
{
	position: absolute;
	height: 100%;
	width: 100%;
}

.croix-g
{
	fill: #ffffff;
}

.croix-g-bis
{
	fill: none;
}

.croix-circle
{
	fill-opacity: 0;
}

.croix-layer-1:hover
{
	cursor: pointer;
}

.croix-layer-1:hover .croix-circle
{
	fill: #ffffff;
	fill-opacity:1;
}

.croix-layer-1:hover .croix-g
{
	fill: #6e6e6e;
	fill-opacity: 1;
}