﻿/* Fond de page */

body
{
background-color : orange;
z-index : 1;
font-family : times new roman;
}


/* Block de la page */

#block_page
{
background-color : rgb(0,128,54);
z-index : 2;
width : 1000px;
margin : auto;
}


/* Bannière */

header
{
background : url('images/banniere.png') no-repeat;
background-position : center;
height : 170px;
margin-bottom: 15px;
margin-top : 10px;
}


/* Menu */

.repere_menu
{
text-decoration : underline;
font-size : 1.3em;
}

nav a
{
display : inline-block;
height : 100%;
width : 153px;
margin-left : 0px;
margin-bottom : 10px;

font-size : large;
text-align : center;
color : orange;
text-decoration : none;

z-index : 2;
}


/* Section */

section
{
padding-left : 60px;
padding-right : 60px;
text-indent : 40px;
text-align: justify;
}

section h1
{
font-size : 1.3em;
color : orange;
}

section p a
{
text-decoration : none;
color : orange;
}

/* Pied de page */

footer p
{
display : inline-block;
margin-top: 30px;
width : 33%;
color : white;
text-align : center;
}

footer a
{
color : white;
}

footer .lien_messagerie
{
text-decoration : none;
}

/* Correctifs pour les vieilles versions d'Internet Explorer */

/* Pour activer un positionnement type inline-block sur les vieilles versions d'IE */

.old_ie nav a, .old_ie footer p
{
 display: inline;
 zoom: 1;
}

