/**
 *	Style de mise en page que vous pouvez supprimer
 */
#placeholder {
	margin:			15px auto;
	border:			1px solid #bbb;
	background:		#eee;
	width:			322px;
}
.titre {
	padding:		5px;
	border-bottom:	1px solid #bbb;
}
.contenu {
	padding:		5px;
}
/**
 *	PLACEHOLDER
 *
 *	Si vous avez un style particulier sur les champs INPUT de votre formulaire,
 *	appliquez les mêmes styles sur la DIV <div class="placeholder"></div>
 *	(largeur, hauteur, padding, etc...) et ensuite essayez de bien positionner
 *	les INPUT en fonction sans oublier les LABELS.
 *
 *	Sinon, laissez les styles tels qu'ils sont.
 */
.placeholder {
	position:		relative;
	width:			152px;
	height:			28px;
	background:		#fff;
	margin-bottom:	5px;
}
.placeholder-textarea {
	height:			160px;
}
.placeholder .champ-input {
	border:			1px solid #bbb;
	padding:		5px;
	width:			140px;
}
.placeholder .champ-textarea {
	border:			1px solid #bbb;
	padding:		5px;
	min-width:		300px;
	min-width:		300px;
	min-height:		150px;
	min-height:		150px;
}
.placeholder input {
	position:		absolute;
	top:			-2px;
	left:			0;
	background:		transparent;
}
.placeholder textarea {
	position:		absolute;
	top:			-2px;
	left:			-2px;
	background:		transparent;
}
.placeholder label {
	padding:		5px;
	position:		absolute;
	top:			-2px;
	left:			0;
	width:			140px;
}