/* 
	Mise en forme du body
	
*/

body:before { 
	content: "";
	position: fixed;
	background-color: #D61116;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	z-index: 3000;
}
  
body {
	font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", "Luxi Sans", sans-serif;
	color: #444444;
	background-color: #edeff0;
	font-size: 13px;
	text-decoration: none;
	margin: 0px;
	margin-left: 285px;
	padding: 0px; 
}

body:after { 
	content: "";
	position: fixed;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,.8);
	z-index: 1000;
}

/* 
	Mise en forme du header/footer
	
*/

header,footer {
	max-width: 1020px;
	padding: 10px 0px;
	margin: auto;
	position: relative;
	text-align: center;
}

header { height: 100px; }

header:after {
	content : "";
	position: absolute;
	left: 25%;
	height: 3px;
	width: 50%;
	bottom: 0px;
	border-bottom: 3px solid #dcdcdc;
}

footer {
	top: -9px;
}

footer:before {
	content : "";
	position: absolute;
	left: 25%;
	height: 3px;
	width: 50%;
	top: 0px;
	border-top: 3px solid #dcdcdc;
}


/* 
	Mise en forme article et sections
	
*/

article {
	max-width: 1000px;
	position: relative;
	padding: 0px 10px;
	margin: 20px auto;
}

section {
	max-width: 980px;
	position: relative;
	margin: auto auto;
	text-align: justify;
	background-color: white;
	padding: 5px 10px 5px;
	border: 4px solid #f7f7f7;
	box-shadow: 0 0 0 1px #c2c7c7;
	border-radius:8px;
	margin-bottom: 30px;
}

section:before, section:after {
	z-index: -1; 
	position: absolute; 
	content: "";
	bottom: 15px;
	left: 30px;
	width: 90%; 
	top: 10px;
	background: rgba(0, 0, 0, 0.7); 
	box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
	transform: rotate(-1deg);
}

section:after {
	transform: rotate(1deg);
	right: 30px;
	left: auto;
}