/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*=hint--] {
  position: relative;
  display: inline-block;
  /**
   * tooltip arrow
   */
  /**
   * tooltip body
   */
}
[class*=hint--]:before, [class*=hint--]:after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0ms;
}
[class*=hint--]:hover:before, [class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}
[class*=hint--]:hover:before, [class*=hint--]:hover:after {
  transition-delay: 100ms;
}
[class*=hint--]:before {
  content: "";
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  background-color: hsl(0, 0%, 22%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
  z-index: 1000001;
}
[class*=hint--]:after {
  background: hsl(0, 0%, 22%);
  color: white;
  padding: 8px 10px;
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1rem;
  white-space: nowrap;
}
[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}
[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before, [aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * top tooltip
 */
.hint--top {
  --rotation: 135deg;
}
.hint--top:before {
  margin-bottom: -5.5px;
  transform: rotate(var(--rotation));
}
.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%;
}
.hint--top:before {
  left: calc(50% - 6px);
}
.hint--top:after {
  transform: translateX(-50%);
}
.hint--top:hover:before {
  transform: translateY(-8px) rotate(var(--rotation));
}
.hint--top:hover:after {
  transform: translateX(-50%) translateY(-8px);
}

/**
 * bottom tooltip
 */
.hint--bottom {
  --rotation: -45deg;
}
.hint--bottom:before {
  margin-top: -5.5px;
  transform: rotate(var(--rotation));
}
.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%;
}
.hint--bottom:before {
  left: calc(50% - 6px);
}
.hint--bottom:after {
  transform: translateX(-50%);
}
.hint--bottom:hover:before {
  transform: translateY(8px) rotate(var(--rotation));
}
.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px);
}

/**
 * right tooltip
 */
.hint--right {
  --rotation: -135deg;
}
.hint--right:before {
  margin-left: -5.5px;
  margin-bottom: -6px;
  transform: rotate(var(--rotation));
}
.hint--right:after {
  margin-bottom: calc(-1 * (1rem + 16px) / 2);
}
.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%;
}
.hint--right:hover:before {
  transform: translateX(8px) rotate(var(--rotation));
}
.hint--right:hover:after {
  transform: translateX(8px);
}

/**
 * left tooltip
 */
.hint--left {
  --rotation: 45deg;
}
.hint--left:before {
  margin-right: -5.5px;
  margin-bottom: -6px;
  transform: rotate(var(--rotation));
}
.hint--left:after {
  margin-bottom: calc(-1 * (1rem + 16px) / 2);
}
.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%;
}
.hint--left:hover:before {
  transform: translateX(-8px) rotate(var(--rotation));
}
.hint--left:hover:after {
  transform: translateX(-8px);
}

/**
 * top-left tooltip
 */
.hint--top-left {
  --rotation: 135deg;
}
.hint--top-left:before {
  margin-bottom: -5.5px;
  transform: rotate(var(--rotation));
}
.hint--top-left:before, .hint--top-left:after {
  bottom: 100%;
  left: 50%;
}
.hint--top-left:before {
  left: calc(50% - 6px);
}
.hint--top-left:after {
  transform: translateX(-100%);
}
.hint--top-left:after {
  margin-left: 12px;
}
.hint--top-left:hover:before {
  transform: translateY(-8px) rotate(var(--rotation));
}
.hint--top-left:hover:after {
  transform: translateX(-100%) translateY(-8px);
}

/**
 * top-right tooltip
 */
.hint--top-right {
  --rotation: 135deg;
}
.hint--top-right:before {
  margin-bottom: -5.5px;
  transform: rotate(var(--rotation));
}
.hint--top-right:before, .hint--top-right:after {
  bottom: 100%;
  left: 50%;
}
.hint--top-right:before {
  left: calc(50% - 6px);
}
.hint--top-right:after {
  transform: translateX(0);
}
.hint--top-right:after {
  margin-left: -12px;
}
.hint--top-right:hover:before {
  transform: translateY(-8px) rotate(var(--rotation));
}
.hint--top-right:hover:after {
  transform: translateY(-8px);
}

/**
 * bottom-left tooltip
 */
.hint--bottom-left {
  --rotation: -45deg;
}
.hint--bottom-left:before {
  margin-top: -5.5px;
  transform: rotate(var(--rotation));
}
.hint--bottom-left:before, .hint--bottom-left:after {
  top: 100%;
  left: 50%;
}
.hint--bottom-left:before {
  left: calc(50% - 6px);
}
.hint--bottom-left:after {
  transform: translateX(-100%);
}
.hint--bottom-left:after {
  margin-left: 12px;
}
.hint--bottom-left:hover:before {
  transform: translateY(8px) rotate(var(--rotation));
}
.hint--bottom-left:hover:after {
  transform: translateX(-100%) translateY(8px);
}

/**
 * bottom-right tooltip
 */
.hint--bottom-right {
  --rotation: -45deg;
}
.hint--bottom-right:before {
  margin-top: -5.5px;
  transform: rotate(var(--rotation));
}
.hint--bottom-right:before, .hint--bottom-right:after {
  top: 100%;
  left: 50%;
}
.hint--bottom-right:before {
  left: calc(50% - 6px);
}
.hint--bottom-right:after {
  transform: translateX(0);
}
.hint--bottom-right:after {
  margin-left: -12px;
}
.hint--bottom-right:hover:before {
  transform: translateY(8px) rotate(var(--rotation));
}
.hint--bottom-right:hover:after {
  transform: translateY(8px);
}

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 * 	4) hint--fit
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after,
.hint--fit:after {
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word;
}

.hint--small:after {
  width: 80px;
}

.hint--medium:after {
  width: 150px;
}

.hint--large:after {
  width: 300px;
}

.hint--fit:after {
  width: 100%;
}

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
[class*=hint--] {
  /**
   * tooltip body
   */
}
[class*=hint--]:after {
  text-shadow: 0 1px 0px black;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: hsl(1, 40%, 50%);
  text-shadow: 0 1px 0px #592726;
}
.hint--error:before {
  background-color: hsl(1, 40%, 50%);
}

/**
 * Warning
 */
.hint--warning:after {
  background-color: hsl(38, 46%, 54%);
  text-shadow: 0 1px 0px #6c5328;
}
.hint--warning:before {
  background-color: hsl(38, 46%, 54%);
}

/**
 * Info
 */
.hint--info:after {
  background-color: hsl(200, 50%, 45%);
  text-shadow: 0 1px 0px #1a3c4d;
}
.hint--info:before {
  background-color: hsl(200, 50%, 45%);
}

/**
 * Success
 */
.hint--success:after {
  background-color: hsl(121, 32%, 40%);
  text-shadow: 0 1px 0px #1a321a;
}
.hint--success:before {
  background-color: hsl(121, 32%, 40%);
}

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible;
}
.hint--always.hint--top:before {
  transform: translateY(-8px) rotate(var(--rotation));
}
.hint--always.hint--top:after {
  transform: translateX(-50%) translateY(-8px);
}
.hint--always.hint--top-left:before {
  transform: translateY(-8px) rotate(var(--rotation));
}
.hint--always.hint--top-left:after {
  transform: translateX(-100%) translateY(-8px);
}
.hint--always.hint--top-right:before {
  transform: translateY(-8px) rotate(var(--rotation));
}
.hint--always.hint--top-right:after {
  transform: translateY(-8px);
}
.hint--always.hint--bottom:before {
  transform: translateY(8px) rotate(var(--rotation));
}
.hint--always.hint--bottom:after {
  transform: translateX(-50%) translateY(8px);
}
.hint--always.hint--bottom-left:before {
  transform: translateY(8px) rotate(var(--rotation));
}
.hint--always.hint--bottom-left:after {
  transform: translateX(-100%) translateY(8px);
}
.hint--always.hint--bottom-right:before {
  transform: translateY(8px) rotate(var(--rotation));
}
.hint--always.hint--bottom-right:after {
  transform: translateY(8px);
}
.hint--always.hint--left:before {
  transform: translateX(-8px) rotate(var(--rotation));
}
.hint--always.hint--left:after {
  transform: translateX(-8px);
}
.hint--always.hint--right:before {
  transform: translateX(8px) rotate(var(--rotation));
}
.hint--always.hint--right:after {
  transform: translateX(8px);
}

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:before {
  border-radius: 0 4px 0 0;
}
.hint--rounded:after {
  border-radius: 4px;
}

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  transition-duration: 0ms;
}

.hint--bounce:before, .hint--bounce:after {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

@supports (transition-timing-function: linear(0, 1)) {
  .hint--bounce:before, .hint--bounce:after {
    --spring-easing: linear(
    	0,
    	0.009,
    	0.035 2.1%,
    	0.141 4.4%,
    	0.723 12.9%,
    	0.938,
    	1.077 20.4%,
    	1.121,
    	1.149 24.3%,
    	1.159,
    	1.163 27%,
    	1.154,
    	1.129 32.8%,
    	1.051 39.6%,
    	1.017 43.1%,
    	0.991,
    	0.977 51%,
    	0.975 57.1%,
    	0.997 69.8%,
    	1.003 76.9%,
    	1
    );
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s var(--spring-easing);
  }
}
.hint--no-shadow:before, .hint--no-shadow:after {
  text-shadow: initial;
  box-shadow: initial;
}

.hint--no-arrow:before {
  display: none;
}

.bold {
  font-weight: bold;
}

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

body {
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 601px) {
  body {
    position: relative;
  }
}

h1, h2, h3, h4 {
  font-weight: lighter;
}

h1 {
  color: #006ec7;
}

h2, h3, h4 {
  color: rgb(63, 63, 63);
}

hr {
  border-top: 1px solid rgba(0, 110, 181, 0.2);
}

.btn:active:focus {
  background-color: transparent;
}

.btn-default:active:focus {
  background-color: transparent;
}

.year {
  text-align: center;
  display: block;
  font-size: 8px;
}

.btn-default {
  border-color: #f7d117;
}
.btn-default:hover {
  background-color: transparent;
}

.get-involved {
  border: 1px solid #f7d117;
  padding: 5px 20px 5px 20px;
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
}
.get-involved h3 {
  font-weight: bold;
}
.get-involved a {
  text-decoration: underline;
  color: rgb(74, 74, 74);
}

.event {
  height: 65px;
  margin: 10px 0 10px 0;
}
.event h5 {
  margin: 0;
  color: #006ec7;
  font-weight: 600;
}
.event p {
  font-weight: lighter;
  font-size: 12px;
}
.event .date-box {
  text-align: center;
  border: 1px solid #f7d117;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.event .date-box .day {
  font-weight: bold;
  font-size: 22px;
  display: block;
}
.event .date-box .month {
  font-size: 8px;
  text-transform: uppercase;
  display: block;
}
.event .date-box-container {
  padding-right: 0;
}
.event .date-box-container .date-box {
  padding-top: 0;
  padding-bottom: 6px;
}

.spinner {
  width: 40px;
  margin: 150px auto;
}

.no-news-to-show {
  padding: 30px;
  text-align: center;
}
.no-news-to-show span {
  text-transform: uppercase;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}

.nya-bs-select:not(.ng-pristine) .special-title {
  display: none;
}

header.header {
  background-color: #fff;
  border-bottom: 6px solid rgb(232, 222, 18);
  padding-bottom: 10px;
  padding-top: 20px;
}
header.header .container {
  padding: 0;
}
header.header .nav-toggle {
  float: right;
  font-size: 26px;
  margin-right: 10px;
}
header.header .nav-toggle a:visited, header.header .nav-toggle a:active {
  text-decoration: none;
}
header.header .logo {
  display: block;
  margin: 10px 18px;
}
header.header .logo img {
  height: 38px;
}
header.header nav.nav-collapse ul li, header.header .nav-item ul li {
  border-bottom: 1px solid rgb(232, 222, 18);
}
header.header nav.nav-collapse ul li a, header.header .nav-item ul li a {
  text-transform: uppercase;
  color: rgb(74, 74, 74);
  font-size: 18px;
  line-height: 36px;
  padding: 0.5em 1em;
  font-weight: 600;
}
header.header.committee-lander-header {
  border-bottom: 6px solid #205a87;
}

@media only screen and (min-width: 768px) {
  header.header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  header.header .logo {
    float: left;
  }
  header.header nav.nav-collapse {
    float: left;
    margin-top: 12px;
  }
  header.header nav.nav-collapse ul li {
    width: auto;
    border-bottom: none;
    float: left;
  }
  header.header nav.nav-collapse ul li a {
    text-transform: uppercase;
    color: rgb(74, 74, 74);
    font-size: 12px;
    padding: 0.5em 1em;
  }
  header.header nav.nav-collapse ul li.current_page_item a {
    color: rgb(222, 135, 3);
  }
  .lang-item {
    display: none !important;
  }
}
.ohto-link {
  position: absolute;
  right: 10px;
  top: 10px;
  color: rgb(0, 110, 199);
}
.ohto-link a {
  text-transform: uppercase;
  font-size: 10px;
}

.banner.jumbotron {
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 0;
  background-color: #ffffff;
  border-bottom: 6px solid #e8de12;
}
.banner.jumbotron.countypage {
  border-bottom: 6px solid #205a87;
}
.banner.jumbotron .jumbotron-left {
  padding-left: 0;
}
.banner.jumbotron .jumbotron-right {
  padding-right: 0;
}
.banner.jumbotron .jumbotron-left-image, .banner.jumbotron .jumbotron-right-image {
  background-size: cover;
  height: 469px;
}
.banner.jumbotron .jumbotron-center {
  display: table;
  min-height: 468px;
}
.banner.jumbotron .jumbotron-text {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.banner.jumbotron p {
  color: rgb(0, 0, 0);
}
.banner.jumbotron h1 {
  font-size: 30px;
  color: rgb(63, 63, 63);
}
.banner.jumbotron p {
  font-size: 16px;
}
.banner.jumbotron p a {
  color: rgb(74, 74, 74);
  text-decoration: underline;
}

#frontpage-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
  color: rgb(63, 63, 63);
}
#frontpage-content .frontpage-feeds {
  margin-bottom: 20px;
  position: relative;
}
#frontpage-content #areas-and-events, #frontpage-content #news, #frontpage-content #some {
  padding-right: 20px;
  padding-left: 20px;
}
#frontpage-content #areas-and-events h3 {
  font-size: 14px;
  color: rgb(63, 63, 63);
}
#frontpage-content #areas-and-events .select-label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
#frontpage-content #areas-and-events .event {
  height: 65px;
  margin: 10px 0 10px 0;
}
#frontpage-content #areas-and-events .event h5 {
  margin: 0;
  color: #006ec7;
  font-weight: 600;
}
#frontpage-content #areas-and-events .event p {
  font-weight: lighter;
  font-size: 12px;
}
#frontpage-content #areas-and-events .event .date-box {
  text-align: center;
  border: 1px solid #f7d117;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
#frontpage-content #areas-and-events .event .date-box .day {
  font-weight: bold;
  font-size: 22px;
  display: block;
}
#frontpage-content #areas-and-events .event .date-box .month {
  font-size: 8px;
  text-transform: uppercase;
  display: block;
}

article.news-item {
  margin-bottom: 20px;
}
article.news-item header h3 {
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #006ec7;
  font-weight: 600;
}
article.news-item header span.date {
  margin-top: 10px;
  display: block;
  color: #000000;
  font-size: 10px;
  font-weight: 600;
}
article.news-item section p {
  color: rgb(0, 0, 0);
  font-size: 12px;
}
article.news-item a.read-more {
  text-transform: uppercase;
  font-weight: 600;
}
article.news-item a.read-more:hover {
  text-decoration: none;
}
article.news-item a.read-more:after {
  content: "  >";
  margin-left: 5px;
}
article.news-item footer a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}

.to-archive, .more-events, .more-areas {
  border-radius: 5px;
  border: 2px solid #006ec7;
  background-color: #006ec7;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  width: 205px;
  display: block;
  text-align: center;
  margin: 30px auto;
}
.to-archive:hover, .more-events:hover, .more-areas:hover {
  color: #e6e6e6;
  border-color: #005294;
}
.to-archive:active, .more-events:active, .more-areas:active {
  background-color: #005294;
}
.to-archive:hover, .more-events:hover, .more-areas:hover {
  text-decoration: none;
}
.to-archive:active, .more-events:active, .more-areas:active {
  text-decoration: none;
  color: #ffffff;
}

.get-to-know {
  position: relative;
}
.get-to-know p {
  position: absolute;
  top: 20px;
  left: 20%;
  color: #fff;
  text-transform: uppercase;
}

#statistics {
  text-align: center;
}

.c3-xgrid-focus {
  display: none;
}

@media only screen and (min-width: 768px) {
  .banner.jumbotron {
    padding: 0px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .banner.jumbotron h1 {
    font-size: 18px;
    font-weight: bold;
  }
}
.frontpage-stea-logo {
  margin: auto;
  margin-top: 50px;
  display: block;
}

.article-body h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
.article-body h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

h1.news-heading {
  margin-top: 40px;
}

.post-metadata {
  font-size: 10px;
}

.post-type-post h1,
.tease h2 {
  margin-top: 0;
  font-size: 22px;
  color: rgb(74, 74, 74);
}

.tease {
  margin: 20px 0 20px 0;
}
.tease hr {
  margin-top: 50px;
  margin-bottom: 50px;
}
.tease h2 > a {
  color: inherit;
  text-decoration: none;
}
.tease img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.article-main-image {
  margin-bottom: 10px;
}

.post-type-post,
.post-type-page.template-default {
  margin-bottom: 20px;
}

.tool-pagination {
  width: 100%;
  margin-bottom: 20px;
}
.tool-pagination .prev, .tool-pagination .next {
  text-transform: uppercase;
}
.tool-pagination .prev {
  float: left;
}
.tool-pagination .next {
  float: right;
}
.tool-pagination .pages {
  list-style: none;
  margin: 0;
}
.tool-pagination .pages li {
  float: left;
  margin-right: 10px;
  margin-left: 10px;
}

.image-holder {
  width: 130px;
  margin: auto;
}

.member-group .member-image {
  height: 130px;
  width: 100%;
}
.member-group h3 {
  font-size: 16px;
  text-align: center;
}
.member-group p {
  font-size: 12px;
}

.support-member-group {
  text-align: center;
  min-height: 205px;
}
.support-member-group a {
  color: #000000;
}
.support-member-group .image-holder {
  height: 135px;
}

.support-member-groups header {
  margin-bottom: 20px;
}

.member-groups header {
  margin-bottom: 20px;
}
.member-groups header h2 {
  margin-bottom: 20px;
}
.member-groups .link-to-member-page {
  color: #000;
  width: 60px;
  margin: auto;
  display: block;
}

@media only screen and (min-width: 768px) {
  .member-group {
    min-height: 215px;
  }
}
#course-path {
  margin-top: 40px;
}
#course-path h1 {
  margin-top: 0;
}
#course-path .course-path-image img {
  padding-top: 30px;
  padding-bottom: 30px;
}
#course-path .course-box {
  margin-top: 40px;
}
#course-path .course-box p {
  font-weight: lighter;
  font-style: italic;
  color: #3F3F3F;
  font-size: 20px;
}

.course-intro {
  margin-top: 20px;
  margin-bottom: 20px;
}
.course-intro img {
  margin-top: 20px;
}
.course-intro h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.course-intro .btn {
  border-radius: 5px;
  border: 2px solid #006ec7;
  background-color: #006ec7;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  width: 335px;
  display: block;
  text-align: center;
  margin: 30px auto;
  display: inline-block;
}
.course-intro .btn:hover {
  color: #e6e6e6;
  border-color: #005294;
}
.course-intro .btn:active {
  background-color: #005294;
}

.ingress-text {
  margin-top: 30px;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 60px;
}

.volunteer {
  margin-bottom: 60px;
}
.volunteer .volunteer-image p {
  margin-top: 15px;
  text-align: center;
  font-size: 10px;
  font-style: italic;
}
.volunteer .volunteer-text h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 300;
}
.volunteer .short-version {
  position: relative;
}
.volunteer .short-version .mask {
  position: absolute; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  height: 200px;
  width: 100%;
  bottom: 0;
}

button.show-long-version {
  border: none;
  margin: auto;
  text-align: center;
  color: #006ec7;
  text-transform: uppercase;
  display: block;
  width: 200px;
}

.article-content {
  margin-top: 40px;
}
.article-content h1 {
  margin-bottom: 20px;
}

#events header {
  padding: 20px 0 30px 0;
  min-height: 100px;
}
#events header hr {
  margin-top: 50px;
  margin-bottom: 50px;
}
#events header .select-label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
}
#events h2 {
  font-size: 22px;
  font-weight: lighter;
}
#events h3 {
  margin-top: 0;
  font-size: 19px;
  margin-bottom: 20px;
}
#events .event p {
  font-weight: normal;
  font-size: 14px;
}
#events .event .event-content {
  position: relative;
}
#events .event .event-content.show-less {
  max-height: 90px;
  overflow: hidden;
}
#events .event .event-content.show-less .mask {
  position: absolute; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  height: 50px;
  width: 100%;
  bottom: 0;
}
#events button.show-all {
  width: 100px;
  margin: 10px auto;
  margin-top: 0;
  display: block;
  border: none;
  text-transform: uppercase;
  color: #006ec7;
}
#events button.show-all:after {
  content: "";
  width: 30px;
  height: 12px;
  background: url(/images/chevron_down.png?6a8d34e436e034fd4aeb400fed923f9b) no-repeat center center;
  display: inline-block;
  background-size: 15px;
}
#events .filter-button {
  border-radius: 5px;
  border: 2px solid #006ec7;
  background-color: #006ec7;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  width: 152px;
  display: block;
  text-align: center;
  margin: 30px auto;
  margin: 0;
  padding: 7px;
}
#events .filter-button:hover {
  color: #e6e6e6;
  border-color: #005294;
}
#events .filter-button:active {
  background-color: #005294;
}
#events .attend-link {
  border-radius: 5px;
  border: 2px solid #006ec7;
  background-color: #006ec7;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  width: 205px;
  display: block;
  text-align: center;
  margin: 30px auto;
  margin: 30px 0px;
}
#events .attend-link:hover {
  color: #e6e6e6;
  border-color: #005294;
}
#events .attend-link:active {
  background-color: #005294;
}
#events .date-box {
  border: 1px solid #f7d117;
  padding: 10px 5px;
  text-align: center;
  border-radius: 5px;
}
#events .date-box .day {
  font-size: 28px;
  display: block;
}
#events .date-box .month {
  font-size: 14px;
  display: block;
}
#events .year {
  font-size: 14px;
}

span.event-areas {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}
span.event-areas.small {
  font-size: 10px;
}

ol#singleSelection {
  width: 100%;
}

.open > .btn-default.dropdown-toggle {
  background-color: transparent;
  border-color: #f7d117;
}

button.btn.btn-default.dropdown-toggle {
  border-color: #f7d117;
  font-weight: 300;
}
button.btn.btn-default.dropdown-toggle:hover {
  background-color: transparent;
  border-color: #f7d117;
}
button.btn.btn-default.dropdown-toggle:active, button.btn.btn-default.dropdown-toggle:focus {
  background-color: transparent;
  border-color: #f7d117;
}

.nya-bs-select.btn-group .dropdown-menu li a {
  font-weight: 300;
}

.nya-bs-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

body .select2-container {
  min-width: 100%;
  max-width: 100%;
}
body .select2-container--default .select2-selection--single {
  border-color: #f7d117;
  font-weight: 300;
  height: 34px;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
  padding-left: 12px;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent;
  border-width: 4px 4px 0 4px;
  margin-left: 0;
  left: auto;
  right: 12px;
}
body .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #000 transparent;
  border-width: 0 4px 4px 4px;
}
body .select2-container--default .select2-results > .select2-results__options {
  max-height: none;
}
body .select2-container--default .select2-results__group {
  display: none;
}
body .select2-results__options--nested {
  font-weight: bold;
}
body .select2-container--default .select2-results__option .select2-results__option {
  padding-left: 6px;
}

aside {
  margin-top: 40px;
}
aside .sidebar-image {
  margin-bottom: 30px;
  padding: 50px;
}
aside .sidebar-contact-select, aside .event-page-sidebar {
  border: 1px solid rgb(234, 245, 255);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.footer-wrapper {
  border-top: 6px solid rgb(232, 222, 18);
  background-color: #006ec7;
  min-height: 70px;
  padding: 35px 0 35px 0;
}

#footer {
  color: #fff;
}
#footer .footer-navs {
  width: 260px;
  margin: 1px auto 15px;
}
#footer .footer-links {
  margin-bottom: 10px;
}
#footer .footer-links a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}
#footer .footer-links a:hover {
  color: #fff;
}
#footer .copyright {
  font-size: 10px;
  text-align: center;
}
#footer .copyright a {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  #footer .footer-navs {
    width: 500px;
  }
  #footer .footer-navs .left {
    float: left;
  }
  #footer .footer-navs .right {
    float: right;
  }
}
.not-found {
  min-height: 600px;
  text-align: center;
}
.not-found p {
  font-size: 40px;
  padding: 120px 10px 10px 40px;
}

#request-honor div.split-part > div {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}

#request-honor div.split-part > div:first-child {
  margin-right: 1%;
}

#request-honor div.split-part {
  width: 100%;
  display: block;
}

#request-honor > div {
  margin-top: 30px;
}

#request-honor .form-actions .btn,
#request-honor .help-text .btn {
  border-radius: 5px;
  border: 2px solid #006ec7;
  background-color: #006ec7;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  display: block;
  text-align: center;
  display: inline-block;
}

#request-honor .form-actions .btn {
  width: 49%;
  min-width: 150px;
  margin-top: 15px;
}

#request-honor .form-actions .btn:hover,
#request-honor .help-text .btn:hover {
  color: #e6e6e6;
  border-color: #005294;
}

#request-honor .btn-group {
  width: 100%;
}

#request-honor button.dropdown-toggle {
  width: 100%;
}

#request-honor button.dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}

#request-honor .dropdown-menu {
  width: 100%;
}

#request-honor .help-text {
  position: absolute;
  font-size: 10px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
  max-width: 90%;
  margin-top: 15px;
  margin-left: 15px;
}

.help-text h5 {
  text-transform: uppercase;
}

.help-text .help-chapter {
  display: block;
  margin-bottom: 5px;
  text-align: justify;
  font-size: 13px;
}

#request-honor textarea.form-control,
#request-honor input.form-control {
  border-color: #f7d117;
  resize: none;
  margin-bottom: 3px;
}

#request-honor textarea.form-control.invalid,
#request-honor input.form-control.invalid,
#request-honor .invalid button.btn.btn-default.dropdown-toggle {
  border-color: red;
}

#request-honor #medal-image.img-responsive {
  border-radius: 15px;
  padding-top: 5px;
}

#selected-medal-desc {
  text-align: justify;
  font-size: 13px;
}

@media (min-width: 760px) {
  .sticky-help {
    width: 300px;
  }
  #request-honor {
    margin-bottom: 20em;
  }
  #application-help {
    position: absolute;
    top: 37em;
  }
  #selected-medal-desc {
    position: absolute;
    top: 7em;
  }
  #request-honor div.split-part > div {
    width: 49%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
  }
}
.loader {
  height: 160px;
  width: 100%;
  background: url(/images/ajax-loader.gif?8e92a266ee23f5178e19f912378408d7) no-repeat center center;
}

.county-list .table tr {
  border-color: rgb(232, 222, 18);
}
.county-list .panel {
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.county-list .panel-footer {
  background-color: #fff;
  border-top: 1px solid #006ec7;
}
.county-list .panel-footer a {
  font-weight: bold;
}

.panel-title a {
  width: 100%;
}

.panel-icon {
  float: right;
}
