@charset "utf-8";
/* CSS Document */
html, body {
	height: 100%;
	color: #000;
}
body {
	width: auto;
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto Condensed', sans-serif;
	min-height: 100%;
}
.erreur-page {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
}
.erreur-cadre {
	display: table-cell;
	position: relative;
	vertical-align: middle;
	text-align: center;
	padding-right: 40px;
	padding-left: 40px;
	box-sizing: border-box;
	transition-property: padding-right,padding-left;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
@media screen and (max-width: 767px) {
	.erreur-cadre {
		padding-right: 20px;
		padding-left: 20px;
	}	
}
.erreur {
	display: inline-block;
	position: relative;
	width: 100%;
	font-size: 0px;
}
.erreur h1{
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 400;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.erreur-ligne {
	background-color: #CCC;
	display: inline-block;
	height: 3px;
	width: 60px;
	position: relative;	
}
.erreur h2{
	font-size: 17px;
	font-weight: 400;
}
.erreur-message {
	display: block;
	float: none;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
	position: relative;
	margin-top: 50px;
	margin-bottom: 50px;
}
.erreur-message p {
	font-size: 15px;
}
.erreur-bouton {
	color: #000;
	text-decoration: none;
	background-color: #FFFFFF;
	display: inline-block;
	height: 41px;
	padding-right: 27px;
	padding-left: 16px;
	position: relative;
	line-height: 41px;
	border-radius: 2px;
	font-size: 15px;
	font-weight: 400;
	background-image: url(../graphisme/attente/fleche-erreur.png);
	background-repeat: no-repeat;
	background-position: right +16px top +15px;
	border: 1px solid #CCC;
	box-sizing:border-box;
}

.erreur-bouton:hover {
	background-position: right +13px top +15px;
	background-color: #e6e6e6;	
}
