/* Présentation */
.presentation
{
	position: absolute;
	top: 90px;
	left: 0px;
	right: 0px;
	
	background-color: rgb(70,70,70);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	box-shadow: 0px 0px 10px rgba(0,0,0,.5);
	height: 300px;
	z-index: -10;
	text-align: center;
	
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}

.presentation h1
{
	font-weight: normal;
    margin: 70px auto;
    display: inline-block;
    padding: 5px 10px;
    background: #fff;
    color: rgb(70,70,70);
    box-shadow: 0px 2px 3px rgba(0,0,0,.5);
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

/* Page */
.page #pub
{
	margin: 0px -30px;
	margin-left: -50px;
	margin-bottom: 30px;
	margin-top: -15px;
	width: 900px;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.page
{
	width: 800px;
	padding: 50px;
	margin: 30px auto;
    margin-top: 170px;
	background: white;
	box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    border-radius: 10px;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

body.dark .page {background: rgb(40,40,40); color: #fff;}

.page h1
{
	margin: 0px;
	margin-bottom: 30px;
}

.page h1,
.page h2,
.page h3
{font-weight: normal;}

.page h2,
.page h3
{
    margin-top: 50px;
    margin-bottom: 0;
}

.page p,
.page ul,
.page label
{
	font-size: 14px;
    line-height: 1.5em;
}

@media screen and (max-width:1000px)
{
	body
	{
		padding: 0;
		background: white;
        margin: 0;
	}
    
    /* Présentation */
    .presentation
    {
        height: 150px;
        position: initial;
    }

    .presentation h1
    {
        margin: 50px auto;
        font-size: 30px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
	
    /* Page */
	.page h1
	{
		padding-top: 20px;
		margin-bottom: 10px;
	}
	
	.page
	{
		width: calc(100% - 30px);
		padding: 15px;
		background: transparent;
		box-shadow: none;
		margin: 0 auto;
        border-radius: 0;
	}

    body.dark .page {background: rgb(25,25,25); color: #fff;}
	
	.page #pub
	{
		width: 100%;
		margin: 0px;
		margin-bottom: 5px;
		border-radius: 5px;
	}
}