ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

ul li {
  float: right;
}

ul li a {
  display: block;
  color: #F0F0F0;
  text-align: center;
  font-family: 'ErasBoldITC',Arial;
  font-size: 15px;
  font-weight: 300;
  padding: 15px 16px;
  text-decoration: none;
}

ul li a:hover {
  color:#DBDBDB;
}

/* menu-dropdown Button */
.menu-dropdown-button {
  background-color: rgba(0,0,0,0.00);
  height:35px;
  width: 140px;
  color: #F0F0F0;
  font-family: 'ErasBoldITC',Arial;
  font-size: 15px;
  font-weight: 300;
  line-height: 35px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.menu-dropdown-button:hover {
	color:#DBDBDB;
}
/* The container <div> - needed to position the menu-dropdown content */

/* The container <div> - needed to position the menu-dropdown content */
.menu-dropdown {
  position: relative;
  display: inline-block;
  float: right;
  width: 140px;
  background-color:#1CB9FB;
  box-shadow: rgba(255, 255, 255, 0.45) 0px 6px 15px;
  border-radius:16px;
  text-align:center;
}

/* menu-dropdown Content (Hidden by Default) */
.menu-dropdown-content {
  display: none;
  position: absolute;
  text-align: center;
  font-family: 'ErasBoldITC',Arial;
  font-size: 15px;
  font-weight: 300;
  background-color:#1CB9FB;
  min-width: 140px;
  z-index: 1;
}

/* Links inside the menu-dropdown */
.menu-dropdown-content a {
  color: #F0F0F0;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
}

/* Change color of menu-dropdown links on hover */
.menu-dropdown-content a:hover {color: #CFCFCF;}

/* Show the menu-dropdown menu on hover */
.menu-dropdown:hover .menu-dropdown-content {display: block;}

/* Show the menu-dropdown menu on hover */
.menu-dropdown-left:hover .menu-dropdown-content {display: block;}

