/* ==============================================
   FEUILLE DE STYLES style.CSS
   ============================================== */

html {
	font-size: 100%; 
}

body {
	margin: 0;
	padding: 10px 20px; 
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif; /* 3 */
	font-size: .8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
}

/* 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; /* -> 7 */
}
h1 {
	font-size: 4em; /* -> 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 {
	margin: .5em 0;
}

strong {
	font-weight: bold;
}

#copyright {
	margin: 20px 0 5px 0;
	text-align: right;
	font-size: .8em;
}

/* --- COULEURS ------------------------------------------ Couleurs ------- */
body {
	color: white; 
	background: black; 
	background-size: 100% 960 ; 
}

a {
	color: skyblue;
	text-decoration: none;
}

a:hover, a:focus {
	color: magenta;
}

/* En-tête  --- COULEURS --*/
#entete {
	background: black; 
	color: lime;
}
#entete .sous-titre {
	color: khaki;
}
/* Navigation --- COULEURS --*/
#navigation {
	background:  grey;
}
#navigation a {
	/*color: tomato;*/
	color:white;
}
#navigation a:hover, #navigation a:focus {
	background: black;
}

/* Contenu principal --- COULEURS --*/
#contenu {
	color: khaki; 
	background: black; 
}

#contenu h2{
	color: lightgreen;

}

#contenu a {
	color: pink;
	text-decoration: none;
}
#contenu a:hover, #contenu a:focus {
	color: magenta;
	text-decoration: underline;
}
#contenu strong {
	color: white;
}

/* Pied de page --- COULEURS --*/
#pied {
	color: moccasin;
}
#copyright {
	color: plum; 
}
/* --- POSITIONNEMENT ------------------------------- */

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

/* Menu de navigation */
#navigation {
	padding: 12px 15px ;

}
#navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#navigation li {
	display: inline; /* -> 3 */
}
#navigation a {
	padding: 6px;
	line-height: 1.5;
	font-size: 1.2em;
	text-decoration: none;
}

/* Contenu */
#contenu {
	padding: 10px 20px;
}
#contenu > :first-child {
	margin-top: 10px;
}
#contenu p, #contenu li {
	line-height: 1.5;
}

/* Pied de page */
#pied {
	padding: 15px 20px;
	font-size: .85em;
}
#pied p {
	margin: .5em 0;
}
#pied #copyright {
	float: right;
	margin: .5em 0 30px 10%;
	font-size: 1em;
}
#pied #copyrightSeul{
	float: left;
	margin: .5em 0 30px 10%;
	font-size: 1em;
	color: plum;
	text-decoration: none;
}
#copyright a {
	color: red;
	text-decoration: none;
}
#copyright a:hover, #copyright a:focus {
	text-decoration: underline;
	color: magenta;
}


