
/* FORMULAIRE DE COMMANDE */
#order {
	margin: 0 auto;
	text-align: left;
	width: 800px;
}

#order label {
	display: block;
	color: #797979;
	font-weight: 700;
	line-height: 1.4em;
}

#order input {
	width: 180px;
	padding: 6px;
	color: #555555;
	font-family: Trebuchet MS, Verdana, Arial;
	font-size: 12px;
}

#order input.error {
	border: 1px solid #ef0f0f;
}

#order select {
	font-family: Trebuchet MS, Verdana, Arial;
	color: #555555;
	padding: 6px;
}

#order div {
	margin-bottom: 15px;
}

#order div span {
	margin-left: 10px;
	color: #b1b1b1;
	font-size: 11px;
	font-style: italic;
}

#order div span.error {
	color: red;
}

#order #send_order {
	background: black;
	color: #fff;
	font-weight: 700;
	font-style: normal;
	border: 0;
	cursor: pointer;
	margin: 0 12em 3em;
}

#order #send_order:hover {
	background: #05DD05;
}

#error {
	margin-bottom: 20px;
}

#error ul {
	list-style: square;
	padding: 5px;
	font-size: 11px;
}

#error ul li {
	list-style-position: inside;
	line-height: 1.6em;
}

#error ul li strong {
	color: #e46c6d;
}

#error.valid ul li strong {
	color: #93d72e;
}
/* --Fin de FORMULAIRE DE COMMANDE */