@charset "utf-8";

/* Utility Helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Base Styles
--------------------------------------------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #F9F9F9;
  background-color: #06213F;
}

a {
  color: #55ABDA;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

.clear::after {
  content: "";
  display: table;
  clear: both;
}

.fl_left { float: left; }
.fl_right { float: right; }
.center { text-align: center; }
.right { text-align: right; }
.bold { font-weight: bold; }
.nospace { margin: 0; padding: 0; list-style: none; }
.btmspace-10 { margin-bottom: 10px; }
.btmspace-15 { margin-bottom: 15px; }
.btmspace-30 { margin-bottom: 30px; }
.pright-10 { padding-right: 10px; }
.borderedbox { border: 1px solid #D7D7D7; padding: 3px; }

/* Grid Layout
--------------------------------------------------------------------------------------------------------------- */
.group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.one_quarter { width: 23%; }
.one_half { width: 48%; }
.one_third { width: 31%; }
.three_quarter { width: 73%; }

/* Top Bar
--------------------------------------------------------------------------------------------------------------- */
#topbar {
  padding: 10px 0;
  text-align: right;
  font-size: 0.85em;
}

#topbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#topbar li {
  display: inline-block;
  margin-right: 5px;
  padding-right: 10px;
  border-right: 1px solid #FFFFFF;
}

#topbar li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}

/* Header
--------------------------------------------------------------------------------------------------------------- */
#header {
  padding: 20px 0;
}

#header #logo h1 {
  margin: 0 0 5px 0;
  font-size: 32px;
  line-height: 1.1;
  font-variant: small-caps;
}

#header #logo p {
  margin: 0;
  color: #979797;
}

#header form {
  position: relative;
  width: 250px;
  margin-top: 5px;
}

#header fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

#header input {
  width: 100%;
  height: 36px;
  padding: 5px 40px 5px 10px;
  border: none;
  border-radius: 6px;
  color: #333;
}

#header button {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background-color: #55ABDA;
  color: #FFFFFF;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* Main Navigation
--------------------------------------------------------------------------------------------------------------- */
#mainav {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

#mainav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#mainav > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 15px;
}

#mainav a {
  display: block;
  padding: 12px 10px;
  color: #06213F;
}

#mainav .active a, #mainav a:hover {
  color: #55ABDA;
}

#mainav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #06213F;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  text-align: left;
}

#mainav ul ul li {
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#mainav ul ul a {
  color: #FFFFFF;
  padding: 10px 15px;
  text-transform: none;
}

#mainav ul ul a:hover {
  background-color: #55ABDA;
}

#mainav li:hover > ul {
  display: block;
}

/* Homepage Slider
--------------------------------------------------------------------------------------------------------------- */
#slider {
  position: relative;
  margin-top: 15px;
}

#slider .rounded {
  padding: 10px;
  background-color: #F9F9F9;
  border-radius: 8px;
}

#slide-wrapper figure {
  margin: 0;
  position: relative;
}

#slide-wrapper figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 360px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  border-radius: 6px;
}

#slide-wrapper figcaption h2 {
  margin-top: 0;
  font-size: 20px;
  color: #06213F;
}

#slide-tabs {
  display: flex;
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  background-color: #DEDACB;
  border-radius: 0 0 8px 8px;
}

#slide-tabs li {
  flex: 1;
}

#slide-tabs li a {
  display: block;
  padding: 12px 5px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  border-right: 1px solid #ccc;
  text-transform: uppercase;
}

#slide-tabs li:last-child a {
  border-right: none;
}

#slide-tabs li.active a, #slide-tabs li a:hover {
  background-color: #06213F;
  color: #FFFFFF;
}

/* Content Area
--------------------------------------------------------------------------------------------------------------- */
.container {
  padding: 25px 15px;
  color: #333333;
}

.container h1, .container h2, .container h3 {
  color: #06213F;
  border-bottom: 2px solid #D7D7D7;
  padding-bottom: 8px;
  margin-top: 0;
}

.unit-list li a {
  display: block;
  color: #333;
}

.unit-list em.heading {
  display: block;
  font-style: normal;
  font-weight: bold;
  margin-bottom: 5px;
  color: #06213F;
}

.listing li {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E0E0E0;
}

.imgl {
  float: left;
  margin-right: 15px;
}

.quickinfo li a {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #DEDACB;
  color: #06213F;
  margin-bottom: 10px;
  border-radius: 6px;
  font-weight: bold;
}

.quickinfo li a img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.quickinfo li a:hover {
  background-color: #06213F;
  color: #FFFFFF;
}

/* Banner / Twitter
--------------------------------------------------------------------------------------------------------------- */
#twitter {
  background-color: #06213F;
  color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

#twitter div:first-child {
  border-right: 2px solid #FFFFFF;
  padding-right: 20px;
}

#twitter a {
  color: #55ABDA;
}

/* Directory Section
--------------------------------------------------------------------------------------------------------------- */
.directory-section .one_quarter {
  font-size: 13px;
}

.directory-section ul li {
  margin-bottom: 6px;
}

/* Footer & Copyright
--------------------------------------------------------------------------------------------------------------- */
.rounded {
  background-color: #FFFFFF;
  border-radius: 8px;
  color: #333333;
}

#footer {
  padding: 25px 15px;
  color: #333333;
}

#footer address {
  font-style: normal;
  line-height: 1.6;
}

#footer .faico {
  margin-bottom: 15px;
  padding: 0;
}

#footer .faico li {
  display: inline-block;
  margin-right: 5px;
}

#footer .faico a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #FFF;
  border-radius: 4px;
}

.faicon-facebook { background-color: #3B5998; }
.faicon-twitter { background-color: #00ACEE; }
.faicon-linkedin { background-color: #0E76A8; }
.faicon-flickr { background-color: #FF0084; }
.faicon-rss { background-color: #EE802F; }

#footer form {
  position: relative;
}

#footer fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

#footer input {
  width: 100%;
  height: 36px;
  padding: 5px 40px 5px 10px;
  border: 1px solid #CCC;
  border-radius: 4px;
}

#footer button {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background-color: #55ABDA;
  color: #FFF;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

#copyright {
  padding: 15px 0;
  font-size: 13px;
  color: #55ABDA;
}

/* Media Queries (Responsive Design)
--------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 978px) {
  .wrapper {
    width: 95%;
  }

  .one_quarter, .one_half, .one_third, .three_quarter {
    width: 100%;
  }

  .group {
    flex-direction: column;
  }

  #header .fl_left, #header .fl_right {
    float: none;
    text-align: center;
  }

  #header form {
    margin: 15px auto 0 auto;
  }

  #slide-wrapper figcaption {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  #slide-tabs {
    flex-direction: column;
  }

  #slide-tabs li a {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  #twitter {
    flex-direction: column;
    text-align: center;
  }

  #twitter div:first-child {
    border-right: none;
    border-bottom: 2px solid #FFFFFF;
    padding-right: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  #copyright .fl_left, #copyright .fl_right {
    float: none;
    text-align: center;
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 979px) {
  .wrapper {
    max-width: 978px;
  }
}