/* CSS Document */
/* --------------------------------------------------------------------------------------------- Obligatoire */
	.obligatoire {font-weight: bold}
/* --------------------------------------------------------------------------------------------- Div */
	div.formulaire {
		float:left;
		width:100%;
		margin-bottom:8px
	}
/* --------------------------------------------------------------------------------------------- Label */
	label.label {
		float:left;
		display:block;
		width:180px;
		text-align:right;
		line-height:18px;
		padding:0 5px 0 0
	}
	label.erreur {color:#ff0000}
/* --------------------------------------------------------------------------------------------- Champs, zone de texte et select */
	input.champ, select {
		float:left;
		width:150px;
		height:15px;
		border:1px solid #204967;
		color:#666;
		font-size:1em;
		padding:2px 0 0 3px
	}
	input.champ.xsmall {width:50px}
	input.champ.small {width:100px}
	input.champ.large {width:250px}
	input.champ.xlarge {width:350px}
	select {
		width:auto;
		height:auto;
		padding:0
	}
	select option {padding:0 5px 0 0}
/* --------------------------------------------------------------------------------------------- Commentaires et explications */
	p.commentaire {
		font-style:italic;
		color:#999;
		font-size:.9em
	}
	p.commentaire.bottom {
		clear:both;
		margin:0 0 0 155px	/* Se référer à la taille du label + son padding */
	}
	p.commentaire.right {
		float:left;
		margin:3px 0 0 5px
	}
	p.explication, p.erreur {
		text-align:justify;
		line-height:15px;
		margin:0 0 8px 0
	}
	p.erreur {color:#ff0000}
/* --------------------------------------------------------------------------------------------- Boutons */
	input.valider_soutien {margin:0 0 0 350px}