/*Met tous les margin et padding à 0 par défaut*/
*{
margin:0;
padding:0;
}

/*
Div espace  après les float
*/
.espace{
  clear: both;
}

/*Classes particulières pour adapter ponctuellement une boîte*/

/*Mettre en italique*/
.italik{
	font-style: italic;
}
/*Police en rouge*/
.rouge {
color: #990033;
font-size:1em;
}

/*Police en noir*/
.noir {
color: #000;
}

/*Centrage d'un élément*/
.centrage{
	text-align: center;
	margin:0 auto;
}

/*Boites avec margin en bas */
.margebas{
	
	padding:0 5px 5px 5px;
	/*permet de mettre 3 rangées de miniatures*/
}

/*Fin des classes particulières*/



/*
Body 
*/
body {
	font-family: Verdana, Arial,Helvetica,  Courier, sans-serif;
	text-align:center;
	color: #F7F7F7;
	background-color: #000;
}
table{
margin:0 auto;
margin-left:auto;
margin-right:auto;
    }
	
img{border:0;}

ul {
list-style-type:none;
}

/* Le cadre central de la page, optimisé 800x600*/
#conteneur {
margin:0 auto;
width:800px;
height:600px;
background-color:#000;
}
#principale{
height:490px;
}
/*
Pour chaque page, uneimage sur le côté
background-image: 
url('bgdesert.jpg');
background-repeat: repeat-y
*/
#menu{
height:110px;
}
.lien {
float:left;
margin:2px;
border:1px solid #000000;
color:#F7F7F7;
}
.lien:hover{
border-color:#990033;
color:#990033;
}
/*Les liens texte*/
 a:link{
text-decoration: none;
color:#F7F7F7;
}

a:visited {
text-decoration: none;
color:#F7F7F7;
}

a:hover{
text-decoration: none;
color:#990033;
}

a:active {  
text-decoration: none;
color:#990033;
}

/*taille des textes*/
.minimini{
font-size: 9px;
}
.mini{
font-size: 12px;
}
.t0{
font-size: 14px;
}
.t1{
font-size: 16px;
}
.t2{
font-size: 18px;
}
.t3{
font-size: 24px;
}
