/* Style the navigation bar */
.navbar {
// clear : left;  // pour forcer affichage sous precedent bloc div
  width: 100%;
height : 100px;
color: #0000FF;
// background-color: blue;
  // overflow: auto;
}

/* Navbar links */
.navbar a {
  float: left;
  text-align: center;
  padding: 14px 16px;
  color: white;
background-color: #888888;  // gris

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

/* Navbar links on mouse-over */
.navbar a:hover {
  background-color: #0000FF;  //blue
}

/* Current/active navbar link */
.navbar a.active {
  background-color: #800080 ;  // purple - sinon #FF0000 pour Red
}

.navbar a.SelMenu {
  background-color: #800080 ;  // purple - sinon #FF0000 pour Red
}


/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
  font-family: inherit ;
  background-color: #888888;  // gris
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 17px;
  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 content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  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: black;
  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: #ddd;
}


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




/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 1000px) {
  .navbar {
    clear: left;  // Mobile, IPhone .... affichage menu sous bloc div precedent
    display: block;
	}
    .navbar a {
    font-size: 30px ;
  }

.dropdown .dropbtn {
  font-size: 30px;
  display: block;
   }
}