@charset "utf-8";

/* --- STYLES DE BASE --- */ 
a{outline: none;}
:focus{-moz-outline-style: none;} 
/* Page */ 
html {
  font-size: 100%; /* vite un bug d'IE 6-7. (1) */ 
} 
body { 
  margin: 0 auto; 
  overflow:auto;
  padding: 0; /* Remettre  zro si ncessaire. */ 
  /* Pensez  utiliser une collection de polices (2), par ex: 
  font-family: Arial, Helvetica, FreeSans, sans-serif; */ 
  font-family:Verdana;
  font-size: .75em; /*  adapter pour la police choisie. (3) */ 
  line-height: 1.2; /*  adapter au design. (4) */ 
  color: #666666; 
  background:#ffffff;
} 

/* Titres */ 
h1, h2, h3, h4, h6 { 
  margin: 1em 0 .5em 0; /* Rapproche le titre du texte. (5) */ 
  line-height: 1.2; 
  /* Valeur par dfaut. (6) */ 
} 
h1 { 
  font-size: 1em;
  color:#333333;
  font-weight:normal;
  font-style:normal;
} 
h2 { 
  font-size: .75em;
  color:#333333;
  font-weight:bold;
  font-style:strong;
} 
h3 { 
	 font-size: .75em;
  color:#666666;
  font-weight:normal;
  font-style:normal;
} 
h4 { 
	 font-size: .9em;
  color:#333333;
  font-weight:normal;
  font-style:normal;
} 


/* Paragraphes */ 
p { 
  margin: .75em 0; /* Marges plus faibles que par dfaut. (7) */ 
} 
address { 
  margin: .75em 0; 
  font-style: normal; 
} 
 
/* Liens */ 
a { 
  	color:#666666;
	text-decoration:none;
	font-size:.75em;
	
} 
a:link { 
  	color:#666666;
	text-decoration:none;
} 
a:visited { 
 	color:#666666;
} 
a:hover, a:focus, a:active { 
  	color:#333333;
	text-decoration:none;
} 
/* Pas de bordure pointille ou halo lors du clic sur un lien */ 
a:active { 
  outline: none; 
} 
/* Pas de bordure autour des images dans les liens */ 
a img { 
  border: none; 
} 
 
/* Divers lments de type en-ligne (8) */ 
em { 
  font-style: italic; 
}
 
/* Formulaires */ 
form, fieldset { 
  margin: 0; 
  padding: 0; 
  border: none; 
} 
input, button, select { 
  vertical-align: middle; /* Solution pb. d'alignement. (9) */ 
}

/* centrage */ 
div.centrage {
	text-align: center;
}

/* Elements */ 

div#table{
	position:relative;
	width:600px;
	margin-top::5px;
	margin-left:5px;
}
