@charset "UTF-8";
/*
	SCREEN.CSS
	This is where styles for on-screen media are declared.
	This style sheet establishes the core styles used for all resolutions before declaring the baseline 320px mobile layout.

	--------------------------------------------------------------------------------------------------------------------------
	STYLEGUIDE
	--------------------------------------------------------------------------------------------------------------------------

	Indentation uses tabs [why: http://lea.verou.me/2012/01/why-tabs-are-clearly-superior/]

	Rules obey the following anatomy:

		selector {
			POSITIONING LINE [position,top,left,clear, ETC]
			BOX MODEL LINE [display,margin,border,padding,width, ETC]
			TYPOGRAPHY LINE [font,text-indent,font-style, ETC]
			PREFIXED PROPERTIES [-moz-,-webkit-, ETC] }

	This file is divided into the following sections:

		=global_reset         |  Brings all browsers into line
		=vendor_enhancements  |  Fix various issues and/or enable enhancements
		=typography           |  How type looks and behaves
		=base_rules           |  Styling of raw elements
		=display_classes      |  Should very rarely be used, and never for page layout!
		=modules              |  Discrete components of a page [sub-divided]
		=layout               |  How modules are laid out on given pages [sub-divided]

	Units of measurement should always be:

		LAYOUT:       % or no unit - you do not know where your module is going on a page, so you don't know its absolute size.
		LINE-HEIGHTS: unitless, so the line height is a multiple of the current element's font-size
		TYPE:         rems for type, with em fallbacks

		See http://csswizardry.com/2011/12/measuring-and-sizing-uis-2011-style/ for details.

	----------------------------------------------------------------------------------------------------------------------- */
/*
	NATIVE CSS VARIABLES

	:root {
		--variable-name: value;
	}

	element {
		property: fallback;
		property: var(--variable-name);
	}
*/
/* =breakpoints ------------------------------------------------------------------------------------------------------------
  NOTE: one place to set all layout media queries
  ----------------------------------------------------------------------------------------------------------------------- */
/* not strictly mixins, but seems the best place to add these as the breakpoints are now defined */
html.dev-mode body:after {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 0.8rem;
  padding: 0.5em;
  line-height: 1;
  background-color: white;
  animation: fadeOut 0.3s 4s both; }

body:after {
  display: none;
  content: 'breakpoint_0'; }

@media (min-width: 320px) {
  body:after {
    content: "breakpoint_1"; } }

@media (min-width: 480px) {
  body:after {
    content: "breakpoint_2"; } }

@media (min-width: 700px) {
  body:after {
    content: "breakpoint_3"; } }

@media (min-width: 960px) {
  body:after {
    content: "breakpoint_4"; } }

@media (min-width: 1280px) {
  body:after {
    content: "breakpoint_5"; } }

@media (min-width: 1340px) {
  body:after {
    content: "breakpoint_6"; } }

/* =tools ---------------------------------------------------------------------------------------------------------------
  NOTE: Snippets that are useful elsewhere
  ----------------------------------------------------------------------------------------------------------------------- */
/* =headings ------------------------------------------------------------------------------------------------------------
  NOTE: As mixins because you can @include them inside media queries
  NOTE: only use optimizeLegibility on headings, the performance hit is high if used everywhere
  ----------------------------------------------------------------------------------------------------------------------- */
/* =global_reset --------------------------------------------------------------------------------------------------------
	NOTE:       Based on Eric Meyers CSS Reset 2.0 - with a couple of edits to make it less draconian
	REFERENCE:  http://meyerweb.com/eric/tools/css/reset/
	----------------------------------------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* form resets */
input,
textarea {
  border: 0; }

/* lets use a sensible box model
	   REFERENCE: http://paulirish.com/2012/box-sizing-border-box-ftw */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

/* inherit my styles, not the UA ones */
button, input, select, textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit; }

/* =vendor_enhancements -------------------------------------------------------------------------------------------------
	NOTE: Fix various browser issues, and switch some vendor specific nicities on/off
	----------------------------------------------------------------------------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

a:link {
  -webkit-tap-highlight-color: #999; }

/* Don't collapse these into one ruleset. When a browser doesn't recognise a selector it discards the whole ruleset.
	   By using vendor selectors in one ruleset you guarentee nothing will be applied */
::-webkit-selection {
  background-color: #999;
  color: #fff; }

::-moz-selection {
  background-color: #999;
  color: #fff; }

::selection {
  background-color: #999;
  color: #fff; }

::-webkit-input-placeholder {
  font-size: .875em;
  line-height: 1.4; }

input:-moz-placeholder {
  font-size: .875em;
  line-height: 1.4; }

/* kill default HTML5 styling on webkit */
input[type=search],
input[type=submit] {
  -webkit-appearance: none; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  display: none; }

/* =typography ----------------------------------------------------------------------------------------------------------
	NOTE:       I've found that margin-top applied to everything is a pain - it often messes up layout and requires jumping
	            through hoops to fix, so I've stopped doing this as a default and now add top margin manually when required.
	REFERENCE:  Based on http://alistapart.com/articles/settingtypeontheweb/
	                     http://24ways.org/2006/compose-to-a-vertical-rhythm/
	----------------------------------------------------------------------------------------------------------------------- */
/* load custom fonts
	   NOTE: Don't use the normal FontSquirrel CSS! Do this instead:
	         http://www.456bereastreet.com/archive/201012/font-face_tip_define_font-weight_and_font-style_to_keep_your_css_simple

	         Other tips and tricks from here:
	         http://vimeo.com/69531448
	         https://docs.google.com/viewer?url=http%3A%2F%2Fcomplexspiral.com%2Fevents%2Farchive%2F2013%2Fcssday%2Ffontface.pdf */
/* font-stacks */
/* 'heading' styles */
.h1 {
  margin: 0;
  font-size: 60px;
  line-height: 60px;
  text-rendering: optimizeLegibility; }
  @media (max-width: 1279px) {
    .h1 {
      font-size: 48px; } }
  @media (max-width: 699px) {
    .h1 {
      font-size: 24px; } }

.h2 {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #005A47; }
  @media (max-width: 699px) {
    .h2 {
      font-size: 18px; } }

.h3 {
  margin: 0;
  font-size: 24px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  font-family: Butler, Georgia, "Times New Roman", serif; }
  @media (max-width: 959px) {
    .h3 {
      font-size: 20px; } }
  @media (max-width: 699px) {
    .h3 {
      font-size: 16px; } }

.h4 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  text-rendering: optimizeLegibility; }

.h5 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  text-rendering: optimizeLegibility; }

.h6 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-style: italic;
  font-weight: bold;
  text-rendering: optimizeLegibility; }

/* fancy ampersands ( http://vimeo.com/69531448 ) */
/* fancy ligatures on headings
		Get fancy font features working: http://blogs.msdn.com/b/ie/archive/2012/01/09/css-corner-using-the-whole-font.aspx */
/* general typography */
html, input, select, textarea {
  /* font-size: 16px, line-height: 22px */
  font: 16px/1.375 "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* hyphenations now work! http://www.quirksmode.org/blog/archives/2012/11/hyphenation_wor.html */
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -o-hyphens: none; }

p, ul, ol, blockquote {
  /* em fallback */
  margin-bottom: 1.375em;
  margin-bottom: 1.375rem; }

/* =base_rules ----------------------------------------------------------------------------------------------------------
	NOTE:  This section styles "default" elements, that is, how a <p> or <em> etc look by default, without
	       any page or class specific over-rides.
	----------------------------------------------------------------------------------------------------------------------- */
/* =html =body */
html {
  background-color: #fff;
  color: #414042; }

/* =sup */
sup {
  vertical-align: top;
  font-size: .75em; }

/* =sub */
sub {
  vertical-align: bottom;
  font-size: .75em; }

/* =strong */
strong, b {
  font-weight: bold; }

/* =em i */
em, i {
  font-style: italic; }

/* =code */
code {
  font: .85em/1 Courier, monospace;
  color: #006; }

/* =a */
a:link,
a:visited {
  color: inherit;
  text-decoration: none; }

a:hover {
  color: #005A47; }

/* =img */
img {
  max-width: 100%; }

#target_hilight {
  position: absolute; }

a img {
  margin: 0; }

img[data-object-fit="contain"] {
  object-fit: contain; }

img[data-object-fit="cover"] {
  object-fit: cover; }

picture {
  display: flex; }
  picture img {
    width: 100%;
    height: 100%; }

/* =forms */
label {
  display: block;
  margin-bottom: 1em; }
  label:not(.boolean) span {
    display: block;
    margin-bottom: 0.5em; }
  label.boolean span,
  label.boolean input {
    display: inline-block; }

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea {
  width: 100%;
  border: 1px solid #c1c0c1;
  transition: all 0.2s; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="search"]:focus,
  input[type="password"]:focus,
  textarea:focus {
    border-color: #414042;
    outline: 0; }

label.focus span {
  color: #000; }

label:focus-within {
  background-color: white; }

/* =display-classes -----------------------------------------------------------------------------------------------------
  NOTE: These are to be avoided if at all possible, it is rare they are acceptable. Do not use them for page layout!
  ----------------------------------------------------------------------------------------------------------------------- */
/* left or right */
.dc_left {
  float: left;
  margin-right: 1em; }

.dc_right {
  float: right;
  margin-left: 1em; }

/* big and small */
.dc_small {
  width: 20%; }

.dc_medium {
  width: 40%; }

.dc_large {
  width: 60%; }

/* hiding things */
.dc_hide-text {
  text-indent: -999em;
  overflow: hidden; }

.dc_hide-element {
  position: absolute;
  left: -999em;
  overflow: hidden; }

/* clearing things */
.dc_clearfix:after, .cms-textblock:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

* html .dc_clearfix, * html .cms-textblock {
  height: 1px; }

/* make lists horizontal */
.dc_horizontal-list {
  list-style-type: none; }
  .dc_horizontal-list li {
    display: inline-block; }

/* viewport width breakpout (only works on centered columns) */
.dc_full-width {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw; }

.dc_button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: inline-block;
  margin: auto;
  padding: 0.5em 1em;
  border: 2px solid #fff;
  color: #fff !important;
  background-color: transparent;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
  transition: all .3s; }
  .dc_button:hover, .dc_button:focus {
    background-color: #fff;
    color: #000 !important;
    cursor: pointer; }

.dc_constrained {
  max-width: 1240px;
  margin: auto;
  padding: 20px; }
  @media (min-width: 480px) {
    .dc_constrained {
      padding-top: 40px;
      padding-bottom: 40px; }
      .dc_constrained:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden; }
      * html .dc_constrained {
        height: 1px; } }
  @media (min-width: 960px) {
    .dc_constrained .container {
      padding: 80px 40px; } }
  @media (min-width: 1280px) {
    .dc_constrained .container {
      padding: 80px 0; } }

.dc_dynamicShow {
  display: block; }

.dc_dynamicHide {
  display: none !important; }

/* =animations ----------------------------------------------------------------------------------------------------------
	NOTE:  CSS animations
	----------------------------------------------------------------------------------------------------------------------- */
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes donut-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* =3rdparty ----------------------------------------------------------------------------------------------------------------
  NOTE: Third party CSS stuff
  ----------------------------------------------------------------------------------------------------------------------- */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
					* Remove all paddings around the image on small screen
					*/
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* MY ADDITIONS */
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* =3rdpart over-ride ---------------------------------------------------------------------------------------------------
  NOTE: Customize the third party CSS stuff
  ----------------------------------------------------------------------------------------------------------------------- */
.imageGallery.slider {
  position: relative;
  margin-bottom: 60px; }
  .imageGallery.slider .prev {
    position: absolute;
    left: 0;
    bottom: -30px; }
  .imageGallery.slider .next {
    position: absolute;
    right: 0;
    bottom: -30px; }
  @media (min-width: 700px) {
    .imageGallery.slider {
      margin-bottom: 20px; }
      .imageGallery.slider .prev,
      .imageGallery.slider .next {
        text-indent: -999em;
        overflow: hidden;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        display: block;
        width: 44px;
        height: 44px;
        background: white url(../images/right-arrow.png) 50% 50%/12px auto no-repeat;
        transition: all .2s; }
        .imageGallery.slider .prev:hover, .imageGallery.slider .prev:focus,
        .imageGallery.slider .next:hover,
        .imageGallery.slider .next:focus {
          cursor: pointer;
          background: transparent url(../images/right-arrow.png) 50% 50%/24px auto no-repeat; }
      .imageGallery.slider .prev {
        transform-origin: 50% 50%;
        transform: rotate(180deg) translateY(50%); } }

.slick-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  list-style: none; }
  .slick-dots li {
    float: left;
    margin-left: 0.5em; }
    .slick-dots li.slick-active button::after {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1; }
    .slick-dots li:first-child {
      margin-left: 0; }
  .slick-dots button {
    position: relative;
    appearance: none;
    display: block;
    width: 2em;
    height: 2em;
    padding: 0;
    border: 0.2em solid white;
    border-radius: 50%;
    background-color: transparent; }
    .slick-dots button:focus {
      outline: none; }
    .slick-dots button:hover {
      cursor: pointer; }
    .slick-dots button::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      display: block;
      width: 1em;
      height: 1em;
      border-radius: 50%;
      background-color: white;
      opacity: 0;
      transition: all .3s; }
    .slick-dots button span {
      position: relative;
      left: -999em; }

/* =modules -------------------------------------------------------------------------------------------------------------
  NOTE: Modules are discrete sections of data that may be used on any page, e.g., "Latest News"
  ----------------------------------------------------------------------------------------------------------------------- */
.green {
  color: #63b442; }

.bg_green {
  background-color: #63b442;
  color: white; }

.flash {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 1rem;
  background-color: red;
  color: white;
  animation-delay: 1s;
  animation-fill-mode: both; }
  .flash.notice {
    background-color: green;
    animation: fadeOut;
    animation-duration: 2s; }
  .flash.error {
    animation: fadeOut;
    animation-duration: 4s; }

html:not(.js) img.lazyload {
  display: none; }

.lazyload {
  opacity: 0; }

.lazyloaded {
  opacity: 1;
  transition: opacity 0.3s; }

.member-actions {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  padding: 6px;
  border-radius: 6px 0 0 0;
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25); }
  .member-actions p {
    margin-bottom: 0; }
  .member-actions a {
    border-radius: 5px;
    padding: 0 0.5em;
    background: white;
    color: red; }
    .member-actions a:hover, .member-actions a:focus {
      text-decoration: none; }
  @media (min-width: 700px) {
    .member-actions {
      display: block; } }

.devWarning {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5em 1em;
  text-align: center;
  background: rebeccapurple;
  color: white;
  animation: fadeOut 0.3s 2s both;
  pointer-events: none; }

html.mobile-nav body {
  padding-top: 42px; }

html.mobile-nav .nav-menu-trigger {
  display: block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  background-color: #005A47;
  color: white;
  letter-spacing: 2px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10; }
  html.mobile-nav .nav-menu-trigger:hover, html.mobile-nav .nav-menu-trigger:focus {
    cursor: pointer;
    background-color: #004133; }

html.mobile-nav .site_context {
  text-align: center; }
  html.mobile-nav .site_context h2 {
    position: absolute;
    left: -999em;
    overflow: hidden; }
  html.mobile-nav .site_context nav.container {
    width: auto; }
  html.mobile-nav .site_context .site_title {
    margin-bottom: 50px; }
  html.mobile-nav .site_context ul {
    list-style: none; }
    html.mobile-nav .site_context ul li a {
      padding-top: 6px;
      padding-bottom: 6px;
      display: block; }
    html.mobile-nav .site_context ul li:not(:last-of-type) {
      border-bottom: 1px solid #DFE7E6; }
  html.mobile-nav .site_context > .container {
    position: fixed;
    left: -100%;
    top: 42px;
    bottom: 0;
    z-index: 2;
    max-width: 500px;
    width: 90%;
    background-color: white;
    color: #414042;
    padding: 20px;
    opacity: 0;
    transition: all .4s;
    overflow: hidden;
    pointer-events: none; }

html.mobile-nav.nav-active .nav-menu-trigger {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2; }

html.mobile-nav.nav-active .site_context > .container {
  left: 0;
  opacity: 1;
  pointer-events: auto; }

.embed-container {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  max-width: 100%;
  overflow: hidden; }
  .embed-container iframe,
  .embed-container object,
  .embed-container embed,
  .embed-container > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }
    .embed-container iframe *,
    .embed-container object *,
    .embed-container embed *,
    .embed-container > div * {
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      -o-box-sizing: content-box;
      -ms-box-sizing: content-box;
      box-sizing: content-box; }
    .embed-container iframe img,
    .embed-container object img,
    .embed-container embed img,
    .embed-container > div img {
      width: auto;
      max-width: none; }
  .embed-container.widescreen {
    padding-bottom: 56.25%; }

.mixedContent .cms-textblock,
.mixedContent .video,
.mixedContent .blockquote,
.mixedContent .featuredDownload,
.mixedContent .featuredLink,
.mixedContent .singleImage,
.mixedContent .relatedItems,
.mixedContent .imageGallery {
  margin-bottom: 40px; }

.mixedContent .mixedContent_table {
  margin-bottom: 40px;
  max-width: 700px; }
  .mixedContent .mixedContent_table table {
    width: 100%; }
    .mixedContent .mixedContent_table table thead {
      font-weight: bold;
      color: #005A47; }
      .mixedContent .mixedContent_table table thead th {
        padding: 5px; }
      .mixedContent .mixedContent_table table thead tr {
        border-bottom: 1px solid #EEE; }
    .mixedContent .mixedContent_table table tbody tr:not(:last-of-type) {
      border-bottom: 1px solid #EEE; }
    .mixedContent .mixedContent_table table tbody tr td {
      padding: 5px; }

.mixedContent .blockquote {
  display: block;
  max-width: 700px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE; }
  .mixedContent .blockquote blockquote {
    position: relative;
    margin-bottom: 6px;
    font-size: 1.4em;
    line-height: 1.4;
    color: #005A47;
    text-align: center;
    display: block;
    font-family: Butler, Georgia, "Times New Roman", serif; }
    .mixedContent .blockquote blockquote p {
      margin-bottom: 0px; }
      .mixedContent .blockquote blockquote p:before {
        content: "“";
        font-size: 2em;
        color: #DFE7E6;
        font-weight: bold;
        margin-right: 5px; }
      .mixedContent .blockquote blockquote p:after {
        content: "”";
        font-size: 2em;
        color: #DFE7E6;
        font-weight: bold;
        margin-left: 5px; }
  .mixedContent .blockquote cite {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #005A47;
    display: block;
    text-align: center; }

.mixedContent .singleImage {
  display: block; }
  .mixedContent .singleImage img {
    display: block;
    margin-bottom: 10px; }
  .mixedContent .singleImage.full {
    width: 100% !important;
    margin: 10px 0 40px;
    padding: 10px 0;
    border-top: 1px solid inherit;
    border-bottom: 1px solid inherit; }
    .mixedContent .singleImage.full img {
      margin-bottom: 10px; }
  .mixedContent .singleImage.left, .mixedContent .singleImage.right {
    margin-bottom: 20px; }
  .mixedContent .singleImage .caption {
    font-size: 0.8em;
    margin-bottom: 0; }
  @media (min-width: 700px) {
    .mixedContent .singleImage.small {
      width: 20%; }
    .mixedContent .singleImage.medium {
      width: 40%; }
    .mixedContent .singleImage.large {
      width: 60%; }
    .mixedContent .singleImage.left {
      float: left;
      margin-right: 20px; }
    .mixedContent .singleImage.right {
      float: right;
      margin-left: 20px; } }
  @media (min-width: 960px) {
    .mixedContent .singleImage.small {
      width: 20%; }
    .mixedContent .singleImage.medium {
      width: 40%; }
    .mixedContent .singleImage.large {
      width: 60%; } }

.mixedContent .imageGallery.popup ul {
  list-style: none; }
  .mixedContent .imageGallery.popup ul:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }
  * html .mixedContent .imageGallery.popup ul {
    height: 1px; }

.mixedContent .imageGallery.popup li a {
  position: relative;
  float: left;
  margin: 0 0 10px 10px;
  width: calc(50% - 5px);
  overflow: hidden; }
  .mixedContent .imageGallery.popup li a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    display: block;
    width: 50%;
    height: 50%;
    background: url(../images/magnifying-glass.png) 0 0/contain no-repeat;
    transform-origin: center center;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all .2s; }
  .mixedContent .imageGallery.popup li a:hover:after, .mixedContent .imageGallery.popup li a:focus:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; }
  .mixedContent .imageGallery.popup li a:hover img, .mixedContent .imageGallery.popup li a:focus img {
    transform: scale(1.1); }

.mixedContent .imageGallery.popup img {
  display: block;
  width: 100%;
  transition: all .2s; }

@media (min-width: 320px) and (max-width: 479px) {
  .mixedContent .imageGallery.popup li:nth-of-type(2n+1) a {
    margin-left: 0; } }

@media (min-width: 480px) and (max-width: 699px) {
  .mixedContent .imageGallery.popup li a {
    width: calc(33.333333% - 6.666666px); }
  .mixedContent .imageGallery.popup li:nth-of-type(3n+1) a {
    margin-left: 0; } }

@media (min-width: 700px) and (max-width: 959px) {
  .mixedContent .imageGallery.popup li a {
    width: calc(25% - 7.5px); }
  .mixedContent .imageGallery.popup li:nth-of-type(4n+1) a {
    margin-left: 0; } }

@media (min-width: 960px) and (max-width: 1279px) {
  .mixedContent .imageGallery.popup li a {
    width: calc(20% - 8px); }
  .mixedContent .imageGallery.popup li:nth-of-type(5n+1) a {
    margin-left: 0; } }

@media (min-width: 1280px) {
  .mixedContent .imageGallery.popup li a {
    width: calc(16.66666% - 8.333333px); }
  .mixedContent .imageGallery.popup li:nth-of-type(6n+1) a {
    margin-left: 0; } }

.mixedContent .imageGallery.slider {
  list-style: none; }
  .mixedContent .imageGallery.slider li {
    position: relative; }
  .mixedContent .imageGallery.slider img {
    display: block;
    margin-bottom: 20px; }
  .mixedContent .imageGallery.slider .text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background-color: rgba(0, 0, 0, 0.5); }
    .mixedContent .imageGallery.slider .text *:last-child {
      margin-bottom: 0; }

html.js .mixedContent .imageGallery.slider img {
  margin-bottom: 0; }

.mixedContent .featuredDownload {
  max-width: 700px; }
  .mixedContent .featuredDownload .fileTitle {
    text-transform: uppercase;
    font-weight: bold;
    color: #005A47; }
  .mixedContent .featuredDownload .meta {
    margin-bottom: 0;
    font-size: 0.8em;
    color: #005A47; }
  .mixedContent .featuredDownload a {
    padding-left: 60px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background: url(../images/download.png) 20px 20px/24px auto no-repeat rgba(223, 231, 230, 0.3);
    display: block;
    margin-bottom: 0;
    color: inherit; }
    .mixedContent .featuredDownload a:hover, .mixedContent .featuredDownload a:focus {
      text-decoration: none;
      background: url(../images/download.png) 20px 20px/24px auto no-repeat #dfe7e6; }
  .mixedContent .featuredDownload p {
    margin-bottom: 0; }

.mixedContent .featuredLink {
  max-width: 700px; }
  .mixedContent .featuredLink a {
    padding-left: 60px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background: url(../images/link.png) 20px 20px/24px auto no-repeat rgba(223, 231, 230, 0.3);
    display: block;
    margin-bottom: 0;
    color: inherit; }
    .mixedContent .featuredLink a:hover, .mixedContent .featuredLink a:focus {
      text-decoration: none;
      background: url(../images/link.png) 20px 20px/24px auto no-repeat #dfe7e6; }
  .mixedContent .featuredLink .linkTitle {
    text-transform: uppercase;
    font-weight: bold;
    color: #005A47;
    margin-bottom: 0; }
  .mixedContent .featuredLink *:last-child {
    margin-bottom: 0; }

.mixedContent .relatedItems p {
  text-transform: uppercase;
  font-weight: bold;
  color: #005A47;
  letter-spacing: 1px; }

.mixedContent .relatedItems ul {
  margin-left: 1em;
  list-style: none; }
  .mixedContent .relatedItems ul li {
    padding-left: 1em;
    background: url(../images/li.png) 0 4px no-repeat; }

.cms-textblock > *:last-child {
  margin-bottom: 0; }

.cms-textblock h1:before {
  content: "h1 not allowed here!";
  color: red; }

.cms-textblock h2 {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #005A47;
  margin-bottom: 1em; }
  @media (max-width: 699px) {
    .cms-textblock h2 {
      font-size: 18px; } }

.cms-textblock h3 {
  margin: 0;
  font-size: 24px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  font-family: Butler, Georgia, "Times New Roman", serif;
  margin-bottom: 1em; }
  @media (max-width: 959px) {
    .cms-textblock h3 {
      font-size: 20px; } }
  @media (max-width: 699px) {
    .cms-textblock h3 {
      font-size: 16px; } }

.cms-textblock h4 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  margin-bottom: 1em; }

.cms-textblock h5 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  margin-bottom: 1em; }

.cms-textblock h6 {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-style: italic;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  margin-bottom: 1em; }

.cms-textblock img {
  display: block;
  margin-bottom: 1em; }

.cms-textblock a {
  text-decoration: underline;
  color: inherit; }
  .cms-textblock a:hover, .cms-textblock a:focus {
    text-decoration: none; }

.cms-textblock ul {
  margin-left: 1em; }

.cms-textblock ol {
  margin-left: 2em; }

.cms-textblock ul {
  list-style: none; }
  .cms-textblock ul li {
    padding-left: 1em;
    background: url(../images/li.png) 0 4px no-repeat; }

.cms-textblock blockquote {
  padding: 1em;
  margin-bottom: 1em; }
  .cms-textblock blockquote p:last-child {
    margin-bottom: 0; }

.cms-textblock iframe {
  display: block;
  margin-bottom: 2em; }

.cms-textblock table {
  width: 100%;
  margin-bottom: 2em; }
  .cms-textblock table tr {
    transition: background-color .2s; }
  .cms-textblock table tr:hover {
    background-color: rgba(0, 0, 0, 0.1); }
  .cms-textblock table th, .cms-textblock table td {
    padding: 3px 10px 3px 0;
    text-align: left; }
  .cms-textblock table th {
    font-weight: bold; }

.cms-textblock .align-left,
.cms-textblock [align='left'] {
  float: left;
  margin-right: 2em;
  max-width: 50%; }

.cms-textblock .align-right,
.cms-textblock [align='right'] {
  float: right;
  margin-left: 2em;
  max-width: 50%; }

.cms-textblock b, .cms-textblock strong {
  font-weight: bold; }

.cms-textblock i, .cms-textblock em {
  font-style: italic; }

@media (min-width: 700px) {
  .cms-textblock.cols_two, .cms-textblock.cols_three {
    column-count: 2;
    column-gap: 2em; } }

@media (min-width: 960px) {
  .cms-textblock.cols_three {
    column-count: 3;
    column-gap: 2em; } }

.sm h3 {
  position: absolute;
  left: -999em;
  overflow: hidden; }

.sm ul {
  list-style: none;
  margin-bottom: 0; }

.sm li {
  display: inline;
  list-style: none;
  margin-right: 10px; }
  .sm li a {
    display: inline-block; }
    .sm li a:hover svg path {
      fill: #DFE7E6; }

.sm svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem; }
  .sm svg path {
    fill: #005A47;
    transition: all 0.3s; }

.pagination-controls h3 {
  position: absolute;
  left: -999em;
  overflow: hidden; }

.pagination-controls ul {
  display: flex;
  justify-content: space-between; }

.pendingTranslation {
  color: red; }

@media (prefers-dark-interface) {
  html {
    background-color: #333;
    color: #eee; } }

html {
  background-color: #DFE7E6;
  -webkit-font-smoothing: antialiased; }

a.button, .button {
  border: solid 2px #005A47;
  text-transform: uppercase;
  color: #005A47;
  letter-spacing: 1px;
  padding: 10px 16px;
  display: inline-block;
  font-weight: bold;
  font-size: 16px; }
  a.button:hover, a.button:focus, .button:hover, .button:focus {
    color: white;
    background-color: #005A47;
    cursor: pointer; }

.container {
  width: 300px;
  display: block;
  margin: 0 auto;
  width: 300px; }
  @media (min-width: 700px) {
    .container {
      width: 660px; } }
  @media (min-width: 960px) {
    .container {
      width: 920px; } }

.largeContainer {
  display: block;
  margin: 0 auto; }
  @media (min-width: 1280px) {
    .largeContainer {
      width: 1240px; } }
  @media (min-width: 1340px) {
    .largeContainer {
      width: 1330px; } }

h2.sectionTitle {
  text-align: center;
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #005A47;
  margin-bottom: 30px; }
  @media (max-width: 699px) {
    h2.sectionTitle {
      font-size: 18px; } }

header {
  background-color: white; }
  header ul {
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #005A47;
    list-style: none; }
    header ul li.login {
      color: #B49058; }
  header .site_title {
    margin-bottom: 20px; }
  header .nav_main h2 {
    position: absolute;
    left: -999em;
    overflow: hidden; }

html:not(.mobile-nav) header {
  padding-top: 20px;
  padding-bottom: 20px; }
  html:not(.mobile-nav) header a:hover, html:not(.mobile-nav) header a:focus {
    color: #B49058; }

footer {
  background-color: #005A47;
  color: white;
  padding-top: 40px;
  padding-bottom: 40px; }
  footer p {
    margin-bottom: 0px; }
  footer h2, footer h3 {
    position: absolute;
    left: -999em;
    overflow: hidden; }
  footer a:hover, footer a:focus {
    opacity: 0.6;
    color: white; }
  footer .logoColumn {
    display: block;
    margin-bottom: 40px; }
  footer .addressColumn {
    display: block;
    margin-bottom: 40px; }
    footer .addressColumn .column:first-of-type {
      margin-bottom: 20px; }
  footer .site_credit {
    opacity: 0.4;
    font-size: 13px;
    padding-top: 20px; }
  footer .sm {
    margin-bottom: 40px; }
    footer .sm ul li {
      margin-right: 10px; }
      footer .sm ul li svg path {
        fill: white; }
      footer .sm ul li a:hover svg {
        opacity: 0.6; }
        footer .sm ul li a:hover svg path {
          fill: white; }

@media (min-width: 700px) {
  footer .container {
    align-items: top; }
    footer .container .logoColumn, footer .container .addressColumn {
      width: 30%;
      margin-right: 5%; }
    footer .container .sm {
      width: 30%; } }

@media (min-width: 960px) {
  footer {
    padding-top: 50px;
    padding-bottom: 50px; }
    footer .container {
      align-items: top; }
      footer .container .logoColumn {
        width: 15%;
        margin-bottom: 0px; }
      footer .container .addressColumn {
        width: 50%;
        margin-bottom: 0px; }
      footer .container .sm {
        text-align: right; } }

@media (min-width: 1280px) {
  footer {
    padding-top: 90px;
    padding-bottom: 90px; } }

@media (min-width: 700px) {
  header .container .nav_main ul li, footer .container .nav_main ul li {
    display: inline-block; }
    header .container .nav_main ul li a, footer .container .nav_main ul li a {
      padding: 10px 10px; } }

@media (min-width: 960px) {
  header .container, footer .container {
    width: 90%;
    display: flex;
    align-items: center; }
    header .container .site_title, footer .container .site_title {
      width: 228px;
      margin-right: 22px;
      margin-bottom: 0px; }
    header .container .nav_main, footer .container .nav_main {
      text-align: right;
      width: calc(100% - 250px); }
      header .container .nav_main .container, footer .container .nav_main .container {
        width: 100%;
        text-align: right;
        display: block; }
      header .container .nav_main ul li, footer .container .nav_main ul li {
        display: inline-block; }
        header .container .nav_main ul li a, footer .container .nav_main ul li a {
          padding: 10px 10px; }
      header .container .nav_main ul li.login a, footer .container .nav_main ul li.login a {
        border-left: 1px solid #B49058; } }

@media (min-width: 1280px) {
  header .container .nav_main ul li a, footer .container .nav_main ul li a {
    padding: 10px 20px; } }

.mainImage {
  background: #005A47;
  text-align: center;
  color: white;
  position: relative; }
  .mainImage img {
    mix-blend-mode: multiply;
    filter: grayscale(1); }
  .mainImage .centerBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 90%; }
    .mainImage .centerBox img {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
      display: block; }
      @media (max-width: 699px) {
        .mainImage .centerBox img {
          width: 50px; } }
    .mainImage .centerBox .bannerButton {
      background-color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #005A47;
      padding: 10px 15px;
      margin-top: 24px;
      font-weight: bold;
      display: inline-block; }
      .mainImage .centerBox .bannerButton:hover {
        background-color: rgba(255, 255, 255, 0.8); }
  .mainImage ul {
    list-style: none;
    font-family: Butler, Georgia, "Times New Roman", serif; }
    .mainImage ul li {
      display: inline-block;
      font-size: 18px; }
      @media (min-width: 700px) {
        .mainImage ul li {
          font-size: 26px; } }
      @media (min-width: 960px) {
        .mainImage ul li {
          font-size: 36px; } }
      @media (min-width: 1280px) {
        .mainImage ul li {
          font-size: 46px; } }
      .mainImage ul li:not(:last-of-type):after {
        content: "•";
        margin-left: 10px;
        margin-right: 10px; }

.quotesRow {
  background: #005A47;
  color: white;
  padding-top: 50px;
  padding-bottom: 70px;
  position: relative;
  text-align: center; }
  @media (min-width: 700px) {
    .quotesRow {
      padding-top: 50px;
      padding-bottom: 50px; } }
  @media (min-width: 1280px) {
    .quotesRow {
      padding-top: 70px;
      padding-bottom: 70px; } }
  .quotesRow .slick-dots {
    bottom: -30px; }
  .quotesRow h2 {
    color: white; }
  .quotesRow ul {
    margin-bottom: 0px;
    list-style: none; }
    .quotesRow ul li {
      outline: 0; }
      .quotesRow ul li p {
        font-family: Butler, Georgia, "Times New Roman", serif;
        font-size: 18px;
        letter-spacing: 0px; }
        @media (min-width: 700px) {
          .quotesRow ul li p {
            font-size: 20px; } }
        @media (min-width: 960px) {
          .quotesRow ul li p {
            font-size: 26px; } }
        @media (min-width: 1280px) {
          .quotesRow ul li p {
            font-size: 30px; } }
      .quotesRow ul li p.author {
        font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
        font-size: 15px; }
  .quotesRow:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: url(../images/icon.svg) center center no-repeat;
    background-size: auto 120%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.02; }

.blogItem {
  position: relative;
  display: block;
  display: flex;
  margin: 5px; }
  .blogItem .text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 80%;
    background-color: #005A47;
    color: white;
    display: block;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    transition: all ease 0.3s; }
    .blogItem .text picture {
      transition: all ease 0.3s; }
    .blogItem .text h3 {
      margin: 0;
      font-size: 24px;
      line-height: 24px;
      text-rendering: optimizeLegibility;
      font-family: Butler, Georgia, "Times New Roman", serif;
      margin-bottom: 20px; }
      @media (max-width: 959px) {
        .blogItem .text h3 {
          font-size: 20px; } }
      @media (max-width: 699px) {
        .blogItem .text h3 {
          font-size: 16px; } }
    .blogItem .text .meta {
      width: 100%;
      text-transform: uppercase;
      font-size: 14px; }
      .blogItem .text .meta .more {
        float: right;
        font-weight: bold; }
  .blogItem:hover picture, .blogItem:focus picture {
    filter: grayscale(1); }
  .blogItem:hover .text, .blogItem:focus .text {
    padding-bottom: 50px; }

.aboutRow {
  background-color: white;
  padding-top: 30px;
  padding-bottom: 30px; }
  .aboutRow .columns .column {
    margin-bottom: 20px; }
    .aboutRow .columns .column img {
      display: block;
      margin-bottom: 10px; }
    .aboutRow .columns .column .caption {
      text-align: right;
      font-weight: bold;
      color: #005A47;
      position: relative; }
      .aboutRow .columns .column .caption .icon {
        width: 125px;
        height: 125px;
        display: block;
        position: absolute;
        top: -75px;
        left: -25px; }
        @media (max-width: 699px) {
          .aboutRow .columns .column .caption .icon {
            display: none; } }
        .aboutRow .columns .column .caption .icon svg path {
          fill: #005A47; }
  @media (min-width: 700px) {
    .aboutRow {
      padding-top: 50px;
      padding-bottom: 50px; }
      .aboutRow .columns {
        display: flex;
        flex-wrap: wrap; }
        .aboutRow .columns .column {
          width: 45%; }
          .aboutRow .columns .column:first-of-type {
            margin-right: 10%; } }
  @media (min-width: 1280px) {
    .aboutRow {
      padding-top: 70px;
      padding-bottom: 70px; } }

.blogRow {
  background-color: white;
  padding-top: 30px;
  padding-bottom: 30px; }
  .blogRow h2 {
    margin-bottom: 40px; }
  @media (min-width: 700px) {
    .blogRow {
      padding-top: 50px;
      padding-bottom: 50px; } }
  @media (min-width: 1280px) {
    .blogRow {
      padding-top: 70px;
      padding-bottom: 70px; } }

.blogItems {
  padding: 5px; }
  @media (min-width: 700px) {
    .blogItems {
      display: flex;
      flex-wrap: wrap; }
      .blogItems .blogItem {
        width: calc(50% - 10px);
        margin: 5px; } }
  @media (min-width: 960px) {
    .blogItems .blogItem {
      width: calc(25% - 10px); } }

.servicesGrid {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 700px) {
    .servicesGrid {
      padding-top: 50px;
      padding-bottom: 50px; } }
  @media (min-width: 1280px) {
    .servicesGrid {
      padding-top: 70px;
      padding-bottom: 70px; } }
  .servicesGrid .serviceItems {
    padding: 10px; }
    @media (min-width: 700px) {
      .servicesGrid .serviceItems {
        display: flex;
        flex-wrap: wrap; } }

.serviceItem {
  margin-bottom: 20px; }
  .serviceItem a.image {
    display: block;
    position: relative; }
    .serviceItem a.image img {
      transition: all ease 0.3s; }
    .serviceItem a.image .serviceTitle {
      padding: 10px;
      color: white;
      position: absolute;
      transition: all ease 0.3s;
      bottom: -15px;
      left: 0px;
      display: block;
      background-color: #005A47; }
      .serviceItem a.image .serviceTitle h3 {
        margin: 0;
        font-size: 24px;
        line-height: 24px;
        text-rendering: optimizeLegibility;
        font-family: Butler, Georgia, "Times New Roman", serif;
        display: block; }
        @media (max-width: 959px) {
          .serviceItem a.image .serviceTitle h3 {
            font-size: 20px; } }
        @media (max-width: 699px) {
          .serviceItem a.image .serviceTitle h3 {
            font-size: 16px; } }
    .serviceItem a.image:hover .serviceTitle {
      padding: 10px 10px 10px 30px;
      transition: all ease 0.3s; }
    .serviceItem a.image:hover img {
      filter: grayscale(1); }
  .serviceItem .text {
    background-color: white;
    padding: 30px 20px 20px 20px;
    display: block;
    margin-left: 20px; }
    .serviceItem .text a.more {
      font-weight: bold;
      color: #005A47;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 15px; }
  @media (min-width: 700px) {
    .serviceItem {
      width: calc(50% - 10px);
      margin: 5px; }
      .serviceItem .text {
        margin-left: 30px; } }
  @media (min-width: 960px) {
    .serviceItem {
      width: calc(33.33333333% - 2%);
      margin: 1%;
      display: flex;
      flex-direction: column; }
      .serviceItem .text {
        height: 100%; } }
  @media (min-width: 1280px) {
    .serviceItem {
      width: calc(33.33333333% - 3%);
      margin: 1.5%; } }

.customRows {
  background-color: white; }
  .customRows .text {
    padding: 30px; }
    .customRows .text h2 {
      font-family: Butler, Georgia, "Times New Roman", serif;
      color: #005A47;
      font-size: 24px;
      margin-bottom: 20px; }
      @media (min-width: 700px) {
        .customRows .text h2 {
          font-size: 30px; } }
      @media (min-width: 960px) {
        .customRows .text h2 {
          font-size: 36px; } }
      @media (min-width: 1280px) {
        .customRows .text h2 {
          font-size: 42px; } }
    @media (min-width: 960px) {
      .customRows .text {
        display: flex;
        justify-content: center;
        align-items: center; }
        .customRows .text .inner {
          max-width: 500px;
          display: block;
          margin: 0 auto; } }
  @media (min-width: 960px) {
    .customRows .row {
      display: flex;
      flex-wrap: wrap; }
      .customRows .row .text, .customRows .row .image {
        width: 50%; }
      .customRows .row:nth-of-type(2n) .text {
        order: 2; }
      .customRows .row:nth-of-type(2n) .image {
        order: 1; } }

.pageIntroduction {
  color: #005A47;
  font-family: Butler, Georgia, "Times New Roman", serif;
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px; }
  @media (min-width: 960px) {
    .pageIntroduction {
      font-size: 24px; } }
  @media (min-width: 1280px) {
    .pageIntroduction {
      font-size: 28px; } }
  .pageIntroduction h1 {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    text-rendering: optimizeLegibility; }
    @media (max-width: 1279px) {
      .pageIntroduction h1 {
        font-size: 48px; } }
    @media (max-width: 699px) {
      .pageIntroduction h1 {
        font-size: 24px; } }
  .pageIntroduction.noMargin {
    margin-bottom: 0px; }

.smallColumn {
  max-width: 550px;
  display: block;
  margin: 0 auto; }

.genericRow {
  background-color: white;
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 700px) {
    .genericRow {
      padding-top: 50px;
      padding-bottom: 50px; } }
  @media (min-width: 1280px) {
    .genericRow {
      padding-top: 70px;
      padding-bottom: 70px; } }

.greenRow {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 700px) {
    .greenRow {
      padding-top: 50px;
      padding-bottom: 50px; } }
  .greenRow .largeText {
    color: #005A47;
    font-size: 20px;
    font-family: Butler, Georgia, "Times New Roman", serif; }
    @media (min-width: 700px) {
      .greenRow .largeText {
        font-size: 26px; } }
    @media (min-width: 960px) {
      .greenRow .largeText {
        font-size: 32px; } }
    @media (min-width: 1280px) {
      .greenRow .largeText {
        font-size: 40px; } }
  @media (min-width: 960px) {
    .greenRow .columns {
      display: flex;
      flex-wrap: wrap; }
      .greenRow .columns .column {
        width: 45%; }
        .greenRow .columns .column:first-of-type {
          margin-right: 10%; } }
  @media (min-width: 1280px) {
    .greenRow {
      padding-top: 70px;
      padding-bottom: 70px; } }

.pagination-controls p {
  display: flex;
  justify-content: center; }
  .pagination-controls p a {
    text-transform: uppercase;
    padding: 10px 15px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: white;
    font-weight: bold;
    color: #005A47; }

html.blogOverview .blogRow {
  background-color: #DFE7E6; }

ul.categories {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  list-style: none;
  margin-bottom: 0px; }
  ul.categories li {
    margin-left: 4px;
    margin-right: 4px;
    display: inline-block;
    margin-bottom: 10px; }
    ul.categories li a {
      padding: 10px 15px;
      display: block;
      border: solid 2px #005A47;
      font-weight: bold; }
      ul.categories li a:hover, ul.categories li a:focus {
        cursor: pointer;
        background-color: #005A47;
        color: white; }

.pageBanner {
  position: relative;
  background-color: #005A47; }
  .pageBanner img {
    opacity: 0.85; }
  .pageBanner .center {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%); }
    .pageBanner .center h1 {
      margin: 0;
      font-size: 60px;
      line-height: 60px;
      text-rendering: optimizeLegibility;
      font-family: Butler, Georgia, "Times New Roman", serif;
      color: white; }
      @media (max-width: 1279px) {
        .pageBanner .center h1 {
          font-size: 48px; } }
      @media (max-width: 699px) {
        .pageBanner .center h1 {
          font-size: 24px; } }

form.form .form__note {
  margin-bottom: 20px; }

form.form label {
  margin-bottom: 5px; }
  form.form label.required:after {
    color: red;
    content: "*"; }

form.form .form__row {
  margin-bottom: 15px; }

form.form .form__label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #005A47; }

form.form .form__field input[type="text"], form.form .form__field input[type="email"], form.form .form__field textarea {
  padding: 10px 15px;
  border-radius: 5px;
  border: solid 1px #EEE; }

.unevenColumns .column {
  margin-bottom: 30px; }

@media (min-width: 700px) {
  .unevenColumns {
    display: flex;
    flex-wrap: wrap; }
    .unevenColumns .column {
      width: 65%; }
      .unevenColumns .column:first-of-type {
        width: 30%;
        margin-right: 5%; } }

html.serviceDetail .pageBanner {
  z-index: 1; }
  @media (min-width: 700px) {
    html.serviceDetail .pageBanner {
      margin-bottom: -80px; } }

.serviceDetailContainer {
  z-index: 2;
  position: relative; }
  .serviceDetailContainer .smallPageIntroduction {
    color: #005A47;
    font-size: 18px;
    font-family: Butler, Georgia, "Times New Roman", serif; }
    @media (min-width: 700px) {
      .serviceDetailContainer .smallPageIntroduction {
        font-size: 24px;
        line-height: 32px; } }
    @media (min-width: 1280px) {
      .serviceDetailContainer .smallPageIntroduction {
        font-size: 28px;
        line-height: 36px; } }
  .serviceDetailContainer .title {
    background-color: #005A47;
    display: block;
    padding: 15px 20px; }
    .serviceDetailContainer .title h1 {
      margin: 0;
      font-size: 60px;
      line-height: 60px;
      text-rendering: optimizeLegibility;
      color: white;
      font-family: Butler, Georgia, "Times New Roman", serif; }
      @media (max-width: 1279px) {
        .serviceDetailContainer .title h1 {
          font-size: 48px; } }
      @media (max-width: 699px) {
        .serviceDetailContainer .title h1 {
          font-size: 24px; } }
  .serviceDetailContainer .subTitle {
    background-color: #DFE7E6;
    display: block;
    padding: 10px 20px; }
    .serviceDetailContainer .subTitle h2 {
      margin: 0;
      font-size: 20px;
      line-height: 24px;
      text-rendering: optimizeLegibility;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: bold;
      color: #005A47; }
      @media (max-width: 699px) {
        .serviceDetailContainer .subTitle h2 {
          font-size: 18px; } }
  .serviceDetailContainer .innerBox {
    background-color: white; }
    .serviceDetailContainer .innerBox .content {
      padding: 20px; }
  @media (min-width: 700px) {
    .serviceDetailContainer {
      padding-left: 10%;
      padding-bottom: 50px; }
      .serviceDetailContainer .innerBox {
        padding: 40px;
        position: relative; }
        .serviceDetailContainer .innerBox .title {
          position: absolute;
          top: -50px;
          left: 0px; }
        .serviceDetailContainer .innerBox .subTitle {
          display: inline-block; } }
  @media (min-width: 960px) {
    .serviceDetailContainer .innerBox .content {
      display: flex;
      flex-wrap: wrap;
      padding-top: 40px; }
      .serviceDetailContainer .innerBox .content .smallPageIntroduction {
        width: 30%;
        margin-right: 5%; }
      .serviceDetailContainer .innerBox .content .bigColumn {
        width: 65%; }
        .serviceDetailContainer .innerBox .content .bigColumn .mixedContent {
          max-width: 960px; }
          .serviceDetailContainer .innerBox .content .bigColumn .mixedContent .richText {
            max-width: 700px; } }

.careersRow .careerItem {
  background-color: white;
  display: block;
  border-left: 5px solid white;
  transition: all ease 0.3s;
  padding: 20px; }
  .careersRow .careerItem:not(:last-of-type) {
    margin-bottom: 20px; }
  .careersRow .careerItem h2 {
    margin: 0;
    font-size: 20px;
    line-height: 24px;
    text-rendering: optimizeLegibility;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    color: #005A47; }
    @media (max-width: 699px) {
      .careersRow .careerItem h2 {
        font-size: 18px; } }
  .careersRow .careerItem h4 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px; }
  .careersRow .careerItem:hover, .careersRow .careerItem:focus {
    border-left: 5px solid #005A47; }

html.js .aboutRow.waypoint, html.js .quotesRow.waypoint {
  opacity: 0;
  transition: all ease 0.3s; }
  html.js .aboutRow.waypoint.active, html.js .quotesRow.waypoint.active {
    opacity: 1; }

html.js .customRows.waypoint .row .text {
  opacity: 0;
  transition: all ease 0.3s; }

html.js .customRows.waypoint .row.active .text {
  opacity: 1; }

html.js .blogRow.waypoint {
  opacity: 0;
  transition: all ease 0.3s; }
  html.js .blogRow.waypoint.active {
    opacity: 1; }

html.js .servicesGrid.waypoint .serviceItem {
  opacity: 0;
  transition: all ease 0.3s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(1) {
  opacity: 1;
  transition-delay: 0s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(2) {
  opacity: 1;
  transition-delay: 0.25s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(3) {
  opacity: 1;
  transition-delay: 0.5s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(4) {
  opacity: 1;
  transition-delay: 0.75s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(5) {
  opacity: 1;
  transition-delay: 1s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(6) {
  opacity: 1;
  transition-delay: 1.25s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(7) {
  opacity: 1;
  transition-delay: 1.5s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(8) {
  opacity: 1;
  transition-delay: 1.75s; }

html.js .servicesGrid.waypoint.active .serviceItem:nth-of-type(9) {
  opacity: 1;
  transition-delay: 2s; }

/* =page ----------------------------------------------------------------------------------------------------------------
  NOTE: How modules are laid out on specific pages, and styling specific to a given page
  ----------------------------------------------------------------------------------------------------------------------- */
