voila mon exemple en images http://dgfab.free.fr/teste.htm
dans le menu de gauche (.milieuMgauche ) les effets sur mes liens sont les mêmes que sur le texte en latin hors le style est different .
Pourquoi ? faut il placer les styles dans un ordre
D'avance merci a celui qui pourra m'aider

CODE

/* Liens des menus  */
.milieuMgauche a:link {
color: #FFFFFF;
text-decoration: none;
}
.milieuMgauche a:visited {
color: #FF0000;
font-style: italic;
}
.milieuMgauche a:hover {
color: #00FF00;
text-decoration: underline;
}
.milieuMgauche a:active {
color: #0000FF;
}
                           
/* Liens normaux */
 a:link {

   color: #000000;

   font-weight: normal;

   font-style: normal;

}
a:hover {

   color: #000000;

   text-decoration: underline;

   background-color: #FFFF00;

   font-weight: bold;

   font-style: normal;

}
a:visited {

   color: #00FF00;

   text-decoration: underline;

   font-style: italic;

   font-weight: normal;

}
a:active {

   color: #000000;

   text-decoration: none;

   background-color: #CCCCCC;

   font-weight: bold;

   font-style: normal;

}