/*FICHIER DE STYLE DE TOUTES LES PAGES SAUF LA PAGE D'ACCUEIL

Contient :
- Les caracteristiques generales de la page
- Differents styles de liens
- Des formats de caracteres particuliers pour les titres, etc...
- Les boites dont on a besoin pour construire la presentation de la page : menu, citation, contenu...*/


/*Caracteristiques generales de la page*/

body
     {
     color : white ;
     text-align : justify ; 
	 font-family : "Bitstream Vera Sans", Verdana, "Courier New" ;
	 font-size : 10pt ;
	 background-color : black ;
	 } 
	 

/*Liens dans les textes*/	 
	 	 	 
a.corps:link 
	 {
	 color : #808080 ; 
	 font-weight:bold ;
	 }

a.corps:visited
     {
	 color : #A9A9A9 ;
	 font-weight : bold ;
	 }
	
a.corps:hover 
	 {
	 color : red ;
	 text-decoration: none ; 
	 }
	

/*Liens pour les sommaires*/	 
	 	  
a.mcorps:link 
	 {
	 color : #808080 ; 
	 font-weight:bold ;
	 font-weight:400
	 }

a.mcorps:visited
     {
	 color : #A9A9A9 ;
	 font-weight : bold ;
	 font-weight:400
	 }
	
a.mcorps:hover 
	 {
	 color : red ;
	 text-decoration: none ;
	 font-weight:400 
	 }

	 
/*Liens secondaires pour les menus*/	 
	 
a.ssmen:link 
	 {
	 text-decoration:none ; 
	 color:white ;  
	 font-weight:400
	 }

a.ssmen:visited
     {
	 text-decoration:none ; 
	 color:white ;  
	 font-weight:400
	 }
	
a.ssmen:hover 
	 {
	 text-decoration:none ; 
	 color:red ;  
	 font-weight:400 
	 }

	 
/*Liens principaux pour les menus*/	 	 
	 
a.mmen:link 
	 {
	 text-decoration:none ; 
	 color:white ;
	 font-weight : bold ;  
	 }

a.mmen:visited
     {
	 text-decoration:none ; 
	 color:white ;
	 font-weight : bold ;  
	 }
	
a.mmen:hover 
	 {
	 text-decoration:none ; 
	 color:red ;
	 font-weight : bold ;  
	 }
	

/*Formats de caracteres particuliers*/	 
	 	 
h1                    /*Titres de textes*/
	 {
	 font-variant: small-caps ;
	 font-size : 20pt ;	 
	 }

h2                    /*titres de menus*/
	 {
	 font-variant: small-caps ;
	 font-size : 16pt ;	 
	 }

h3                    /*Titres de sections dans les textes*/
	 {
	 font-size : 16pt ;	 
	 }	 
	 	 
.tabnorm              /*classe permettant d'avoir les memes caracteres dans les tableaux qu'ailleurs*/
	 {
	 font-family : "Bitstream Vera Sans", Verdana, "Courier New" ;
	 font-size : 10pt ; 
	 font-style: normal ;	 
	 }

	 
/*Boites*/	 
	 
.container        /*Boite qui contient tous les autres*/
     { 
	 margin:0 ; 
	 padding:0 ; 
	 }

.gauche           /*Partie gauche de la page, avec les menus et la citation*/
     { 
     position: absolute ;
	 left: 20px; 
	 margin-top: 20px;
	 width: 155px;  
	 }
   
.menu             /*Boite de menu*/
     {
	 text-align : left ;
	 width : 100% ;  
	 padding: 10px;
     background-color: #242424 ;
	 }

.citation         /*Boite de la citation*/
     {
	 text-align : left ;
	 font-size : 8pt ;
	 width : 100% ;  
	 padding: 10px;
	 text-align: center ;
     background-color: #242424 ;
	 }

.contenu          /*Partie principale de la page, avec le contenu*/
     { 
     padding: 10px;
	 width:680px ;
	 margin: 0 210px ;
     }