/* #########################################################
* COVER
* ########################################################## */

.cover {
	position: relative;
	padding-bottom: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #222;
	margin: 0 auto;
}


.cover:after

/* Dégradé sombre haut */
	{
	content: " ";
	z-index: 2;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+29&0.5+0,0+29 */
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 29%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 29%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 29%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5e000000', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
}

.cover .titrage {
	display: inline-block;
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 0;
	right: 0;

	transform: translateY(-40%);
	opacity: 1;
	-webkit-transition: opacity 0.25s ease-in-out;
	-moz-transition: opacity 0.25s ease-in-out;
	-ms-transition: opacity 0.25s ease-in-out;
	-o-transition: opacity 0.25s ease-in-out;
}

.cover:hover .titrage {
	opacity: 0.01;
	-webkit-transition: opacity 0.25s ease-in-out;
	-moz-transition: opacity 0.25s ease-in-out;
	-ms-transition: opacity 0.25s ease-in-out;
	-o-transition: opacity 0.25s ease-in-out;
}


.cover .titrage h1,
.cover .titrage h2 {
	max-width: 80%;
	line-height: 1.3em;
	font-size: 44px;
}

.cover .titrage h2 {
	font-size: 24px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.cover .titrage h1 span,
.cover .titrage h2 a {
	background-color: #FFF;
	display: inline;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0 0.25em 0.125em 0.25em;
}


.cover .titrage p.meta {
	text-align: center;
	margin: 0 auto;
}

.cover .titrage p.meta span {
	margin-right: 5px;
	font-size: 14px;
	color: #FFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cover .titrage p.meta span.statut {
	display: inline-block;
	padding: 0 0.5em;
	background: #FFF;
	color: #333;
	text-transform: uppercase;
	font-size: 9px;
	line-height: 16px;
	text-shadow: none;
	vertical-align: top;
}



.credits {
	position: absolute;
	bottom: 15px;
	right: 15px;
	text-align: right;
	font-size: 12px;
	line-height: 1.2em;
	color: #FFF;
	z-index: 3;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 7px 10px;
}

.credits i {
	font-size: 12px;
}

.credits a {
	color: currentColor;
	text-decoration: underline;
}

.credits a:hover {
	color: currentColor;
	text-decoration: none;
}

.credits .caption {
	font-size: 12px;
}

.credits small {
	font-size: 10px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	margin-top: 3px;
	display: inline-block;
}

@media screen and (max-width:450px) {

	.credits,
	.credits .caption {
		font-size: 10px;
	}

	.credits {
		padding: 5px 8px;
	}
}