/* Menu -------------------------------- */
/* Text en blanc */
.container-header .mod-menu {
    color: #FFFFFF;
}
/* We add padding and radius so that on hover there is a nice background */
.container-header .mod-menu a {
    -webkit-border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    border-radius: 6px 6px 6px 6px; 
    padding: 3px 15px;
    color: #0088cc; /*#0088cc bleu*/
}
/* On hover there should be a gray background*/
.container-header .mod-menu a:hover {
    background-color: #eee;
	color: #172B59; /*#172B59 bleu foncé*/
}
/* We need to change the color of the Hamburger Menu because white on white is not good */
.container-header .navbar-toggler {
    color: #0088cc;
    border: 1px solid #0088cc;
}
/* Contenu ----------------------------- */
a:link
{
    text-decoration: none;
    color: #00AE00;
}
a:visited
{
    text-decoration: none;
    color: #B6BBFA;
}
a:hover
{
    text-decoration: none;
    color: #80FF80;
}
a:active
{
    text-decoration: none;
    color: #FFFFFF;
}