* { margin: 0; padding: 0; }

/*
::-webkit-scrollbar { display: none; }
*/

a { text-decoration: none; }

a:link , a:active , a:visited {	color: #E1BA91; }
a:hover {	color: white; }

a.a1:link , a.a1:active , a.a1:visited { color: white; }
a.a1:hover  { color: white; }

a.a2:link , a.a2:active , a.a2:visited  {	color: #FFFFFF; }
a.a2:hover {	color: white; }

ul { list-style-type: none; }

.clear { clear: both; }
.white { color: white; }

div.top_content
{
	height: 40px;
	transition-property: height;
    transition-duration: 1.2s;
    transition-timing-function: ease;
    transition-delay: 0.1s;
}

@media screen and ( max-width: 1024px )
{
	div.top_content
	{
		height: 20px;
	}
}

html
{
	height: 100%;
}

body
{
	max-width: 100%;
	height: 100%;
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
	font-size: 15px;
	background-color: black;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	color: white;
	color: #e6e8e3;
}

body
{
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

div.share_button img
{
	height: 32px;
}

/************************/
/*                      */
/*        voiles        */
/*                      */
/************************/



div.voile
{
	opacity: 0;
	transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}


div.total
{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
    z-index: -10;
}

div.partiel
{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	z-index: -11;
}

div.v_1 
{
	background-image: url('../media/images/logos/noir_030.png');
}

div.v_2
{
	background-image: url('../media/images/logos/noir_050.png');
}

div#voile_sup
{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 250px;
	background-image: url('../media/images/logos/top.png');
	background-position:  top;
	background-size: 100% 100%;
	z-index: -2;
	
}

div.info , div.titre
{
	position: relative;
	padding: 4%;
}

div.titre
{
	background-image: url('../media/images/logos/noir_080.png');
	height: 50px;
	overflow: hidden;
    opacity: 1;
	transition-property: height , padding;
    transition-duration: 0.5s;
    transition-timing-function: linear;
}

div.titre h1
{
	opacity: 1;
	transition-property: opacity;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}



/************************/
/*                      */
/*        header        */
/*                      */
/************************/



div#header_container
{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	height: 18%;
	min-height: 120px;
	transition-property: height, min-height;
    transition-duration: 0.7s;
    transition-timing-function: ease;
    transition-delay: 0.1s;
    z-index: 50;
    overflow-y: scroll;
}

@media screen and ( max-width: 1024px )
{
	div#header_container {
		height: 120px;
	}
}

@media screen and ( max-width: 740px )
{
	div#header_container {
		height: 90px;
		min-height: 0px;
	}
}



/**********************/
/*                    */
/*        logo        */
/*                    */
/**********************/



img#logo
{
	position: absolute;
	top: 50%;
	transform : translateY( -50% );
	left: calc( 50% - ( 120px / 2 ));
	width: 120px;
	transition-property: left, width;
    transition-duration: 0.7s;
    transition-timing-function: ease;
    transition-delay: 0.1s;
    background-color: green;
}

@media screen and ( max-width: 1024px )
{
	img#logo
	{
		width: 80px;
		left: calc( 50% - ( 80px / 2 ));
	}
}

@media screen and ( max-width: 450px )
{
	img#logo
	{
		width: 60px;
		left: calc( 50% - ( 60px / 2 ));
	}
}



/*************************/
/*                       */
/*        content        */
/*                       */
/*************************/



div#content_container
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: calc( 100% - 120px );
	max-height: calc( 100% - 18% );
	overflow-x: hidden;
	overflow-y: scroll;
	transition-property: height , max-height;
    transition-duration: 0.7s;
    transition-timing-function: ease;
    transition-delay: 0.1s;
}

@media screen and ( max-width: 1024px )
{
	div#content_container {
		max-height: calc( 100% - 120px );
		height: calc( 100% - 120px );
	}
}

@media screen and ( max-width: 740px )
{
	div#content_container {
		max-height: calc( 100% - 90px );
		height: calc( 100% - 90px );
	}
}

div#content_wrapper
{
	position: relative;
	min-height: 100%;
}

div#pouss_footer
{
	height: 50px;
}

div#footer
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	font-size: 13px;
	line-height: 45px;
	text-align: center;
	color: white;
	opacity: 0.6;
	letter-spacing: 1px;
	font-weight: bold;
}

div#voile_bas
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 100px;
	background-image: url('../media/images/logos/bottom.png');
	background-position:  bottom;
	background-repeat: repeat-x;
	background-size: 100% 100%;
	z-index: -100;
}



/***************************/
/*                         */
/*        WIDE menu        */
/*                         */
/***************************/



div.wide
{
	position: absolute;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 100%;
	width: 580px;
	max-width: calc( 50% - ( 150px / 2 ));
	min-width: 35%;
}

div.wide.left
{
	left: calc( 50% + ( 150px / 2 ));
}

div.wide.right
{
	right: calc( 50% + ( 150px / 2 ));
}

@media screen and ( max-width: 1024px )
{
	div.wide {
		display: none;
	}
}

.wide a
{
	position: relative;
	padding: 4px 0px;
	color: #dddddd;
	font-size: 14px;
	font-weight: bold;
}

.wide a.selected
{
	color: white;
}

.wide span
{
	opacity: 0;
	position: absolute;
	bottom: -13px;
	left: 0px;
	right: 0px;
	height: 13px;
	background-color: #dddddd;
}

.wide a.selected span
{
	background-color: white;
	opacity: 1;
}

.wide a:hover span
{
	opacity: 1;
}



/*******************************/
/*                             */
/*        msg principal        */
/*                             */
/*******************************/


div#msg_principal
{
	position: absolute;
	height: 100%;
	left: 80px;
	right: calc( 50% + ( 100px / 2 ) + 20px );
	display: none;
}

@media screen and ( max-width: 1024px )
{
	div#msg_principal
	{
		display: flex;
	}
}



@media screen and ( max-width: 420px )
{
	div#msg_principal
	{
		display: none;
	}
}


div#msg_principal a
{
	text-align: center;
	margin: auto;
	color: #dddddd;
	font-weight: bold;
}






/*****************************/
/*                           */
/*        SMART menus        */
/*                           */
/*****************************/



div.menu_container
{
	position: fixed;
	width: 100%;
	height: 100%;
   	z-index: 250;
}

div.menu_container.droite
{
	left: 100%;
}

div.menu_container.gauche
{
	left: -100%;
}

div.dropdown_container
{
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 82%;
	max-height: calc(100% - 120px);
	transition-property: height, max-height;
    transition-duration: 0.7s;
    transition-timing-function: ease;
    transition-delay: 0.1s;
	background-color: orange;
}

@media screen and ( max-width: 1024px )
{
	div.dropdown_container
	{
		height: calc( 100% - 120px );
		max-height: calc( 100% - 120px );
	}
}

@media screen and ( max-width: 740px )
{
	div.dropdown_container
	{
		height: calc( 100% - 90px );
		max-height: calc( 100% - 90px );
	}
}


/***************************/
/*                         */
/*        nav smart        */
/*                         */
/***************************/


div.nav_smart
{
	position: relative;
	display: inline-block;
	top: 0px;
	height: 18%;
	min-height: 120px;
	left: 0;
	transition-property: left , height, min-height ,width;
	transition-duration: 0.7s;
	transition-timing-function: ease;
	transition-delay: 0.1s;
}

.gauche div.nav_smart
{
	float: right;
	width: 80px;
} 

div.home_wrapper
{
	display: flex;
	position: absolute;
	top: 0px;
	left: -80px;
	right: 80px;
	bottom: 0px;
	transition-property: left , right;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	transition-delay: 0.1s;
	background-image: url('../media/images/logos/blanc_090.png');
}


.menu_container.gauche:hover div.home_wrapper
{
	left: 0;
	right: 0;
}



div.nav_smart_wrapper
{
	display: flex; 
	position: relative;
	height: 100%;
	width: 100%;
	left: 0%;
	transition-property: left , width;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	transition-delay: 0.1s;
}

div.nav_smart_wrapper span.ms
{
	margin: auto;
	background-image: url('../media/images/logos/noir_080.png');
	padding: 10px;
	border: 1px solid #E1BA91;
	color: #E1BA91;
	font-weight: bold;
	
}

@media screen and ( max-width: 340px )
{
	div.nav_smart_wrapper span.ms
	{
		font-size: 0.8em;	
	}
}

.menu_container.droite:hover span.ms
{
	color: white;
}

@media screen and ( max-width: 1024px )
{
	.droite div.nav_smart_wrapper
	{
		left: -100%;
	}
	
	.gauche div.nav_smart
	{
		left: 80px;	
	}
}

img.mp
{
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	margin: auto;
	opacity: 0.8;
	width: 60px;
	transition-property: width;
	transition-duration: 0.7s;
	transition-timing-function: ease;
	transition-delay: 0.1s;
}


img.mp2
{
	opacity: 1;
}

@media screen and ( max-width: 1024px )
{
	div.nav_smart
	{
		height: 120px;
		min-height: 120px;
	}
}

@media screen and ( max-width: 740px )
{
	div.nav_smart
	{
		height: 90px;
		min-height: 90px;
	}
	
	#home img
	{
		width: 40px;
	}
}




/**************************/
/*                        */
/*        nav plus        */
/*                        */
/**************************/



div.nav_plus
{
	position: absolute;
	text-align: center;
	left: 0px;
	width: 90px;
	height: 80px;
	left: -90px;
	transition-property: left;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	transition-delay: 0.2s;
}

div.nav_plus img
{
	width: 70px;
}

.menu_container:hover div.nav_plus
{
	left: 0px;
}

@media screen and ( max-width: 1024px )
{
	.menu_container div.nav_plus
	{
		left: 0px;
	}
}


/**************************/
/*                        */
/*        dropdown        */
/*                        */
/**************************/


div.dropdown
{
	display: inline-block;
	position: absolute;
	top: 0px;
	bottom: 0px;
}

.menu_container.droite div.dropdown
{
	left: 0px;
}

.menu_container.gauche div.dropdown
{
	right: 0px;
}

div.dropdown_wrapper
{
	position: relative;
	display: inline-block;
	width: 100%;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	left: 0;
	transition-property: left;
}

div.dropdown_wrapper.home
{
	transition-duration: 0.4s;
}

div.dropdown_wrapper.pages
{
	transition-duration: 0.3s;
}

div.dropdown_wrapper.galleries
{
	transition-duration: 0.5s;
}

div.dropdown_wrapper.categories
{
	transition-duration: 0.5s;
}

div.dropdown_wrapper
{
	transition-timing-function: ease;
	transition-delay: 0.1s;
}

.menu_container.droite:hover div.dropdown_wrapper
{
	left: -100%;
}

.menu_container.gauche:hover div.dropdown_wrapper
{
	left: 100%;
}



/***************************/
/*                         */
/*        menu home        */
/*                         */
/***************************/



#home div.dropdown_wrapper ul
{
	text-align: left;
	padding: 17px 20px 17px 0px;
	background-image: url('../media/images/logos/blanc_090.png');
	
}

#home div.dropdown_wrapper ul li a
{
	display: block;
	position: relative;
	padding: 5px 10px 5px 30px;
	font-size: 1.1em;
	font-weight: bold;
	background-color: black;
}

#home div.dropdown_wrapper ul li a:hover
{
	background-color: #a50000;
}
	
#home div.dropdown_wrapper ul li a.selected
{
	color: black;
	background-color: white;
	border-top: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
}

#home div.dropdown_wrapper div.inter
{
	height: 5px;
}



/***********************************************/
/*                                             */
/*        menus categories et galleries        */
/*                                             */
/***********************************************/



#categories div.dropdown_wrapper , #galleries div.dropdown_wrapper
{
	text-align: right;
	max-width: 100%;
	color: #E1BA91;
	background-image: url('../media/images/logos/noir_090.png');
}

#categories div.dropdown_wrapper ul , #galleries div.dropdown_wrapper ul
{
	padding: 20px 30px 20px 20px;
}

#categories div.dropdown_wrapper ul li
{
	display: block;
	padding: 4px 10px 4px 30px;
}

#categories div.dropdown_wrapper ul li.close
{
	display: none;
}

@media screen and ( max-width: 450px )
{
	#categories div.dropdown_wrapper ul li.close
	{
		display: block;
	}
}


#galleries div.dropdown_wrapper ul li
{
	display: block;
	padding: 3px 10px 3px 30px;
}

#categories div.dropdown_wrapper ul li a , #galleries div.dropdown_wrapper ul li a
{
	font-size: 0.8em;
	font-weight: bold;
}


/****************************/
/*                          */
/*        menu pages        */
/*                          */
/****************************/


#pages div.dropdown_wrapper
{
	padding-left: 20px;
	padding-bottom: 20px;
}

#pages div.dropdown_wrapper ul
{
	background-image: url('../media/images/logos/noir_080.png');
	width: 80px;
	text-align: center;
	padding: 15px;
}

#pages div.dropdown_wrapper ul li
{
	display: flex;
	width: 60px;
	height: 60px;
	margin: auto;
}

#pages div.dropdown_wrapper ul li.selected
{
	background-image: url('../media/images/logos/blanc_020.png');
}

#pages div.dropdown_wrapper ul li:hover
{
	background-image: url('../media/images/logos/blanc_080.png');
	color: black;
	
}

#pages div.dropdown_wrapper ul li.selected:hover
{
	background-image: url('../media/images/logos/blanc_020.png');
	color: white;
}

#pages div.dropdown_wrapper ul li.close
{
	display: none;
}

@media screen and ( max-width: 450px )
{
	#pages div.dropdown_wrapper ul li.close
	{
		display: flex;
	}
}

#pages div.dropdown_wrapper ul li span
{
	margin: auto;
	font-weight: bold;
	font-size: 22px;
}

/************************/
/*                      */
/*        erreur        */
/*                      */
/************************/


span.erreur
{
	font-weight: bold;
	color: orange;
	clear: both;
}



div.centrale
{
	font-size: 20px;
	background-image: url('../media/images/logos/noir_080.png');
	display: block;
	width: 800px;
	padding: 30px;
	max-width: 100%;
	margin: 50px auto;
	text-align: center;
}


div.erreur_photos
{
	font-size: 20px;
	padding: 30px;
}


