/*-------------------------------------------------------- 
  FEUILLE DE STYLE CSS 
  -------------------------------------------------------- 
  Pour lier la feuille de style ŕ une page
  html, ajouter la ligne suivante dans 
  l'entęte du document html 
  (entre <HEAD> et </HEAD>):
  <LINK REL="stylesheet" TYPE="text/css" HREF="style.css">
  (remarque: LINK est plus compatible que @import)
  -------------------------------------------------------- 
  (c) R.Gendroz <raoul@mybd.net> - 21.2.04  	
  -------------------------------------------------------- 
*/


body {			/* corps de la page html */ 

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 11px;				/* OBLIGATOIRE - % mieux que pt ou px */
	/* ancien: 75% */
	text-decoration: none;				/* underline overline line-trough blink */
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #666666;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* BORDURE */
/*	border: 2px solid #CCCCCC; */
	
	/* MARGES */
	margin: 0px;
}


a{ 		/* lien */
	text-decoration: none;			/* underline overline line-trough blink */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-size: 100%;					/* OBLIGATOIRE - % mieux que pt ou px */
	color: #666666;
}

a:hover {		/* lien survolé */
	text-decoration: underline;			/* underline overline line-trough blink */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-size: 100%;					/* OBLIGATOIRE - % mieux que pt ou px */
	color: #666666;
}

a:link { 		/* lien url */
	text-decoration: none;			/* underline overline line-trough blink */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-size: 100%;					/* OBLIGATOIRE - % mieux que pt ou px */
	color: #666666;
}

a:visited {		/* lien url visité */
}

table {
	font-size: 11px;

}




.entete {	

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 220%;					/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: right;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #CCCCCC;					/* OBLIGATOIRE - format: #000000 */


	/* FOND */
	background-color: #000040;			/* OBLIGATOIRE */
	background-image: url("main.jpg");		/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	

	/* ESPACEMENT */
	padding-top: 10px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 10px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 980px;					/* px % auto */
	height: 65px;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	top: 0px;					/* px % auto inherit (CSS2?) */
/*	float: none;		*/			/* left right none */

}


.centre {	

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin: 0px;					/* px % auto */
	
	/* ESPACEMENT */
	padding: 0px;					/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 990px;					/* px % auto */
	min-height: 480px;				/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
							/* px % auto inherit (CSS2?) */
}


.menu {	
	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 100%;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #666666;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #E4E4E4;			/* OBLIGATOIRE */
	background-image: url(menu.gif);		/* none url(image.gif) */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 20px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 9px;				/* px % */

	/* BORDURE */
	border-top: 0px dashed #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 1px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px dashed #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 1px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 150px;					/* px % auto */
	min-height: 459px;				/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	top: 0px;					/* px % auto inherit (CSS2?) */
	left: 0px;
	bottom: 0px;
	float: left;					/* left right none */
}

.corps {	

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 10px;				/* px % */
	padding-bottom: 10px;				/* px % */
	padding-left: 10px;				/* px % */
 	padding-right: 10px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 1px solid #BBBBBB;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 798px;					/* px % auto */
	min-height: 459px;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	left: 165px;
	top: 150px;					/* px % auto inherit (CSS2?) */
	float: right;
}


.piedpage {	

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 10px;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #FFFFFF;					/* OBLIGATOIRE - format: #000000 */


	/* FOND */
	background-color: #000040;			/* OBLIGATOIRE */
	background-image: none;				/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 0px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 5px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #00AAAA;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #00AAAA;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #00AAAA;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #00AAAA;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 980px;					/* px % auto */
	height: 25px;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	top: auto;					/* px % auto inherit (CSS2?) */
	float: left;					/* left right none */

}


.box {	

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 90%;					/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: justify;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #444444;					/* OBLIGATOIRE - format: #000000 */


	/* FOND */
	background-color: #BBBBBB;			/* OBLIGATOIRE */
	background-image: none;				/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-right: -5px;					/* px % auto */
	margin-top: -10px;

	/* ESPACEMENT */
	padding-left: 10px;					/* px % */
	padding-right: 10px;					/* px % */
	padding-top: 5px;					/* px % */
	padding-bottom: 10px;					/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 1px dashed #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 1px dashed #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 160px;					/* px % auto */
	height: auto;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
							/* px % auto inherit (CSS2?) */
	float: right;
}







.pvdomaine {

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: small-caps;			/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 100%;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #333333;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 20px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 0px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 0px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}


.pvcategorie {

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 100%;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #333333;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 20px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 5px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 10px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}

.pvtache {

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: bold;				/* bold bolder lighter */
	font-size: 100%;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #333333;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 20px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 5px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 10px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}


.pvdomainetitre {

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-weight: bold;				/* bold bolder lighter */
	font-size: 18px;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #333333;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #777777;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 5px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 10px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}

.pvcategorietitre {

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-weight: bold;				/* bold bolder lighter */
	font-size: 15px;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #333333;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #999999;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */	

	/* ESPACEMENT */
	padding-top: 5px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 10px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}

.pvtachetitre {

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-weight: bold;				/* bold bolder lighter */
	font-size: 13px;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #333333;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #777777;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 5px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 10px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #888888;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #888888;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}

.pvelement {

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 11px;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #666666;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: repeat-y;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 5px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 5px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 0px dashed #AAAAAA;
	border-left: 1px dashed #AAAAAA;
	border-right: 1px dashed #AAAAAA;
	border-bottom: 1px dashed #AAAAAA;

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}


.titre{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-weight: bold;				/* bold bolder lighter */
	font-size: 115%;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #555555;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #CCCCCC;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 8px;				/* px % auto */
	margin-bottom: 4px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 3px;				/* px % */
	padding-bottom: 3px;				/* px % */
	padding-left: 3px;				/* px % */
 	padding-right: 3px;				/* px % */

	/* BORDURE */
	border-top: 1px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 1px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 1px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 1px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}

.soustitre{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-weight: bold;				/* bold bolder lighter */
	font-size: 100%;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #555555;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #DDDDDD;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 6px;				/* px % auto */
	margin-bottom: 3px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 2px;				/* px % */
	padding-bottom: 2px;				/* px % */
	padding-left: 2px;				/* px % */
 	padding-right: 2px;				/* px % */

	/* BORDURE */
	border-top: 1px dashed #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 1px dashed #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 1px dashed #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 1px dashed #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}
.soussoustitre{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: italic;				/* italic */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 95%;					/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #777777;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 2px;				/* px % auto */
	margin-bottom: 2px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 2px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 2px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 1px dashed #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}


.lien{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: small-caps;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 10px;					/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #666666;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: transparent;				/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 4px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 5px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 1px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}


.souslien{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 9px;					/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #666666;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #CCCCCC;				/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: -10px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 0px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 15px;				/* px % */
 	padding-right: 0px;				/* px % */

	/* BORDURE */
	border-top: 1px dashed #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 147px;					/* px % auto */
	height: auto;					/* px % auto */

}




.lienactif{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: small-caps;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 10px;					/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #666666;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #CCCCCC;				/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: -3px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 4px;				/* px % */
	padding-bottom: 4px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 0px;				/* px % */

	/* BORDURE */
	border-top: 1px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 162px;					/* px % auto */
	height: auto;					/* px % auto */

}
.nolien{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: italic;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: normal;				/* bold bolder lighter */
	font-size: 10px;					/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: left;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #AAAAAA;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: transparent;				/* OBLIGATOIRE */
	background-image: none;				/* url(image.gif) none */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 0px;				/* px % auto */
	margin-bottom: 0px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 4px;				/* px % */
	padding-bottom: 5px;				/* px % */
	padding-left: 5px;				/* px % */
 	padding-right: 5px;				/* px % */

	/* BORDURE */
	border-top: 1px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #999999;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}

