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

.navbar_container {
  background-color: #0a62a9;
  width: 100%;
  position:fixed;
  z-index:1;
  text-align:center;
  height:55px;
  opacity: 100%;
}

.navbar {
  position:fixed;
  z-index:1;
  text-align:center;
  overflow:visible;
}

.navbar a {
  float: left;
  font-size: 22px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.subnav {
  float: left;
  overflow: hidden;
  margin:auto;
}

.subnav .subnavbtn {
  font-size: 22px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: #0a62a9;
  font-family: inherit;
  margin: 0;
  text-align:center;

}

.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: #8ccd4f;
  -moz-box-shadow: 0 0 8px #111;
-webkit-box-shadow: 0 0 8px #111;
box-shadow: 0 0 8px #111;
}

.subnav-content {
  display: none;
  position: fixed;
  background-color:#111;
  z-index: 1;
  text-align:center;
  overflow:hidden;
-moz-box-shadow: 0 0 10px #000;
-webkit-box-shadow: 0 0 10px #000;
box-shadow: 0 0 10px #000;

}

.subnav-content a {
  float: none;
  color: white;
  text-decoration: none;
  display:block;
}

.subnav-content a:hover {
  background-color: #1b3b54;
  color: black;
}

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