/* TEXTAREA non-obligatoires */
div.spip_form_champ textarea.formo {
	display: block;
	width: 400px;
}
/* TEXTAREA non-obligatoires avec focus */
div.spip_form_champ textarea.formo-focus {
	display: block;
	width: 400px;
}

/* TEXTAREA obligatoires */
div.spip_form_champ textarea.forml {
	display: block;
	width: 400px;
}
/* TEXTAREA obligatoires avec focus */
div.spip_form_champ textarea.forml-focus {
	display: block;
	width: 400px;
	background-color: #d9d7d3;
}

/* INPUT non-obligatoires */
div.spip_form_champ input.formo {
	display: block;
}
/* INPUT non-obligatoires avec focus */
div.spip_form_champ input.formo-focus {
	display: block;
}

/* INPUT obligatoires */
div.spip_form_champ input.forml {
	display: block;
}
/* INPUT obligatoires avec focus */
div.spip_form_champ input.forml-focus {
	display: block;
	background-color: #d9d7d3;
}

/* LABEL pour les champs obligatoires */
span.spip_form_label_obligatoire {
 	color: #999999;
	font-weight: bold;
}

/* Message de retour OK */
p.spip_form_ok {
 	text-align: center;
}