

.dropbtn {
   
  background: #547f92;
  background-image: -webkit-linear-gradient(top, #547f92, #80abbd);
  background-image: -moz-linear-gradient(top, #547f92, #80abbd);
  background-image: -ms-linear-gradient(top, #547f92, #80abbd);
  background-image: -o-linear-gradient(top, #547f92, #80abbd);
  background-image: linear-gradient(to bottom, #547f92, #80abbd);
  
  
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 5px 10px;
 
  -webkit-border-radius: 7;
  -moz-border-radius: 7;
  border-radius: 7px;
   border: solid #fff 2px;
 /* -webkit-box-shadow: 8px 4px 8px #050e24;
  -moz-box-shadow: 8px 4px 8px #050e24;
  box-shadow: 4px 2px 8px #889599;*/
  text-decoration: none;

}

.dropdown {
  position: relative;
  display: inline-block;
  float:right;
  z-index: 100;
  margin-right: 20px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}




.dropbtn:hover {
   background: #80abbd;
  background-image: -webkit-linear-gradient(top, #80abbd, #547f92);
  background-image: -moz-linear-gradient(top, #80abbd, #547f92);
  background-image: -ms-linear-gradient(top, #80abbd, #547f92);
  background-image: -o-linear-gradient(top, #80abbd, #547f92);
  background-image: linear-gradient(to bottom, #80abbd, #547f92);
  text-decoration: none;
}





