@charset "utf-8";
/* CSS Document */

body {
	background-color: #3c495a;
	margin: 0; /* pour éviter les marges */	
}

p {
	font-size:17px;
	color:#D4D1D1;
	font-style:normal;
	text-align:justify;
	margin :0px 40px 20px 40px;
}

/* --------------- Parametres Effet de survol ----------------------- */
	/*  Propriétés des fonts   */	
@font-face {
    font-family: 'cac_champagneregular';
    src: url('../fonts/cac_champagne-webfont.eot');
    src: url('../fonts/cac_champagne-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/cac_champagne-webfont.woff') format('woff'),
         url('../fonts/cac_champagne-webfont.ttf') format('truetype'),
         url('../fonts/cac_champagne-webfont.svg#cac_champagneregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
	

	/*  Propriétés des liens A   */
	  a {color:#fff; text-decoration:none;}
	  a:hover {color:#999; text-decoration:none;}
	
	/*  Propriétés de l'ID portfolio   */
      #portfolio {margin:0px; padding:0px; list-style-type:none;}
	  #portfolio li {float:left; position:relative;}
	   
	/*  Propriétés de la classe detail   
	    detail a une position absolue et il est contenu dans son parent li qui lui est relatif et contenu dans portfolio*/
	  .detail {position:absolute; /* on indique un positionnement absolu par rapport à li */
	           top: 15px; left:17%;/*       on décale la fenêtre des détails par rapport au zero absolu - en haut à gauche */
			   background-color:#353434; /* on lui applique un fond */
			    
			   width:300px; height:225px; /* on lui applique une taille */ 
			   padding:15px 20px 20px 20px; /* on lui applique des marges intérieures */
			   z-index:100; /* on le passe devant les autres éléments */ 
			   overflow:hidden; /* on le contrait à ne pas afficher ce qui dépasse */
			   display:none; /* pas d'affichage par défaut de la classe detail */
			   -webkit-border-radius:5px; /* on arrondit les angles pour Safari-Chrome */
			   -moz-border-radius:5px; /* on arrondit les angles pour Mozilla */
			   border-radius:5px; /* on arrondit les angles pour IE9 */
			   border: 1px solid #fff; 
			   -webkit-box-shadow:0 0 10px #000; /* on arrondit les angles pour Safari-Chrome */
			   -moz-box-shadow:0 0 10px #000; /* on arrondit les angles pour Mozilla */
			   box-shadow:0 0 10px #000; /* on arrondit les angles pour IE9 */}
			    
			   
	  .detail h2 {margin:0 0 15px 0; padding:5px; text-align: center;/* on lui applique des marges */ 
	  			  font-family:cac_champagneregular; /* on utilise une famille de police placée dans le dossier Fonts et déclarée plus haut - @font-face */ 
				  border-bottom:2px solid #3b3b3b; /* on place un trait en dessous de 1px solid */ 
				  text-shadow:1px 1px #000; /* on ajoute une ombre 1px vert 1px hor */}
				  
	  .detail p {font-size:15px; color:#CCC; /* Taille de la font du paragraphe et couleur */ 
	  			 margin :25px 20px 20px 20px; /* Redéfinit les marges pour détail p déjà définies plus haut pour la balise p */ 
	  			 cursor:default;  /* on remet le curseur par défaut sur le txt */}
				 
	/*  Propriétés de la classe detail2   
	    detail a une position absolue et il est contenu dans son parent li qui lui est relatif et contenu dans portfolio*/
	  .detail2 {position:absolute; /* on indique un positionnement absolu par rapport à li */
	           top: 15px;  left:-12%;/*       on décale par rapport au zero absolu - en haut à gauche */
			   background-color:#353434; /* on lui applique un fond */
			    
			   width:300px; height:225px; /* on lui applique une taille */ 
			   padding:15px 20px 20px 20px; /* on lui applique des marges intérieures */
			   z-index:100; /* on le passe devant les autres éléments */ 
			   overflow:hidden; /* on le contrait à ne pas afficher ce qui dépasse */
			   display:none; /* pas d'affichage par défaut de la classe detail */
			   -webkit-border-radius:5px; /* on arrondit les angles pour Safari-Chrome */
			   -moz-border-radius:5px; /* on arrondit les angles pour Mozilla */
			   border-radius:5px; /* on arrondit les angles pour IE9 */
			   border: 1px solid #fff; 
			   -webkit-box-shadow:0 0 10px #000; /* on arrondit les angles pour Safari-Chrome */
			   -moz-box-shadow:0 0 10px #000; /* on arrondit les angles pour Mozilla */
			   box-shadow:0 0 10px #000; /* on arrondit les angles pour IE9 */}
			    
			   
	  .detail2 h2 {margin:0 0 15px 0; padding:5px; text-align: center;/* on lui applique des marges */ 
	  			  font-family:cac_champagneregular; /* on utilise une famille de police placée dans le dossier Fonts et déclarée plus haut - @font-face */ 
				  border-bottom:2px solid #3b3b3b; /* on place un trait en dessous de 1px solid */ 
				  text-shadow:1px 1px #000; /* on ajoute une ombre 1px vert 1px hor */}
				  
	  .detail2 p {font-size:15px; color:#CCC; /* Taille de la font du paragraphe et couleur */ 
	  			 margin :25px 20px 20px 20px; /* Redéfinit les marges pour détail p déjà définies plus haut pour la balise p */ 
	  			 cursor:default;  /* on remet le curseur par défaut sur le txt */}
				 
	  
	/*  Propriétés de l'ID cat   */	  
	  #cat{position:absolute; /* on indique un positionnement absolu par rapport à classe détail */
	  	   bottom:20px; left:20px; /* on lui dit de se caler à 20px du bas et 20px de la gauche */
		   background:url(../Imgs_N0/cat.png) top left no-repeat; /* icone cat calé haut-gauche ss repet */
		   color:#fff; /* choix de la couleur du txt */
		   padding-left:25px;} /* 25px gauche de décalage txt*/	
	  #cat:hover{color:#fff;
	             background:url(../Imgs_N0/cat.png) top left no-repeat; /* icone cat_over calé haut-gauche ss repet */}

	/*  Propriétés de la classe thumb   */				 
	  .thumb {width:60px; float:left; margin-right:10px; /*  reduction img à 50px flottant gauche pas de répétition */}				 

	/*  Propriétés de la classe icone ..  
	    icone a une position absolue et il est contenu dans son parent détail qui lui est absolu aussi et contenu dans li relatif*/				 
	  .icone{position:absolute; /* on indique un positionnement absolu par rapport à classe détail */
	  	     bottom:20px; /* on lui dit de se caler à 20px du bas */
			 width:24px; height:24px; /* taille des imgs */  
			 text-indent:-7000px; /* on décale le txt pour ne pas l afficher */}			 
       .icone:active{bottom:18px; /* on décale de 2px vers le bas pour le clic */}		 

	/*  Propriétés de l'ID zoom   */			 
	   #zoom{right:55px; /* on lui dit de se caler à 0px de la droite */
	         background:url(../Imgs_N0/zoom2.png) top left no-repeat; /* icone zoom calé haut-gauche ss repet */}
	   #zoom:hover{background:url(../Imgs_N0/zoom.png) top left no-repeat; /* icone zoom calé haut-gauche ss repet */}			 

	/*  Propriétés de l'ID plus   */	   
	   #plus{right:20px; /* on lui dit de se caler à 0px de la droite */
	         background:url(../Imgs_N0/plus2.png) top left no-repeat; /* icone plus calé haut-gauche ss repet */}
	   #plus:hover{background:url(../Imgs_N0/plus.png) top left no-repeat; /* icone plus calé haut-gauche ss repet */}
	   
/*  Gestion des infobulles avec tooltipsy   */
	/*  Propriétés de la classe tooltipsy   */	
	   .tooltipsy{background-color:rgba(0,0,0,0.6);  /* couleur fond noire à 80% */
	              color:#fff; /* txt en blanc */
				  padding:10px 10px; /* marges intérieures: 3px haut-bas - 10px gauche-droite */
				  text-transform:uppercase; /* transforme le txt en majuscules */
	  			  font-family:verdana; /* on utilise une famille de police navigateur ou placée dans le dossier Fonts et déclarée plus haut - @font-face */ 
				  font-size:11px; /* reduction de la police à 10px */
				  -webkit-border-radius:5px; /* on arrondit les angles pour Safari-Chrome */
			      -moz-border-radius:5px; /* on arrondit les angles pour Mozilla */
			      border-radius:5px; /* on arrondit les angles pour IE9 */ }
	    .tooltipsy:after{content:url(../Imgs_N0/fleche.png); /* ajout fleche à l'infobulle tooltipsy */
		                 position:absolute; top:-8px; left:0px; 
						 width:100%; text-align:center;
		}   
	   			 	 			 	   		  
				  
/* --------------- Fin Parametres Effet de survol ------------------- */


/* ---------------------------------------------------- */ 
/* 1_Page Accueil */
/* ---------------------------------------------------- */
div#Accueil_superbloc {
	width:1082px;
	height: 834px;
	margin-left:auto;
	margin-right:auto;
/* margin-top: 10px; */
}

div#Accueil_img1 {
	width: 1082px;
	height: 153px;
	background-image: url(../Imgs_N0/Accueil_01.jpg);
}

div#Accueil_bandeau1 {
	width: 1082px;
	height: 150px;
}

div#Accueil_img2 {
	width: 1082px;
	height: 340px;
}

div#Accueil_imgtxt {
	width: 1082px;
	height: 58px;
}
div#Accueil_actus {
	width: 1082px;
	height: 46px;
}

div#Accueil_facebook {
	width: 1082px;
	height: 87px;
}
/* ---------------------------------------------------- */
/* 1_Page Accueil */
/* ---------------------------------------------------- */


/* ---------------------------------------------------- */
/* 2_Page Aiguillage */
/* ---------------------------------------------------- */
	/* Bloc Projet */
div#Aiguillage_Projets-superbloc {
	width:1082px;
	height: 833px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 50px;
}

div#Aiguillage_Projets-titre {
	width: 1082px;
	height: 69px;
}

div#Aiguillage_Projets-img1 {
	width: 1082px;
	height: 117px;
	background-image: url(../Imgs_N0/Aiguillage_Projets_04.jpg);
}

div#Aiguillage_Projets-bandeau1 {
	width: 1082px;
	height: 150px;
}

div#Aiguillage_Projets-img2 {
	width: 1082px;
	height: 326px;
	background-image: url(../Imgs_N0/Aiguillage_Projets_06.jpg);
}

div#Aiguillage_Projets-txt1 {
	width: 1082px;
	height: 84px;
	background-image: url(../Imgs_N0/Aiguillage_Projets_07.jpg);
}

div#Aiguillage_Projets-fleche {
	width: 1082px;
	height: 87px;
	background-image: url(../Imgs_N0/Aiguillage_Projets_08.jpg);
}
	/* Fin Bloc Projet */
	/* Bloc Elliot */	
div#Aiguillage_Elliot-superbloc {
	width:1082px;
	height: 804px;
	margin-left:auto;
	margin-right:auto;
}

div#Aiguillage_Elliot-titre {
	width: 1082px;
	height: 69px;
}

div#Aiguillage_Elliot-img1 {
	width: 1082px;
	height: 117px;
	background-image: url(../Imgs_N0/Aiguillage_Elliot_04.jpg);
}

div#Aiguillage_Elliot-bandeau1 {
	width: 1082px;
	height: 150px;
}

div#Aiguillage_Elliot-img2 {
	width: 1082px;
	height: 326px;
	background-image: url(../Imgs_N0/Aiguillage_Elliot_06.jpg);
}

div#Aiguillage_Elliot-txt1 {
	width: 1082px;
	height: 84px;
	background-image: url(../Imgs_N0/Aiguillage_Elliot_07.jpg);
}
	/* Fin Bloc Elliot */

/* ---------------------------------------------------- */		
/* 2_Page Aiguillage */
/* ---------------------------------------------------- */


/* ---------------------------------------------------- */
/* 3_Pages Projets & Découvrir Elliot */
/* ---------------------------------------------------- */
	/* Bloc Choix 1 */
div#Niv2-Choix1_superbloc {
	width: 1223px;
	height: 582px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 50px;
}

div#Niv2-Choix1_titre {
	width: 1223px;
	height: 69px;
}

div#Niv2-Choix1_img1 {
	width: 1223px;
	height: 91px;
}

div#Niv2-Choix1_bandeau1 {
	width: 1223px;
	height: 67px;
}

div#Niv2-Choix1_img2 {
	width: 1223px;
	height: 264px;
}

div#Niv2-Choix1_fleche {
	width: 1223px;
	height: 91px;
}
	/* Fin Bloc Choix 1 */
	/* Bloc Choix 2 */
div#Niv2-Choix2_superbloc {
	width: 1223px;
	height: 542px;
	margin-left:auto;
	margin-right:auto;
}

div#Niv2-Choix2_img1 {
	width: 1223px;
	height: 120px;
}

div#Niv2-Choix2_bandeau1 {
	width: 1223px;
	height: 67px;
}

div#Niv2-Choix2_img2 {
	width: 1223px;
	height: 264px;
}

div#Niv2-Choix2_fleche {
	width: 1223px;
	height: 91px;
}
	/* Fin Bloc Choix 2 */
	/* Bloc Choix 3 */
div#Niv2-Choix3_superbloc {
	width: 1223px;
	height: 542px;
	margin-left:auto;
	margin-right:auto;
}

div#Niv2-Choix3_img1 {
	width: 1223px;
	height: 120px;
}

div#Niv2-Choix3_bandeau1 {
	width: 1223px;
	height: 67px;
}

div#Niv2-Choix3_img2 {
	width: 1223px;
	height: 264px;
}

div#Niv2-Choix3_fleche {
	width: 1223px;
	height: 91px;
}
	/* Fin Bloc Choix 3 */
/* ---------------------------------------------------- */			
/* 3_Pages Projets & Découvrir Elliot */
/* ---------------------------------------------------- */


/* ----------------------------------------------------------------------- */
/* 4a_Pages PE Projets Images, Projets Vidéos, Autres Créations */
/* 4b_Pages DE Coulisses, Acteurs, Lieux */
/* ----------------------------------------------------------------------- */
	/* Bloc Choix 1 */
div#Niv3-Choix1_superbloc {
	width: 896px;
	height: 416px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 50px;
}

div#Niv3-Choix1_titre {
	width: 896px;
	height: 69px;
}

div#Niv3-Choix1_img1 {
	width: 896px;
	height: 65px;
}

div#Niv3-Choix1_bandeau1 {
	width: 896px;
	height: 54px;
}

div#Niv3-Choix1_img2 {
	width: 896px;
	height: 186px;	
}

div#Niv3-Choix1_img3 {
	width: 896px;
	height: 42px;
	
}
	/* Fin Bloc Choix 1 */
	/* Bloc Choix 2 */
div#Niv3-Choix2_superbloc {
	width: 896px;
	height: 416px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;
}

div#Niv3-Choix2_titre {
	width: 896px;
	height: 69px;
}

div#Niv3-Choix2_img1 {
	width: 896px;
	height: 65px;
}

div#Niv3-Choix2_bandeau1 {
	width: 896px;
	height: 54px;
}

div#Niv3-Choix2_img2 {
	width: 896px;
	height: 186px;	
}

div#Niv3-Choix2_img3 {
	width: 896px;
	height: 42px;
	
}
	/* Fin Bloc Choix 2 */	
	/* Bloc Choix 3 */
div#Niv3-Choix3_superbloc {
	width: 896px;
	height: 416px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;	
}

div#Niv3-Choix3_titre {
	width: 896px;
	height: 69px;
}

div#Niv3-Choix3_img1 {
	width: 896px;
	height: 65px;
}

div#Niv3-Choix3_bandeau1 {
	width: 896px;
	height: 54px;
}

div#Niv3-Choix3_img2 {
	width: 896px;
	height: 186px;	
}

div#Niv3-Choix3_img3 {
	width: 896px;
	height: 42px;
	
}
	/* Fin Bloc Choix 3 */
	/* Bloc Choix 4 */
div#Niv3-Choix4_superbloc {
	width: 896px;
	height: 416px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;	
}

div#Niv3-Choix4_titre {
	width: 896px;
	height: 69px;
}

div#Niv3-Choix4_img1 {
	width: 896px;
	height: 65px;
}

div#Niv3-Choix4_bandeau1 {
	width: 896px;
	height: 54px;
}

div#Niv3-Choix4_img2 {
	width: 896px;
	height: 186px;	
}

div#Niv3-Choix4_img3 {
	width: 896px;
	height: 42px;
	
}
	/* Fin Bloc Choix 4 */
	/* Bloc Choix 5 */
div#Niv3-Choix5_superbloc {
	width: 896px;
	height: 416px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;	
}

div#Niv3-Choix5_titre {
	width: 896px;
	height: 69px;
}

div#Niv3-Choix5_img1 {
	width: 896px;
	height: 65px;
}

div#Niv3-Choix5_bandeau1 {
	width: 896px;
	height: 54px;
}

div#Niv3-Choix5_img2 {
	width: 896px;
	height: 186px;	
}

div#Niv3-Choix5_img3 {
	width: 896px;
	height: 42px;
	
}
	/* Fin Bloc Choix 5 */
	/* Bloc Choix 6 */
div#Niv3-Choix6_superbloc {
	width: 896px;
	height: 416px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;	
}

div#Niv3-Choix6_titre {
	width: 896px;
	height: 69px;
}

div#Niv3-Choix6_img1 {
	width: 896px;
	height: 65px;
}

div#Niv3-Choix6_bandeau1 {
	width: 896px;
	height: 54px;
}

div#Niv3-Choix6_img2 {
	width: 896px;
	height: 186px;	
}

div#Niv3-Choix6_img3 {
	width: 896px;
	height: 42px;
	
}
	/* Fin Bloc Choix 6 */		
		

/* ----------------------------------------------------------------------- */
/* Fin 4a_Pages PE Projets Images, Projets Vidéos, Autres Créations */
/* Fin 4b_Pages DE Coulisses, Acteurs, Lieux */
/* ----------------------------------------------------------------------- */


/* ----------------------------------------------------------------------- */
/* 5a Pages ImgHD, 360, Book, Films, Teasers, Timelapses, Timeslices, Slow-motion, Formations, Packs */
/* ----------------------------------------------------------------------- */
	/* Bloc Titre */
div#Niv4-Titre_superbloc {
	width: 896px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 50px;
}

div#Niv4-Titre_img1 {
	width: 896px;
	height: 69px;
}
	/* Fin Bloc Titre */
	/* Bloc Sepa */
div#Niv4-Sepa-haut_superbloc {
	width: 1500px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 30px;
}

div#Niv4-Sepa-haut_img1 {
	width: 1500px;
	height: 69px;
}

div#Niv4-Sepa-bas_superbloc {
	width: 1500px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 40px;
}

div#Niv4-Sepa-bas_img1 {
	width: 1500px;
	height: 69px;
}

div#Niv4-Sepa-haut-Select_superbloc {
	width: 920px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 30px;
}

div#Niv4-Sepa-haut-Select_img1 {
	width: 920px;
	height: 69px;
}

div#Niv4-Sepa-bas-Select_superbloc {
	width: 920px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 40px;
}

div#Niv4-Sepa-bas-Select_img1 {
	width: 920px;
	height: 69px;
}

div#Niv4-Sepa_superbloc {
	width: 1500px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 30px;
}

div#Niv4-Sepa_img1 {
	width: 1500px;
	height: 69px;
}
	/* Fin Bloc Sepa */


/* ----------------------------------------------------------------------- */
/* 5_Pages ImgHD */
/* ----------------------------------------------------------------------- */		
	/* Bloc Imgs HD */
div#Niv4-ImgsHD_superbloc {
	width: 1602px;
	height: 2496px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;
}

div#Niv4-ImgsHD_img1 {
	width: 1602px;
	height: 416px;
}

div#Niv4-ImgsHD_img2 {
	width: 1602px;
	height: 416px;
}

div#Niv4-ImgsHD_img3 {
	width: 1602px;
	height: 416px;
}

div#Niv4-ImgsHD_img4 {
	width: 1602px;
	height: 416px;
}

div#Niv4-ImgsHD_img5 {
	width: 1602px;
	height: 416px;
}

div#Niv4-ImgsHD_img6 {
	width: 1602px;
	height: 416px;
}
	/* Fin Bloc Imgs HD */

								
	/* Bloc Imgs */
div#Niv4-Choix2_superbloc {
	width: 1602px;
	height: 416px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;
}

div#Niv4-Choix2_img1 {
	width: 1602px;
	height: 416px;
}

div#Niv4-Choix2_img2 {
	width: 1602px;
	height: 416px;	
}
	/* Fin Bloc Imgs */
	/* Bloc Navigation */
div#Niv4-Nav_superbloc {
	width: 456px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	/*margin-top: 50px; */
}

div#Niv4-Nav_img1 {
	width: 456px;
	height: 69px;
}
	/* Fin Bloc Navigation */
	
/* ----------------------------------------------------------------------- */
/* Fin 5_Pages ImgHD */
/* ----------------------------------------------------------------------- */


/* ----------------------------------------------------------------------- */
/* 5_Pages Bonus */
/* ----------------------------------------------------------------------- */
	/* Bloc Bonus 1 */
div#Niv4-Bonus1_superbloc {
	width: 1124px;
	height: 503px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus1_img1 {
	width: 1124px;
	height: 503px;
}
	/* Fin Bloc Bonus 1 */
	/* Bloc Bonus 2 */
div#Niv4-Bonus2_superbloc {
	width: 1369px;
	height: 198px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus2_img1 {
	width: 1369px;
	height: 198px;
}
	/* Fin Bloc Bonus 2 */
	/* Bloc Bonus 3 */
div#Niv4-Bonus3_superbloc {
	width: 1444px;
	height: 190px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus3_img1 {
	width: 1444px;
	height: 190px;
}
	/* Fin Bloc Bonus 3 */
	/* Bloc Bonus 4 */
div#Niv4-Bonus4_superbloc {
	width: 1369px;
	height: 229px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus4_img1 {
	width: 1369px;
	height: 229px;
}
	/* Fin Bloc Bonus 4 */	
	/* Bloc Bonus 5 */
div#Niv4-Bonus5_superbloc {
	width: 1020px;
	height: 456px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus5_img1 {
	width: 1020px;
	height: 456px;
}
	/* Fin Bloc Bonus 5 */	
	/* Bloc Bonus 6 */
div#Niv4-Bonus6_superbloc {
	width: 1408px;
	height: 520px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus6_img1 {
	width: 1408px;
	height: 520px;
}
	/* Fin Bloc Bonus 6 */
	/* Bloc Bonus 7 */
div#Niv4-Bonus7_superbloc {
	width: 1408px;
	height: 252px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus7_img1 {
	width: 1408px;
	height: 252px;
}
	/* Fin Bloc Bonus 7 */
	/* Bloc Bonus 8 */
div#Niv4-Bonus8_superbloc {
	width: 1369px;
	height: 275px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;
}

div#Niv4-Bonus8_img1 {
	width: 1369px;
	height: 275px;
}
	/* Fin Bloc Bonus 8 */
/* ----------------------------------------------------------------------- */
/* Fin 5_Pages Bonus */
/* ----------------------------------------------------------------------- */	

/* ----------------------------------------------------------------------- */
/* 5_Pages 360° */
/* ----------------------------------------------------------------------- */				    /* Bloc 360° p01 */
div#Niv4-360-p01_superbloc {
	width: 1602px;
	height: 2496px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;
}

div#Niv4-360-p01_img1 {
	width: 1602px;
	height: 416px;
}

div#Niv4-360-p01_img2 {
	width: 1602px;
	height: 416px;
}

div#Niv4-360-p01_img3 {
	width: 1602px;
	height: 416px;
}

div#Niv4-360-p01_img4 {
	width: 1602px;
	height: 416px;
}

div#Niv4-360-p01_img5 {
	width: 1602px;
	height: 416px;
}

div#Niv4-360-p01_img6 {
	width: 1602px;
	height: 416px;
}
    /* Fin Bloc 360° p01 */	
/* ----------------------------------------------------------------------- */
/* Fin 5_Pages 360° */
/* ----------------------------------------------------------------------- */	

/* ----------------------------------------------------------------------- */
/* 5_Pages Sélection */
/* ----------------------------------------------------------------------- */				    /* Bloc Sélection */
div#Niv4-Selection_superbloc {
	width: 896px;
	height: 443px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;
}

div#Niv4-Selection_img1 {
	width: 896px;
	height: 443px;
}

div#Niv4-Selection-ex_superbloc {
	width: 896px;
	height: 396px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;
}

div#Niv4-Selection-ex_img1 {
	width: 896px;
	height: 396px;
}

    /* Fin Bloc Sélection */	
/* ----------------------------------------------------------------------- */
/* Fin 5_Pages Sélection */
/* ----------------------------------------------------------------------- */

/* ----------------------------------------------------------------------- */
/* 5_Pages Timelapses */
/* ----------------------------------------------------------------------- */															
	/* Bloc Sepa-Timelapses */
div#Niv4-Sepa-Time_superbloc {
	width: 900px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 30px;
}

div#Niv4-Sepa-Time_img1 {
	width: 900px;
	height: 69px;
}
	/* Fin Bloc Sepa-Timelapses */

	/* Bloc Timelapse 1 */
div#Niv4-Time1_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 30px;

}

div#Niv4-Time1_img1 {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Timelapse 1 */
	/* Bloc Timelapse 2 */
div#Niv4-Time2_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;

}

div#Niv4-Time2_img1 {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Timelapse 2 */
	/* Bloc Timelapse 3 */
div#Niv4-Time3_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;

}

div#Niv4-Time3_img1 {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Timelapse 3 */
	/* Bloc Timelapse 4 */
div#Niv4-Time4_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;

}

div#Niv4-Time4_img1 {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Timelapse 4 */	
	/* Bloc Timelapse 5 */
div#Niv4-Time5_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;

}

div#Niv4-Time5_img1 {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Timelapse 5 */		
	/* Bloc Timelapse 6 */
div#Niv4-Time6_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;

}

div#Niv4-Time6_img1 {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Timelapse 6 */
	/* Bloc Timelapse 7 */
div#Niv4-Time7_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 20px;

}

div#Niv4-Time7_img1 {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Timelapse 7 */	
/* ----------------------------------------------------------------------- */
/* Fin 5_Pages Timelapses */
/* ----------------------------------------------------------------------- */

/* ----------------------------------------------------------------------- */
/* 5_Pages Teasers */
/* ----------------------------------------------------------------------- */															
	/* Bloc Sepa-Teaser */
div#Niv4-Sepa-Teaser_superbloc {
	width: 900px;
	height: 69px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 30px;
}

div#Niv4-Sepa-Teaser_img1 {
	width: 900px;
	height: 69px;
}
	/* Fin Bloc Sepa-Timelapses */

	/* Bloc Teasers */
div#Niv4-Teaser_superbloc {
	width: 450px;
	height: 253px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 30px;

}

div#Niv4-Teaser_img {
	width: 450px;
	height: 253px;
	border-width:1px ;
	border-style:solid;
	border-color:white;
}
	/* Fin Bloc Teasers */
/* ----------------------------------------------------------------------- */
/* Fin 5_Pages Teasers */
/* ----------------------------------------------------------------------- */	
	
/* ----------------------------------------------------------------------- */
/* Fin 5a_Pages ImgHD, 360, Book, Films, Teasers, Timelapses, Timeslices, Slow-motion, Formations, Packs */
/* ----------------------------------------------------------------------- */


/* ---------------------------------------------------- */			
/* Espace marge */
/* ---------------------------------------------------- */
	/* Bloc marge */
div#esp_superbloc {
	width: 60px;
	height: 180px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 100px;	
}

div#esp_cont {
	width: 60px;
	height: 60px;
}
div#esp_cont2 {
	width: 60px;
	height: 60px;
}
div#esp_cont3 {
	width: 60px;
	height: 60px;
}
	/* Fin Bloc marge */
/* ---------------------------------------------------- */			
/* Fin Espace marge */
/* ---------------------------------------------------- */	

	
/* ---------------------------------------------------- */
/* Page Lexique */
/* ---------------------------------------------------- */
	/* Bloc Lexique */
div#Lexique_superbloc {
	width: 919px;
	height: 730px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 50px;
}

div#Lexique_titre {
	width: 919px;
	height: 68px;
	background-image: url(../Imgs_N0/Lexique_01.jpg);
}

div#Lexique_niv01 {
	width: 919px;
	height: 83px;
}

div#Lexique_niv02 {
	width: 919px;
	height: 81px;
}

div#Lexique_niv03 {
	width: 919px;
	height: 79px;
}

div#Lexique_niv04 {
	width: 919px;
	height: 85px;
}

div#Lexique_niv05 {
	width: 919px;
	height: 78px;
}

div#Lexique_niv06 {
	width: 919px;
	height: 80px;
}

div#Lexique_niv07 {
	width: 919px;
	height: 74px;
}

div#Lexique_niv08 {
	width: 919px;
	height: 52px;
	background-image: url(../Imgs_N0/Lexique_16.jpg);
}

div#Lexique_niv09 {
	width: 919px;
	height: 50px;
}

	/* Fin Bloc Lexique */
/* ---------------------------------------------------- */
/* Fin Page Lexique */
/* ---------------------------------------------------- */

	
/* ---------------------------------------------------- */
	/* Bloc Plan */	
/* ---------------------------------------------------- */	
div#Plan-superbloc {
	width: 720px;
	height: 605px;
	margin-left:auto;
	margin-right:auto;
	margin-top: 200px;
}

div#Plan-niv01 {
	width: 720px;
	height: 84px;
}

div#Plan-niv02 {
	width: 720px;
	height: 30px;
}

div#Plan-niv03 {
	width: 720px;
	height: 25px;
}

div#Plan-niv04 {
	width: 720px;
	height: 25px;
}

div#Plan-niv05 {
	width: 720px;
	height: 25px;
}

div#Plan-niv06 {
	width: 720px;
	height: 25px;
}

div#Plan-niv07 {
	width: 720px;
	height: 25px;
}

div#Plan-niv08 {
	width: 720px;
	height: 25px;
}

div#Plan-niv09 {
	width: 720px;
	height: 25px;
}

div#Plan-niv10 {
	width: 720px;
	height: 25px;
}

div#Plan-niv11 {
	width: 720px;
	height: 25px;
}

div#Plan-niv12 {
	width: 720px;
	height: 25px;
}

div#Plan-niv13 {
	width: 720px;
	height: 25px;
}

div#Plan-niv14 {
	width: 720px;
	height: 25px;
}

div#Plan-niv15 {
	width: 720px;
	height: 25px;
}

div#Plan-niv16 {
	width: 720px;
	height: 25px;
}

div#Plan-niv17 {
	width: 720px;
	height: 25px;
}

div#Plan-niv18 {
	width: 720px;
	height: 25px;
}

div#Plan-niv19 {
	width: 720px;
	height: 25px;
}

div#Plan-niv20 {
	width: 720px;
	height: 25px;
}

div#Plan-niv21 {
	width: 720px;
	height: 25px;
}

div#Plan-niv22 {
	width: 720px;
	height: 16px;
}
	
.corpsgris {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #A3A3A3;
	text-decoration: none;
	font-weight: bold;
	line-height: 50px;
}
/* ---------------------------------------------------- */
	/* Fin Bloc Plan */
/* ---------------------------------------------------- */	