body			{
	background-image:url(img/bg2.jpg);
	background-position: center top;
    background-size: 100% auto;
	margin-top:0px;
}

.formulaire{
	display: flex;
	display: -webkit-flex;	
	width:100%;
	justify-content: center;
	-webkit-justify-content: center;
}

.titre{
	width:100%;
	text-align:center;
	height:50px;
	margin-bottom:50px;
	color:white;
}


.form{
	width:960px;
	display: flex;
	display: -webkit-flex;	
	flex-wrap:wrap;
    -webkit-flex-wrap: wrap;
}


.form_div{
	width:100%;
	display: flex;
	display: -webkit-flex;	
}

.form_div2{
	width:100%;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;	
}


.form label{
	width:30%;
	height:40px;
	line-height:40px;
	color:white;
}


.form input[type="text"]{
	width:70%;
	height:40px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border:1px solid #BEBEBE;
	padding: 7px;
	margin:0px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;  	
}

.form input[type="text"]:focus,.form textarea:focus{
    -moz-box-shadow: 0 0 8px #88D5E9;
    -webkit-box-shadow: 0 0 8px #88D5E9;
    box-shadow: 0 0 8px #88D5E9;
    border: 1px solid #88D5E9;
}



.form input[type=submit]:hover{
    background: #4691A4;
    box-shadow:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
}

.form input[type=button]:hover{
    background: #4691A4;
    box-shadow:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
}


.form input[type="submit"]{
	width:30%;
	height:40px;
	cursor:pointer;
	margin-left:70%;
	font-weight:bold;
	background: #4B99AD;
    border: none;
    color: #fff;
	 -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.form input[type="button"]{
	width:30%;
	height:40px;
	cursor:pointer;
	margin-left:70%;
	font-weight:bold;
	background: #4B99AD;
    border: none;
    color: #fff;
	 -webkit-appearance: none;
  -webkit-border-radius: 0;
}


.form textarea{
	width:70%;
	height:200px;
	max-height:200px;
	max-width:70%;
	  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border:1px solid #BEBEBE;
    padding: 7px;
    margin:0px;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;  
}


.required{
    color:red;
}


.formulaire small{
	color:white;
}

.formulaire small a{
	color:red;
}