/* --- --- --- CSS Document --- --- --- */

/* --- Divers --- */

/* texte avec couleur particulière */
.texte_rouge{
	color:#FF0000;
	/*color:#FF99CC;*/
}
.texte_vert{
	color:#009900;
	/*color:#FF99CC;*/
}
.texte_bleu{
	color:#3300CC;
	/*color:#FF99CC;*/
}
.texte_jaune{
	color:#FF9900;
	/*color:#FF99CC;*/
}
/* titre 1 */
h1 {
	font-family:Arial;
	font-size: 28px;
	color:#FFFFFF;
}
/* titre 2 */
h2 {
	font-family:Arial;
	font-size: 28px;
	color:#003566;
}
/* titre 3 */
h3 {
	font-family:Arial;
	font-size: 18px;
	color:#003566;
}
/* liens */
a:link {
text-decoration:none;
}
a:active {
text-decoration:none;
}
a:visited {
text-decoration:none;
}
a:hover {
color:#003566;
text-decoration:underline;
}
/* corps de texte */
body {

	margin: 0;
	padding: 0;
	background: white;
	background-image:url(../img/logo_fond.jpg);
	background-attachment:fixed; background-position:center;
	background-repeat:no-repeat;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
}
/* options */
dl, dt, dd, ul, li {
	margin: 0;
	padding: 0;
}