/** staticfreesoft.com css ( https://webdevtrick.com/css-responsive-navbar/ ) **/
body {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, sans-serif;
}
h1
{
  text-align:center;
}
.headerPart
{
  height:110px;		/** height of top banner plus 40 **/
  background-color:#E3BC1F;
}
.bannerdiv
{
  max-width:489px;
  vertical-align:middle;
  display:table-cell;
  height:70px;
}
.contentPart
{
  position:absolute;
  overflow-y:scroll;
  top: 110px;
  left:8px;
  right:8px;
  bottom:2px;
}
.nav-bar {
  height: 40px;
  background: #E4BD19;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}
 
nav {
  float: left;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  font-size: 24px;
  font-weight: bold;
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 40px;
  background: #E4BD19;
  color: #000000;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: #ffff00;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
}
nav ul li ul li {
  font-size: 15px;			/** added to shrink text **/
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 15px;		/** was 20 **/
}
 
.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #262626;
  height: 70px;
  width: 70px;
}

.navhr {
  border:0;
  border-top:1px solid black;
  margin:0
}

@media only screen and (max-width: 699px) {	/** NARROW **/
  nav { width:100%; padding:0 0 15px; }
  nav ul { display:none; }
  nav ul li { float:none; z-index:100; }
  nav ul li a { padding:15px; line-height:20px; padding-left:25%; }
  nav ul li ul li a { padding-left:30%; }
  .nav-mobile { display:block; }
  .nav-dropdown { position:static; }
  .headerPart { height:70px; }		/** height of top banner **/
  .contentPart { top:70px; }		/** height of top banner **/
  .nav-bar { background:white; }
}
@media screen and (min-width: 700px) {	/** WIDE **/
  .nav-list { display:block !important; }
  .nav-dropdown { position:absolute; }
  .headerPart { height:110px; }		/** height of top banner plus 40 **/
  .contentPart { top:110px; }		/** height of top banner plus 40 **/
  .nav-bar { background:#E4BD19; }
  .nav-mobile { display:none; }
}

#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

.faq_question {
  margin: 0px;
  padding: 0px 0px 5px 0px;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
}
.faq_answer_container {
  height: 0px;
  overflow: hidden;
  padding: 0px;
}
