@charset "iso-8859-1";
/* CSS Document */

#formulaire {
	font-size: 12px;
}
#formulaire label {
	display: inline-block;
	font-weight: bold;
	text-align:right;
	width: 140px;
	vertical-align: top;
}
#formulaire input {
}
#formulaire label.error {
	color: #F00;
	display: block;
	margin-left: 140px;
	font-weight: normal;
	width: 100%;
	text-align: left;
}

@media screen and (max-width:800px) {
	#formulaire {
		width:98%;
		margin:0 auto;
	}
	#formulaire label {
		display: block;
		font-weight: bold;
		text-align:left;
		width: 100%;
		vertical-align: auto;
	}
	#formulaire input {
		width:98%;
	}
	#formulaire label.error {
		color: #F00;
		display: block;
		margin-left: 0;
		font-weight: normal;
		width: 98%;
		text-align: left;
	}
}