/* définition des propriétés générales de body */
body
{
	
	width:90%;
	margin-left:auto;
	margin-right:auto;
	font-family:Arial, "Times New Roman", Times, sans-serif;
	background-color: rgb(98%, 93%, 86%);
	
}

/* définition de h1 dans le cas général */

h1
{
	font-size: 3.5ex;
}

h3
{
	font-size: 2ex;
}

a
{
	color: rgb(176,57,59);
}


/* définition du bloc coin_gauche (rq. : coin_gauche n'est pas une classe, il est utilisé une seule fois)*/
#coin_hautGauche
{
	float: left;
	margin-top:10px;
	width:170px;
	height:200px;
	
}




#menu
{
	width:170px;
	float: left;
	clear: left;
	font-style: italic;
}


/* définition du bloc corps qui est une classe */
.corps
{
	text-align:justify;
	margin-left:20%;
	padding-top:10px;
	border-color:rgb(60%, 30%, 17%);
}



.partie
{

	padding: 25px;
	margin-bottom:3px;
	background-color: rgb(89%, 81%, 81%); 
	color:	black;
}

/* définition de h2 et a, lorsqu'ils s'intègrent dans un bloc de classe "partie" */
.partie h2, a
{
	
	color: rgb(0%, 0%, 85%); 
	font-variant: small-caps ;
	font-size: 2.5ex;
}

.partie p:first-letter
{
	font-style: italic;
	font-size: 150%; 
}


#pied_page
{
	clear:both; /* pied_page ne tolère aucun flottant, ni à gauche, ni à droite*/
	padding-top: 50px;
	

}







