<style>

/* TAGS */	
	
BODY
{
background-color: #ffffff; 				/* fond blanc */
background-image: url (www.URL.com); 	/* specify url of the background image. Delete if no bakground image */
background-repeat: no-repeat;			/* no repeat. IE only. Delete if no bakground image */
}



P, CITE, BLOCKQUOTE, TABLE, TR, TD, OL, UL, DL, LI, DT, DD, FORM, TEXTAREA, INPUT
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}

B, I, FONT, SPAN, DIV
{
font-family: Verdana, Arial, Helvetica, sans-serif;
}

/** HEADINGS **/

/* DON'T DELETE THEM! Better use them ALL SIX (6) for uniformity throught the site instead of SPECIAL CLASSES */

H1, H2, H3, H4, H5, H6	/* If you need something similar in a table use SPECIAL CLASSES asH1, asH2, etc. */
{
font-weight: normal;
}

H1
{
font-size: 16px;
font-weight: bold;
color: #07112A;
}

H2
{
font-size: 14px;
font-weight: bold;
color: #333333;		/* gris foncé, comme les listes	*/
}

H3
{
font-size: 12px;
font-weight: bold;
}

H4
{
font-size: 10px;
text-transform: uppercase; 	/* No need to rewrite text. This can be nice for headings which size is close to text size */
}

H5					/* First heading for small text (class "small"), one size bigger */
{
font-size: 9px;			/* specify size */
font-weight: bold;		/* Example */
color: #006666; 			/* Vert du logo, en couleur Web */
}

H6					/* Second heading for small text, same size*/
{
font-size: 8px;			/* specify size */
text-transform: uppercase; 	/* No need to rewrite text. This can be nice for headings which size close to text size */
}


/**  TEXT **/

BLOCKQUOTE
{
color: #000000;		/* noir	*/
}

STRONG			/* Use this as designer wants stronger emphasis WITHIN the text (P tag). Example : P is orange, emphasis is big blue. */
{  
font-weight: normal;	/* default is bold */
font-size: 14px;		
color: #004b4b;		/* vert du logo	*/
}

SUP, SUB			/* DON'T DELETE! If not used, Netscape use parent's size (example: P)*/
{  
font-size: 10px;		/* Two sizes smaller than general size */
}

/** LISTS **/		

DL DD				/* TO KEEP!! (MP asked for larger margin) Explorer: 65px, Netscape (span.dd): 60px */
{
margin-left: 60px;
}

UL				/* TO KEEP!! On a besoin de specifier UL ET LI pour puces d'une autre couleur */
{
color: #999999;	/* gris moyen, car le foncé (comme H2) semble trop foncé pour les puces */
}

UL LI			/* Pour puces d'une autre couleur. Pour texte normal : utiliser span.normal (<dd class=normal> fonctionne pas pour Netscape) */
{
color: #999999;			/* gris moyen, car le foncé (comme H2) semble trop foncé pour les puces */
}

OL				/* TO KEEP!! Pour numerotation coloree et plus grande. DOIT etre repete dans OL LI (Netscape) */
{
font-size: 14px;	/* taille du H2 */
color: #666666;		/* gris foncé H2 */
font-weight: bold;
}

OL LI				
{
color: #666666;		
font-size: 14px;	
font-weight: bold;
}







A					
{ 
color: #0000ff;   
font-weight: bold;	
text-decoration: none;
}
	


A:hover				/* IE only	*/
{
color: #FFCC33; 			
text-decoration: underline;
}

/* SPECIAL CLASSES */

/*** Text Size ***/

.nav
{
color: #ffffff;
}
.navon
{
color: #FFCC33;
}

.small
{
font-size: 10px;
}

.big
{
font-size: 14px;
}

/*** Text Color ***/

.white 				
{
color: #000000;
}

.color6				
{
color: #07112A;
}

.red
{
color: red
}


</style>