/*-------------------------------------------------------- 
  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> - 10.08.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: #CC0033;			/* 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: #666666;					/* OBLIGATOIRE - format: #000000 */


	/* FOND */
	background-color: #FFFFFF;			/* OBLIGATOIRE */
	background-image: url("image.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: 0px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 0px;				/* px % */

	/* BORDURE */
	border-top: 0px solid #FFFFFF;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #FFFFFF;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px solid #FFFFFF;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #FFFFFF;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 900px;					/* px % auto */
	height: 95px;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	top: 0px;					/* px % auto inherit (CSS2?) */
/*	float: none;		*/			/* left right none */

}


.centre {	

	/* FOND */
	background-color: #FFFFFF;			/* 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: 900px;					/* px % auto */
	height: auto;					/* 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: #444444;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;		/* 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: 0px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 0px;				/* px % */

	/* BORDURE */
	border-top: 0px dashed #FFFFFF;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #FFFFFF;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px dashed #FFFFFFF;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #FFFFFF;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 125px;					/* px % auto */
	height: 100%;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	top: 0px;					/* px % auto inherit (CSS2?) */
	left: 0px;
	bottom: 0px;
	float: left;					/* left right none */
}

.menu_droit {	
	/* 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: #444444;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #EEEEEE;			/* OBLIGATOIRE */
	background-image: none;		/* 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: 4px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 0px;				/* px % */

	/* BORDURE */
	border-top: 0px dashed #009900;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-bottom: 0px solid #009900;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-left: 0px dashed #009900;			/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */
	border-right: 0px solid #009900;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 125px;					/* px % auto */
	height: 100%;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	top: 0px;					/* px % auto inherit (CSS2?) */
	left: 0px;
	bottom: 0px;
	float: right;					/* left right none */
}


.corps {	

	/* FOND */
	background-color: #FFFFFF;			/* 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: 0px;				/* 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: 0px solid #BBBBBB;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: 630px;					/* px % auto */
	height: auto;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	left: 0px;
	top: 150px;					/* px % auto inherit (CSS2?) */
	float: left;
}


.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: #CCCCCC;			/* 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: 5px;				/* 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: 890px;					/* px % auto */
	height: auto;					/* px % auto */

	/* FLOTTEMENT ET POSITION */ 
	top: auto;					/* px % auto inherit (CSS2?) */
	float: right;					/* 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;
}





.titre1{

/* 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: 14px;				/* 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: #CC0033;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #FFFFFF;			/* OBLIGATOIRE */
	background-image: none;				/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 3px;				/* px % auto */
	margin-bottom: 3px;				/* 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 #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: auto;					/* px % auto */
	height: auto;					/* px % auto */

}

.titre1_noir{

/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: normal;				/* small-caps */
	font-weight: none;				/* bold bolder lighter */
	font-size: 15px;				/* OBLIGATOIRE - % mieux que pt ou px */
	text-decoration: none;				/* underline overline line-trough blink */
	text-align: center;				/* left right center justify */	
	word-spacing: normal;				/* normal 2px -1px (val. négatives possibles) */
	color: #000000;					/* OBLIGATOIRE - format: #000000 */

	/* FOND */
	background-color: #DDDDDD;			/* OBLIGATOIRE */
	background-image: none;				/* none url(image.gif) */
	background-repeat: no-repeat;			/* repeat repeat-x repeat-y no-repeat */

	/* MARGES */
	margin-top: 3px;				/* px % auto */
	margin-bottom: 3px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 7px;				/* px % */
	padding-bottom: 0px;				/* px % */
	padding-left: 0px;				/* px % */
 	padding-right: 0px;				/* px % */

	/* BORDURE */
	border-top: 0px 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: auto;					/* px % auto */
	height: auto;					/* px % auto */

}

.menutitre{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-weight: bold;				/* bold bolder lighter */
	font-size: 90%;				/* 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: 8px;				/* px % auto */
	margin-bottom: 4px;				/* px % auto */
	margin-left: 0px;				/* px % auto */
 	margin-right: 0px;				/* px % auto */
	
	/* ESPACEMENT */
	padding-top: 1px;				/* px % */
	padding-bottom: 1px;				/* 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: 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: 0px solid #999999;		/* WIDTH(px) - STYLE(dotted dashed solid double groove ridge inset outset) - COLOR (#000000) */

	/* DIMENTIONS */
	width: auto;					/* 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: normal;				/* small-caps */
	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: 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: 100%;					/* px % auto */
	height: auto;					/* px % auto */

}




.lienactif{

	/* TEXTE & POLICE */
	font-family: Verdana, Arial, sans-serif;  	/* OBLIGATOIRE */
	font-style: normal;				/* italic */
	font-variant: none;				/* small-caps */
	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: #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: 0px;				/* 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: 125px;					/* 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 */

}

