/* Revision log:
v21.0.2 max width of nav-container (1010px) changed to width and increased to 1060px.
		media width break point changed from 991 to 1060px.
*/
@charset "UTF-8";
.navigation {
  position: fixed;
  top: 0;
  width:100%;
  height: 80px;
  background: #4682B4;
  background-image: linear-gradient(to right, #4682B4, #4682B4);
  font-family: 'Titillium Web', Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  z-index: 10;
  box-shadow: 0 -2px #2b4f6d inset;
}
@media only screen and (max-width: 687px) {
.navigation {
	height: 50px;
}
}
.nav-container {
  max-width: 1102px;
  margin: auto auto;
}
.brand {
  position: absolute;
  height: 100%;
}
.logo {
  height: 100%;
}
.logo img {
  margin-top: 2px;
  height: calc(100% - 2px - 2px);
}
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 15px;
  line-height: 78px;
  background: #4682B4;
  color: white;
  text-decoration: none;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 10;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #4682B4;
  height: 77px;
  width: 70px;
}

@media only screen and (max-width: 1101px) {
  .nav-mobile {
    display: block;
	height: calc(100% - 3px);
  }

  nav {
    width: 25%;
	min-width: 120px;
    padding: 77px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }

  .nav-dropdown {
    position: static;
  }
}
@media only screen and (min-width: 1102px) {
  .nav-list {
    display: block !important;
  }
}
#nav-mobile {
	display: table-cell;
	vertical-align: middle;
  text-align: center;
}
#nav-toggle {
	display: inline-block;
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
@media only screen and (max-width: 687px) {
	  nav {
    width: 25%;
	min-width: 120px;
    padding: 48px 0 15px;
  }
#nav-toggle {
	display: inline-block;
  position: absolute;
  left: 18px;
  top: 12px;
  cursor: pointer;
  padding: 10px 35px 10px 0px;
}
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 25px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -8px;
}
#nav-toggle span:after {
  bottom: -8px;
}
#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);
}

article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}