/* FEUILLE DE STYLE CSS */

a:active /* Quand le visiteur clique sur le lien */
{
   background-color: #000000;
}
a:hover /* Quand le visiteur pointe sur le lien */
{
   text-decoration: underline;
   color: black;
}
a /* Lien normal */
{
   text-decoration: none;
   color: black;
   font: 11px Verdana,sans-serif; line-height:130%;
   font-weight: bold;
}