/*	svp, prendre une copie du modèle 00 et créer le vôtre à la fin en incrémentant 00 merci */
/*				option pour m00			*/

div.m00-overflow /*	div spéciale pour scroller en x, remplacez m00 par m00-overflow */
{
padding: 1rem;
overflow-x: auto;
}
/*********************************			m00		**************************************************************/
div.m00
{
padding: 1rem;	/*	padding par défaut */
}

/*	la div h00 sert au titre si on a besoin de plusieurs balises dans la partie titre, sinon la h seule*/

div.h00
{

}
div.h00 h1
{
font-size: ;
line-height: ;/*	<= font-size + padding */
}
div.h00 h2
{

}
div.h00 hr
{
width:50%;
margin: 0 auto;
color: pink;
}
/***************************			grille00		*********************************************************************************/
div.grille00
{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
div.grille00 figure
{
margin: 0.5rem;	/*	margin des colonnes, donne donc 1rem MINIMUM (0.5rem + 0.5rem) entre 2 colonnes*/
text-align: center;	/* pour centrer l'image et le texte dans la colonne */
width: 140px;	/* 	la largeur minimum est de 100px mais cela dépend de l'icone ou de l'image,
					du texte à afficher, un titre simple en petit font size, va entrer dans 100px
					on fonctionne en px fixe ici, PAS DE POURCENTAGE*/
/*width: 270px;	/*	la largeur MAXIMUM pour les cellulaires est de 320px en comptant les marges
					ce qui donne donc un grand maximum de 270px par colonne (1rem = +/- 10px)
					car il faut compter les marges des conteneurs de la grille fixée au minimum à 1rem
					il est désagréable de refaire tout le style quand il ne répond pas aux limites...*/
}
div.grille00 img	/* 	il n'est d'usage d'utiliser une image plus grande que 270px dans le flex pour
					avoir un responsive convenable, il faut utiliser un autre modèle si nous avons
					des images plus larges que 270px, on fonctionne en px fixe ici, PAS DE POURCENTAGE*/
{

}
div.grille00 figcaption	/* 	figcaption hérite de son parent figure. En remettant ici le texte à gauche
						il n'y aura que l'image centrée dans la colonne
						on fonctionne en px fixe ici, PAS DE POURCENTAGE*/
{
text-align: left;
}
/************************************************************************************************************/
/* Cette instruction sur la div float-stop s'applique sur tous les modèles, nul besoin de la répéter*/
div.float-stop
{
clear: both;
}
/**************************			float00			****************************************************************************/
div.float00
{

}
div.float00 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
padding-right: 0.5rem;
width: 49%; /* laisser 1% aux marges*/
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float00 div.float-right
{
float: right;
padding-left: 0.5rem;
width: 49%;
}
div.float00 div.float-left img
, div.float00 div.float-right img
{
width: 100%;
}

/**************************				table00			**********************************************************************************/
table.table00
{
border: 1px solid black;
/*border-collapse: collapse;*/
/*border-collapse: separate;*/
/*border-spacing: 10px 50px;*/
/*empty-cells: hide;*/
/*table-layout: fixed;*/
width: 100%;	
}
table.table00 tr /*	row, ligne */
{

}
table.table00 tr:nth-child(even) /* OU odd */
{
/*background-color: yellow*/
}
table.table00 tr:hover
{
/*background-color: green;*/
}
table.table00 tr.ligne00 /*	si nous avons une ligne particulière que nous désirons styliser */
{
	
}
table.table00 th /* header, titre */
{
border-bottom: 1px solid grey;
/*border: 1px solid black;*/
/*height: 50px;*/
text-align: left;
vertical-align: middle;
padding: 8px 15px;
/*background-color: blue;*/
/*color: white;*/
}
table.table00 td /* data, cellule */
{
border-bottom: 1px solid grey;
/*border: 1px solid black;*/
/*height: 30px;*/
/*text-align: center;*/
/*vertical-align: bottom;*/
padding: 8px 15px;
}
table.table00 td img/* image dans le cellule, on ne dépasse pas 270px pour le responsive */
{
width: 100%;
max-width: 270px;
max-height: 200px;
}
table.table00 td.cell00 /*	si nous avons une cellule particulière que nous désirons styliser */
{
padding: 0;
width: 270px;
max-width: 270px;
}
/****************************			xtableau00				********************************************************************************/
div.xtableau00 
{
border-top: 1px solid black; /*	cadre autour du tableau sauf pour le bottom */
border-right: 1px solid black;
border-left: 1px solid black;
/*border-bottom: 1px solid black;*/
/*	si on ne met pas de border-bottom aux lignes mais qu'on veut tout de même
	le bas du cadre pour le tableau, il faut enlever le commentaire ci-haut*/
}
div.xtableau00 div.xt
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne titre*/
}
div.xtableau00 div.xl
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne du tableau*/
}
			/*	2colonnes 49%, 3colonnes 33%, 4colonnes 24%, 5colonnes 19% */			
div.xtableau00 div.xc1
, div.xtableau00 div.xc2
, div.xtableau00 div.xc3 
{
width: 33%;
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
border-right:  1px solid black;
}
div.xtableau00 div.xc3 /*		voici la dernière cellule à la droite du tableau 
							cette dernière cellule annule le border 
							si vous avez plus que 3 colonnes,
							changer xc3 pour le nom de la dernière cellule*/
{
border-right:  0px solid black;
}
div.xtableau00 div.xt div.xc1
, div.xtableau00 div.xt div.xc2
, div.xtableau00 div.xt div.xc3 /*	cellules de la ligne titre xtitle xt */
{
font-weight: bold;
}
div.xtableau00 div.xc1
{

}
div.xtableau00 div.xc2
{

}
div.xtableau00 div.xc3
{

}
/**********************				ftableau00				**************************************************************************************/
div.ftableau00 
{
visibility: hidden; /* le ftableau sera visible sous les 765px*/
height: 0px;
}
div.ftableau00 
{
border-top: 1px solid black; /*	cadre autour du tableau sauf pour le bottom */
border-right: 1px solid black;
border-left: 1px solid black;
/*border-bottom: 1px solid black;*/
/*	si on ne met pas de border-bottom aux lignes mais qu'on veut tout de même
	le bas du cadre pour le tableau, il faut enlever le commentaire ci-haut*/
}
div.ftableau00 div.xt
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne titre*/
}
div.ftableau00 div.xl
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne du tableau*/
}			
div.ftableau00 div.xc1
, div.ftableau00 div.xc2
, div.ftableau00 div.xc3 
{
width: 99%;
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
div.ftableau00 div.xt div.xc1
, div.ftableau00 div.xt div.xc2
, div.ftableau00 div.xt div.xc3 /*	cellules de la ligne titre xtitle xt */
{
font-weight: bold;
}
div.ftableau00 div.xc1
{

}
div.ftableau00 div.xc2
{

}
div.ftableau00 div.xc3
{

}
/************************************************************************************************************
			V o t r e		c o d e		v a		à	p a r t i r		d ' i c i			
Prenez une copie du modèle00 m00 float00 grille00 table00 etc... et copiez le code ici à la fin
Incrémentez le modèle m01 float01 etc... aux noms de balises de votre copie et codez
/****************************************************************************************************************/

div.a-wrapper
{
width: 270px;
height: 203px;

}
div.a-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.a-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(0.866,0.7,-0.8,0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
transform: rotate(45deg);
transform-origin: 20% 40%;
}
div.a-wrapper:hover
{

}
div.b-wrapper
{
width: 270px;
height: 203px;

}
div.b-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.b-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(0.866,0.7,-0.8,0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
transform-style: preserve-3d;
transform: rotate(-45deg);
transform-origin: 60% 80%;
}
div.b-wrapper:hover
{

}
div.c-wrapper
{
width: 270px;
height: 203px;

}
div.c-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.c-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(0.866,0.7,-0.8,0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
/*transform-style: preserve-3d;*/
transform: skewY(20deg);
transform-origin: 10% 20%;
}
div.c-wrapper:hover
{

}
div.d-wrapper
{
width: 270px;
height: 203px;

}
div.d-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.d-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
transform: matrix(-0.866,-0.7,0.8,-0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
/*transform-style: preserve-3d;*/
/*transform: skewY(20deg);*/
transform-origin: 200% -250%;
/*transform: matrix3d(0.5,0,0,0,0.5,0,0,0,0.5,0,0,0,0.5,0,0,0);*/
}
div.d-wrapper:hover
{

}
div.e-wrapper
{
padding: 1rem;
width: 300px;
height: 233px;
border: 1px solid #aaaaaa;
transition-duration: 2s;
transition-timing-function: ease;
}
div.e-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.e-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(-0.866,-0.7,0.8,-0.866,0,0);/* matrice 2D*/
/*transition-timing-function: ease;*/
transition-timing-function: cubic-bezier(0.5,0.5,0.8,0.9);
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
/*transform-style: preserve-3d;*/
/*transform: skewY(20deg);*/
transform-origin: 10% 90%;
/*transform: matrix3d(0.5,0,0,0,0.5,0,0,0,0.5,0,0,0,0.5,0,0,0);*/
/*transform: skew(10deg,10deg);*/
/*perspective: 100px;*/
/*perspective-origin: 50px 50px;*/
transform: rotate3d(0.8,-0.1,0.1,80deg);
}
div.e-wrapper:hover
{
transition-duration: 3s;
transition-timing-function: ease;
box-shadow: 10px 10px 5px grey;
}
/***********************************  mentions légales - politique de confidentialité - Conditions générales de vente *****************************/
div.m01-legal
{
padding: 1rem;	/*	padding par défaut */
}

/*	la div h00 sert au titre si on a besoin de plusieurs balises dans la partie titre, sinon la h seule*/

div.m01-legal h1
{
font-size: ;
line-height: ;/*	<= font-size + padding */
}
div.m01-legal h2
{

}
div.m01-legal hr
{
width:50%;
margin: 0 auto;
color: pink;
}
/*****************************************************************************************************************************************************************/
div.m01
{
padding: 1rem;
padding-top: 6rem;
padding-bottom: 12rem;
text-align: left;
font-family: 'roboto-medium';
font-size: 1.7rem;
line-height: 2.5rem;
}
div.h01
{
width: 300px;
text-align: right;
margin: 0 auto;
}
div.h01 h2
{
font-family: 'poppins-bold';
font-size: 4rem;
line-height: 3rem;/*	<= font-size + padding */
color: black;
}
div.h01 a.tabtrait
{
width: 150px;
cursor: pointer;
}
div.m01 a
{
color: black;
cursor: pointer;	
}
div.m01 a.big
{
font-family: 'poppins-extrabold';
font-size: 7rem;
line-height: 8rem;/*	<= font-size + padding */
color: #001689;
position: relative;
top: 2rem;
}
div.m01 a.tab1
{
margin-left: 100px;
}
div.m01 a.tab2
{
margin-left: 0px;
}
div.m01 a.tab3
{
margin-left: 110px;
}
div.m01 a.tab4
{
/*margin-left: 200px;*/
}
div.m02
{
padding: 1rem;
padding-top: 12rem;
font-size: 1.7rem;
line-height: 2rem;/*	<= font-size + padding */
color: black;
font-family: 'roboto-light';
text-align: right;
}
div.h02
{
text-align: right;
padding-bottom: 3rem;
}
div.h02 h1
{
font-family: 'poppins-bold';
font-size: 2.5rem;
line-height: 4rem;/*	<= font-size + padding */
color: black;
}
div.m02text
{
width: 80%;
float: right;
}
div.m02 a
{
font-family: 'poppins-semibold';
font-size: 2rem;
line-height: 3rem;/*	<= font-size + padding */
color: #CF3339;
padding: 5px 20px;
border: 2px solid #CF3339;
border-radius: 60px;
background: white;
}
div.m02 a:hover
{
color: white;
padding: 5px 20px;
background: #CF3339;;
}

div.m03
{
padding: 1rem;
padding-top: 6rem;
padding-bottom: 2rem;
text-align: center;
font-family: 'roboto-medium';
font-size: 1.5rem;
line-height: 2rem;
}
div.h03
{
margin-bottom: 4rem;
}
div.h03 h2
{
font-family: 'poppins-bold';
font-size: 4rem;
line-height: 6rem;/*	<= font-size + padding */
color: black;
}

div.m04
{
padding: 1rem;
padding-right: 0px;
max-height: 650px;
}
div.m04 img
{
max-width: 80%;
position: relative;
top: -33rem;
left: 5rem;
}
div.h04
{
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-bottom: 35rem;
background-color: #f0f4ff;
}
div.h04 a.savoir
{
font-size: 2rem;
font-family: 'poppins-semibold';
line-height: 3rem;/*	<= font-size + padding */
color: #CF3339;
padding: 5px 20px;
border: 2px solid #CF3339;
border-radius: 60px;
/*background: white;*/
}
div.h04 a.savoir:hover
{
color: white;
padding: 5px 20px;
background: #CF3339;;
}
div.h04 a.tab
{
padding: 0px 70px;
}
div.h04 a.big
{
font-family: 'poppins-semibold';
font-size: 7rem;
line-height: 8rem;/*	<= font-size + padding */
color: #001689;
position: relative;
top: 1rem;
}
div.m05
{
padding: 1rem;
padding-left: 0px;
max-height: 650px;

}
div.m05 img
{
/*max-width: 90%;
position: relative;
top: -50rem;
left: 5rem;*/
max-width: 100%;
position: relative;
top: -50rem;
left: 2rem;
}
div.h05
{
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 10rem;
padding-top: 30rem;
padding-bottom: 2rem;
background-color: #a7b6d1;
}
div.h05 a.savoir
{
font-size: 2rem;
font-family: 'poppins-semibold';
line-height: 3rem;/*	<= font-size + padding */
color: #CF3339;
padding: 5px 20px;
border: 2px solid #CF3339;
border-radius: 60px;
margin-left: 1rem;
}
div.h05 a.savoir:hover
{
color: white;
padding: 5px 20px;
background: #CF3339;;
}
div.h05 a.tab
{
padding: 0px 20px;
}
div.h05 a.big
{
font-family: 'poppins-semibold';
font-size: 7rem;
line-height: 9rem;/*	<= font-size + padding */
color: #001689;
position: relative;
top: 1rem;
margin-left: 1rem;
}

div.m10
{
padding: 1rem;
padding-top: 3rem;
}
div.m11
{
padding: 1rem;
padding-top: 3rem;

}
div.m11 h5
{
padding: 1rem;
padding-top: 3rem;
color: white;
font-family: 'poppins-semibold';
}
div.m11 a
{
padding: 1rem;
padding-top: 3rem;
color: white;
font-family: 'roboto-light';
}
div.m12
{
padding: 1rem;
padding-top: 3rem;

}
div.m12 h5
{
padding: 1rem;
padding-top: 3rem;
color: white;
font-family: 'poppins-semibold';
}
div.m12 a
{
padding: 1rem;
padding-top: 3rem;
color: white;
font-family: 'roboto-light';
}
div.m20
{
padding: 2rem 1rem;
text-align: center;
font-family: 'roboto-medium';
font-size: 1.5rem;
line-height: 2rem;
width: 60%;
margin: 2rem auto;
}
div.h20
{
margin-bottom: 2rem;
font-family: 'roboto-light';
text-align: center;
}
div.h20 h1
{
font-family: 'poppins-bold';
font-size: 4rem;
line-height: 6rem;/*	<= font-size + padding */
color: black;
}
div.m21
{
padding: 2rem 1rem;
text-align: left;
font-family: 'roboto-light';
font-size: 1.5rem;
line-height: 2rem;

}
div.m21 h2
{
font-family: 'poppins-bold';
font-size: 4rem;
line-height: 6rem;/*	<= font-size + padding */
color: black;
}
div.float21
{

}
div.float21 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
padding-right: 2rem;
width: 46%; /* laisser 1% aux marges*/
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float21 div.float-right
{
float: right;
padding-left: 2rem;
width: 46%;
}
div.float21 div.float-left img
, div.float21 div.float-right img
{
width: 100%;
max-width: 600px;
}
div.float21 div.float-left img.trait
, div.float21 div.float-right img.trait
{
width: 100%;
max-width: 140px;
}
div.float21r
{

}
div.float21r div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;

width: 46%; /* laisser 1% aux marges*/
position: relative;
z-index: 11;
}
div.float21r2 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;

width: 46%; /* laisser 1% aux marges*/
/*margin-left: 10%;*/
text-align: right;
padding-right: 2rem;
}
div.float21r div.float-inside /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{

padding: 2rem 3rem;
width: 69%; /* laisser 1% aux marges*/
margin-left: 20%;
text-align: right;
background-color: #f0f4ff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
position: relative;
z-index: 9;
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float21r div.float-right
, div.float21r2 div.float-right
{
float: right;
padding-left: 2rem;
width: 46%;
}
div.float21r div.float-left img
, div.float21r div.float-right img
, div.float21r2 div.float-left img
{
width: 80%;
max-width: 600px;
}
div.float21r div.float-left img.trait
, div.float21r div.float-right img.trait
{
width: 100%;
max-width: 140px;
}
div.float21r div.float-left img.element
{
width: 100%;
max-width: 281px;
position: relative;
top: -8rem;
left: 5rem;
z-index: 100;
}

div.float21r3
{

}
div.float21r3 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;

width: 46%; /* laisser 1% aux marges*/
position: relative;
z-index: 11;
}
div.float21r3 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;

width: 46%; /* laisser 1% aux marges*/
/*margin-left: 10%;*/
text-align: right;
padding-right: 2rem;
}
div.float21r3 div.float-inside /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{

padding: 2rem 3rem;
width: 69%; /* laisser 1% aux marges*/
margin-right: 20%;
/*text-align: right;*/
background-color: #f0f4ff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
position: relative;
z-index: 9;
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float21r3 div.float-right
, div.float21r3 div.float-right
{
float: right;
padding-left: 2rem;
width: 46%;
}
div.float21r3 div.float-left img
, div.float21r3 div.float-right img
, div.float21r3 div.float-left img
{
width: 80%;
max-width: 600px;
}
div.float21r3 div.float-left img.trait
, div.float21r3 div.float-right img.trait
{
width: 100%;
max-width: 140px;
}
div.float21r3 div.float-left img.element
{
width: 100%;
max-width: 281px;
position: relative;
top: -8rem;
left: 5rem;
z-index: 100;
}
div.float21r4
{

}
div.float21r4 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;

width: 46%; /* laisser 1% aux marges*/
position: relative;
z-index: 11;
}
div.float21r4 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;

width: 46%; /* laisser 1% aux marges*/
/*margin-left: 10%;*/
text-align: right;
padding-right: 2rem;
}
div.float21r4 div.float-inside /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{

padding: 2rem 3rem;
width: 69%; /* laisser 1% aux marges*/
margin-left: 20%;
text-align: right;
background-color: #f0f4ff;
position: relative;
z-index: 9;
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float21r4 div.float-right
, div.float21r4 div.float-right
{
float: right;
padding-left: 2rem;
width: 46%;
}
div.float21r div.float-left img
, div.float21r4 div.float-right img
, div.float21r4 div.float-left img
{
width: 80%;
max-width: 600px;
}
div.float21r4 div.float-left img.trait
, div.float21r4 div.float-right img.trait
{
width: 100%;
max-width: 140px;
}



div.m22
{
padding: 2rem 1rem;
text-align: center;
font-family: 'roboto-light';
font-size: 1.5rem;
line-height: 2rem;
/*width: 50%;*/
margin: 2rem auto;
}
div.h22
{
margin-bottom: 2rem;
font-family: 'roboto-medium';
text-align: center;
}
div.h22 h2
{
font-family: 'poppins-bold';
font-size: 4rem;
line-height: 6rem;/*	<= font-size + padding */
color: black;
}
table.table22
{
/*border: 1px solid rgba(0, 0, 0, 0.35);*/
/*border-collapse: collapse;*/
/*border-collapse: separate;*/
/*border-spacing: 10px 50px;*/
/*empty-cells: hide;*/
/*table-layout: fixed;*/
width: 100%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;	
}
table.table22 tr /*	row, ligne */
{

}
table.table22 tr:nth-child(even) /* OU odd */
{
/*background-color: yellow;*/
}
table.table22 tr:hover
{
/*background-color: green;*/
}
table.table22 tr.ligne00 /*	si nous avons une ligne particulière que nous désirons styliser */
{
	
}
table.table22 th /* header, titre */
{
/*border-bottom: 1px solid grey;*/
/*border: 1px solid black;*/
/*height: 50px;*/
text-align: center;
vertical-align: middle;
padding: 8px 15px;
background-color: #a7b6d1;
/*color: white;*/
}
table.table22 td /* data, cellule */
{
/*border-bottom: 1px solid grey;*/
/*border: 1px solid black;*/
/*height: 30px;*/
/*text-align: center;*/
/*vertical-align: bottom;*/
padding: 8px 15px;
}
table.table22 td img/* image dans le cellule, on ne dépasse pas 270px pour le responsive */
{
width: 100%;
max-width: 270px;
max-height: 200px;
}
table.table22 td.cell-234-1 /*	si nous avons une cellule particulière que nous désirons styliser */
{
background-color: #f0f4ff;
text-align: left;
}
table.table22 td.cell-5-1 /*	si nous avons une cellule particulière que nous désirons styliser */
{
background-color: #a7b6d1;
text-align: left;
}
table.table22 td.cell-5-23 /*	si nous avons une cellule particulière que nous désirons styliser */
{
background-color: #f0f4ff;

}
table.table22 td.cell-ettab /*	si nous avons une cellule particulière que nous désirons styliser */
{
padding-left: 3rem;
}

div.m24
{
padding: 2rem 1rem;
text-align: left;
font-family: 'roboto-light';
font-size: 1.5rem;
line-height: 2rem;

}
div.h24
{
text-align: center;

}
div.h24 h1
{
font-family: 'poppins-bold';
font-size: 4rem;
line-height: 6rem;/*	<= font-size + padding */
color: black;
}
div.m24i
{
background-color:  #f0f4ff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 2rem;
}
div.m24ul
{
width: 80%;
margin: 2rem auto;
}
div.m24ul li
{
margin-left: 2rem;
padding-left: 2rem;
list-style: disc outside none;
}

div.m25
{
padding: 2rem 1rem;
text-align: left;
font-family: 'roboto-light';
font-size: 1.5rem;
line-height: 2rem;

}

div.float25
{

}
div.float25 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
/*padding-right: 2rem;*/
width: 45%; /* laisser 1% aux marges*/
overflow: visible;
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float25 div.float-right
{
float: right;
margin-top: 2rem;
padding-left: 2rem;
padding-right: 2rem;
width: 51%;
background-color: #f0f4ff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
div.float25 div.float-left img
{
width: 110%;
/*max-width: 600px;*/
}

div.m26
{
padding: 2rem 1rem;
text-align: left;
font-family: 'roboto-light';
font-size: 1.5rem;
line-height: 2rem;

}

div.float26
{
width: 70%;
margin: 0px auto;
}
div.float26 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
padding-right: 2rem;
width: 46%; /* laisser 1% aux marges*/
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float26 div.float-right
{
float: right;
padding-left: 2rem;
padding-right: 2rem;
width: 46%;
background-color: #a7b6d1;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
color: white;
}
div.m26ul
{
width: 80%;
margin: 2rem auto;
}
div.m26ul li
{
margin-left: 2rem;
padding-left: 2rem;
list-style: disc outside none;
}

div.m27
{
padding: 2rem 1rem;
text-align: left;
font-family: 'roboto-light';
font-size: 1.5rem;
line-height: 2rem;

}

div.float27
{

}
div.float27 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
padding-right: 2rem;
padding-left: 2rem;
width: 51%; /* laisser 1% aux marges*/
background-color: #f0f4ff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float27 div.float-right
{
margin-top: -12rem;
float: right;
width: 45%;
overflow: visible;
text-align: right;
position: relative;
/*right: 5rem;*/
z-index: -9;
}
div.float27 div.float-right img
{
width: 100%;
}












