/* Infos */
.infos
{
    background: #fff;
    margin-top: 30px;
    width: 400px;
    padding: 25px 30px;
    border-radius: 4px;
    box-shadow: 0px 2px 3px rgba(0,0,0,.5);
	
	-webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
    
    position: absolute;
    /*top: 45px;*/
    z-index: 5;
}

body.dark .infos {background: rgb(50,50,50);}

body.white .infos,
body.black .infos
{
    box-shadow: 0 0 2px #000;
    position: inherit;
    margin-bottom: 50px;
}

body.black .infos
{
    background: #000;
    box-shadow: 0 0 2px #fff;
}

body.white #pub, body.black #pub {display: none;}

.infos h2
{
    text-transform: uppercase;
    font-weight: normal;
    margin: 0px;
}

.infos h2:after
{
    content: " ";
    background: rgb(0,160,255);
    width: 50px;
    height: 6px;
    margin: 5px 0px;
    display: block;
}

.infos p
{
    margin-top: 0px;
}

/* Gallerie (pas utilisé) */
.gallery
{
	list-style: none;
	padding: 0px;
	margin: 0px -5px;
	color: white;
    font-size: 0px;
}

.gallery li
{
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	padding: 0px;
	margin: 5px;
	width: 150px;
	height: 150px;
	background: rgb(50,50,50);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	cursor: default;
    border-radius: 5px;
}

body.white .gallery li {box-shadow: 0 0 2px #000;}
body.black .gallery li {box-shadow: 0 0 2px #fff;}

.gallery li a
{
	text-decoration: none;
	color: rgba(255,255,255,.5);
}

.gallery .alignTop li {vertical-align: top;}
.gallery .alignBottom li {vertical-align: bottom;}

.gallery li p
{
	padding: 0px;
	margin: 0px;
	background: rgb(0,100,200);
	height: 100%;
	line-height: 23px;
    font-size: 14px;
	
	position: relative;
	left: 100%;
	
	-webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}

body.white .gallery li p
{
	background: #fff;
    color: rgba(0,0,0,.5);
}

body.black .gallery li p
{
	background: #000;
}

.gallery li:hover p
{
	left: 0%;
}

.gallery li p span
{
	margin: 10px 15px;
	display: inline-block;
}

.gallery li p span strong
{
	font-weight: normal;
    color: #fff;
}

body.white .gallery li p span strong
{
    color: #000;
}

.gallery li p span a:hover
{
	opacity: .5;
}
/*
body
{
	padding-top: 470px;
}*/