/* --- GÉNÉRAL --- */
* {
	margin: 0;
	padding: 0;
	border: 0;
}
html, body {
	height: 100%;
}

/* --- BLOC CONTENEUR GLOBAL --- */
div#page {
	position: relative;
		/* permet au bloc de servir de référent pour
		   ses descendants positionnés en absolu */
	width: 971px;
	margin: auto;
	min-height: 100%;
}
/* Ne pas oublier les styles suivants, à appliquer au premier élément
   et au dernier élément (hors pied de page) du bloc conteneur */
	div#page #premier-element {
		margin-top: 0; /* évite tout risque de fusion des marges */
	}
	div#page #dernier-element {
		margin-bottom: 0; /* évite tout risque de fusion des marges */
		padding-bottom: 4em;
			/* ATTENTION : cet espace doit permettre de placer le pied de page ! */
	}

/* --- PIED DE PAGE --- */
div#piedpage {
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
		/* pour que le bloc prenne toute la largeur du bloc de référence
		   Note : le bloc de référence est le plus proche ancêtre positionné
		   en relatif ou en absolu */
	height: 30px;
}

/* Styles de mise en page */
body {
	background-image: url(../img/fond_body.gif);
	background-position: top center;
	background-repeat: repeat-y;
	background-color: #dfdfdf;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 12px;
}
div#page {
	background-image: url(../img/fond.jpg);
	background-repeat: no-repeat;
	background-position: top center;
}
div#piedpage p {
	width: 971px;
	text-align: center;
	font-size: 10px;
	padding-top: 10px;
	padding-bottom: 5px;
	margin: 0 auto;
	background-image: url(../img/pied_page.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	height: 15px;
	overflow: hidden;
}
div#piedpage a{
	color: #fff;
}
h1 {
	padding-left: 500px;
	margin-bottom: 66px;
}
div#menu{
	position: absolute;
	left:80px;
	width: 135px;
	top: 249px;
}
#menu img{
	margin-bottom: 3px;
}
#contenu {
	margin-left: 300px;
	width: 500px;
}
#contenu dl{
	font-size: 11px;
}
#contenu dt{
	font-weight: bold;
	float: left;
	width: 100px;
	padding-left: 3px;
}
#contenu dd{
	margin-bottom: 10px;
	margin-left: 110px;
}
img.apercu{
	border: solid 1px #fff;
}
td.legende{
	padding-top: 5px;
	padding-bottom: 10px;
	text-align: center;
	font-size: 11px;
}
span.titre{
	font-weight: bold;
}
#contenu p{
	text-align: justify;
	padding-bottom: 10px;
}
#contenu hr{
	width: 350px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	height: 1px;
	border: none;
	border-bottom: solid 1px #fff;
}
#contenu label{
	width: 100px;
	float: left;
	font-size: 14px;
}
#contenu input{
	width: 300px;
	margin-bottom: 5px;
	border: solid 1px #ffc873;
}
#contenu textarea{
	width:300px;
	height: 100px;
	margin-bottom: 5px;
	border: solid 1px #ffc873;
}
