@charset "UTF-8";
/* ==========================================================================
   Mixins
   ========================================================================== */
/*
 * Mixin for easy media queries
 * @include bp(tablet) { SCSS here };
*/
/*
 * Mixin for clearfix
 * @include clearfix;
*/
/*
 * Mixin for basic CSS triangles
 * @include triangle(up, #000, 50px)
*/
/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname');
 */
/* ==========================================================================
   Variables
   ========================================================================== */
/*$red: crimson;*/
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  background-color: #FFF;
  margin: 0;
  padding: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
   Border-box all the things!
   ========================================================================== */
*,
:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.hideonscreen {
  display: none;
}

:root {
  --tec-font-family-sans-serif: $fontSansSerif;
}

/* ==========================================================================
   General
   ========================================================================== */
body {
  font-family: "Open Sans", sans-serif;
}

/* ==========================================================================
   Links
   ========================================================================== */
a,
a:visited {
  color: #0f6493;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #0f6493;
  text-decoration: underline;
}

.edit-link a {
  color: #d4d4d4;
}

/* ==========================================================================
   Images
   ========================================================================== */
img {
  height: auto; /* Make sure images are scaled correctly. */
  /*max-width: 100%;*/ /* Adhere to container width. */
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1 {
  font-family: "Merriweather", sans-serif !important;
  margin: 0;
  line-height: 1;
}

h2 {
  color: #2296b3;
  font-family: "Merriweather", sans-serif !important;
  font-size: 2.2em;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0;
  margin: 0;
}

h3 {
  color: #494949;
  font-family: "Merriweather", sans-serif !important;
  font-size: 2em;
  font-weight: 400;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

p {
  /*margin-bottom: 1.5em;*/
}

blockquote {
  /*margin: 0 1.5em;*/
}

address {
  /*margin: 0 0 1.5em;*/
}

hr {
  margin: 0 auto;
  border: none;
  border-bottom: solid 1px #dadada;
}

header.ruled {
  background-image: url("img/ruled_header_bkg.png");
  background-position: 0 50%;
  background-repeat: repeat-x;
  color: #2296b3;
  font-family: "Merriweather", sans-serif;
  font-size: 3em;
  font-style: italic;
  margin-bottom: 1em;
  text-align: center;
}
header.ruled span {
  background-color: #fff;
  padding: 0 20px;
}

/* ==========================================================================
   Alignment
   ========================================================================== */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   Accessiblity
   ========================================================================== */
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
}

/* ==========================================================================
   Clearings
   ========================================================================== */
.clear,
.entry-content,
.comment-content,
.site-header,
.site-content,
.site-footer {
  zoom: 1;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/* ==========================================================================
   Infinite Scroll
   ========================================================================== */
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block;
}

/* ==========================================================================
   Common general design styles
   ========================================================================== */
.button {
  background-color: #5a8c2e;
  border: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  outline: 0;
  padding: 12px 55px;
  text-align: center;
}
.button:hover {
  background-color: #4e7928;
  color: #fff;
  text-decoration: none;
}

.breadcrumbs {
  color: #7f7f7f;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375em;
  line-height: 2.2;
  padding: 1.5em 0 3em 0;
}
@media (max-width: 1200px) {
  .breadcrumbs {
    font-size: 1em;
  }
}
.breadcrumbs a {
  color: #0f6493;
}
.breadcrumbs a:hover {
  color: #0d547c;
  text-decoration: none;
}
.breadcrumbs span {
  margin: 0 4px;
}
.breadcrumbs span:first-child {
  margin-left: 0;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after,
a[href]:after img {
    content: "";
  }
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  h1, h2, h3, h4, h5 {
    padding: 6px 0;
    color: #333;
    margin: 0;
    line-height: 1.2;
  }
  h1, h1.entry-title {
    font-size: 22pt !important;
  }
  h2 {
    font-size: 18pt;
  }
  h3 {
    font-size: 16pt;
  }
  h4, h5 {
    font-size: 14pt;
    font-family: Arial, Helvetica, sans-serif;
  }
  h5 {
    font-style: italic;
  }
  header nav ul, header section, #secondary,
.tab-bar, .breadcrumbs, .logo,
footer .banner, footer span.attrib, footer i, footer a,
body.home .announcement, body.home .social, body.home .green-band,
body.home .button-bar, body.home .banners, body.home .columns,
body.home .background-image {
    display: none !important;
  }
  #print-banner {
    text-align: center;
  }
  #print-banner img {
    margin: 0 auto;
  }
  .site-header {
    height: 150px !important;
    position: static;
    display: block;
  }
  .site-content .content-area {
    margin: 0;
    float: none !important;
  }
  .home-footer {
    text-align: center;
  }
  .home-footer .overlay {
    width: 100% !important;
    position: static;
  }
  .hideonscreen {
    display: block;
  }
}
/* ==========================================================================
   Layout
   ========================================================================== */
body > .site {
  width: 100%;
}

#page {
  margin: 0 auto;
}

.site-content {
  background-color: #FFF;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
  /* #primary */
  /* #secondary */
}
@media (max-width: 1450px) {
  .site-content {
    padding: 0 20px;
  }
}
.site-content .content-area {
  float: right;
  margin: 0 0 0 -34%;
  width: 100%;
}
@media (max-width: 1024px) {
  .site-content .content-area {
    margin: 0;
    width: 100%;
  }
}
.site-content .content-area .site-main {
  margin: 0 0 0 38%;
}
@media (max-width: 1024px) {
  .site-content .content-area .site-main {
    margin: 0;
  }
}
.site-content .widget-area {
  border: none;
  float: left;
  overflow: hidden;
  padding: 0 40px 40px 0;
  width: 34%;
}
@media (max-width: 1024px) {
  .site-content .widget-area {
    padding: 0;
    width: 100%;
  }
}
.site-content .widget-area ul.pages {
  font-size: 1.125em;
  list-style-type: none;
  margin: 0 0 2em 0;
  padding: 0;
}
.site-content .widget-area ul.pages li {
  border-bottom: 1px solid #dadada;
}
.site-content .widget-area ul.pages li:first-child {
  border-top: 1px solid #dadada;
}
.site-content .widget-area ul.pages li a {
  color: #0f6493;
  display: block;
  padding: 1em 0em 1em 0em;
  position: relative;
  line-height: 1.83;
  font-weight: 600;
}
.site-content .widget-area ul.pages li.current_page_item a {
  color: #494949;
}

/* ==========================================================================
   Default Header
   ========================================================================== */
.site-header {
  color: #fff;
  height: 520px;
  margin: 0 auto;
  max-width: 1800px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /*	.feature-image {
  		left: -50%;
  		position: absolute;
  		top: 0;
  		left: 0;
  		img {
  			display: block;
  			left: 50%;
  		}
  		z-index: -2;
  	}
  */
  /* Default styles for bottom of header (several post-type specific overrides are in "Overrides" section below) */
}
.site-header a {
  color: #FFF;
}
.site-header .transparent-button {
  background: #fff;
  border: none;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375em;
  color: #13550e;
  font-weight: 600;
  margin: 0 2%;
  padding: 0.75em 2.125em;
  white-space: nowrap;
  width: auto;
}
.site-header .transparent-button:hover {
  opacity: 0.7;
  text-decoration: none;
}
.site-header .tab-bar {
  position: absolute;
  right: 20px;
  bottom: 0;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 0.9375em;
}
@media (max-width: 1024px) {
  .site-header .tab-bar {
    font-size: 0.9em;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    width: 400px;
  }
}
@media (max-width: 450px) {
  .site-header .tab-bar {
    font-size: 0.7em;
    width: 100%;
    right: 0;
    left: 0;
    transform: inherit;
  }
}
.site-header .tab-bar a {
  display: inline-block;
  float: left;
  padding: 0.8em 20px;
  position: relative;
}
@media (max-width: 100px) {
  .site-header .tab-bar a {
    width: 50%;
    text-align: center;
  }
}
@media (max-width: 450px) {
  .site-header .tab-bar a {
    padding: 0.5em 10px;
    text-align: center;
    width: 50%;
  }
}
.site-header .tab-bar a:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -3px;
  border: 3px solid transparent;
}
.site-header .tab-bar a.left {
  background-color: #2296b3;
  border-top-left-radius: 10px;
}
.site-header .tab-bar a.left:before {
  left: -26px;
  border-bottom-right-radius: 20px;
  border-color: #2296b3;
  box-shadow: 0 10px 0 #2296b3;
  border-width: 0 3px 3px 0;
}
@media (max-width: 1024px) {
  .site-header .tab-bar a.left:before {
    display: none;
  }
}
.site-header .tab-bar a.right {
  background-color: #5a8c2e;
  border-top-right-radius: 10px;
  min-width: 270px;
  text-align: center;
}
@media (max-width: 680px) {
  .site-header .tab-bar a.right {
    min-width: auto;
  }
}
.site-header .tab-bar a.right:before {
  right: -26px;
  border-bottom-left-radius: 20px;
  border-color: #5a8c2e;
  box-shadow: 0 10px 0 #5a8c2e;
  border-width: 0 0 3px 3px;
}
@media (max-width: 1024px) {
  .site-header .tab-bar a.right:before {
    display: none;
  }
}
.site-header .tab-bar a i {
  margin-left: 0.5em;
}
@media (max-width: 450px) {
  .site-header .tab-bar a i {
    display: none;
  }
}
.site-header > section {
  background-color: transparent;
  /*overflow: hidden;*/
  padding-left: calc(38% - 40px);
  position: absolute;
  width: 100%;
  z-index: 1000;
  bottom: 0;
  right: 0;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .site-header > section {
    width: 100%;
    padding: 0;
  }
}
.site-header > section > div {
  background-color: rgba(19, 85, 14, 0.8);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1024px) {
  .site-header > section > div {
    padding-bottom: 40px;
  }
}
.site-header > section > div .title {
  font-family: "Merriweather", sans-serif;
  font-size: 2.75em;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  padding: 28px 0px 28px 43px;
  text-align: left;
  width: 65%;
}
@media (max-width: 1024px) {
  .site-header > section > div .title {
    font-size: 5em;
    /*height: 110px;*/
    padding: 10px 0 0 0;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 860px) {
  .site-header > section > div .title {
    font-size: 3em;
  }
}
@media (max-width: 420px) {
  .site-header > section > div .title {
    font-size: 3em;
  }
}
.site-header > section > div .title h1 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 1em;
}
@media (max-width: 1024px) {
  .site-header > section > div .title h1 {
    text-align: center;
  }
}
.site-header > section > div .description {
  font-size: 1.8em;
  line-height: 1;
  padding: 0 10% 30px 10%;
  text-align: center;
  width: 65%;
}
@media (max-width: 1024px) {
  .site-header > section > div .description {
    font-size: 1.2em;
    padding-bottom: 20px;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .site-header > section > div .description {
    font-size: 1em;
  }
}
@media (max-width: 450px) {
  .site-header > section > div .description {
    padding: 0 0 10px 0;
  }
}

/* ==========================================================================
   Overrides
   ========================================================================== */
body.single-program .site-header {
  height: 520px;
}
body.single-program .site-header > section {
  background-color: transparent;
  bottom: 0;
  left: 0;
  max-width: 100%;
  transform: none;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div {
    padding-bottom: 0;
  }
}
body.single-program .site-header > section > div:before {
  border: 200px solid #5a8c2e;
  content: "";
  height: 100%;
  left: -200px;
  position: absolute;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div:before {
    display: none;
  }
}
body.single-program .site-header > section > div .title {
  background-color: #5a8c2e;
  border-top-right-radius: 30px;
  text-align: left;
  position: relative;
  padding: 24px 10px 24px 0;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div .title {
    border-top-left-radius: 30px;
    padding: 20px 20px 90px 20px;
    width: 100%;
  }
}
body.single-program .site-header > section > div .title h1 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 0.55em;
}
@media (max-width: 1200px) {
  body.single-program .site-header > section > div .title h1 {
    font-size: 0.45em;
  }
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div .title h1 {
    text-align: center;
  }
}
@media (max-width: 640px) {
  body.single-program .site-header > section > div .title h1 {
    font-size: 0.35em;
  }
}
body.single-program .site-header > section > div .title:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -3px;
  border: 3px solid red;
  right: -26px;
  border-bottom-left-radius: 30px;
  border-color: #5a8c2e;
  border-width: 0 0 3px 3px;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div .title:before {
    display: none;
  }
}
body.single-program .site-header > section > div .title:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -3px;
  border: 3px solid #5a8c2e;
  right: -27px;
  border-bottom-left-radius: 30px;
  border-color: #5a8c2e;
  border-width: 0 0 3px 3px;
  box-shadow: -3px 10px 0 #5a8c2e;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div .title:after {
    display: none;
  }
}
body.single-program .site-header > section > div div.apply {
  bottom: 15%;
  position: absolute;
  right: 0;
  text-align: center;
  width: 28%;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div div.apply {
    bottom: 4%;
    width: 100%;
  }
}
body.single-program .site-header > section > div div.apply .button {
  max-width: 260px;
  padding: 1.5%;
  text-transform: uppercase;
  width: 80%;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div div.apply .button {
    font-size: 0.9em;
    max-width: auto;
    padding: 6px;
    width: 45%;
  }
}
body.single-program .site-header > section > div div.apply em {
  display: block;
  font-size: 0.9em;
  margin: 1em auto 0 auto;
}
@media (max-width: 1024px) {
  body.single-program .site-header > section > div div.apply em {
    margin-top: 0.5em;
  }
}
@media (max-width: 480px) {
  body.single-program .site-header > section > div div.apply em {
    font-size: 0.7em;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  color: #7f7f7f;
  font-size: 0.9375em;
  margin: 0 auto;
  max-width: 1440px;
  text-align: center;
  width: 100%;
  padding-bottom: 2em;
}
.site-footer a {
  color: #7f7f7f;
}
.site-footer div.banner {
  padding: 43px 20px 34px 20px;
  text-align: center;
  background: #13550e;
  margin-bottom: 1.5em;
  color: #fff;
}
@media (max-width: 990px) {
  .site-footer div.banner {
    font-size: 0.7em;
  }
}
.site-footer div.banner p {
  font-family: "Merriweather", sans-serif;
  padding: 0;
  margin: 0;
  padding: 0 0 1.225em 0;
  font-size: 2.75em;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 690px) {
  .site-footer div.banner p {
    font-size: 2.5em;
    padding-bottom: 0.75em;
  }
}
@media (max-width: 520px) {
  .site-footer div.banner p {
    font-size: 2.2em;
  }
}
@media (max-width: 460px) {
  .site-footer div.banner p {
    font-size: 2.8em;
  }
}
@media (max-width: 350px) {
  .site-footer div.banner p {
    font-size: 2.4em;
  }
}
.site-footer div.banner .button {
  background: #fff;
  border: none;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375em;
  color: #13550e;
  font-weight: 600;
  margin: 0 2%;
  padding: 0.75em 1.625em;
  white-space: nowrap;
  width: auto;
}
@media (max-width: 500px) {
  .site-footer div.banner .button {
    font-size: 1.4em;
  }
}
.site-footer div.banner .button:hover {
  background-color: #f2f2f2;
}
.site-footer div.banner em {
  display: block;
  font-size: 1.2em;
  padding: 1em 0 0 0;
}
.site-footer div.banner .social a {
  color: #5a8c2e;
  display: inline-block;
  font-size: 1.5em;
  margin: 0.25em;
}
.site-footer div.banner .social a:hover {
  color: #13550e;
}
.site-footer .site-info i {
  font-style: normal;
}
@media (max-width: 500px) {
  .site-footer .site-info .name {
    display: block;
  }
}
@media (max-width: 800px) {
  .site-footer .site-info .attrib {
    display: block;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .site-footer .site-info .attrib i {
    display: none;
  }
}

/* ==========================================================================
   Menus
   ========================================================================== */
.menu-main-nav-container {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125em;
  font-weight: 600;
  left: 0;
  max-width: 1440px;
  padding: 0 20px;
  position: absolute;
  right: 0;
  top: 10px;
  margin: 0 auto;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 1340px) {
  .menu-main-nav-container {
    font-size: 1.25em;
  }
}
@media (max-width: 1200px) {
  .menu-main-nav-container {
    padding: 0 2.5%;
  }
}
@media (max-width: 860px) {
  .menu-main-nav-container {
    font-size: 1.1em;
  }
}
@media (max-width: 768px) {
  .menu-main-nav-container {
    top: 10px;
  }
}
@media (max-width: 540px) {
  .menu-main-nav-container {
    font-size: 1em;
  }
}
.menu-main-nav-container .logo {
  float: left;
  width: 30%;
  z-index: 1000;
}
@media (max-width: 768px) {
  .menu-main-nav-container .logo {
    float: none;
    width: 100%;
  }
}
.menu-main-nav-container .logo img {
  display: block;
  max-width: 300px;
  width: 100%;
}
@media (max-width: 768px) {
  .menu-main-nav-container .logo img {
    margin: 0 auto;
    width: 200px;
  }
}
.menu-main-nav-container > ul {
  /*background-color: red;*/
  float: right;
  list-style: none;
  margin: 2% 0 0 0;
  padding: 0;
  width: auto;
  position: relative;
}
@media (max-width: 768px) {
  .menu-main-nav-container > ul {
    float: none;
    margin: 4px auto;
    text-align: center;
    width: 100%;
  }
}
.menu-main-nav-container > ul > li {
  display: inline-block;
  margin: 0;
  position: relative;
}
.menu-main-nav-container > ul > li a {
  display: block;
  padding: 0 0 0 30px;
  white-space: nowrap;
}
.menu-main-nav-container > ul > li a:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 1140px) {
  .menu-main-nav-container > ul > li a {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  .menu-main-nav-container > ul > li a {
    /*padding-left: 30px;*/
  }
}
@media (max-width: 630px) {
  .menu-main-nav-container > ul > li a {
    padding-left: 15px;
  }
}
.menu-main-nav-container > ul > li.search {
  position: relative;
}
@media (max-width: 500px) {
  .menu-main-nav-container > ul > li.search {
    display: none;
  }
}
.menu-main-nav-container > ul > li.search-form {
  display: none;
  position: absolute;
  top: 36px;
  width: 100%;
}
.menu-main-nav-container > ul > li.search-form > form {
  color: #222;
  padding: 10px;
  right: 0;
  background-color: #333;
}
.menu-main-nav-container > ul > li.search-form > form input {
  float: right;
  height: 40px;
  line-height: 40px;
  padding: 0 0.25em;
}
.menu-main-nav-container > ul > li.search-form > form input:focus {
  outline: none;
}
.menu-main-nav-container > ul > li.search-form > form input[type=submit] {
  width: 25%;
}
.menu-main-nav-container > ul > li.search-form > form input[type=text] {
  width: 75%;
}
.menu-main-nav-container > ul > li ul {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  font-size: 0.7em;
}
.menu-main-nav-container > ul > li ul li {
  display: block;
  text-align: left;
  width: 100%;
}
.menu-main-nav-container > ul > li ul li a {
  display: block;
  width: 100%;
  padding: 5px 15px;
  background: url("../img/sub-menu-bg.png") repeat;
  border-bottom: 1px solid #222;
}
@media (min-width: 769px) {
  .menu-main-nav-container > ul > li:hover ul {
    display: block;
  }
}

/*
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
	float: left;
	left: 0;
	position: absolute;
	top: 1.5em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {
}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	display: block;
}

.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
*/
/* Small menu */
/*
.menu-toggle {
	cursor: pointer;
	display: none;
}

@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
*/
/* ==========================================================================
   Widgets
   ========================================================================== */
.widget {
  background-color: #e9e9ea;
  color: #5a8c2e;
  padding: 2em 1em;
  margin-bottom: 1em;
  text-align: center;
}
.widget header {
  color: #494949;
  font-family: "Merriweather", sans-serif;
  font-size: 2.125em;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.75em;
}
@media (max-width: 1024px) {
  .widget header {
    font-size: 1.6em;
  }
}
.widget p {
  color: #494949;
}
.widget a {
  color: #5a8c2e;
}
.widget a.button {
  background-color: #13550e;
  color: #fff;
  display: inline-block;
  font-size: 0.9375em;
  padding: 4px 34px 4px 34px;
  line-height: 2.87;
  text-transform: capitalize;
  font-weight: 600;
}
.widget a.button:hover {
  background-color: #0e3f0a;
}
.widget a.button i {
  margin-right: 1em;
}
.widget ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  font-size: 1.2em;
  margin-bottom: 0.25em;
  padding-left: 1em;
  position: relative;
  text-align: left;
}
.widget ul li:before {
  content: "> ";
  position: absolute;
  left: 0;
  top: 0;
}
.widget.testimonial {
  background-color: #FFF;
  border-top: 1px solid #999;
  margin-top: 2em;
  padding: 2em 0.25em 0.5em 0.25em;
}
.widget.testimonial header {
  color: #5a8c2e;
  /*font-size: 1.3em;*/
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.widget.testimonial > div {
  color: #585858;
  font-size: 1.2em;
}
.widget.testimonial > div .name {
  font-weight: bold;
}
.widget.testimonial > div .content p {
  margin-top: 0;
}
.widget.testimonial > div .hr {
  border-top: 1px solid #999;
  height: 1px;
  margin: 0 auto 1em auto;
  width: 30%;
}
.widget.testimonial > div .testimonial_name {
  font-weight: normal;
  font-style: italic;
}
.widget.testimonial > div .testimonial_program {
  font-size: 0.8em;
}
.widget.testimonial > div .testimonial_program a {
  color: #585858;
}
.widget.faqs {
  padding-left: 2.25em;
  padding-right: 2.25em;
}
.widget.social > div {
  margin-bottom: 0.5em;
}
@media (max-width: 1024px) {
  .widget.social > div {
    display: inline-block;
  }
}
.widget.social a {
  color: #13550e;
}
.widget.social a:hover {
  color: #0e3f0a;
}
.widget.application-deadlines > i {
  color: #494949;
  margin-bottom: 0.5em;
}
.widget.application-deadlines ul {
  color: #000;
  font-size: 0.8em;
  margin: 0;
  padding: 0;
  text-align: center;
}
.widget.application-deadlines ul li {
  display: inline-block;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 32%;
  white-space: nowrap;
}
.widget.application-deadlines ul li:before {
  content: "";
}
.widget.application-deadlines ul li .label {
  font-weight: bold;
  text-transform: uppercase;
}
.widget.widget_lgc_featured_article header {
  color: #494949;
  font-family: "Merriweather", sans-serif;
  font-size: 2.125em;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.75em;
}
@media (max-width: 1024px) {
  .widget.widget_lgc_featured_article header {
    font-size: 1.6em;
  }
}
.widget.widget_lgc_featured_article a {
  color: #2296b3;
}
.widget.widget_lgc_featured_article a.button {
  background-color: #13550e;
  border: 0;
  color: #fff;
  display: inline-block;
  font-size: 0.9375em;
  padding: 4px 34px 4px 34px;
  line-height: 2.87;
  text-transform: capitalize;
  font-weight: 600;
}
.widget.widget_lgc_featured_article a.button:hover {
  background-color: #0e3f0a;
  color: #fff;
}
.widget.widget_lgc_featured_article a.button i {
  margin-right: 1em;
}

/* Make sure select elements fit in widgets */
.widget select {
  max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
  display: none;
}

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area {
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.comments-area > :last-child {
  margin-bottom: 0;
}

.comment-list + .comment-respond {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
  padding-top: 1.6em;
}

.comments-title,
.comment-reply-title {
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333;
}

.comments-title {
  margin-bottom: 1.3333em;
}

.comment-list {
  list-style: none;
  margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  padding: 1.6em 0;
}

.comment-list .children {
  list-style: none;
  margin: 0;
}

.comment-list .children > li {
  padding-left: 0.8em;
}

.comment-author {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 0.4em;
}

.comment-author a:hover {
  border-bottom: 1px solid #707070;
  border-bottom: 1px solid rgba(51, 51, 51, 0.7);
}

.comment-author .avatar {
  float: left;
  height: 24px;
  margin-right: 0.8em;
  width: 24px;
}

.comment-metadata,
.pingback .edit-link {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8em;
  line-height: 1.5;
}

.comment-metadata a,
.pingback .edit-link a {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  text-decoration: none;
}

.comment-metadata a:hover,
.pingback .edit-link a:hover {
  border-bottom: 1px solid #333;
}

.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .edit-link a:hover,
.pingback .edit-link a:focus {
  color: #333;
}

.comment-metadata .edit-link {
  margin-left: 1em;
}

.pingback .edit-link {
  margin-left: 1em;
}

.pingback .edit-link:before {
  top: 5px;
}

.comment-content ul,
.comment-content ol {
  margin: 0 0 1.6em 1.3333em;
}

.comment-content li > ul,
.comment-content li > ol {
  margin-bottom: 0;
}

.comment-content > :last-child {
  margin-bottom: 0;
}

.comment-list .reply {
  font-size: 0.9em;
}

.comment-list .reply a {
  border: 1px solid #eaeaea;
  border: 1px solid rgba(51, 51, 51, 0.1);
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  margin-top: 2em;
  padding: 0.4167em 1.5em;
}

.comment-list .reply a:hover,
.comment-list .reply a:focus {
  background-color: #d4d4d4;
  border-color: #999;
  color: #333;
  outline: 0;
  text-decoration: none;
}

.comment-form {
  padding-bottom: 6em;
}

.comment-form label {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.9em;
  font-weight: 700;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
textarea {
  width: 100%;
}

.comment-form input[type=submit] {
  background-color: #2296b3;
  border: none;
  color: #fff;
  padding: 0.75em 4em;
  display: inline-block;
  margin: 0 auto;
  width: auto;
}
.comment-form input[type=submit]:hover {
  background-color: #5a8c2e;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 1em;
}

.comment-awaiting-moderation {
  border: 3px solid #2296b3;
  background-color: #f3f3f3;
  color: #444;
  font-size: 0.9em;
  margin-bottom: 0;
  padding: 1em;
  text-align: center;
}

.logged-in-as a:hover {
  border-bottom: 1px solid #333;
}

.no-comments {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  padding-top: 1.6em;
}

.comment-navigation + .no-comments {
  border-top: 0;
}

.form-allowed-tags code {
  font-family: Inconsolata, monospace;
}

.form-submit {
  padding: 1em 0;
  text-align: right;
}

.required {
  color: #c0392b;
}

.comment-reply-title small {
  font-size: 100%;
}

.comment-reply-title small a {
  border: 0;
  float: right;
  height: 32px;
  overflow: hidden;
  width: 26px;
}

.comment-reply-title small a:before {
  content: "\f405";
  font-size: 32px;
  position: relative;
  top: -3px;
}

.comment-form .form-allowed-tags {
  display: none;
}
.comment-form .comment-form-url {
  display: none;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email {
  float: left;
  padding: 0 0.15em 1em 0.15em;
  width: 50%;
}
@media (max-width: 768px) {
  .comment-form .comment-form-author,
.comment-form .comment-form-email {
    padding: 0;
    width: 100%;
  }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.custom-ninja-form .nf-field .textbox-wrap, .custom-ninja-form .nf-field .email-wrap, .custom-ninja-form .nf-field .zip-wrap, .custom-ninja-form .nf-field .listselect-wrap {
  max-width: 530px;
}
.custom-ninja-form .nf-field .textarea-wrap {
  max-width: 710px;
}
.custom-ninja-form .nf-field .textarea-wrap .nf-field-label {
  max-width: 530px;
}
.custom-ninja-form .ninja-forms-req-symbol {
  color: #494949;
}
.custom-ninja-form .nf-error-msg {
  color: #e80000;
}
.custom-ninja-form .nf-field-label label {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.83;
}
.custom-ninja-form .nf-form-content {
  margin-top: 26px;
}
.custom-ninja-form .nf-error .ninja-forms-field {
  border: solid 1px #e80000 !important;
}
.custom-ninja-form .ninja-forms-field {
  padding: 15px;
  border-radius: 2px;
  border: solid 1px #a9a9a9 !important;
}
.custom-ninja-form .list-select-wrap .nf-field-element select {
  appearance: none;
  position: relative;
}
.custom-ninja-form .list-select-wrap .nf-field-element:before {
  position: absolute;
  font-family: FontAwesome;
  font-size: 0.8124em;
  content: "\f078";
  display: block;
  right: 20px;
  top: 20px;
  color: #4d4d4d;
  z-index: 9;
}
.custom-ninja-form .list-radio-wrap ul {
  display: flex;
}
.custom-ninja-form .list-radio-wrap ul li {
  margin-right: 36px !important;
}
.custom-ninja-form .list-radio-wrap ul li input {
  margin-top: 10px;
}
.custom-ninja-form .submit-wrap input {
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 0.75em 2.125em;
  white-space: nowrap;
  width: auto;
  min-width: 170px;
  border-radius: 2px;
  background-color: #13550e;
  color: #fff;
}
.custom-ninja-form .submit-wrap input:hover {
  background-color: #0e3f0a;
}

.page-content img,
.entry-content img,
.entry-summary img {
  max-width: 100%;
  height: auto;
}
.page-content .university_program_list li:before,
.entry-content .university_program_list li:before,
.entry-summary .university_program_list li:before {
  content: "—";
}

/* ==========================================================================
   Posts and pages
   ========================================================================== */
/*.site-content {
	&:before {
		background-image: url('../img/page_shadow_left.png');
		background-position: 0 0;
		background-repeat: no-repeat;
		content: '';
		height: 400px;
		left: -32px;
		position: absolute;
		top: 64px;
		width: 32px;
	}
	&:after {
		background-image: url('../img/page_shadow_right.png');
		background-position: 0 0;
		background-repeat: no-repeat;
		content: '';
		height: 400px;
		position: absolute;
		right: -32px;
		top: 64px;
		width: 32px;
	}
}*/
.entry-header .entry-title {
  color: #494949;
  font-family: "Merriweather", sans-serif;
  font-size: 2.75em;
  font-weight: 900;
  margin-bottom: 1em;
}
.entry-header .entry-title a {
  color: #2296b3;
}
@media (max-width: 570px) {
  .entry-header .entry-title {
    font-size: 2.5em;
  }
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.contact-staff-member .staff-member {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.contact-staff-member .staff-member .staff-member-image {
  line-height: 0;
  width: 30%;
}
.contact-staff-member .staff-member .staff-member-image img {
  width: 100%;
}
.contact-staff-member .staff-member .staff-member-details {
  width: 70%;
}

.page-content,
.entry-content,
.entry-summary {
  color: #494949;
  font-family: "Open Sans", sans-serif;
  /*font-size: 1.4em;*/
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.83;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  /* Blog post overrides */
}
.page-content .wp-caption,
.entry-content .wp-caption,
.entry-summary .wp-caption {
  border: none;
  width: auto;
}
.page-content .wp-caption .wp-caption-text,
.entry-content .wp-caption .wp-caption-text,
.entry-summary .wp-caption .wp-caption-text {
  border-top: 1px solid #999;
  font-size: 0.725em;
  font-style: italic;
  line-height: 1.1;
  margin: 0.5em 0 0 0;
  padding: 0.5em;
  text-align: center;
}
.page-content p,
.entry-content p,
.entry-summary p {
  font-size: inherit;
  line-height: 1.83;
  margin-bottom: 1.5em;
}
.page-content p:first-child,
.entry-content p:first-child,
.entry-summary p:first-child {
  margin-top: 0;
}
.page-content h2,
.entry-content h2,
.entry-summary h2 {
  margin-top: 1.3em;
  color: #494949;
  font-size: 2.2em;
  font-weight: 900;
}
.page-content h2:first-child,
.entry-content h2:first-child,
.entry-summary h2:first-child {
  margin-top: 0;
}
.page-content h3,
.entry-content h3,
.entry-summary h3 {
  font-family: "Merriweather", sans-serif;
  font-size: 2em;
  line-height: 2em;
}
.page-content h4,
.entry-content h4,
.entry-summary h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.375rem;
  line-height: 2em;
  margin: 0;
  margin-top: 1em;
  font-weight: 400;
}
.page-content ul,
.entry-content ul,
.entry-summary ul {
  font-size: inherit;
  list-style-type: none;
  padding: 0;
}
.page-content ul li,
.entry-content ul li,
.entry-summary ul li {
  margin-bottom: 0.2em;
  padding: 0 0 0 1.7em;
  position: relative;
}
.page-content ul li:before,
.entry-content ul li:before,
.entry-summary ul li:before {
  content: ".";
  font-weight: 600;
  /*margin-right: .5em;*/
  /*margin-left: -1.2em;*/
  position: absolute;
  left: 5px;
  top: -5px;
}
.page-content ul li ul,
.entry-content ul li ul,
.entry-summary ul li ul {
  padding: 0;
}
.page-content ul li ul li:before,
.entry-content ul li ul li:before,
.entry-summary ul li ul li:before {
  content: ".";
  padding: 0px 0 0 10px;
}
.page-content ol,
.entry-content ol,
.entry-summary ol {
  list-style: none;
  counter-reset: my-awesome-counter 0;
  padding-left: 18px;
}
.page-content ol li,
.entry-content ol li,
.entry-summary ol li {
  counter-increment: my-awesome-counter;
  padding: 0 0 0 0.5em;
}
.page-content ol li::marker,
.entry-content ol li::marker,
.entry-summary ol li::marker {
  content: counter(my-awesome-counter) ")";
}
.page-content .wp-block-button__link,
.entry-content .wp-block-button__link,
.entry-summary .wp-block-button__link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 0.75em 2.125em;
  white-space: nowrap;
  width: auto;
  min-width: 170px;
  border-radius: 2px;
  background-color: #13550e;
}
.page-content .wp-block-button__link:hover,
.entry-content .wp-block-button__link:hover,
.entry-summary .wp-block-button__link:hover {
  background-color: #0e3f0a;
}
.page-content ul.news,
.page-content ul.blog-posts,
.entry-content ul.news,
.entry-content ul.blog-posts,
.entry-summary ul.news,
.entry-summary ul.blog-posts {
  font-size: inherit;
  list-style: none;
  padding: 0;
}
.page-content ul.news li,
.page-content ul.blog-posts li,
.entry-content ul.news li,
.entry-content ul.blog-posts li,
.entry-summary ul.news li,
.entry-summary ul.blog-posts li {
  padding: 10px 0;
  margin: 2px 0 0 0;
}
.page-content ul.news li:before,
.page-content ul.blog-posts li:before,
.entry-content ul.news li:before,
.entry-content ul.blog-posts li:before,
.entry-summary ul.news li:before,
.entry-summary ul.blog-posts li:before {
  content: "";
}
.page-content ul.news li:after,
.page-content ul.blog-posts li:after,
.entry-content ul.news li:after,
.entry-content ul.blog-posts li:after,
.entry-summary ul.news li:after,
.entry-summary ul.blog-posts li:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.page-content ul.news li .thumbnail-wrapper,
.page-content ul.blog-posts li .thumbnail-wrapper,
.entry-content ul.news li .thumbnail-wrapper,
.entry-content ul.blog-posts li .thumbnail-wrapper,
.entry-summary ul.news li .thumbnail-wrapper,
.entry-summary ul.blog-posts li .thumbnail-wrapper {
  float: left;
  margin: 0;
  width: 15%;
  border-radius: 2px;
}
.page-content ul.news li .thumbnail-wrapper img,
.page-content ul.blog-posts li .thumbnail-wrapper img,
.entry-content ul.news li .thumbnail-wrapper img,
.entry-content ul.blog-posts li .thumbnail-wrapper img,
.entry-summary ul.news li .thumbnail-wrapper img,
.entry-summary ul.blog-posts li .thumbnail-wrapper img {
  width: 100%;
}
.page-content ul.news li .text-wrapper,
.page-content ul.blog-posts li .text-wrapper,
.entry-content ul.news li .text-wrapper,
.entry-content ul.blog-posts li .text-wrapper,
.entry-summary ul.news li .text-wrapper,
.entry-summary ul.blog-posts li .text-wrapper {
  float: right;
  margin: 0;
  width: 100%;
}
.page-content ul.news li h4,
.page-content ul.blog-posts li h4,
.entry-content ul.news li h4,
.entry-content ul.blog-posts li h4,
.entry-summary ul.news li h4,
.entry-summary ul.blog-posts li h4 {
  margin: 0;
  padding: 0;
}
.page-content ul.blog-posts li a,
.entry-content ul.blog-posts li a,
.entry-summary ul.blog-posts li a {
  color: #494949;
  display: block;
  padding: 2em;
}
.page-content ul.blog-posts li a:before, .page-content ul.blog-posts li a:after,
.entry-content ul.blog-posts li a:before,
.entry-content ul.blog-posts li a:after,
.entry-summary ul.blog-posts li a:before,
.entry-summary ul.blog-posts li a:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}
.page-content ul.blog-posts li a:after,
.entry-content ul.blog-posts li a:after,
.entry-summary ul.blog-posts li a:after {
  clear: both;
}
.page-content ul.blog-posts li a .text-wrapper,
.entry-content ul.blog-posts li a .text-wrapper,
.entry-summary ul.blog-posts li a .text-wrapper {
  position: relative;
}
.page-content ul.blog-posts li a .text-wrapper::after,
.entry-content ul.blog-posts li a .text-wrapper::after,
.entry-summary ul.blog-posts li a .text-wrapper::after {
  content: "";
  border-bottom: solid 1px #dadada;
  display: block;
  position: absolute;
  width: 100%;
  bottom: -2em;
}
.page-content ul.blog-posts li a h4,
.entry-content ul.blog-posts li a h4,
.entry-summary ul.blog-posts li a h4 {
  color: #494949;
  font-weight: bold;
  font-size: 2.125em;
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-family: "Merriweather", sans-serif;
  text-decoration: underline;
}
.page-content ul.blog-posts li a .date,
.entry-content ul.blog-posts li a .date,
.entry-summary ul.blog-posts li a .date {
  color: #494949;
  font-size: 0.8em;
  margin-bottom: 0.5em;
  text-transform: capitalize;
}
.page-content ul.blog-posts li a:hover,
.entry-content ul.blog-posts li a:hover,
.entry-summary ul.blog-posts li a:hover {
  background-color: rgba(249, 249, 249, 0.7);
  text-decoration: none;
}
.page-content ul.blog-posts li a:hover h4,
.entry-content ul.blog-posts li a:hover h4,
.entry-summary ul.blog-posts li a:hover h4 {
  color: #333;
}
.page-content ul.blog-posts.featured,
.entry-content ul.blog-posts.featured,
.entry-summary ul.blog-posts.featured {
  margin: 0;
  padding: 0;
}
.page-content ul.blog-posts.featured li,
.entry-content ul.blog-posts.featured li,
.entry-summary ul.blog-posts.featured li {
  background-color: #13550e;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5em;
}
.page-content ul.blog-posts.featured li a,
.entry-content ul.blog-posts.featured li a,
.entry-summary ul.blog-posts.featured li a {
  color: #fff;
}
.page-content ul.blog-posts.featured li a .thumbnail-wrapper,
.entry-content ul.blog-posts.featured li a .thumbnail-wrapper,
.entry-summary ul.blog-posts.featured li a .thumbnail-wrapper {
  width: 20%;
}
.page-content ul.blog-posts.featured li a .text-wrapper,
.entry-content ul.blog-posts.featured li a .text-wrapper,
.entry-summary ul.blog-posts.featured li a .text-wrapper {
  width: 100%;
  border-bottom: none;
}
.page-content ul.blog-posts.featured li a .text-wrapper:after,
.entry-content ul.blog-posts.featured li a .text-wrapper:after,
.entry-summary ul.blog-posts.featured li a .text-wrapper:after {
  display: none;
}
.page-content ul.blog-posts.featured li a .text-wrapper h4,
.entry-content ul.blog-posts.featured li a .text-wrapper h4,
.entry-summary ul.blog-posts.featured li a .text-wrapper h4 {
  color: #fff;
  text-decoration: none;
}
.page-content ul.blog-posts.featured li a .text-wrapper .date,
.entry-content ul.blog-posts.featured li a .text-wrapper .date,
.entry-summary ul.blog-posts.featured li a .text-wrapper .date {
  color: #fff;
}
.page-content ul.blog-posts.featured li a .text-wrapper .excerpt,
.entry-content ul.blog-posts.featured li a .text-wrapper .excerpt,
.entry-summary ul.blog-posts.featured li a .text-wrapper .excerpt {
  color: #fff;
}
.page-content ul.blog-posts.featured li a .text-wrapper .label,
.entry-content ul.blog-posts.featured li a .text-wrapper .label,
.entry-summary ul.blog-posts.featured li a .text-wrapper .label {
  display: block;
  font-size: 1em;
  margin-bottom: 0.5em;
}
.page-content ul.blog-posts.featured li a:hover,
.entry-content ul.blog-posts.featured li a:hover,
.entry-summary ul.blog-posts.featured li a:hover {
  background-color: #13550e;
}

.featured-blog-posts-header {
  background-color: #13550e;
  color: #fff;
  font-size: 0.8em;
  margin-top: 2em;
  padding: 0.5em;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.pagination {
  border-top: 1px solid #d3d3d3;
  font-size: 0.8em;
  margin-bottom: 2em;
  padding: 0.5em 1em;
}
.pagination:before, .pagination:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}
.pagination:after {
  clear: both;
}
.pagination .prev {
  float: left;
}
.pagination .next {
  float: right;
}

.type-post .entry-header .entry-title {
  margin-bottom: 0.5em;
}
.type-post .entry-header .entry-meta {
  color: #777;
  margin-bottom: 1em;
}
.type-post .entry-content img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.type-post .entry-footer {
  background-color: #f3f3f3;
  border-top: 1px solid #999;
  font-size: 0.7em;
  padding: 0.5em;
}
.type-post .entry-footer .edit-link {
  float: right;
}
.type-post .entry-footer .edit-link a {
  color: #555;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.wp-caption {
  border: 1px solid #ccc;
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.site-main .gallery {
  margin-bottom: 1.5em;
}

.site-main .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}

.site-main .gallery dd,
.site-main .gallery figcaption {
  margin: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

form#site-search-form .text {
  float: left;
  width: 75%;
}
form#site-search-form .button {
  float: right;
  width: 20%;
  padding: 5px 55px;
}

/* ==========================================================================
   Overrides
   ========================================================================== */
body.single-announcement .site-content:before {
  background-position: 0 0;
  background-repeat: no-repeat;
  content: "";
  height: 400px;
  left: -32px;
  position: absolute;
  top: 64px;
  width: 32px;
}
body.single-announcement .site-content:after {
  background-position: 0 0;
  background-repeat: no-repeat;
  content: "";
  height: 400px;
  position: absolute;
  right: -32px;
  top: 64px;
  width: 32px;
}

body.page .site-content,
body.events-archive .site-content {
  margin-top: 0;
  /*		&:before,
  		&:after {
  			display: none;
  		}
  */
}
body.page .site-content .breadcrumbs,
body.events-archive .site-content .breadcrumbs {
  padding-bottom: 1.5em;
}
body.page .testimonial,
body.events-archive .testimonial {
  color: #FFF;
  margin: 2em auto;
}
body.page .testimonial > div,
body.events-archive .testimonial > div {
  background-color: #2296b3;
  overflow: hidden;
  padding: 5em;
  position: relative;
}
@media (max-width: 1300px) {
  body.page .testimonial > div,
body.events-archive .testimonial > div {
    padding: 3em;
  }
}
@media (max-width: 900px) {
  body.page .testimonial > div,
body.events-archive .testimonial > div {
    padding: 2em;
  }
}
@media (max-width: 680px) {
  body.page .testimonial > div,
body.events-archive .testimonial > div {
    padding: 1em;
  }
}
body.page .testimonial > div div.image,
body.events-archive .testimonial > div div.image {
  display: none;
}
body.page .testimonial > div section,
body.events-archive .testimonial > div section {
  font-size: 2em;
  line-height: 1.2;
  padding: 0 2em;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (max-width: 1300px) {
  body.page .testimonial > div section,
body.events-archive .testimonial > div section {
    font-size: 1.7em;
  }
}
@media (max-width: 900px) {
  body.page .testimonial > div section,
body.events-archive .testimonial > div section {
    padding-right: 0;
  }
}
@media (max-width: 680px) {
  body.page .testimonial > div section,
body.events-archive .testimonial > div section {
    font-size: 1.5em;
    padding: 0 2em;
  }
}
body.page .testimonial > div section:before,
body.events-archive .testimonial > div section:before {
  content: "“";
  font-family: "serif";
  font-size: 3.5em;
  position: absolute;
  left: 0;
  top: -0.25em;
}
@media (max-width: 900px) {
  body.page .testimonial > div section:before,
body.events-archive .testimonial > div section:before {
    display: none;
  }
}
@media (max-width: 680px) {
  body.page .testimonial > div section:before,
body.events-archive .testimonial > div section:before {
    display: block;
    font-size: 2.5em;
  }
}
body.page .testimonial > div section:after,
body.events-archive .testimonial > div section:after {
  content: "”";
  font-family: "serif";
  font-size: 3.5em;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 900px) {
  body.page .testimonial > div section:after,
body.events-archive .testimonial > div section:after {
    display: none;
  }
}
@media (max-width: 680px) {
  body.page .testimonial > div section:after,
body.events-archive .testimonial > div section:after {
    display: block;
    font-size: 2.5em;
  }
}
body.page .testimonial > div section .name,
body.events-archive .testimonial > div section .name {
  font-weight: bold;
  margin: 0 0 0.25em 0;
}
body.page .testimonial > div section .content p,
body.events-archive .testimonial > div section .content p {
  margin: 0 0 0.75em 0;
}
body.page .testimonial > div section .testimonial_name,
body.events-archive .testimonial > div section .testimonial_name {
  font-size: 0.7em;
}
body.page .testimonial > div section .testimonial_program,
body.events-archive .testimonial > div section .testimonial_program {
  line-height: 0.75;
}
body.page .testimonial > div section .testimonial_program a,
body.events-archive .testimonial > div section .testimonial_program a {
  color: #FFF;
  font-size: 0.6em;
}
body.page .testimonial > div.has-photo div.image,
body.events-archive .testimonial > div.has-photo div.image {
  display: block;
  position: absolute;
  left: 0;
  top: -20%;
  bottom: -20%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  overflow: hidden;
  width: 32%;
}
@media (max-width: 680px) {
  body.page .testimonial > div.has-photo div.image,
body.events-archive .testimonial > div.has-photo div.image {
    display: none;
  }
}
body.page .testimonial > div.has-photo div.image img,
body.events-archive .testimonial > div.has-photo div.image img {
  min-width: 500px;
}
@media (max-width: 1024px) {
  body.page .testimonial > div.has-photo div.image img,
body.events-archive .testimonial > div.has-photo div.image img {
    min-width: 430px;
  }
}
body.page .testimonial > div.has-photo section,
body.events-archive .testimonial > div.has-photo section {
  float: right;
  margin-left: 25%;
  width: 60%;
}
@media (max-width: 1024px) {
  body.page .testimonial > div.has-photo section,
body.events-archive .testimonial > div.has-photo section {
    width: 70%;
  }
}
@media (max-width: 900px) {
  body.page .testimonial > div.has-photo section,
body.events-archive .testimonial > div.has-photo section {
    padding-right: 0;
  }
}
@media (max-width: 680px) {
  body.page .testimonial > div.has-photo section,
body.events-archive .testimonial > div.has-photo section {
    padding: 0 2em;
    width: 100%;
  }
}

/*body.archive,*/
/*body.events-archive,*/
body.search-results .site-content {
  margin-top: 0;
  padding: 0 20px;
}
body.search-results .site-content:before, body.search-results .site-content:after {
  display: none;
}
body.search-results .site-content .site-main .page-header {
  margin-bottom: 40px;
}
body.search-results .site-content .site-main .page-header h1 {
  color: #13550e;
  font-family: "Merriweather", sans-serif;
  font-size: 4em;
  font-style: italic;
}
body.search-results .site-content .site-main .search-form {
  background-color: #999;
  margin-bottom: 2em;
  width: 100%;
}
body.search-results .site-content .site-main .search-form input {
  float: right;
  height: 40px;
  line-height: 40px;
  padding: 0 0.25em;
}
body.search-results .site-content .site-main .search-form input:focus {
  outline: none;
}
body.search-results .site-content .site-main .search-form input[type=submit] {
  width: 25%;
}
body.search-results .site-content .site-main .search-form input[type=text] {
  width: 75%;
}
body.search-results .site-content .site-main > article .entry-header .entry-title {
  font-size: 1.8em;
  margin: 0;
  padding: 0;
}
body.search-results .site-content .site-main > article .entry-header .entry-title a {
  color: #2296b3;
}
body.search-results .site-content .site-main > article .entry-summary,
body.search-results .site-content .site-main > article .entry0content {
  font-size: 1.1em;
  line-height: 1.4;
}

body.page-template-page-staff-php .site-content .site-main .photo-set-header,
body.page-id-71 .site-content .site-main .photo-set-header {
  font-size: 1.8em;
  margin-bottom: 2em;
  text-align: center;
}
body.page-template-page-staff-php .site-content .site-main .photo-set-header .button,
body.page-id-71 .site-content .site-main .photo-set-header .button {
  color: #FFF;
  display: inline-block;
  font-size: 0.7em;
  text-decoration: none;
  padding: 5px 10px;
  white-space: nowrap;
}
body.page-template-page-staff-php .site-content .site-main ul.staff-members,
body.page-id-71 .site-content .site-main ul.staff-members {
  list-style-type: none;
  margin: 0 0 4em 0;
  padding: 0;
}
body.page-template-page-staff-php .site-content .site-main ul.staff-members li,
body.page-id-71 .site-content .site-main ul.staff-members li {
  background-color: #f3f3f3;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 1px solid #fff;
  float: left;
  font-size: 0.75em;
  margin: 0;
  padding: 0;
  position: relative;
  width: 20%;
  height: 278px;
}
@media (max-width: 1230px) {
  body.page-template-page-staff-php .site-content .site-main ul.staff-members li,
body.page-id-71 .site-content .site-main ul.staff-members li {
    width: 25%;
  }
}
@media (max-width: 900px) {
  body.page-template-page-staff-php .site-content .site-main ul.staff-members li,
body.page-id-71 .site-content .site-main ul.staff-members li {
    width: 33.333333%;
  }
}
@media (max-width: 680px) {
  body.page-template-page-staff-php .site-content .site-main ul.staff-members li,
body.page-id-71 .site-content .site-main ul.staff-members li {
    width: 50%;
  }
}
@media (max-width: 460px) {
  body.page-template-page-staff-php .site-content .site-main ul.staff-members li,
body.page-id-71 .site-content .site-main ul.staff-members li {
    width: 100%;
  }
}
body.page-template-page-staff-php .site-content .site-main ul.staff-members li .arrow,
body.page-id-71 .site-content .site-main ul.staff-members li .arrow {
  position: absolute;
  right: 0;
  background-color: #5a8c2e;
  text-align: center;
  display: block;
  line-height: 30px;
  width: 30px;
  height: 30px;
  top: 40%;
  z-index: 2000;
}
body.page-template-page-staff-php .site-content .site-main ul.staff-members li a,
body.page-id-71 .site-content .site-main ul.staff-members li a {
  color: #FFF;
  /*display: block;*/
  /*height: 100%;*/
}
body.page-template-page-staff-php .site-content .site-main ul.staff-members li a img,
body.page-id-71 .site-content .site-main ul.staff-members li a img {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
}
body.page-template-page-staff-php .site-content .site-main ul.staff-members li a .name,
body.page-id-71 .site-content .site-main ul.staff-members li a .name {
  background-color: rgba(19, 85, 14, 0.8);
  color: #FFF;
  position: absolute;
  bottom: 0;
  padding: 1em;
  font-size: 1em;
  display: block;
  width: 100%;
  z-index: 1000;
}
body.page-template-page-staff-php .site-content .site-main ul.staff-members li a:hover .name,
body.page-id-71 .site-content .site-main ul.staff-members li a:hover .name {
  background-color: rgb(19, 85, 14);
}
body.page-template-page-staff-php .site-content .site-main section.staff-bios,
body.page-id-71 .site-content .site-main section.staff-bios {
  border-top: 3px solid #f4f4f4;
  padding-top: 2em;
  padding-bottom: 2em;
}
body.page-template-page-staff-php .site-content .site-main section.staff-bios article,
body.page-id-71 .site-content .site-main section.staff-bios article {
  margin-bottom: 3em;
}
body.page-template-page-staff-php .site-content .site-main section.staff-bios article .name,
body.page-id-71 .site-content .site-main section.staff-bios article .name {
  font-weight: bold;
}
body.page-template-page-staff-php .site-content .site-main section.staff-bios article .bio,
body.page-id-71 .site-content .site-main section.staff-bios article .bio {
  font-size: 0.9em;
}
body.page-template-page-staff-php .site-content .site-main section.staff-bios article .bio p:first-child,
body.page-id-71 .site-content .site-main section.staff-bios article .bio p:first-child {
  margin-top: 0;
}

body.single-program .site-content {
  margin-top: 0;
  padding: 0 20px;
  /* #primary */
  /* #secondary */
}
body.single-program .site-content:before, body.single-program .site-content:after {
  display: none;
}
body.single-program .site-content .program-banner {
  background-color: #2296b3;
  margin-bottom: 50px;
  position: relative;
}
body.single-program .site-content .program-banner > div {
  display: table-cell;
  vertical-align: middle;
}
body.single-program .site-content .program-banner > div:first-child {
  width: 72%;
}
body.single-program .site-content .program-banner > div:first-child img {
  display: block;
  width: 100%;
}
body.single-program .site-content .program-banner > div:last-child {
  text-align: center;
  width: 28%;
}
body.single-program .site-content .program-banner > div:last-child img {
  display: block;
  margin: 8% auto;
  width: 75%;
}
body.single-program .site-content .content-area {
  float: left;
  margin: 0 -34% 0 0;
  width: 100%;
}
body.single-program .site-content .content-area .site-main {
  margin: 0 38% 0 0;
}
@media (max-width: 1024px) {
  body.single-program .site-content .content-area .site-main {
    float: none;
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  body.single-program .site-content .content-area {
    margin-right: 0;
  }
}
body.single-program .site-content .widget-area {
  border-left: 1px solid #777777;
  float: right;
  overflow: hidden;
  padding: 0 0 40px 40px;
  width: 34%;
}
@media (max-width: 1024px) {
  body.single-program .site-content .widget-area {
    border-left: none;
    float: none;
    padding-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
body.single-program .career-info {
  max-width: 1440px;
  margin: 0 auto 70px auto;
  padding: 0 20px;
}
body.single-program .career-info > div {
  width: 48%;
}
@media (max-width: 1200px) {
  body.single-program .career-info > div {
    font-size: 0.8em;
  }
}
@media (max-width: 1024px) {
  body.single-program .career-info > div {
    width: 100%;
    font-size: 1em;
  }
}
body.single-program .career-info > div > header {
  background-color: #2296b3;
  color: #FFF;
  text-align: center;
  padding: 0.4em;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 600;
  z-index: 1000;
}
body.single-program .career-info > div > div {
  width: 96%;
  background-color: #FFF;
  margin: 0 auto;
  box-shadow: 0px 7px 32px -4px rgba(0, 0, 0, 0.4);
}
body.single-program .career-info > div.career-options {
  float: left;
}
body.single-program .career-info > div.career-options > header {
  background-color: #13550e;
}
body.single-program .career-info > div.career-options > div {
  padding: 60px 27%;
}
@media (max-width: 1200px) {
  body.single-program .career-info > div.career-options > div {
    padding: 5% 10%;
  }
}
body.single-program .career-info > div.career-options > div ul {
  margin: 0;
  padding: 0;
}
body.single-program .career-info > div.career-options > div ul li {
  font-size: 1.4em;
  margin-bottom: 0.5em;
  text-align: left;
}
body.single-program .career-info > div.potential-employers {
  float: right;
}
body.single-program .career-info > div.potential-employers > div {
  padding: 60px 10%;
}
body.single-program .career-info > div.potential-employers > div > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
body.single-program .career-info > div.potential-employers > div > ul > li {
  margin-bottom: 2em;
}
body.single-program .career-info > div.potential-employers > div > ul > li .logo {
  float: left;
  width: 50%;
}
@media (max-width: 680px) {
  body.single-program .career-info > div.potential-employers > div > ul > li .logo {
    float: none;
    margin: 0 auto;
    width: 70%;
  }
}
@media (max-width: 480px) {
  body.single-program .career-info > div.potential-employers > div > ul > li .logo {
    width: 100%;
  }
}
body.single-program .career-info > div.potential-employers > div > ul > li .logo img {
  display: block;
  width: 100%;
}
body.single-program .career-info > div.potential-employers > div > ul > li .jobs {
  float: right;
  width: 40%;
}
@media (max-width: 680px) {
  body.single-program .career-info > div.potential-employers > div > ul > li .jobs {
    float: none;
    margin: 0 auto;
    width: 100%;
  }
}
body.single-program .career-info > div.potential-employers > div > ul > li .jobs h4 {
  color: #2296b3;
  font-family: "Merriweather", sans-serif;
  font-size: 2em;
  font-weight: 200;
  margin: 0;
  padding: 16px 0 8px 0;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  body.single-program .career-info > div.potential-employers > div > ul > li .jobs h4 {
    padding-top: 0;
    text-align: center;
  }
}
body.single-program .career-info > div.potential-employers > div > ul > li .jobs > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
body.single-program .career-info > div.potential-employers > div > ul > li .jobs > ul > li {
  margin-bottom: 0.75em;
  text-align: left;
}
@media (max-width: 680px) {
  body.single-program .career-info > div.potential-employers > div > ul > li .jobs > ul > li {
    text-align: center;
  }
}
body.single-program .career-info > div.potential-employers > div > ul > li .jobs > ul > li a {
  font-size: 1em;
  font-weight: bold;
}

@media only screen and (max-width: 500px) {
  .page-content ul.news li img.thumbnail,
.entry-content ul.news li img.thumbnail,
.entry-summary ul.news li img.thumbnail {
    display: none;
  }
  .page-content ul.news li div,
.entry-content ul.news li div,
.entry-summary ul.news li div {
    width: 100%;
  }
  .contact-staff-member .staff-member {
    flex-direction: column;
    gap: 15px;
  }
  .contact-staff-member .staff-member .staff-member-image {
    width: 100%;
  }
  .contact-staff-member .staff-member .staff-member-details {
    width: 100%;
  }
}
/* ==========================================================================
   Home Page Template
   ========================================================================== */
body.home > .site {
  /* site-header overrides and home-specific styles */
  /* site-content overrides and home-specific styles */
}
body.home > .site .site-header {
  height: 900px;
  margin-bottom: 1em;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /*background-color: red;*/
}
@media (max-width: 1280px) {
  body.home > .site .site-header {
    height: 700px;
  }
}
@media (max-width: 890px) {
  body.home > .site .site-header {
    height: 630px;
  }
}
@media (max-width: 800px) {
  body.home > .site .site-header {
    height: 800px;
    background-position: 65% 0;
    background-size: 150%;
  }
}
@media (max-width: 500px) {
  body.home > .site .site-header {
    background-size: 200%;
    height: 830px;
  }
}
@media (max-width: 400px) {
  body.home > .site .site-header {
    height: 720px;
  }
}
body.home > .site .site-header .green-band {
  bottom: 5%;
  background-color: rgba(19, 85, 14, 0.8);
  padding: 42px 0 42px 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1000;
  /* Chevron-type downward arrow */
}
@media (max-width: 1450px) {
  body.home > .site .site-header .green-band {
    font-size: 0.9em;
  }
}
@media (max-width: 1320px) {
  body.home > .site .site-header .green-band {
    font-size: 0.8em;
  }
}
@media (max-width: 1200px) {
  body.home > .site .site-header .green-band {
    bottom: 10%;
    font-size: 0.7em;
  }
}
@media (max-width: 1050px) {
  body.home > .site .site-header .green-band {
    font-size: 0.6em;
  }
}
@media (max-width: 890px) {
  body.home > .site .site-header .green-band {
    font-size: 0.5em;
  }
}
@media (max-width: 800px) {
  body.home > .site .site-header .green-band {
    background-color: #13550e;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-header .green-band {
    bottom: auto;
    font-size: 0.4em;
    top: 40%;
  }
}
@media (max-width: 490px) {
  body.home > .site .site-header .green-band {
    font-size: 0.3em;
    padding-top: 20px;
  }
}
body.home > .site .site-header .green-band .headline {
  font-family: "Merriweather", sans-serif;
  font-size: 4em;
  font-style: italic;
  line-height: 1.2em;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 1280px) {
  body.home > .site .site-header .green-band .headline {
    font-size: 4em;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-header .green-band .headline {
    line-height: 1;
    padding: 0 0.5em;
  }
}
@media (max-width: 370px) {
  body.home > .site .site-header .green-band .headline {
    font-size: 6em;
  }
}
body.home > .site .site-header .green-band .caption {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125em;
  margin-top: 1em;
}
@media (max-width: 1280px) {
  body.home > .site .site-header .green-band .caption {
    font-size: 2em;
  }
}
@media (max-width: 680px) {
  body.home > .site .site-header .green-band .caption {
    font-size: 2.4em;
    padding: 0 0.5em;
  }
}
@media (max-width: 370px) {
  body.home > .site .site-header .green-band .caption {
    font-size: 2.5em;
  }
}
body.home > .site .site-header .green-band .fa {
  font-size: 2em;
  padding: 5px 0 10px 0;
  display: inline-block;
}
@media (max-width: 1280px) {
  body.home > .site .site-header .green-band .fa {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-header .green-band .fa {
    font-size: 4em;
  }
}
body.home > .site .site-header .green-band hr {
  width: 66%;
  margin-top: 12px;
  margin-bottom: 6px;
  opacity: 0.35;
  border: none;
  border-top: solid 1px #fff;
}
body.home > .site .site-header .green-band .college-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  margin: 2em auto;
  max-width: 1140px;
  padding: 0;
  text-align: center;
}
@media (max-width: 1200px) {
  body.home > .site .site-header .green-band .college-logos {
    display: block;
    margin: 1em auto;
    width: 90%;
  }
}
body.home > .site .site-header .green-band .college-logos li {
  display: block;
  float: left;
  margin: 0;
  line-height: 105px;
  height: 105px;
  padding: 0 2%;
  width: 20%;
  text-align: center;
}
@media (max-width: 1000px) {
  body.home > .site .site-header .green-band .college-logos li {
    line-height: 95px;
    height: 95px;
  }
}
@media (max-width: 800px) {
  body.home > .site .site-header .green-band .college-logos li {
    display: inline-block;
    float: none;
    width: 30%;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-header .green-band .college-logos li {
    width: 40%;
  }
}
@media (max-width: 500px) {
  body.home > .site .site-header .green-band .college-logos li {
    width: 48%;
  }
}
@media (max-width: 400px) {
  body.home > .site .site-header .green-band .college-logos li {
    line-height: 75px;
    height: 75px;
  }
}
body.home > .site .site-header .green-band .college-logos img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
body.home > .site .site-header .button-bar {
  bottom: 3.5%;
  text-align: center;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 1200px) {
  body.home > .site .site-header .button-bar {
    bottom: 2%;
    font-size: 0.6em;
  }
}
@media (max-width: 490px) {
  body.home > .site .site-header .button-bar {
    bottom: 4%;
  }
}
@media (max-width: 400px) {
  body.home > .site .site-header .button-bar {
    bottom: 2%;
  }
}
@media (max-width: 360px) {
  body.home > .site .site-header .button-bar {
    bottom: 3%;
  }
}
@media (max-width: 560px) {
  body.home > .site .site-header .button-bar span {
    display: none;
  }
}
@media (max-width: 1200px) {
  body.home > .site .site-header .button-bar .transparent-button {
    padding: 0.7em;
  }
}
@media (max-width: 800px) {
  body.home > .site .site-header .button-bar .transparent-button {
    background-color: #5a8c2e;
  }
}
@media (max-width: 600px) {
  body.home > .site #scrollformore {
    display: block;
    margin-bottom: 20px;
  }
}
body.home > .site :target {
  border: none;
  outline: none;
}
body.home > .site .site-content {
  margin-top: 0;
  max-width: 100%;
  padding: 0;
  width: 100%;
}
body.home > .site .site-content .content-area {
  float: none;
  margin: 0 auto;
  width: 100%;
}
body.home > .site .site-content .content-area .site-main {
  margin: 0 auto;
  width: 100%;
  /* Page copy
   --------------------------- */
  /* Announcements
   --------------------------- */
  /* Photo Banners
   --------------------------- */
  /* Icon Columns
   --------------------------- */
  /* Social
   --------------------------- */
}
body.home > .site .site-content .content-area .site-main > article {
  font-size: 2em;
  max-width: 1800px;
  margin: 0 auto;
  margin-bottom: 3em;
  padding: 0 11%;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main > article {
    font-size: 1.8em;
    margin-bottom: 2em;
    padding: 0 4%;
  }
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main > article {
    font-size: 1.5em;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-content .content-area .site-main > article {
    font-size: 1.3em;
    margin-bottom: 1em;
  }
}
body.home > .site .site-content .content-area .site-main > article p {
  font-weight: 400;
}
body.home > .site .site-content .content-area .site-main .announcement {
  background-color: #e8e8e8;
  font-family: "Open Sans", sans-serif;
  margin: 0 auto;
  margin-bottom: 2em;
  max-height: 120px;
  overflow: hidden;
  padding: 0;
  width: 100%;
  text-align: left;
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main .announcement {
    max-height: 100%;
    text-align: center;
  }
}
body.home > .site .site-content .content-area .site-main .announcement h3 {
  background: #d8d8d8;
  color: #333;
  float: left;
  font-size: 1.8em;
  font-weight: 900;
  height: 120px;
  line-height: 120px;
  padding: 0 1em 0 0;
  margin: 0;
  text-align: right;
  width: 25%;
}
@media (max-width: 1220px) {
  body.home > .site .site-content .content-area .site-main .announcement h3 {
    font-size: 1.6em;
    width: 30%;
  }
}
@media (max-width: 1000px) {
  body.home > .site .site-content .content-area .site-main .announcement h3 {
    font-size: 1.4em;
  }
}
@media (max-width: 840px) {
  body.home > .site .site-content .content-area .site-main .announcement h3 {
    width: 35%;
  }
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main .announcement h3 {
    display: block;
    float: none;
    line-height: 1;
    height: auto;
    padding: 0.5em;
    text-align: center;
    width: 100%;
  }
}
body.home > .site .site-content .content-area .site-main .announcement .content {
  background: #e8e8e8;
  color: #525252;
  display: inline-block;
  float: right;
  font-size: 1.7em;
  height: 120px;
  line-height: 1.2;
  padding: 0 1em 0 3em;
  position: relative;
  width: 75%;
}
@media (max-width: 1220px) {
  body.home > .site .site-content .content-area .site-main .announcement .content {
    font-size: 1.6em;
    width: 70%;
  }
}
@media (max-width: 1000px) {
  body.home > .site .site-content .content-area .site-main .announcement .content {
    font-size: 1.4em;
  }
}
@media (max-width: 840px) {
  body.home > .site .site-content .content-area .site-main .announcement .content {
    width: 65%;
  }
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main .announcement .content {
    display: block;
    float: none;
    line-height: 1;
    height: auto;
    padding: 0.5em 1em;
    text-align: center;
    width: 100%;
  }
}
body.home > .site .site-content .content-area .site-main .announcement .content:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 30px solid #d8d8d8;
  z-index: 0;
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main .announcement .content:after {
    display: none;
  }
}
body.home > .site .site-content .content-area .site-main .announcement .content div {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main .announcement .content div {
    line-height: 1;
    height: auto;
    text-align: center;
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
body.home > .site .site-content .content-area .site-main .announcement .content a {
  color: #525252;
}
body.home > .site .site-content .content-area .site-main .announcement .content a:hover {
  color: #333;
  text-decoration: none;
}
body.home > .site .site-content .content-area .site-main .banners {
  color: #FFF;
  margin: 0 auto;
  margin-bottom: 3em;
  max-width: 1630px;
  /*padding: 20px;*/
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
  width: 90%;
}
@media (max-width: 1350px) {
  body.home > .site .site-content .content-area .site-main .banners {
    width: 96%;
  }
}
body.home > .site .site-content .content-area .site-main .banners a {
  color: #fff;
}
body.home > .site .site-content .content-area .site-main .banners > div {
  background-position: 0 0;
  background-repeat: no-repeat;
  float: left;
  /*display: inline-block;*/
  height: 446px;
  max-height: 820px;
  overflow: hidden;
  padding: 2.2em;
  position: relative;
  width: 50%;
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main .banners > div {
    float: none;
    /*display: block;*/
    margin: 0 auto;
    width: 822px;
  }
}
@media (max-width: 1100px) {
  body.home > .site .site-content .content-area .site-main .banners > div {
    float: none;
    /*display: block;*/
    margin: 0 auto;
    width: 822px;
  }
}
@media (max-width: 876px) {
  body.home > .site .site-content .content-area .site-main .banners > div {
    width: 98%;
  }
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div {
    padding: 1em;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div h3 {
  color: #FFF;
  font-family: "Merriweather", sans-serif;
  font-size: 2.125em;
  font-weight: 500;
  text-align: right;
  margin-bottom: 0.5em;
  font-family: Merriweather;
  font-style: italic;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div h3 {
    font-size: 1.9em;
    text-align: center;
  }
  body.home > .site .site-content .content-area .site-main .banners > div h3 br {
    display: none;
  }
}
@media (max-width: 560px) {
  body.home > .site .site-content .content-area .site-main .banners > div h3 {
    font-size: 1.6em;
    padding-left: 0;
    padding-top: 150px;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.content {
  float: right;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  width: 330px;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content {
    font-size: 0.85em;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
  }
}
@media (max-width: 500px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.content ul {
  list-style-type: none;
}
@media (max-width: 370px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content ul {
    margin: 0;
    padding: 0.25em;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.content ul li {
  font-size: 1.25em;
  margin: 0 0 0.3em 0;
  padding: 0;
  position: relative;
}
@media (max-width: 370px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content ul li {
    text-align: center;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.content ul li :before {
  content: ">";
  position: absolute;
  left: -1em;
  top: 0;
}
@media (max-width: 370px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content ul li :before {
    display: none;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5em;
  line-height: 1.38;
  font-weight: 500;
  margin: 0 0 0.5em 0;
  padding: 0;
  text-align: center;
}
@media (max-width: 370px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content p {
    text-align: center;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.content--goal {
  display: flex;
  align-items: center;
  width: 284px;
  height: 100%;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content--goal {
    width: 100%;
    height: auto;
    display: block;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.content--goal p {
  text-align: left;
  font-size: 1.5em;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.content--goal p {
    text-align: center;
    font-size: 1.4em;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.buttons {
  position: absolute;
  bottom: 8%;
  right: 4%;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.buttons {
    left: 4%;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.buttons .button {
  display: block;
  font-size: 0.9375em;
  font-weight: 500;
  padding: 0.75em 2.125em;
  white-space: nowrap;
  width: auto;
  min-width: 170px;
  border-radius: 2px;
  background-color: #13550e;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.buttons .button {
    left: 4%;
    min-width: 100%;
    padding: 0.5em 0.25em;
  }
}
@media (max-width: 500px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.buttons .button {
    font-size: 1em;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.name {
  background-color: rgba(255, 255, 255, 0.5);
  color: #000;
  font-weight: 600;
  padding: 0.4em 4em 0.4em 2em;
  position: absolute;
  bottom: 14px;
  left: 0;
  width: auto;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.name {
    bottom: 0;
    font-size: 0.8em;
    width: 100%;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.name h4 {
  font-weight: 600;
  line-height: 1.6;
  color: #2a2a2a;
  font-size: 1.125em;
  margin: 0;
  padding: 0;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.name h4 {
    display: inline-block;
    font-size: 1.2em;
    margin-right: 0.5em;
  }
}
@media (max-width: 450px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.name h4 {
    display: block;
    font-size: 1.1em;
  }
}
body.home > .site .site-content .content-area .site-main .banners > div div.name span {
  display: block;
  font-size: 0.9375em;
  line-height: 1.6;
  color: #2a2a2a;
}
@media (max-width: 630px) {
  body.home > .site .site-content .content-area .site-main .banners > div div.name span {
    display: inline-block;
  }
}
body.home > .site .site-content .content-area .site-main .columns {
  font-family: "Open Sans", sans-serif;
  /*font-size: 1em;*/
  margin: 0 auto 1em auto;
  max-width: 1630px;
  position: relative;
  text-align: center;
  width: 90%;
  /*  */
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main .columns {
    font-size: 1.2em;
  }
}
body.home > .site .site-content .content-area .site-main .columns .button {
  display: block;
  font-size: 0.9375em;
  font-weight: 500;
  padding: 0.75em 2.125em;
  white-space: nowrap;
  width: auto;
  min-width: 170px;
  border-radius: 2px;
  background-color: #13550e;
}
@media (max-width: 1360px) {
  body.home > .site .site-content .content-area .site-main .columns .button {
    font-size: 1em;
  }
}
@media (max-width: 1260px) {
  body.home > .site .site-content .content-area .site-main .columns .button {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main .columns .button {
    font-size: 0.8em;
  }
}
body.home > .site .site-content .content-area .site-main .columns .button:hover {
  background-color: #0e3f0a;
}
body.home > .site .site-content .content-area .site-main .columns .button-wrapper {
  display: flex;
  justify-content: center;
}
body.home > .site .site-content .content-area .site-main .columns .button:visited {
  color: #fff;
}
body.home > .site .site-content .content-area .site-main .columns > div {
  float: left;
  position: relative;
  width: 33.333333%;
}
body.home > .site .site-content .content-area .site-main .columns > div:first-child img.vr {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div:first-child img.vr {
    display: none;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div:last-child img.vr {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div:last-child img.vr {
    display: none;
  }
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div {
    width: 100%;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-content .content-area .site-main .columns > div > header {
    margin-bottom: 1em;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div > header img.icon {
  display: block;
  margin: 0 auto;
  margin-bottom: 1.8em;
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main .columns > div > header img.icon {
    margin-bottom: 1.2em;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-content .content-area .site-main .columns > div > header img.icon {
    display: none;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div > header h2 {
  color: #494949;
  font-family: "Merriweather", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  margin: 0 0 1em 0;
  text-transform: capitalize;
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main .columns > div > header h2 {
    margin-bottom: 0.75em;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-content .content-area .site-main .columns > div > header h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 360px) {
  body.home > .site .site-content .content-area .site-main .columns > div > header h2 {
    font-size: 1.3em;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div .content {
  font-size: 1.125em;
  font-family: "Open Sans", sans-serif;
  padding: 0 14%;
  text-align: left;
  font-weight: 500;
  line-height: 1.39;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div .content {
    font-size: 1.1em;
    text-align: center;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div .content a {
  font-weight: 600;
  color: #0f6493;
  word-break: break-word;
}
body.home > .site .site-content .content-area .site-main .columns > div .content p {
  font-weight: 600;
  text-align: center;
}
body.home > .site .site-content .content-area .site-main .columns > div ul.content {
  margin: 0;
  list-style-type: none;
  width: 100%;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div ul.content {
    margin-bottom: 1em;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div ul.content li {
  font-weight: 400;
  margin-bottom: 1.5em;
  position: relative;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div ul.content li {
    /*border-bottom: 1px solid #d9d9d9;*/
    margin-bottom: 0.5em;
    padding-bottom: 0.25em;
    text-align: center;
  }
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div ul.content li span.date {
    color: #555;
    display: block;
    font-size: 0.8em;
    font-weight: 800;
    text-transform: uppercase;
  }
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div ul.content li span.title {
    display: block;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div.news ul li, body.home > .site .site-content .content-area .site-main .columns > div.blog ul li {
  padding-left: 0.5em;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div.news ul li, body.home > .site .site-content .content-area .site-main .columns > div.blog ul li {
    padding: 0;
  }
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div.news ul li:before, body.home > .site .site-content .content-area .site-main .columns > div.blog ul li:before {
    content: "";
  }
}
body.home > .site .site-content .content-area .site-main .columns > div .button {
  display: none;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div .button {
    display: block;
    font-size: 1em;
    padding: 0.5%;
    width: 40%;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-content .content-area .site-main .columns > div .button {
    width: 80%;
  }
}
body.home > .site .site-content .content-area .site-main .columns > div img.hr {
  display: none;
  margin: 40px auto;
  width: 70%;
  height: 3px;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns > div img.hr {
    display: block;
  }
}
@media (max-width: 600px) {
  body.home > .site .site-content .content-area .site-main .columns > div img.hr {
    width: 100%;
  }
}
body.home > .site .site-content .content-area .site-main .columns.button-bar {
  margin-bottom: 3em;
}
@media (max-width: 990px) {
  body.home > .site .site-content .content-area .site-main .columns.button-bar {
    display: none;
  }
}
body.home > .site .site-content .content-area .site-main .columns.button-bar .button {
  display: block;
}
body.home > .site .site-content .content-area .site-main .social {
  color: #494949;
  margin: 0 auto 2.5em auto;
  width: 100%;
  vertical-align: middle;
  text-align: center;
}
body.home > .site .site-content .content-area .site-main .social h3 {
  display: inline;
  font-size: 1.5em;
  font-weight: 400;
  margin-right: 2em;
  padding: 0;
  width: auto;
  color: #494949;
  font-style: normal;
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main .social h3 {
    display: block;
    font-size: 2.5em;
    margin: 0 0 0.45em 0;
    width: 100%;
  }
}
@media (max-width: 420px) {
  body.home > .site .site-content .content-area .site-main .social h3 {
    font-size: 1.8em;
  }
}
body.home > .site .site-content .content-area .site-main .social ul {
  display: inline;
  width: auto;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 430px) {
  body.home > .site .site-content .content-area .site-main .social ul {
    display: block;
    line-height: 2.8;
    margin: 0 auto;
    width: 60%;
  }
}
body.home > .site .site-content .content-area .site-main .social ul li {
  display: inline-block;
  font-size: 1.8em;
  margin: 0 0.5%;
}
@media (max-width: 670px) {
  body.home > .site .site-content .content-area .site-main .social ul li {
    font-size: 1.4em;
    margin: 0 0.25%;
  }
}
@media (max-width: 500px) {
  body.home > .site .site-content .content-area .site-main .social ul li {
    font-size: 1.2em;
    margin: 0 0.25%;
  }
}
@media (max-width: 430px) {
  body.home > .site .site-content .content-area .site-main .social ul li {
    font-size: 1.3em;
  }
}
body.home > .site .site-content .content-area .site-main .social ul li a {
  color: #444;
}
body.home > .site .site-content .content-area .site-main .social ul li a:hover {
  color: #999;
}
body.home > .site .site-content .content-area .site-main .home-footer {
  margin: 0 auto;
  max-width: 1440px;
  overflow: hidden;
  width: 100%;
  height: 410px;
  position: relative;
}
body.home > .site .site-content .content-area .site-main .home-footer div.background-image {
  left: -50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
body.home > .site .site-content .content-area .site-main .home-footer div.background-image img {
  display: block;
  left: 50%;
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay {
  background: rgba(255, 255, 255, 0.85);
  color: #454545;
  height: 100%;
  left: 5%;
  margin: 0;
  max-width: 100%;
  min-width: 518px;
  overflow: hidden;
  padding: 2.25% 2.25% 2.25% 2.25%;
  position: absolute;
  text-align: left;
  top: 0;
  width: 36%;
  z-index: 1000;
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay {
    min-width: 320px;
    padding: 5%;
    text-align: center;
    width: 90%;
  }
}
@media (max-width: 400px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay {
    padding: 3%;
  }
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay img {
  float: left;
  padding-right: 15px;
}
@media (max-width: 768px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay img {
    display: none;
  }
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay h3 {
  font-size: 1.9em;
  line-height: 1;
  margin-bottom: 25px;
  text-transform: uppercase;
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .address {
  font-weight: 600;
  font-size: 1.4em;
}
@media (max-width: 960px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .address {
    font-size: 1.2em;
  }
}
@media (max-width: 400px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .address {
    font-size: 1em;
    margin-bottom: 1em;
  }
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .phone-email {
  font-size: 1.4em;
  font-weight: 900;
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .phone-email a {
  color: inherit;
}
@media (max-width: 960px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .phone-email {
    font-size: 1.3em;
  }
}
@media (max-width: 500px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .phone-email {
    font-size: 1.1em;
  }
}
@media (max-width: 400px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .phone-email {
    text-align: center;
  }
}
@media (max-width: 370px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .phone-email {
    font-size: 1em;
  }
}
@media (max-width: 400px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .phone-email span {
    display: none;
  }
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar {
  padding-top: 30px;
  width: 100%;
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar .button {
  background: #13550e;
  color: #FFF;
  display: inline-block;
  font-size: 1.1em;
  float: right;
  /*margin-right: 20px;*/
  margin-top: 10px;
  padding: 5px 0;
  width: 45%;
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar .button:first-child {
  float: left;
}
@media (max-width: 1200px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar .button {
    font-size: 1.2em;
  }
}
@media (max-width: 960px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar .button {
    font-size: 1em;
  }
}
@media (max-width: 500px) {
  body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar .button {
    width: 100%;
  }
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar .button:hover {
  background-color: #5a8c2e;
  color: #FFF;
}
body.home > .site .site-content .content-area .site-main .home-footer div.overlay .button-bar .button:last-child {
  margin-right: 0;
}

/* ==========================================================================
   Program Listing Page Template
   ========================================================================== */
.page-content--programs {
  width: 100%;
}
@media (min-width: 1280px) {
  .page-content--programs {
    width: 76.8%;
  }
}
.page-content--programs p {
  word-wrap: normal;
  hyphens: none;
}

.program-filters {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  padding: 40px 0 10px;
}
@media (max-width: 860px) {
  .program-filters {
    grid-template-columns: 1fr;
    padding: 0 0 10px;
  }
}
.program-filters__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.program-filters select {
  width: 100%;
  height: 48px;
  border-radius: 2px;
  padding: 0 10px;
}
.program-filters p {
  margin: 0 0 10px;
}
@media (min-width: 1280px) {
  .program-filters {
    width: 76.8%;
  }
}

.program-pagination {
  display: inline-flex;
  width: auto;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
  padding: 0 !important;
  margin: 40px 0 0;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  list-style: none;
}
.program-pagination li {
  margin: 0 !important;
  padding: 0 !important;
  border-right: 1px solid #e8e8e8;
}
.program-pagination li:last-child {
  border: none;
}
.program-pagination li:before {
  display: none;
}
.program-pagination button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 42px;
  height: 42px;
  padding: 0 5px;
  border: none;
  border-radius: 0px;
  background: #fff;
  font-weight: bold;
  color: #2296b3;
  font-size: 0.8em;
}
.program-pagination button[disabled] {
  color: #ccc;
  background: #fafafa;
  pointer-events: none;
}
.program-pagination button.large {
  padding: 0 20px;
}
.program-pagination button.current {
  background: #5a8c2e;
  color: #fff;
}

.programs {
  margin: 20px 0 120px;
}
.programs__table {
  overflow-x: auto;
}
.programs table {
  width: 100%;
  min-width: 900px;
  border-spacing: 0;
}
.programs table th,
.programs table td {
  padding: 15px 30px 15px 10px;
  text-align: left;
}
.programs table th:nth-child(3),
.programs table td:nth-child(3) {
  padding-right: 30px;
}
.programs table th:nth-child(2),
.programs table td:nth-child(2) {
  white-space: nowrap;
  padding-right: 30px;
}
.programs table th:nth-child(3),
.programs table td:nth-child(3) {
  padding-left: 30px;
  padding-right: 10px;
}
.programs table th {
  padding-left: 0;
  font-family: "Merriweather", sans-serif;
  font-size: 1.6em;
  color: #2296b3;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
.programs table th:nth-child(3) {
  padding-left: 20px;
  padding-right: 10px;
}
.programs table td {
  border-bottom: 1px solid #e8e8e8;
}
.programs__title {
  font-weight: bold;
  color: #2296b3;
}

/* ==========================================================================
   Tribe Events
   ========================================================================== */
#tribe-events {
  max-width: 100%;
}
#tribe-events .tribe-events-page-title {
  color: #13550e;
  font-style: italic;
  font-size: 2em;
  font-weight: bold;
}
#tribe-events li:before {
  content: "";
}
#tribe-events .tribe-events-list-event-title a {
  color: #2296b3;
}
#tribe-events .tribe-events-sub-nav {
  display: none;
}

/* ==========================================================================
   Awesome Surveys
   ========================================================================== */
body.single-awesome-surveys article.awesome-surveys form {
  font-size: 0.7em;
}
body.single-awesome-surveys article.awesome-surveys form fieldset {
  border: none;
  padding: 0;
}
body.single-awesome-surveys article.awesome-surveys form input[type=text],
body.single-awesome-surveys article.awesome-surveys form input[type=email],
body.single-awesome-surveys article.awesome-surveys form input[type=number],
body.single-awesome-surveys article.awesome-surveys form textarea {
  padding: 0.25em;
  width: 100%;
}
body.single-awesome-surveys article.awesome-surveys form .control-group {
  margin-bottom: 1em;
}
body.single-awesome-surveys article.awesome-surveys form .control-group > label {
  font-weight: bold;
}
body.single-awesome-surveys article.awesome-surveys form label.radio,
body.single-awesome-surveys article.awesome-surveys form label.checkbox {
  display: block;
  width: 100%;
}
body.single-awesome-surveys article.awesome-surveys form label.radio input,
body.single-awesome-surveys article.awesome-surveys form label.checkbox input {
  display: inline-block;
  margin-right: 0.5em;
  width: auto;
}

/* ==========================================================================
   NextGen Gallery
   ========================================================================== */
.slideshowlink a {
  color: #2296b3;
  font-size: 0.8em;
}

/* ==========================================================================
   Ninja Forms
   ========================================================================== */
form.ninja-forms-form {
  font-size: 0.7em;
}
form.ninja-forms-form .field-wrap {
  position: relative;
}
form.ninja-forms-form .field-wrap label {
  font-weight: normal;
  line-height: 1.3;
  margin: 0.75em 0 0.5em 0;
  width: 100%;
}
form.ninja-forms-form .field-wrap p {
  margin: 0;
  padding: 0;
}
form.ninja-forms-form .field-wrap ul {
  padding-top: 0.4em;
}
form.ninja-forms-form .field-wrap ul li {
  display: block;
  float: none;
  margin: 0 0.2em;
  width: 100%;
}
form.ninja-forms-form .field-wrap ul li:before {
  content: "";
  display: none;
}
form.ninja-forms-form .field-wrap ul li label {
  font-size: 0.9em;
  margin: 0;
  padding: 0;
}
form.ninja-forms-form .field-wrap .ninja-forms-field-error {
  position: absolute;
  font-size: 0.8em;
}
form.ninja-forms-form .field-wrap.contact-info-wrap {
  float: left;
  width: 48%;
}
form.ninja-forms-form .field-wrap.contact-info-wrap:nth-child(odd) {
  float: right;
}
form.ninja-forms-form .field-wrap.other-input-wrap {
  padding: 0 2%;
}
form.ninja-forms-form .field-wrap.other-input-wrap label {
  font-weight: normal;
}
form.ninja-forms-form .spacer {
  display: block;
  clear: both;
  height: 30px;
  width: 100%;
}

/* ==========================================================================
   SimpleMap
   ========================================================================== */
.employer_search_form {
  font-size: 0.9em;
  padding: 1em;
}
.employer_search_form select {
  margin: 0 1em;
}
.employer_search_form input[type=text] {
  margin: 0 1em;
  padding: 0.25em;
}

.mapOverlay #simplemap {
  pointer-events: none;
}

#results {
  font-size: 1.25em;
}
#results > div {
  font-size: 0.75em;
  float: left;
  display: inline-block;
  padding: 1em;
  width: 33.333333%;
}
@media (max-width: 1024px) {
  #results > div {
    width: 50%;
  }
}
@media (max-width: 640px) {
  #results > div {
    width: 100%;
  }
}
#results > div div.result {
  background-color: #f9f9f9;
  padding: 1em 0.5em;
  padding-right: 140px;
  position: relative;
  min-height: 170px;
}
@media (max-width: 1280px) {
  #results > div div.result {
    padding-right: 0;
    padding-bottom: 70px;
  }
}
@media (max-width: 1024px) {
  #results > div div.result {
    padding: 1.2em;
    padding-bottom: 70px;
  }
}
#results > div div.result div.result_name {
  float: none;
  margin-bottom: 0.25em;
  width: 100%;
}
#results > div div.result div.result_name small {
  font-size: 0.55em;
  font-weight: normal;
}
#results > div div.result div.result_address {
  float: none;
  margin-bottom: 0.25em;
  width: 100%;
}
#results > div div.result div.result_phone {
  float: none;
  font-size: 0.9em;
  margin-bottom: 0.25em;
  width: 100%;
}
#results > div div.result div.result_links {
  float: none;
  margin-bottom: 0.25em;
  position: absolute;
  right: 0;
  top: 0.25em;
  text-align: center;
  width: 140px;
}
@media (max-width: 1280px) {
  #results > div div.result div.result_links {
    bottom: 0;
    top: auto;
    width: 100%;
  }
}
#results > div div.result div.result_links a {
  background-color: #5a8c2e;
  color: #FFF;
  display: block;
  font-size: 0.8em;
  padding: 0.25em 0.5em;
  white-space: nowrap;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
.program-search{
  width: 100%;
  height: 48px;
  border-radius: 2px;
  padding: 0 10px;

}