/*PAGE CSS*/

body /*Configuration du corps des pages du site*/
{
	width: 90%;
	height: 100%;
	
	margin-left: 2%;
	margin-right: 5%;
	
	background-image: url("fond/eclairede.jpg");
	font-family: comic sans ms;
	color: #FFFFFF;
	font-size: 15px;
}

a /*Configuration des liens utilisés sur le site*/
{
	color: #4664F5;
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
	text-decoration: underline;
}

a:hover /*Configuration de l'événement survol des liens par la souris*/
{
	color: #FFFF00;
	font-size: 17;
}

h1 /*Configuration des balises html <h1>*/
{
 color: #FFFFFF;
}

#titre /*Configuration de l'id titre comprenant le nom de l'entreprise*/
{
	width: 100%;
	height: 15%;
	
	position: absolute;
	top: 2%;
	
	color: #FFFF00;
	text-align: center;
}

#menu /*Configuration de l'id menu comprenant le menu dynamique*/
{
	width: 20%;
	
	position: absolute;
	top: 23%;
	
	color: #FFFF00;
	font-size: 17;
	font-weight: bold;
}

#page /*Configuration de l'id page comprenant le contenu des pages*/
{
	width: 81%;
	height: 68%;
	
	position: absolute;
	top: 23%;
	left: 24%;
	
	overflow: auto;
}

#compteur /*Configuration de l'id compteur comprenant le compteur de visite*/
{
	width: 100%;
	
	position: absolute;
	top: 92%;
	
	text-align: center;
}

#pied /*Configuration de l'id pied comprenant les adresse mail des webmasters*/
{
	width: 100%;
	
	position: absolute;
	top: 92%;
	
	text-align: right;
}

table, td /*Configuration des tableaux et des cellules des tableaux*/
{
	border-collapse: collapse;
}

ul
{
	list-style-type: none;
}