/* debut structure*/

body/*le corps c'est la page*/
{
	display: grid;/*mise en tableau*/
	grid-template-columns: 300px auto auto;/* 3 colonnes*/
	width: 100%;
	height: 100%;
	margin:0;
	padding:0;
}

header/*l'en tete*/
{
	grid-column-start: 1;/* commence colonne 1*/
	grid-column-end: 4;/*finis colonne 4*/
}

nav/* le menu*/
{
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 2;/*commence ligne 2*/
	grid-row-end: 4; /*finis ligne 4*/
}

section /* la section d'ecriture*/
{
	margin-left: 10px;
	grid-column-start: 2;
	grid-column-end: 4;
	grid-row-start: 2;
	grid-row-end: 4;
}

/* style menu */
#nav, #nav ul
{
display:table-cell;
list-style: none;
padding : 0;
margin : 0;
width : 300px;
}

#nav a
{
	display: block;
	text-decoration: none;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
	text-transform: none;
	color: black;
	background-color: pink;
	border: outset black;
	border-radius: 15px 15px 15px 15px;
	padding : 0px;
	margin : 5px;
}

#nav a:active
{
	background-color : grey;
}

.clignote
{
	animation: clignote 3s linear infinite;
}
/* fin du menu */


/* fin structure*/

/* mise en place contenu accueil*/

.accueil
{
	display: grid;
	grid-template-columns: 65% 35%;
	padding: 3px;
	grid-gap: 10px 10px;
	width :98%;
	
}

.titreaccueil
{
	text-align: center;
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start:1;
	grid-row-end:2;
	font-size: 350%;
	color: black;
	font-weight: bold;
}

.courrier
{
	grid-column-start: 1;
	grid-column-end: 3;
	grid-row-start:2;
	grid-row-end:3;
	background-color:#FDF8E8;
	border: 1px solid black;
	padding: 2px;
	border-radius: 10px;	
}

.rencontres
{
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start:1;
	grid-row-end:2;
	background-color:yellow;
	border: 1px solid black;
	border-radius: 10px;
	/*animation: clignote 5s linear infinite;*/
}

@keyframes clignote 
{  
  50% { opacity: 0; }
}
/*fin mise en place accueil*/
/*mise en place page publications*/

.publicationbox
{
	display: grid;
	grid-template-columns: auto auto;
	padding: 5px;
	grid-gap: 20px 20px;
	justify-content: center;
	width :99%;
}

.titrepubli
{	
	grid-row-start:1;
	grid-row-end:2;
	grid-column-start: 1;
	grid-column-end: 3;
	padding: 20px;
	text-align: center;
}

.article
{		
	background-color:#FDF8E8;
	border: 1px solid black;
	padding: 2px;
	text-align: center;
	border-radius: 10px;
}
/*fin en place page publications*/
a /*style des liens*/
{
	color : #0b0b61;
}
a:hover
{
	text-decoration : underline;
	color : #ff8000;
}

.ancetre
{
	color : black;
	font-size : 150%;
}

.centrer
{
	color : black;
	font-size : 150%;
	font-weight : bold;
	text-align : center;
}

.centrer1
{
	color : black;
	font-size : 145%;
	text-align : center;
}

#contact
{
	font-size : 150%;
	color : black;
	font-weight : bold;
}

.listeadh
{
	padding-left : 180px;
	font-size : 150%;
}

.para
{
	padding-left : 80px;
	font-size : 120%;
}

.parab
{
	padding-left : 80px;
	font-size : 120%;
	color: #0000ff;
}

.parab1
{
	padding-left : 80px;
	font-size : 120%;
	color: red;
}

.flottedte
{
	float: left;
	margin-right: 12px;
}

.flottegche
{	
	font-size : 120%;
	color: red;
}

.recherche2
{
	font-size : 150%;
	font-weight : bold;
	width : 50%;
	background-color : black;
	color : orange;
	border-radius: 15px 15px 15px 15px;
	
}

.recherche2:active
{
	background-color : grey;
}

.recherche3
{
	font-size: 200%;
	border: solid 3px;
	border-color : black;
	width : 80%;
	text-align : center;
}

.recherche4
{
	font-size : 100%;
	text-align : center;
}

.recherche5
{
	font-size : 100%;
	margin-left : auto;
	margin-right : auto;
	width : 90%;
	border-radius: 10px;
	text-align : center;
	background-color : #FFFC00;
	color : black;
}

.separation/*hr*/ /* ligne de separation*/
{
	height : 3px;
	background-color : white;
	color : #f332a6;
}

.signature
{
	font-weight : bold;
	font-size : 110%;
	text-align : center;
	margin-right : 20px;
}

.tabl /*tableau*/
{
	border-radius : 10px;
}

.tabl2 /*tableau*/
{
	border-radius : 25px;
	text-align: center;
	width: 100%;
}

.tabl3
{
	border-radius : 25px;
	text-align: center;
	width: 50%;
}

.tabl4
{
	border : black 2px solid;
	width : 99%;
	margin: auto;
	border-collapse: collapse;
	font-size: 150%;
}

.tabl4 td
{
	border : black 2px solid;
	background-color: #FCFFBF;
	padding-bottom: 5px;
	padding-top: 5px;
}

.tabl5
{
	border : 10px solid black;
	background-color: #B6E7F8;
	width : 99%;
	margin: auto;
	text-align: center;
}

.boutonenvoi
{
	border : black 5px solid;
	color: red;
	font-size: 150%;
	background-color: black;
}
	

.tablident
{
	border-radius : 25px;
	text-align: center;
	border: solid 2px black;
	background-color: red;
	font-size: 25px;
	color: white;
	font-weight: bold;
}

.tablident1
{
	border-radius : 15px;
	text-align: center;
	border: solid 4px black;
	background-color: #ffff44;
	font-size: 15px;
}

.tablident2
{
	border-radius : 15px;
	text-align: center;
	font-size: 20px;
}

.tabulation /*decalage du bord*/
{
	padding-left : 50px;
}

.titre1/*h1*/
{
	color : blue;
	font-size : 250%;
	font-weight : bold;
	text-align : center;
}

.titre2/*h2*/
{
	color : purple;
	font-size : 200%;
	font-weight : bold;
	text-align : center;
}

.titre3/*h3*/
{
	color : blue;
	font-size : 150%;
	font-weight : bold;
	text-align : center;
}

.titre5/*h5*/
{
	font-size : 180%;
	width : 40%;
	height : 43px;
	font-weight : bold;
	text-align : center;
	color : black;
	background : violet;
	padding-top : 7px;
	border-radius : 30px;
	margin-left : auto;
	margin-right : auto;
	box-shadow :	8px 8px 0px black;
}

.titre5/*h5*/:active /* pour faire le bouton*/
{
	color : #000000;
	background : #C9D1F6;
	box-shadow :	8px 8px 0px black inset,
					0 -6px 0 black;
}

.titre6
{
	color : #61210B;
	font-size : 150%;
	font-weight : bold;
	text-align : center;
}
		 
	 
		 
		 