dropdown-content1/* 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 */
.dropdown .dropbtn {
  -webkit-border-radius: 20px;
   -moz-border-radius: 20px;
   border-radius: 20px;
   height: 15px;
   line-height: 15px;
  font-family: Arial, Helvetica, sans-serif;
    width: 140px;
  font-weight: 900;
   padding: 10px;
  font-size: 11.7px;
  border: none;
  outline: none;
  color: white;
 // padding: 14px 16px;
 // background-color: inherit;
 background-color: #000080;
 text-decoration: none;
   display: inline-block;
   //cursor: pointer;
   text-align: left;
   margin-bottom:10px;
   margin-left:20px;
   margin-top:4px;


  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;top:130px;left:-165px;
   background-color: #f9f9f9;
  //background-color: #000;
  //background-color:#C0C0C0;
  ////min-width: 170px;
  //width:120px;
  //height:100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1
  
  
}

.dropdown-content1 {
  display: none;
  position: absolute;top:240px;left:-155px;
   background-color: #f9f9f9;
  //background-color: #000;
  //background-color:#C0C0C0;
  ////min-width: 170px;
  //width:120px;
  //height:100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1
  
  
}


.dropdown-content2 {
  display: none;
  position: absolute;top:3px;left:-170px;
  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, .dropdown-content1 a,.dropdown-content2 a {
  float: none;
  color: white;
  padding: 6px 12px;
  text-decoration: none;
  display: block;
  text-align: center;
  text-transform:uppercase;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover,.dropdown-content1 a:hover{
  background-color: #ddd;
  color:blue;
}

.dropdown-content2 a:hover {
  background-color: #ddd;
  color:blue;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content,.dropdown:hover .dropdown-content1 {
  display: block;
}

.dropdown:hover .dropdown-content2 {
  display: block;
}