/* Propriétés courantes des classes

 -- Pour le texte --
	Police de caractère
		font-family: Arial, Verdana, Helvetica, sans-serif;
	Corps (en pixels)
		font-size: 14px;
	Gras
		font-weight: bold;
	Italic
		font-style: italic;
	Souligné
		text-decoration: underline;
	Couleur du texte
		color: #000000;

 -- Pour le body --
	Marge gauche
		margin-left: 0px;
	Marge haute
		margin-top: 0px;

 -- Pour les tableaux --
	Couleur du cadre
		border-color: #000000;
	Cadre
		border-width: 0;
	Style du cadre
		border-style: solid; (également NotSet, None, Dotted, Dashed, Groove, Double, Ridge, Inset, Outset) (navigateurs IE4, au moins)
	Marge à l'intérieur des cellules
		padding: 0;
	Marge entre les cellules
		spacing: 0;
	Image de fond
		background-image: url($$_$$dir/image.gif);

 -- Pour le reste --
	Alignement horizontal
		text-align: center;
	Alignement vertical
		vertical-align: middle;	
	Largeur
		width: 100px;
	Hauteur
		height: 100px;
	Couleur de fond
		 background-color: #000000;	
*/

/* BODY */
body {
margin-left: 0px;
margin-top: 0px;
background-color: #C6C7C6;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 14px;
color: #000000;
}

/* PARAGRAPHE DE TEXTE PAR DEFAUT */
p {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
text-align: justify;
}

/* LIEN */
a {
font-size: 12px;
color: #8F0005;
font-weight: bold;
text-decoration: none;
}

/* LIEN - ROLLOVER */
a:hover {
font-size: 12px;
color: #000000;
font-weight: bold;
text-decoration: none;
}
.link {font-size: 14px; color: #000000; font-weight: bold; text-decoration:none;}
.link:hover {font-size: 14px; color: #8F0005; font-weight: bold; text-decoration:none;}

/* CLASSES STANDARDS */

	/* "Coup de coeur" (coupdecoeur_page.htm) et "Exclusif" (recherche.htm) */
	.TitreRouge {
	font-size: 16px;
	font-weight: bold;
	color: #FF0000;
	}
	
	/* liens "sélectionnez" */
	.selection {
	font-size: 12px;
	font-weight: bold;
	color: #737373;
	}


/* CLASSES UTILISEES PAR LES TABLEAUX DES MOTEURS STANDARDS */

	/* Cellule titre des tableaux */
	.tabTitre {
	background-color: #DB0000;
	padding: 2px;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	}
	
	/* petits tableaux imbriqués dans le tabFond1 */
	.tabFond2 {
	background-color: #EEE1E1;
	border-color: #4A0000;
	border-width: 1px;
	border-style: solid;
	padding: 2px;
	}
	
/* CLASSES PERSOS */

        .rubrique {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	}
	
/* fonds des tableaux */	
.tabFond1{background-color: #eeeeee; border-color: #999999; border-width:0; border-style:solid; padding:2;}
.tabFond2{background-color: #ffffff; border-color: #666666; border-width:1; border-style:solid; padding:2;}
.tabTitre{background-color: #bbbbbb; color: #ffffff; font-size: 11px; font-weight: bold;}
.tabCouleur{background-color: #333333; border-color: #686868; border-width:1; border-style:solid; padding:2; 
color="#000000"}