@charset "utf-8";
/* CSS Document */


/* ---The Drop-Down Menu--- */
.dropbtn {
	color: #000;
	background-color: #FFF;
    padding: 4px;
	padding-bottom: 8px;
    font-size: 15px;
	border:none;
	
}
.dropbtn a:hover {
	color: #1a497d;
	font-weight:600;
}

.dropdown {
	margin-right:1%;
	margin-left:1%;
    position: relative;
    display: inline-block;
}

.dropdown-content {    
	display: none;
	font-family: "Arial";
	font-weight:lighter;
	font-size: 14px;
	text-align: left;
    position: absolute;
	padding: 0px;
	background: rgba(255, 255, 255, 0.9);
    min-width: 175px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #097f75;
    padding: 8px 12px;
	border-bottom:groove;
	border-bottom-color:#FFF;
	border-bottom-width:thin;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
	color: #fff;
    background-color: #1a497d;
	font-weight:600;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* ---Responsive Drop-Down Menu--- */
.topnav {
  overflow: hidden;
  background-color: #fff;
}

.topnav a {
  float: left;
  display: block;
  color: #1a497d;
  text-align: left;
  padding: 8px 9px;
  text-decoration: none;
  font-size: 10px;
}

.topnav .icon {
  display: none;
}

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

.dropdownR .dropbtnR {
  display: none;
  color: #000;
  background-color: #fff;
  font-size: 10px;    
  border: none;
  outline: none;
  padding: 8px 9px;
  font-family: inherit;
  margin: 0;
}

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

.dropdownR-content a {
  float: none;
  color: #097f75;
  padding: 6px 20px;
  border-bottom:groove;
  border-bottom-color:#FFF;
  border-bottom-width:thin;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdownR:hover .dropbtnR {
  color: #1a497d;
  font-weight:600;
}

.dropdownR-content a:hover {
  color: #fff;
  background-color: #1a497d;
  font-weight:600;
}

.dropdownR:hover .dropdownR-content {
  display: block;
}

/* ---Collapsible Menu--- */
/* Collapsible Menu (Footer) */
.collapsible {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
}
.collapsible:after {
  content: '\002B';
  font-weight: bold;
  float:inherit;
}
.active:after {
  content: '\2212'; /* Unicode character for "minus" sign (-) */
}
.content {
  margin-left:5%;
  max-height: 0;
  overflow:hidden;
  transition: max-height 0.2s ease-out;
}

@media screen and (max-width: 1024px) {

  .dropdown .dropbtn {
    display: none;
  }
  .topnav a:not(:last-child), .dropdownR .dropbtnR {
    display: none;
  }
  .topnav a.icon {
    float: left;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
	position: absolute;
    left: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdownR {float: none;}
  .topnav.responsive .dropdownR-content {position: relative;}
  .topnav.responsive .dropdownR .dropbtnR {
    display: block;
    width: 100%;
    text-align: left;
  }
  .topnav.responsive .dropdownR .menuLink {
    display: block;
    width: 100%;
    text-align: left;
  }
  .collapsible {
	font-size:9px;
  }
  .content{
	font-size: 9px;
  }
}