/* liens visités doivent rester en bleu */
a:visited
{
color: #0000FF;
}

/*   style menu*/
.menu a:link
{
color : white;
text-decoration: none;
font-weight: bold;
}
.menu a:visited 
{
color : white;
text-decoration: none;
}

/* style titre h1 pages villes*/
.ville-titre-h1
{
text-align: center;
color: rgb(0, 156, 255);
}

/* style titre h2  pages villes*/
.ville-titre-h2
{
text-align: center;
color: rgb(0, 156, 255);
}

.ville-titre-moteur-recherche-vols
{
text-align: center;
color: rgb(0, 156, 255);
}

/* style tableau compagnies pages villes*/
.ville-tableau-compagnies-par-pays
{
background-color: rgb(222, 232, 244);
width: 100%;
text-align: left;
margin-left: auto;
margin-right: auto;
}

.ville-tableau-compagnies-par-pays a
{
text-decoration: none;
}

.ville-tableau-compagnies-par-pays a:visited /* Quand le visiteur a déjà vu la page concernée */
{
color: #0000FF;
}

.ville-tableau-compagnies-par-pays a:hover
{
text-decoration: underline; /* Le lien deviendra souligné quand on pointera dessus */
   color: green; /* Le lien sera écrit en vert quand on pointera dessus */
}





