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

* {
	margin : 0;
	padding : 0;
}
/* Page */ 
html {
	font-size: 100%; /* Évite un bug d'IE 6-7. (1) */
}
body {
	
	margin: 0;
	padding: 0;
	font: 0.625em/1em Arial, Helvetica, FreeSans, sans-serif;
	line-height: 1.4em; /* À adapter au design. (4) */
	color: white;
	background: #000 url(../images/body_bg.jpg) no-repeat top center;
}
/* Titres */ 
h1, h2, h3, h4, h5, h6 {
	margin: 1em; /* Rapproche le titre du texte. (5) */
	line-height: 1.4em;
	font-weight: normal; /* Valeur par défaut. (6) */
	font-style: normal;
	color:#ffff00;
}
h1 {
	font-size: 2.8em;
	margin-bottom:0;
	margin-left:.75em;
}
h2 {
	font-size: 2.1em;
}
h3 {
	margin-top:0;
	margin-bottom:0;
	margin-left:1.25em;
	font-size: 1.5em;
	font-weight:bold;
}
h4 {
	margin-top:0;
	margin-bottom:0;
	margin-left:1.25em;
	font-size: 1.5em;
	font-weight:bold;
}
/* Listes */ 
ul, ol {
	margin: .5em 0 .75em 32px;
	padding: 0;
}
li {
	font-size:1.3em;
	margin-bottom: 0.4em;
}
/* Paragraphes */ 
p {
	font-size: 1.4em;
	margin: .75em 1.5em; /* Marges plus faibles que par défaut. (7) */
	line-height: 1.25em;
}
address {
	margin: .75em 0;
	font-style: normal;
}
/* Liens */ 
a {
	text-decoration: underline;
}
a:link {
	color: #ffff00;
}
a:visited {
	color: #cccc00;
}
a:hover, a:focus, a:active {
	color: #cccc00;
}
/* Pas de bordure pointillée ou halo lors du clic sur un lien */ 
a:active {
	outline: none;
}
/* Pas de bordure autour des images dans les liens */ 
a img {
	border: none;
}

/* Divers éléments de type en-ligne (8) */ 

hr {
	border: 0;
	border-bottom: 1px solid #412e1e;
	margin: 1.5em auto;
}

em {
	font-style: italic;
}
strong {
	font-weight: bold;
	color:#FFFF00;
}
/* Formulaires */ 
form, fieldset {
	margin: 0;
	padding: 0;
	border: none;
}
input, button, select {
	vertical-align: middle; /* Solution pb. d'alignement. (9) */
}
/* --- STYLES DE BASE SUPPLÉMENTAIRES --- */ 
 
/* Met en évidence les abréviations (ayant un attribut title) */ 
abbr[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
/* Met en évidence les citations */ 
blockquote {
	margin: .75em 0 .75em 2em;
	padding: 0 0 0 1em;
	border-left: solid 2px #ddd;
}
q, cite {
	font-style: italic;
}
q cite, q q {
	font-style: normal
}
/* Supprime les guillemets automatiques (citations courtes) */ 
q {
	quotes: none;
}
q:before, q:after {
	content: ""; /* Nécessaire pour Safari/Chrome */
}
/* Rapproche les paragraphes dans les listes et citations */ 
blockquote p, li p {
	margin: .5em 0;
}
/* Styles de base pour les listes de définition */ 
dl {
	margin: .75em 0;
}
dt {
	margin: .75em 0 0 0;
	font-weight: bold;
}
dd {
	margin: .25em 0 .25em 32px;
}
/* Mise en forme simple pour les tableaux */ 
table {
	margin: 0;
	border: 1px solid gray; /* Pas de bordure = "none". */
	border-collapse: collapse; /* Valeur par défaut: "separate". */
	border-spacing: 0;
}
table td, table th {
	padding: 4px; /* Pas de retrait autour du texte = "0". */
	border: 1px solid #ccc; /* Pas de bordure = "none". */
	vertical-align: top; /* Valeur par défaut: "middle" */
}
/* Conteneurs sémantiques de HTML 5 */ 
article, aside, dialog, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

