@charset "UTF-8";
/* CSS Document */
/* 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: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif; /* 3 */
	font-size: .8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	color: black;
	background: white;
}

/* Titres */
h1, h2 {
	margin: 1em 0 .5em 0; /* -> 6 */
}
h1, h2 {
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
	font-weight: normal; /* -> 7 */
	color: #1F8BCC;
}
h1 {
	font-size: 3em; /* -> 8 */
	font-style: italic;
}
h2 {font-size: 1.8em;}
h3 {
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
	font-weight: normal; /* -> 7 */
	color: #1F8BCC;
	font-size: 1,7em;
}


/* 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;
}



/* Liens */
a {
	color: #58585A;
	text-decoration: underline;
}
a:hover, a:focus {
	color:#333333;
}
a img {
	border: none; /* -> 10 */
}

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

body {
	color: #000000;
	background: #FFFFFF;
}
a {
	color: #3B5998;
	text-decoration: none;
}
a:hover, a:focus {
	color: #333333;
}
strong {
	color: #A1B55D;
}

/* Conteneur central */
#centre {
	background: url(img/10-colonnes.png) repeat-y;
}

/* Navigation */
#navigation {
	background: #00B4FF;
}
#navigation a {
	color: #FF6533;
}
#navigation a:hover, #navigation a:focus {
	background: #000000;
}

/* Contenu principal */

#principal a {
	color: #58585A;
}
#principal a:hover, #principal a:focus {
	color: #333333;
}
#principal strong {
	color: #181A12;
}

#secondaire {
	color: #000000;
}

/* --- POSITIONNEMENT --- */

/* Page */
body {
	padding: 20px 5px;
}
#global {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}


/* Bloc central */
#centre {
	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 {
	float: left;
	width: 300px;
	height: 500px;
	padding: 10px 20px;
	margin-top : 150px;
}
#principal > :first-child {
	margin-top: 10px;
}
#principal p, #principal li {
	line-height: 1.5;
}

/* Contenu secondaire */
#secondaire {
	margin-left: 900px;
	margin-right: 20px;
	margin-top : 170px;
	padding-left: 5px;
	
	
}


