.navbar {
  overflow: hidden;
  background-color:#ffffff;
   font-size: 14px;
   font-family:arial,verdana;
   font-weight:bold;
}

.navbar a {
  float: left;
  font-size: 14px;
  color: #404040;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family:arial,verdana;
  font-weight:bold;
}

.dropdown {
  float: left;
  overflow: hidden;
   font-size: 14px;
}

.dropdown .dropbtn {
  font-size: 14px;  
  border: none;
  outline: none;
  color: #404040;
  padding: 14px 16px;
  background-color: inherit;
   /*background-color:#00A0E3;*/
  font-family: inherit;
  margin: 0;
  
  
}

@keyframes example {
 /*  0%  {background-color:#ffffff; left:0px; top:100px;}
  100% {background-color:#ffffff; left:0px; top:0px;}*/
  
   0%  {background-color:#ffffff;  top:120px;}
  100% {background-color:#ffffff;  top:75px;}
}

.navbar a:hover, .dropdown:hover .dropbtn {
  /*background-color: red;*/
  /* background-color:#00A0E3;*/
    color:#0000ff;
}

.dropdown-content {
  display: none;
 position: absolute;
  /*position: relative;*/
  /*background-color: #f9f9f9;*/
  /*#00A0E3*/
   font-size: 12px;
   background-color:#ffffff;
  /*min-width: 160px;*/
 box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  animation-name: example;
  animation-duration: 1s;
}

.dropdown-content a {
  float: none;
  /*color: black;*/
  color:#404040;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border:1px solid #d1d1d1;
}

.dropdown-content a:hover {
 /* background-color: #ddd;*/
 background-color:#ffffff;
}

.dropdown:hover .dropdown-content {
  display: block;
}