.topnav {
	overflow: hidden;
background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) #989898;
 background-blend-mode: multiply,multiply;
	border-bottom-style: solid;
	border-bottom-color: #003366;
	text-align: center;
	margin: auto auto;
	text-align: center;
}
.topnav a:active {
	font-weight: bold;
	color: #FF0;
}
.topnav a {
  float: left;
  display: block;
  color: #FFF;
  text-align: center;
  padding: 14px 14px;
  text-decoration: none;
  font-size: 14px;
}

.active {
	background-color: #006666;
	color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
	font-size: 14px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 14px;
	margin: 0;
background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) #989898;
 background-blend-mode: multiply,multiply;
      border-radius: 0px;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #990000;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: #FFF;
	padding: 12px 16px;
	text-decoration: none;
	font-size: 13px;
	display: block;
	text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #FF9933;
	color: #FFF;
}

.dropdown-content a:hover {
	background-color: #0099CC;
	color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.floating-menu {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
}

.menu-button {
	background-color: #006666;
	color: white;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 24px;
	cursor: pointer;
	z-index: 1000;
}

.menu-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 160px;
    display: none;
}

.menu-items li {
    padding: 12px;
    text-align: center;
}

.menu-items li a {
    color: #333;
    text-decoration: none;
}

.menu-items li a:hover {
    color: #f44336;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:nth-child(-n+3)), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}