body {
    background-color: #ebfafe; /* Le fond de la page sera noir */
}

section h1, footer h1, nav a {
    font-family: Dayrom, serif;
    font-weight: normal;
    text-transform: uppercase;
}

/* Header */

header {
/*      background: url('images/separateur.png') repeat-x bottom;  */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
	align-content: space-around;
}

#titre_principal {
    display: flex;
    flex-direction: column;
}

#logo {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

#logo img {
    width: 100px;
    height: 100px;
}

header h1 {
    font-family: 'BallparkWeiner', serif;
    font-size: 2.5em;
    font-weight: normal;
    margin: 0 0 0 10px;
}

header h2 {
    font-family: Dayrom, serif;
    font-size: 1.1em;
    margin-top: 0px;
    font-weight: normal;
}


/* Navigation */

nav ul {
    list-style-type: none;
	margin: 0;
	padding-left: 0;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
    display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	align-content: flex-start;

}

nav li {
    margin-right: 1em;
}

nav li:last-child {
    margin-right: 0;
}

nav a {
    font-size: 1.3em;
    color: #181818;
    padding-bottom: 3px;
    text-decoration: none;
}

nav a:hover {
    color: #760001;
    border-bottom: 3px solid #760001;
}

/* Bannière */

#banniere_image {
    margin-top: 15px;
    height: 200px;
    border-radius: 5px;
    background: url('') no-repeat;
    position: relative;
    box-shadow: 0px 4px 4px #1c1a19;
    margin-bottom: 25px;
}

#banniere_description {
    position: absolute;
    bottom: 0;
    border-radius: 0px 0px 5px 5px;
    width: 99.5%;
    height: 33px;
    padding-top: 15px;
    padding-left: 4px;
    background-color: rgba(24,24,24,0.8);
    color: white;
    font-size: 0.8em;
}

.bouton_rouge {
    height: 25px;
    position: absolute;
    right: 5px;
    bottom: 5px;
     background: url('images/fond_degraderouge.png') repeat-x; 
    border: 1px solid #760001;
    border-radius: 5px;
    font-size: 1.2em;
    text-align: center;
    padding: 3px 8px 0px 8px;
    color: white;
    text-decoration: none;
}

.bouton_rouge img {
    border: 0;
}

/* Corps */

section {
    display: flex;
    margin-bottom: 20px;
}

article, aside {
    text-align: justify;
}

article {
    margin-right: 20px;
    flex: 3;
}

.ico_categorie {
    vertical-align: middle;
    margin-right: 8px;
}

article p {
    font-size: 1em;
	text-align: justify;
	text-indent: 3em;
}

article.guide figure img {
    margin-left: 2em;
}
article.guide h3 {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}
article.guide h5 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
ul.nostyle, ul.nostyle li {
    list-style-type: none;
}
ul.nostyle li {
    margin-bottom: 10px;
}

article.guide li img, article.guide p img {
    margin-right: 0.5em;
    margin-top: 0.5em;
}
article.guide ul.descr li {
    margin-top : 1em;
    margin-bottom : 1em;
}

article.guide figure {
    float:right;
}
br.clear {
    clear: both;
}
p.noindent {
	text-indent: 0;
}
article.guide h4 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
   	border-top: 1px solid black;
   	border-bottom: 1px solid black;
    text-indent: 3em;
}

#images {
/* 	text-align: center; */
	display: flex;
    flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
	align-items: center;
}

#images img {
	margin : 1em;
	box-shadow: 6px 6px 6px black;
}
figure {
    display: table;
    margin: 0;
}

figcaption {
    font-size: 0.9em;
    display: table-caption;
    caption-side: bottom;
    text-align: center;
    margin-bottom: 0.5em;
}

aside {
    flex: 1.2;
    position: relative;
    background-color: #706b64;
    box-shadow: 0px 2px 5px #1c1a19;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 0.9em;
}

aside img {
    margin-right: 5px;
}

/* Footer */

footer {
    display: flex;
     background:  url('images/ico_top.png') no-repeat top center, url('images/separateur.png') repeat-x top, url('images/ombre.png') repeat-x top; 
    padding-top: 25px;
}

footer h1 {
    font-size: 1.1em;
}

footer ul {
    list-style: none;
	display: flex;
	padding-left: 0;
	width: 100;
    font-size: 0.8em;
}

footer li {
    margin: 1em;
}

footer a {
    text-decoration: none;
    color: #760001;
}