.dropbtn {
	background-color: #f9f9f9;
	color: #0f0f0f;
	padding: 16px;
	font-size: 16pt;
	border: none;
	cursor: pointer;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown {
	padding: 10px 10px 10px 10px;
	margin: 0;
	text-align: center;
	vertical-align:text-top;
	width: 18%;
	color: #111111;
	background-color: rgba(255, 255, 255, 0.4);
	font-size: 12pt;
	font-weight: bold;
	font-family: Verdana;
	position: center;
	display: inline-block;
}

.dropdown-content {
  position: center;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 98;
  max-height: 0px;
  min-width: 160px;
  transition: max-height 15s ease-out;
  overflow: hidden;
}

.dropdown-content a {
  color: black;
  background-color: #f9f9f9;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #e2e2e2;
}

.dropdown:hover .dropdown-content {
  max-height: 1200px;
  min-width: 160px;
  transition: max-height 0.2s ease-in;
}

.dropdown:hover .dropbtn {
  background-color: #f9f9f9;
  border-bottom: 0px solid #e0e0e0;
  transition: max-height 15s ease-in;
}
