@charset "utf-8";
/*
 GENERALE A TOUT APPLICATION ET TOUT ECRAN 
 fait à base dernière norme css mais qui ne doit pas poser problème à l'affichage
 maj le 04/08/2004 à 11h
 http://www.alsacreations.com/article/lire/563-gerer-la-taille-du-texte-avec-les-em.html
*/
/******************************* Début ELEMENTS **************************/
html * { /* Correspond à taille de caractère 16px pour tout navigateur */
  font-size: 100%;
  }
input, select, textarea{  /* Des fois que ancien navif ne reconnaisse pas '*' */
    font-size: 100%;
}
body {
    font-family: Verdana, "Lucida Console", Arial, Helvetica, sans-serif;
    font-size: 0.85em;
    line-height: 1.12em
  }
h1,h2,h3,h4,h5,h6 {
   font-weight:bold;
   margin: 0 0 0.25em 0;
   font-family: Georgia, "Times New Roman", Times, serif;
   }
h1 { font-size: 1.56em; }
h2 { font-size: 1.40em; }
h3 { font-size: 1.17em; }
h4 { font-size: 1.01em; }
ol, ul, li { font-size: 1.0em; }
textarea, pre, tt, code {
	font-family:"Courier New", Courier, monospace;
  }
abbr, acronym {
	border-bottom: 1px dotted #333;
	cursor: help;
}

/******************************* fin ELEMENTS **************************/
/**************************** Début PSEUDO-CLASS ***********************/
a:hover { /* Survol de lien */
	color: #000000;
	background-color:  transparent;
    text-decoration: underline; 
}
a:link {
	background-color:transparent ;
}
a:visited {
	color: #888888;
	background-color:transparent;
}
/**************************** fin PSEUDO-CLASS ***********************/




