﻿/* Eléments principaux de la page */
body
{
	background-color: rgba(58,132,205,1);
	font-family: Calibri, Arial, sans-serif;
	color: #181818;
}

#bloc_page
{
	width: 80%;
	margin: auto;
}

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

#intro
{
	background: url('../images/fond.jpg') fixed no-repeat center;
	background-color: rgba(58,132,205,1);
	}
/* Header */

header
{
	background: url('../images/separateur.png')repeat-x bottom;
}

#titre
{
	display: inline-block;
	width: 100%;
	vertical-align: bottom;
	/*border: 1px solid blue;*/
}

#logo
{
	display: inline-block;
	height: 80px;
	margin: 0px;
	/*border: 1px solid red;*/
}

header h1
{
	font-family: Calibri, Arial, serif; 
	font-size: 2em;
	font-weight: normal;
	display: inline-block;
	width: 80%;
	vertical-align: top;
	text-align: left;
	margin-top: 20px;
	padding-left: 20px;
	/*border: 1px solid green;*/
}



header h2
{
	font-family: Calibri, arial, serif;
	font-size: 1.1em;
	display: inline-block;
	width: 30%;
	margin: 0px;
	font-weight: normal;
	/*border: 1px solid black;*/
}

/* Navigation */

nav
{
	display: inline-block;
	width: 69%;
	margin: 0px;
	text-align: right;
	/*border: 1px solid black;*/
}

nav ul
{
	list-style-type: none;
	margin: 0px;
	/*border: 1px solid black;*/
}

nav li
{
	display: inline-block;
	margin-right: 15px;
	border-radius: 5px 5px 0px 0px;
    padding: 5px 5px 10px 5px;
    background-color: rgb(10,10,125); /* Pour les anciens navigateurs */
    background-color: rgba(10,10,125,0.6);
	/*border: 1px solid red;*/
}

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

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

nav li:hover
{
    background-color: rgb(172,222,152); /* Pour les anciens navigateurs */
    background-color: rgba(172,222,152,0.6);
	box-shadow: 2px 2px 2px black inset;
}

/* Bannière */

#banniere_image
{
	margin: 15px 0 25px 0;
	height: 100px;
	border-radius: 5px;
	background: url('../images/ban.jpg') no-repeat;
	position: relative;
	box-shadow: 0px 4px 4px #1c1a19;
}

#banniere_description
{
    margin: 0px;
	padding: 0px 0px 5px 5px;
	position: absolute;
    bottom: 0px;
    border-radius: 0px 0px 5px 5px;
    width: 99.5%;
	height: 50px;
    /*background-color: rgb(24,24,24); /* Pour les anciens navigateurs */
    /*background-color: rgba(24,24,24,0.6);*/
    color: red;
    font-size: 25px;
}

#agenda_image
{
	margin-top: 15px;
	height: 100px;
	border-radius: 5px;
	background: url('../images/Agenda.png') no-repeat;
	position: relative;
	box-shadow: 0px 4px 4px #1c1a19;
	margin-bottom: 25px;
}

/*#agenda_description
{
    position: absolute;
    bottom: 0px;
    border-radius: 0px 0px 5px 5px;
    width: 99.5%;
    height: 33px;
    padding-bottom: 20px;
    padding-left: 5px;
    background-color: rgb(24,24,24); /* Pour les anciens navigateurs 
    background-color: rgba(24,24,24,0.6);
    color: white;
    font-size: 1em;
}*/

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

/*#reunion_description
{
    position: absolute;
    bottom: 0px;
    border-radius: 0px 0px 5px 5px;
    width: 99.5%;
    height: 33px;
    padding-bottom: 20px;
    padding-left: 5px;
    background-color: rgb(24,24,24); /* Pour les anciens navigateurs 
    background-color: rgba(24,24,24,0.6);
    color: white;
    font-size: 1em;
}*/

#membres_image
{
	margin-top: 15px;
	height: 100px;
	border-radius: 5px;
	background: url('../images/Membres.png') no-repeat;
	position: relative;
	box-shadow: 0px 4px 4px #1c1a19;
	margin-bottom: 25px;
}

/*#membres_description
{
    position: absolute;
    bottom: 0px;
    border-radius: 0px 0px 5px 5px;
    width: 99.5%;
    height: 33px;
    padding-bottom: 20px;
    padding-left: 5px;
    background-color: rgb(24,24,24); /* Pour les anciens navigateurs 
    background-color: rgba(24,24,24,0.6);
    color: white;
    font-size: 1em;
}*/

/* Corps */

article, aside
{
    display: inline-block;
    vertical-align: top;
    text-align: justify;
}

article
{
    margin-right: 15px;
	width: 99.5%;
	padding: 0px 0px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    background-color: rgb(255,255,255); /* Pour les anciens navigateurs */
    background-color: rgba(255,255,255,0.5);
}

article h1
{
    font-size: 1.2em;
	text-decoration: underline;
}

article h2
{
    font-size: 1.1em;
	text-decoration: none;
}

article p
{
    font-size: 0.99em;
}
section a
{
	font-size: 0.99em;
	color: #181818;
	padding-bottom: 3px;
	text-decoration: none;
}

section a:hover
{
	color: #0a0a7d;
	border-bottom: 1px solid #0a0a7d;
}
/* Footer */

footer
{
    background:  url('../images/separateur.png') repeat-x top;
    padding-top: 5px;
	position: relative;
}

footer p, footer strong
{
    font-size: 0.8em;
	display: inline-block;
}

footer strong
{
	color: green;
	position: absolute;
	right: 5px;
	bottom: 5px;
	
}

footer h1
{
    font-size: 1.1em;
	text-align: center;
	display: inline-block;
}
