/* --- 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: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: .8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	color: black;
	background: white;
}

/* Titres */
h1, h2, h3, h4, h5, h6
{
	margin: 1em 0 .5em 0; /* -> 6 */
}
h1, h2 
{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal; /* -> 7 */
}
h1 
{
	font-size: 3em; /* -> 8 */
	font-style: italic;
}
h2 
{font-size: 1.8em;}
h3 
{font-size: 1.2em;}
h4 
{font-size: 1em;}

/* 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;
}
li p, blockquote p {
	margin: .5em 0;
}

/* Citations */
blockquote, q {
	font-size: 1.1em;
	font-style: italic;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
blockquote {
	margin: .75em 0 .75em 24px;
}
cite {
	font-style: italic;
}

/* Liens */
a {
	color: mediumblue;
	text-decoration: underline;
}
a:hover, a:focus {
	color: crimson;
}
a img {
	border: none; /* -> 10 */
}

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

/* -------------------------Général -------------------------------------------- */
body 
{
	color: #F0E39E;
	background: #2C2F22;
}
a 
{
	color: #FF6533;
}
a:hover, a:focus 
{
	color: #FF4C00;
}
strong 
{
	color: #A1B55D;
}

/* ---------------------------Conteneur central ------------------------------------*/
#centre 
{
	background: url(images/colgauche.png) repeat-y left top;
}
#centre-bis 
{
	background: url(images/coldroite.png) repeat-y right top;
}

/* ---------------------------Navigation --------------------------------------------*/
#navigation 
{
	background: #181A12;
}
#navigation a 
{
	color: #FF6533;
}
#navigation a:hover, #navigation a:focus 
{
	background: #000000;
}

/* ---------------------------Contenu principal --------------------------------------*/
#principal 
{
	color: #000033;
	background: #FFCC00;
}
#principal a 
{
	color: #CC3300;
}
#principal a:hover, #principal a:focus 
{
	color: #6E5122;
}
#principal strong 
{
	color: #181A12;
}

/* -----------------------------Contenu secondaire -------------------------------------*/
#secondaire 
{
	background: #181A12;
}
#secondaire h2
{
	color: #90b55d;
}
#secondaire h3
{
	color: #FFFFFF;
}
#secondaire p
{
	font-style: italic;
}

/* **********************************************************************************/
/*                                  POSITIONNEMENT */
/* **********************************************************************************/



/* =============================Page ================================================*/
body 
{
	padding: 20px 5px;
}
#global 
{
	width: 90%;
	max-width: 90em;
	min-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* =============================En-tête ==============================================*/
#entete 
{
	padding: 20px 0;
}
#entete h1 
{
	margin: 0;
}
#entete h1 img 
{
	float: left;
	margin: 7px 20px 10px 0;
}
#entete .sous-titre 
{
	margin: 4px 0 15px 0;
}

/* ============================Bloc central ==============================================*/
#centre-bis 
{
	width: 100%;
	overflow: hidden;
}

/* ===============================Menu de navigation ======================================*/
#navigation 
{
	float: left;
	width: 180px;
}
#navigation ul 
{
	margin: 0;
	padding: 20px 10px 20px 10px;
	list-style: none;
}
#navigation a 
{
	display: block;
	height: 1%;
	padding: 6px 10px 6px 10px;
	line-height: 1.5;
	font-size: .9em;
	text-decoration: none;
}

/* ====================================Contenu principal ===========================*/
#principal 
{
	margin-left: 200px;
	margin-right: 260px;
	padding: 10px 20px;
}
#principal > :first-child 
{
	margin-top: 10px;
}
#principal p, #principal li 
{
	line-height: 1.5;
}

/* ==================================Contenu secondaire ================================*/
#secondaire 
{
	float: right;
	width: 200px;
	padding: 12px 20px;
}

/* =====================================Pied de page =======================================*/
#pied 
{
	margin: 0;
	padding: 15px 260px 10px 200px;
	font-size: .85em;
}

/* ====================================Mention de copyright ================================*/
#copyright 
{
	margin: 8px 0 0 0;
	font-size: 1em;
	text-align: left;
}
