/*
CE QU'IL FAUT RAJOUTER AU CODE HTML DANS HEAD :
<link rel="stylesheet" type="text/css" href="lesstyles.css">
ou
<style type="text/css">
...
</style>

LES BALISES :
body : général
h1 : titre de niveau 1
h2 : titre de niveau 2
p : paragraphe
table : tableau
tr : ligne du tableau
td : colonne du tableau
a:link : lien
a:visited : lien visité
a:hover : curseur sur le lien
a:active : lien "en train d'être cliqué"

MISE EN FORME DE LA POLICE :
"font-family:"	nom de la police
"font-size:"			taille de police
"font-style:"			style de police (normal ou italic)
"font-weight:"			étirement de police (normal ou bold)

MISE EN FORME DU TEXTE :
"color:#"				couleur du texte (6 chiffres)
000000 noir
000099 bleu
3399CC bleu pastel
EEEEEE gris clair
FFFFFF blanc
"text-decoration:"		décoration du texte (à supprimer ou underline pour texte souligné)

PARAGRAPHE :
"text-indent:"			décalage
"text-align:"			alignement du texte (left, center, right ou justify)
"line-height:"			interligne

POUR DES CHANGEMENTS PONCTUELS, ON UTILISE LA BALISE <div> POUR UN PARAGRAPHE ET <span> POUR UN BOUTE DE TEXTE
*/
body {
background-color: #EEEEEE;
color: #000099;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
}
h1 {
font-family: verdana,arial,sans-serif;
font-size: 1.8em;
color: #000099;
font-style: normal;
font-weight: normal;
text-align: center;
}
h2 {
font-family: verdana,arial,sans-serif;
font-size: 1.5em;
color: #000099;
font-style: normal;
font-weight: normal;
text-align: left;
text-decoration: underline;
}
h3 {
font-family: verdana,arial,sans-serif;
font-size: 1.3em;
color: #000099;
font-style: normal;
font-weight: normal;
text-align: left;
line-height: 9mm;
}
p {
font-family: verdana,arial,sans-serif;
font-size: 0.9em;
line-height: 1.4em;
color: #000000;
font-style: normal;
text-align: justify;
white-space: normal;
margin-left: 0;
margin-right: 0;
}
a:link {
font-family: verdana,arial,sans-serif;
font-size: 0.9em;
color: #000099;
font-style: normal;
text-align: left;
text-decoration: none;
}
a:visited {
font-family: verdana,arial,sans-serif;
font-size: 0.9em;
color: #000099;
font-style: normal;
text-align: left;
text-decoration: none;
}
a:hover {
font-family: verdana,arial,sans-serif;
font-size: 0.9em;
color: #000099;
font-style: normal;
text-align: left;
text-decoration: underline;
}
a:active {
font-family: verdana,arial,sans-serif;
font-size: 0.9em;
color: #000099;
font-style: normal;
text-align: left;
text-decoration: underline;
}
a:link.index {
color: #FFFFFF;
font-weight: bold;
}
a:visited.index {
color: #FFFFFF;
font-weight: bold;
}
a:hover.index {
color: #FFFFFF;
font-weight: bold;
}
a:active.index {
color: #FFFFFF;
font-weight: bold;
}
table {
}
td {
font-family: verdana,arial,sans-serif;
font-size: 0.8em;
color: #000000;
font-style: normal;
font-weight: normal;
text-align: justify;
}
td.index {
color: #FFFFFF;
}
p.banniere {
background-image:url("images/site_haut.gif");
line-height: 150px;
}
p.table_haut {
background-image:url("images/table_haut.gif");
line-height: 16px;
}
p.table_bas {
background-image:url("images/table_bas.gif");
line-height: 16px;
}
p.page_bas {
background-image:url("images/page_bas.gif");
line-height: 16px;
}
marquee {
font-family: arial,sans-serif;
font-size: 1.1em;
font-weight: bold;
color: #000099;
}
span.u {
text-decoration: underline;
}
