


#form_contact
{
	width: 100%;
}

#form_contact p
{
	margin: 2px 0;
}

/* fieldset , legend */
#form_contact fieldset
{
	margin-bottom: 10px;
	border: #CCC 1px solid;
}

#form_contact fieldset:hover
{
	background-color: #FFF;
}

#form_contact fieldset legend
{
	padding: 0 10px;
	border-left: #CCC 1px solid;
	border-right: #CCC 1px solid;
	font-size: 1.2em;
	color: #999;
}


/* Label */
#form_contact label
{
	background-color: #FFCC66;
	display: block;
	width: 39%;
	float: left;
	padding-right: 1%;
	text-align: right;
	letter-spacing: 1px;
}

#form_contact label:hover
{
	font-weight: bold;
}

#form_contact .form_label_nostyle
{
	background: none;
}


/* Input */
#form_contact input, #form_contact select
{
	margin-left: 1%;
	width: 40%;
	border: #CCC 1px solid;
}

#form_contact input:hover, #form_contact select:hover, #form_contact input:focus, #form_contact select:focus
{
	border: #999 1px solid;
	background-color: #DDEEFF;
}

#form_contact .form_input_day_month
{
	width: 3%;
}

#form_contact .form_input_year
{
	width: 6%;
}

/* pas de style pour les checkbox */
#form_contact input[type="checkbox"]
{
	width: 10px;
}
/* pas de style pour les radio */
#form_contact input[type="radio"]
{
	width: 2%;
}


/* button submit */
#form_contact input[type="submit"]
{
	border: #DDEEFF 1px solid;
	width: 27%;
}

#form_contact input[type="submit"]:hover
{
	background-color: #66CC33;
	cursor: pointer;
}

#form_contact input[type="reset"]
{
	border: #DDEEFF 1px solid;
	width: 27%;
}

#form_contact input[type="reset"]:hover
{
	background-color: #E6484D;
	cursor: pointer;
}


