/* 1er menu */
/* Add a black background color to the top navigation */
.topnav {
  /* line-height: 50px; */
  border-bottom: 3px solid #999;
  font-weight: bold;
  /* background-color: #000; */
  overflow: hidden;
  /* Bug html*/
  margin-left: -8px;
  margin-top: -8px;
  /* Bug html*/
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  /* padding: 15px; */
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 8px;
  padding-right: 8px;

  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #999;
  color: black;
}
a.topnavpad:hover {
  padding-bottom: 16px;
}


/* Add a color to the active/current link */
/* .topnav a.active {
  background-color: #04AA6D;
  color: white;
} */


.topnav a.supp {
  background-color: #000;
  color: #fff;
}

.topnav a.supp:hover {
  background-color: #000;
  color: #fff;
}


.topnavhr {
  border-bottom: 3px solid #999;
  /* Bug html*/
  margin-left: -8px;
  /* Bug html*/
}



















/*2em menu*/
 /* Navbar container */
 .navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
button.dropbtn {
	width: 	50px;
	height: 55px;
}
button.dropbtn2 {
	width: 	90px;
	height: 55px;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}
.dropdown .dropbtn2 {
  font-size: 16px;
  border: none;
  outline: none;
  color: #fff;
  /* padding: 0px 5px 5px 5px; */
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

button.dropbtn2:hover {
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover button.dropbtn{
    color: black;
}
.dropdown:hover button.dropbtn2{
  color: black;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover {
  background-color: #999;
  /* color: #000; */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  color: #fff;
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}


/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #000;
  color: #fff;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
