/* Page globale */
html, body
{
	height : 100%;						/* Permet d'utiliser toute la hauteur du bloc père */
	width : 100%;						/* Permet d'utiliser toute la largeur du bloc père */
	
	margin : 0px;						/* Annule les marges extérieurs */
	padding : 0px;						/* Annule les marges intérieurs */
	
	background-color : white;			/* Couleur de fond du site */
	
						/* Applique une couleur de texte noir à tout le site */
	
	cursor : default;
	font-family: Arial, Verdana, serif;
	
	position:absolute;
	top:0px;
	
	overflow:hidden;	/*Gitan*/
}



/* Liens */
a	{	color: white;	text-decoration: none;	}
a:hover	{	text-decoration: none;	}



/* Titres */
h1
{
	color : white;
	font-size : 24px;
	text-align : center;
	margin : 0;
}

h2
{
	color : white;
	font-size : 24px;
	text-align : center;
	margin : 0;
	font-weight : lighter;
	width : 100%;
	text-transform : uppercase;
}

h3
{
	color : black;
	font-size : 13px;
	text-align : center;
	margin : 0;
}

h4
{
	color : white;
	font-size : 16px;
	text-align : center;
	margin : 0;
	width : 100%;
	font-weight : normal;
	text-transform: uppercase;
}



/* Textes */
p, .diagramText
{
	color : black;
	font-size : 8px;
	text-align : justify;
}






