 /*=====================================================================
Filename: base.css 
=====================================================================*/

/* Page */ 
html { 
  font-size: 62.5%;
} 
body { 
  margin: 0; 
  padding: 0;
  font-family: Georgia,"Times New Roman",Serif;
  font-size: 1em;
  line-height: 1.5;
  color: black; 
  background: white;
}

/* Titres */ 
h1, h2, h3, h4, h5, h6 { 
  margin: 0;
  padding: 0;
  line-height: 1; 
  font-weight: normal; 
  font-style: normal; 
} 
h1 { 
  font-size: 2em; 
} 
h2 { 
  font-size: 1.6em; 
} 
h3 { 
  font-size: 1.4em; 
} 
h4 { 
  font-size: 1em; 
} 
 
/* Listes */ 
ul, ol { 
  margin: 0; 
  padding: 0;
  list-style-type: none; 
} 
 
/* Paragraphes */ 
p { 
  margin:0;
} 
address { 
  margin: .75em 0; 
  font-style: normal; 
} 
 
/* Liens */ 
a { 
  text-decoration: none; 
} 
a:link { 
  color: #ddd; 
} 
a:visited { 
  color: #ddd; 
} 
a:hover, a:focus, a:active { 
  color: #ddd; 
} 
/* Pas de bordure pointillÃ©e 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 Ã©lÃ©ments de type en-ligne (8) */ 
em { 
  font-style: italic; 
} 
strong { 
  font-weight: bold; 
}
:focus {
	outline: none;
}

/* Formulaires */ 
form, fieldset { 
  margin: 0; 
  padding: 0; 
  border: none; 
} 
input, button, select { 
  vertical-align: middle;
}