﻿@charset "utf-8";
/* CSS Document */


/* --- STYLES DE BASE POUR LE TEXTE ET LES PRINCIPAUX ÉLÉMENTS --- */

/* Page */
html {
	font-size: 100%; /* Voir -> Note 1 à la fin de la feuille de styles. */
}
body {
	margin: 0;
	padding: 10px 20px; /* Note -> 2 */
	font-family: Arial, Helvetica, sans-serif; /* 3 */
	font-size: 0.8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	color: #FFF;
	background-color: #003;
	border-width: 1px;
}
#global {
	width: 800px;
	margin:auto;
	overflow: visible; /* -> 3 */
	border-right-width: 1px;
	border-left-width:1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #99F;
	border-left-color: #309;
	padding-left: 20px;

}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0; /* -> 6 */
}
h1, h2 {
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
	font-weight: normal;
	text-align: center;
	letter-spacing: normal;
}
h1 {
	font-size: 5em; /* -> 8 */
	color: #FF9;
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
	
}
h2 {
	font-size: 3em;
}
h3 {font-size: 1.2em;
	font-weight: normal;
}
h4 {
	font-size: 0.8em;
	text-align: right;
	vertical-align: bottom;
}


/* Listes */
ul, ol {
	margin: .75em 0 .75em 24px;
	padding: 0; /* -> 9 */
}
ul {
	list-style: square;
}
li {
	margin: 0;
	padding: 0;
}

/* Paragraphes */
p {
	margin: .75em 0;
}

/* Liens */
a {
	color: #000;
}
a:hover, a:focus {
	color:;
	color: #00F;
}
a img {
	border: none; /* -> 10 */
}

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

/* Mention de copyright */
#copyright {
	width: 250px;
	margin: 0;
	text-align: center;
	color: #003;
	position: relative;
	top: -20px;
	left: 240px;
	font-weight: bold;
	font-size: 1em;
}


