body  {
    background: #F7F5F0;
    margin: 0; /* il est conseillé de mettre à zéro la marge et le remplissage de l'élément body, pour tenir compte des différentes valeurs par défaut des navigateurs */
    padding: 0;
    text-align: center; /* ce paramétrage centre le conteneur dans les navigateurs IE 5.x. Le texte est ensuite aligné à gauche (valeur par défaut) dans le sélecteur #container */
}

body, input, textarea, button {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
    color: black;
}

#container {
    width: 650px;
    margin: 0 auto; /* les marges automatiques (et dotées d'une largeur positive) centrent la page */
    text-align: left; /* ce paramétrage annule le paramètre text-align: center de l'élément body. */
}

#header {
	margin-top: 30px;
	text-align: center;
}

#header h1 {
	margin: 0;
	font-size: 40px;
	color: #171717;
}

#header h1 span {
	color: #607480;
}

#main h3 {
    margin: 30px 0 30px 0;
	padding: 2px 0 4px 0;
    font-size: 24px;
    font-weight: bold;
    color: #F7F5F0;
	background-color: #607480;
	text-align: center;
	border-radius: 6px;
}

#main h4 {
    margin: 30px 0 0 0;
	padding: 2px 0 4px 0;
    font-size: 18px;
    font-weight: bold;
	text-align: center;
    color: #171717;
	background-color: #D4D4D4;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

div.form {
    margin: 0 0 0 0;
	padding: 10px 15px 10px 15px;
	*padding: 15px;
    width: 618px;
	background-color: #fff;
	border: 1px solid #D4D4D4;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

div.hr {
	margin: 13px 0 13px 0;
	padding: 0;
	height: 1px;
	background-color: #D4D4D4;
}

div.hr hr {
  display: none;
}

div.form p {
	margin: 5px 0 5px 0;
}

div.form p.radioButtons {
	margin-bottom: 7px;
}

div.form p.textField label, div.form p.textFieldSmall label, div.form p.textFieldMini label, div.form p.radioButtons span.label {
	margin-top: 4px;
	width: 170px;
	float: left;
	clear: left;
}

div.form label small, div.form span.label small {
	font-size: 11px;
	color: red;
}

#main h4 small {
	font-size: 14px;
	color: red;
	font-weight: normal;
}

div.form p.textField input {
	width: 250px;	
}

div.form p.textField textarea {
	width: 320px;	
}

div.form p.textFieldSmall input {
	width: 150px;	
}

div.form p.textFieldMini input {
	width: 70px;	
}


div.form p.radioButtons label {
	margin-right: 10px;
}

div.form p.checkBox {
	margin-top: 5px;
}

p.submitButton {
	margin-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}

p.submitButton button {
	width: 90px;
	height: 38px;
	padding: 4px 6px 6px 34px;
	font-weight: bold;
    font-size: 16px;
    color: #171717;
	background-color: #fff;
	border: 1px solid #D4D4D4;
	border-radius: 6px;
    background: #fff url("images/submit.gif") no-repeat 6px 6px;
	cursor: pointer;
}

p.message {
	padding: 15px;
	background-color: #fff;
	border: 1px solid #c8e8f7;
	border-radius: 6px;
	font-weight: bold;
	text-align: center;
}
