
/*utilisation des class permet de sélectionner des phrases <p> avec des styles différents*/
/*la grandeur des lettres en taille relative font-size : 1em;*/
/* page Index */
.bloc_page1
{
	width:60%;  /*le bloc_page utilise 60% de la largueur de l'écran*/
	margin:auto  /*ajuste les marges automatiquement*/
}
/*page 102,106*/
.bloc_page2
{
	width:40%;  /*le bloc_page utilise 40% de la largueur de l'écran*/
	margin:auto  /*ajuste les marges automatiquement*/
}
/*page 200*/
.bloc_page3
{
	width:90%; /*le bloc_page utilise 90% de la largueur de l'écran*/
	margin:auto  /*ajuste les marges automatiquement*/
}
header, h1
{
	text-align:center;  /*aligne le texte du titre header et h1*/
	color:black;  /*couleur du texte*/
	font-family: 'BallparkWeiner', 'Times New Roman', 'Trebuchet MS', Arial, sans-serif; /*style d'écriture pour différent navigateur*/
	font-size: 1.3em; /*grandeur des lettres*/
	
}
.titre1
{
	color:black;
	font-size: 1.8em;
	font-family: Times New Roman, sans-sans-serif;
}
/*page 102,106,200*/
.titre_principal
{
	color:red;
	font-family: 'BallparkWeiner', 'Times New Roman', 'Trebuchet MS', Arial, sans-serif;
	font-size: 1.3em;
	font-weight:bold;
}
.titre_secondaire
{
	color:black;
	font-family: 'BallparkWeiner', 'Times New Roman', 'Trebuchet MS', Arial, sans-serif;
	font-size: 0.8em;
}
.jointure
{
	text-align:center;
	color:black;
	font-family: 'BallparkWeiner', 'Times New Roman', 'Trebuchet MS', Arial, sans-serif;
	font-size: 1.2em;
	font-weight:bold;
}
.table_mat, p
{
	font-size: 1.3em;
}
.retour
{
	text-align: center;
}
.photo_smiling img
{
	border-radius: 10px; /* crée un bord arrondi à la photo Smiling */
}
.photo_doc img
{
	border-radius: 10px; /* crée un bord arrondi à la photo */
	box-shadow: 4px 4px 4px #1c1a19;  /*crée une ombre sous la photo */		
}

.introduction
{
	color:red;  /*la balise <p class="introduction" est en rouge*/
	font-size: 1.1em;
}
body, p
{
	background-color: #ffffd6;
	font-family:'Trebuchet MS', Arial, sans-serif;
	font-size: 1.0em;
	color:black;
}
aside
{
	display: inline-block;
	vertical-align: top;
	margin-left: 60px;	
}
table
{
	border-collapse: collapse;
	margin: auto;
	text-align: center;
}
td, th /* mettre une bordure sur les td et les th */
{
	border: 1px solid black;
	padding-left: 5px;
	padding-right: 5px;
}
th
{
	color:red;
	font-weight:bold;
	font-size: 1.1em;
}
td
{
	font-size: 1em;
}
