@charset "utf-8";
/* CSS Document */

input, textarea
{
   font-family: "Times New Roman", Times, serif; /* On modifie la police du texte tapé l'intérieur des champs */
}
 
input:focus, textarea:focus /* Quand le curseur est sur un champ (ne marche pas sur IE) */
{
	background-color: #CCC;
}
 
label
{
	color: #000; /* Colorer en bleu tous les labels (bah oui, pourquoi pas en bleu ?) */
}
 
legend /* On met un peu plus en valeur les titres des fieldset */
{
	font-family: Arial, "Arial Black", Georgia, "Times New Roman", Times, serif;
	color: #F30;
	font-weight: bold;
	text-decoration: underline;
}
 
fieldset
{
	margin-bottom: 15px;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-top-style: double;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #F36;