﻿#menu {
	width:60%;
  max-width: 720px;
  margin: auto;
  z-index: 100;
  position: relative;
}

.menuContent {
  text-align: center;
  padding-top: 12px;
  display:flex;
  justify-content:space-between;
}

.menuItem {
  font-size: 16px;
  font-weight: normal;
  color: #006074;
  padding: 15px 16px;
  text-align: center;
  font-weight: bold;
  position: relative;
  user-select: none;
  z-index: 100;
}

.menuItem a {
  text-decoration: none;
  color: #006074;
}

.subMenu {
  display: none;
  position: absolute;
  top: 52px;
  left: -2px;
  width: 200px;
  text-align: left;
  font-weight: normal;
  font-size: 14px;
}

.subMenuItem {
  outline: 2px solid #006074;
  outline-offset:-2px;
  padding: 12px;
  background-color: #fff;
  margin-top:-2px;
}

.subMenu a {
  color: #006074;
  text-decoration: none;
}

.subMenuItem:hover {
  background-color: #cae6dd;
}

.menuItem:hover {
  outline: 2px solid #006074;
}

.menuItem:hover .subMenu {
  display: block;
}

.showContent {
  display: block !important;
}
.closebtn {
  display: none;
}
#respLogo {
  background-color: white;
  margin: 0 5%;
  text-align: center;
}
.close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

