/* CSS Document */
/* --------------------------------------------------------------------------------------------- Fieldset */
	fieldset {
		border:none;
		padding:10px;
		margin:0 0 20px 0
	}
/* --------------------------------------------------------------------------------------------- Légende */
	legend {
		font-size:1.2em;
		font-weight:bold;
		color:#666;
		padding:0 5px 0 5px
	}
/* --------------------------------------------------------------------------------------------- Obligatoire */
	.obligatoire {color:#ff0000}
	p.obligatoire {padding:0 0 10px 500px}
/* --------------------------------------------------------------------------------------------- Div */
	div.formulaire {
		float:left;
		width:100%;
		margin-bottom:5px
	}
/* --------------------------------------------------------------------------------------------- Label */
	label {cursor:pointer}
	label.label {
		float:left;
		display:block;
		width:150px;
		text-align:right;
		line-height:18px;
		color:#000;
		padding:0 5px 0 0
	}
/* --------------------------------------------------------------------------------------------- Champs, zone de texte et select */
	input.champ, textarea, select {
		float:left;
		width:150px;
		height:15px;
		border:1px solid #000;
		color:#666;
		font-size:1em;
		background:#ccc;
		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}
	textarea {
		width:250px;
		height:100px;
		font-family:arial, sans-serif
	}
	select {
		width:auto;
		height:auto;
		padding:0
	}
	select option {padding:0 5px 0 0}
	input.champ.on {background:#dfdcdc}
/* --------------------------------------------------------------------------------------------- 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}