/* CSS Document */

/*

Structurer le document de la façon suivante : :

LAYOUT [ width, height, position, float, padding, margin ]

STYLE [ background-, border-, text-, vertical-align, list-style- ]

TYPO [ font-, color ]

*/

/* --- STYLES DE BASE --- */

/* Page */
html {
    font-size: 100%; /* Évite un bug d'IE 6-7. (1) */
}
body {
    margin: 0;
    padding: 0;
	
	background: white url(../images/generic/body-bg.jpg) center top no-repeat;
	
    font-family: Arial, Helvetica, sans-serif;
    font-size: 62.5%;
    line-height: normal;
    color: black;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    margin: 1em 0 .5em 0;
	
    line-height: 1.2;
    font-weight: bold;
    font-style: normal;
}
h1 {
	margin: 10px auto;

    font-size: 2em;	
	color:#0a527b;
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1em;
}

/* Listes */
ul, ol {
    margin: 0 0 0 20px;
    padding: 0;
	
	list-style-type:none;
}

/* Paragraphes */
p {
    margin: .75em 0; /* Marges plus faibles que par défaut. (7) */
}
address {
    margin: .75em 0;
	
    font-style: normal;
}

/* Liens */
a {
    text-decoration: underline;
}

a img {
    border: none;
}

/* Divers éléments de type en-ligne (8) */
em {
    font-style: italic;
}
strong {
    font-weight: bold;
}

/* Formulaires */
form, fieldset {
    margin: 0;
    padding: 0;
	
    border: none;
}
input, button, select {
    vertical-align: middle;
}