.site-header {
	height: 150px;
}

li.home-icon.front_page_on {
    background-color: #47C4BE!important;
}

.dropdown-menu > li > a {
    font-size:1.2em;
}

/*--------------------------------------------------------------
Diaporama3.0 partenaires slides
--------------------------------------------------------------*/

#slideshow {
	position: relative;
	width: 250px;
	height: 220px;
	padding: 5px;
	margin: 0 auto 2em;
	background: #FFF;
}
 

#slideshow:before,
#slideshow:after {
	position: absolute;
	bottom:16px;
	z-index: -10;
	width: 50%;
	height: 20px;
	content: " ";
	background: rgba(0,0,0,0.1);
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0,0,0, 0.4), 0 20px 10px rgba(0,0,0, 0.7);
}
#slideshow:before {
	left:0;
	transform: rotate(-6deg);
}
#slideshow:after {
	right:0;
	transform: rotate(6deg);
}

/* gestion des dimensions et débordement du conteneur */
#slideshow .container {
	position:relative;
	width: 250px;
	height: 220px;
	overflow: hidden;
}
	
/* petit espace gris pour la timeline */
#slideshow .container:after {
	position:absolute;
	bottom: 0; left:0;
	content: " ";
	width: 100%;
	height: 1px;
	background: #999;
}
/* le conteneur des slides
   en largeur fait 100% x le nombre de slides */
#slideshow .slider {
	position: absolute;
	left:0; top:0;
	width: 600%;
	height: 220px;
}

/* annulation des marges sur figure */
#slideshow figure {
	position:relative;
	display:inline-block;
	padding:0; margin:0;
}
/* petit effet stylé de vignette sur les images */
#slideshow figure:after {
	position: absolute;
	display:block;
	content: " ";
	top:0; left:0;
	width: 100%; height: 100%;
	box-shadow: 0 0 65px rgba(0,0,0, 0.5) inset;
}

/* styles des légendes */
#slideshow figcaption {
	position:absolute;
	left:0; right:0; bottom: 5px;
	padding: 10px;
	margin:0;
	border-top: 1px solid rgb(225,225,225);
	text-align:center;
	letter-spacing: 0.05em;
	word-spacing: 0.05em;
	font-family: Georgia, Times, serif;
	background: #fff;
	background: rgba(255,255,255,0.7);
	color: #555;
	text-shadow: +1px +1px 0 rgba(255,255,255,0.3);
}

/* fonction d'animation */
@keyframes slider {
	0%, 10%, 100%	{ left: 0 }
	15%, 25%		{ left: -100% }
	30%, 40%		{ left: -200% }
	45%, 55%		{ left: -300% }
	60%, 70%		{ left: -400% }
	75%, 85%		{ left: -500% }
}

/* complément du sélecteur : */
#slideshow .slider {
	/* ... avec la propriété animation */
	animation: slider 50s infinite;
}

/* complément du sélecteur 2 : */
#slideshow .slider {
	/* ... avec la propriété animation */
	animation: slider 50s infinite;
}

#timeline {
	position: absolute;
	background: #999;
	bottom: 5px;
	left: 5px;
	height: 1px;
	background: rgb(214,98,13);
	background: rgba(214,98,13,.8);
	width: 0;
	/* fonction d'animation */
	animation: timeliner 50s infinite;
}

@keyframes timeliner {
	0%, 15%, 30%, 45%, 60%, 75%,  100% 	{ width: 0;		}
	10%, 25%, 40%, 55%, 70%, 85%		{ width: 250px;	}
}

@keyframes figcaptionner {
	0%, 15%, 30%, 45%, 60%, 75%,  100%					{ bottom: -50px;	}
	5%, 10%, 25%, 40%, 55%, 70%, 85%		{ bottom: 5px;		}
}

/* ajouter à l'élément : */
#slideshow figcaption {
	/* ... la propriété animation */
	animation: figcaptionner 50s infinite;

}

/*--------------------------------------------------------------
Journal 1
--------------------------------------------------------------*/


#slider
{
    border : none;
    height: 350px;
    width: 100%;
    position: relative;
    border : solid 1px black;
}
 
.slides
{
 
    position: absolute;
    width: 100%;
    height: 100%;
 
}
 
 
.slides img
{
 
    width: 100%;
    height: 100%;
    z-index: -1;
 
}
 
/* CSS des boutons de navigations : */
 
#i1, #i2
{
    display: none;
}
 
 
.pre, .nxt
{
    width: 2%;
    height: 4%;
    border-radius: 50%;
    position: absolute;
    background-color: white;
    z-index: 99;
    cursor: pointer;
}
 
.pre
{
    left: 0;
    top: 150px;
}
.nxt
{
    right: 0;
    top: 150px;
}
 
 
 
#i1:checked ~ #one,
#i2:checked ~ #two
{
    z-index: 9;
}