@charset "utf-8";
/* ------------------ STRUCTURE ------------------ */

* {
	margin: 0;
}
html, body {
	height: 100%;
}

body {
	background: url(../images/bg.jpg) top center no-repeat #51240f;
}

#wrapper {
	position: relative;
	width: 780px;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background: url(../images/bg_pagelayout.jpg) top center repeat-y;
	margin: 0 auto -131px; /* the bottom margin is the negative value of the footer's height */
}

#header {
	height: 157px;
	background: url(../images/bg_header.jpg) top center no-repeat;
}

#corps {
	background: url(../images/bg_corps.jpg) top center no-repeat;
}

#titre {
	margin-left: 60px;
}

#footer, #push {
	height: 131px; /* .push must be the same height as .footer */
}

#footer {
	position: relative;
	width: 780px;
	margin: 0 auto;
	background: url(../images/bg_footer.jpg) top center no-repeat;
}

.separ {
	border-bottom: 1px dotted #CCC;
	margin: 20px 100px 0 100px;
}

/* ------------------ TYPO ET LISTES ------------------ */

h1 {
	font: 20px Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	margin: 50px 300px 20px 90px;
	color: #313e1d;
}

h2 {
	font: 16px Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	margin: 20px 90px 0 90px;
	color: #313e1d;
}

p {
	font: 15px Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	margin: 30px 90px 0 90px;
	line-height: 21px;
	color: #585858;
}

#footer p {
	font: 12px Arial, Helvetica, sans-serif;
	text-align: right;
	font-weight: bold;
	padding: 85px 50px 0 0;
	margin: 0;
	color: #bbb896;
}

span.input_text {
	font: 14px Arial, Helvetica, sans-serif;
	color: #585858;
	line-height: 16px;
	font-weight: bold;
}

ul {
	font: 15px Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	margin: 10px 90px 0 0;
	padding-left: 45px;
	line-height: 21px;
	color: #585858;
}

li {
	list-style-image: url(../images/dot.gif);
	margin-left: 90px;
}

/* ------------------ LIENS ------------------ */

a {
	color: #ed2227;
	text-decoration: underline;
}

a:hover {
	color: #000;
	text-decoration: none;
}

#footer a {
	color: #857e5a;
	text-decoration: none;
}

#footer a:hover {
	color: #fff;
	text-decoration: none;
}


/* ----------------- FORMULAIRE -----------------*/

#form {
	width: 275px;
	float: right;
	margin: 20px 90px 30px 90px;
}

.input_bg {
	background-color: #fff;
	color: #000;
	border: 1px solid #ccc;
	padding: 4px;
}

.btn_send {
	background: url(../images/bouton_send.gif) top right no-repeat transparent;
	color: transparent;
	background-position: -95px;
	width: 95px;
	height: 26px;
	border: 0px;
	cursor: pointer;
}

.btn_send:hover {
	background-position: 0;
}

div#form p { 
	margin: 0 0 20px 0;
	font-weight:bold;
	position: relative; 
}
div#form label { 
	display: block;
	margin: 0 0 0 0;
}

/********************************* LiveValidation *************************************/

.LV_valid {
    color:#00CC00;
}
	
.LV_invalid {
	color:#ed2227;
}
	
.LV_validation_message{
	font: 12px Arial, Helvetica, sans-serif;
    margin:0 0 0 5px;
	position: absolute;
	right: 0;
	top: 0;
}
    
.LV_valid_field,
input.LV_valid_field:hover, 
input.LV_valid_field:active,
textarea.LV_valid_field:hover, 
textarea.LV_valid_field:active,
.fieldWithErrors input.LV_valid_field,
.fieldWithErrors textarea.LV_valid_field {
    border: 1px solid #ccc;
}
    
.LV_invalid_field, 
input.LV_invalid_field:hover, 
input.LV_invalid_field:active,
textarea.LV_invalid_field:hover, 
textarea.LV_invalid_field:active,
.fieldWithErrors input.LV_invalid_field,
.fieldWithErrors textarea.LV_invalid_field {
    border: 1px solid #ed2227;
}

