/*
 * SMACSS + SCSS starter v2.0
 * Inspired by SMACSS http://smacss.com
 * Author: @jonathanpath
 * Date: 11 July 2013
 *
 * https://github.com/jonathanpath/SASS-SMACSS
 * See file structure in http://jonathanpath.com/sass+smacss/scss/style.scss
 * Sass Structure inspired by : https://github.com/sutter/POPY-starter-HTML-SCSS
 *
 * Coding rules : https://github.com/necolas/idiomatic-css
 *
 */
/* Compass */
/* Tools */
/* ===========================
   Tools/Helpers
   =========================== */
/*
 * Image replacement
 */
/* line 9, ../scss/tools/_helpers.scss */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

/* line 17, ../scss/tools/_helpers.scss */
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Display helpers
 */
/* line 28, ../scss/tools/_helpers.scss */
.display-block {
  display: block; }

/* line 32, ../scss/tools/_helpers.scss */
.display-inline-block {
  display: inline-block; }

/* line 36, ../scss/tools/_helpers.scss */
.ul-list-inline {
  list-style: none;
  margin: 0;
  padding: 0; }
  /* line 229, ../scss/tools/_mixins.scss */
  .ul-list-inline li {
    display: inline-block;
    vertical-align: middle; }
    /* line 17, ../scss/tools/_mixins.scss */
    .lt-ie8 .ul-list-inline li {
      display: inline;
      zoom: 1; }

/*
 * Position helpers
 */
/* line 44, ../scss/tools/_helpers.scss */
.position-absolute {
  position: absolute; }

/* line 48, ../scss/tools/_helpers.scss */
.position-relative {
  position: relative; }

/*
 * Responsive Visibility
 */
/* line 56, ../scss/tools/_helpers.scss */
.show-for-small {
  display: inherit !important; }

/* line 60, ../scss/tools/_helpers.scss */
.show-for-large {
  display: none !important; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
/* line 70, ../scss/tools/_helpers.scss */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
/* line 79, ../scss/tools/_helpers.scss */
.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
 */
/* line 95, ../scss/tools/_helpers.scss */
.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
 */
/* line 109, ../scss/tools/_helpers.scss */
.invisible {
  visibility: hidden; }

/* line 113, ../scss/tools/_helpers.scss */
.Uppercase {
  letter-spacing: 0.25px;
  text-transform: uppercase; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/* line 131, ../scss/tools/_helpers.scss */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

/* line 137, ../scss/tools/_helpers.scss */
.clearfix:after {
  clear: both; }

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
/* line 146, ../scss/tools/_helpers.scss */
.clearfix {
  *zoom: 1; }

/* =Fonts
------------------- */
/* Chart Colors */
/* line 155, ../scss/tools/_helpers.scss */
.f-color1 {
  color: #00325b; }

/* line 158, ../scss/tools/_helpers.scss */
.f-color2 {
  color: #9b243e; }

/* =Wordpress alignment
-------------------*/
/* line 166, ../scss/tools/_helpers.scss */
.alignleft {
  display: inline;
  float: left; }

/* line 170, ../scss/tools/_helpers.scss */
.alignright {
  display: inline;
  float: right; }

/* line 174, ../scss/tools/_helpers.scss */
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

/* line 180, ../scss/tools/_helpers.scss */
.txtleft {
  text-align: left; }

/* line 183, ../scss/tools/_helpers.scss */
.txtright {
  text-align: right; }

/* line 186, ../scss/tools/_helpers.scss */
.txtcenter {
  text-align: center; }

/* line 191, ../scss/tools/_helpers.scss */
.left {
  float: left; }

/* line 192, ../scss/tools/_helpers.scss */
.right {
  float: right; }

@media screen and (min-width: 48em) {
  /* line 196, ../scss/tools/_helpers.scss */
  .show-for-small {
    display: none !important; }

  /* line 200, ../scss/tools/_helpers.scss */
  .show-for-large {
    display: inherit !important; }

  /* line 204, ../scss/tools/_helpers.scss */
  .large-visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; } }
/* Base */
/* ===========================
   Base
   =========================== */
/* line 8, ../scss/base/_base.scss */
body {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.1;
  background: white;
  color: #393939; }

/* line 17, ../scss/base/_base.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
  margin: .4em 0;
  text-rendering: optimizeLegibility; }

/* line 23, ../scss/base/_base.scss */
h1 {
  font-size: 1.5em; }

/* line 26, ../scss/base/_base.scss */
h2 {
  font-size: 1.25em; }

/* line 30, ../scss/base/_base.scss */
h3 {
  font-size: 0.72727em;
  color: #000;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  line-height: 24px;
  font-weight: 300; }

/* line 38, ../scss/base/_base.scss */
h4 {
  font-size: 0.88889em;
  line-height: 20px; }

/* line 43, ../scss/base/_base.scss */
h5 {
  font-size: 1em; }

/* line 47, ../scss/base/_base.scss */
h6 {
  font-size: 1em; }

/* line 51, ../scss/base/_base.scss */
p {
  line-height: 1.6;
  font-weight: 400;
  margin: 10px 0; }

/* line 57, ../scss/base/_base.scss */
p + p {
  margin-top: 20px; }

/* line 61, ../scss/base/_base.scss */
ul {
  list-style: outside; }

/* line 65, ../scss/base/_base.scss */
.large {
  font-size: 34px;
  line-height: 38px;
  letter-spacing: -2px; }

/* line 72, ../scss/base/_base.scss */
a {
  color: #00325b;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  -moz-transition: border-bottom 0.5s, color 0.5s;
  -o-transition: border-bottom 0.5s, color 0.5s;
  -webkit-transition: border-bottom 0.5s, color 0.5s;
  transition: border-bottom 0.5s, color 0.5s; }
  /* line 78, ../scss/base/_base.scss */
  a.more-link:before {
    content: ' > '; }
  /* line 82, ../scss/base/_base.scss */
  a:hover {
    color: #001628;
    border-bottom: dotted 1px; }

/* line 88, ../scss/base/_base.scss */
::-moz-selection {
  background: #00325b;
  color: #fff;
  text-shadow: none; }

/* line 93, ../scss/base/_base.scss */
::selection {
  background: #00325b;
  color: #fff;
  text-shadow: none; }

/* line 99, ../scss/base/_base.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

@media screen and (min-width: 48em) {
  /* line 109, ../scss/base/_base.scss */
  h1 {
    font-size: 2.25em; }

  /* line 112, ../scss/base/_base.scss */
  h2 {
    font-size: 1.875em; } }
/*! normalize.css v3.0.0 | 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.
 */
/* line 9, ../scss/base/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  box-sizing: border-box; }

/* line 16, ../scss/base/_normalize.scss */
*, *:before, *:after {
  box-sizing: inherit; }

/**
 * Remove default margin.
 */
/* line 24, ../scss/base/_normalize.scss */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 35, ../scss/base/_normalize.scss */
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.
 */
/* line 55, ../scss/base/_normalize.scss */
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.
 */
/* line 68, ../scss/base/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
/* line 78, ../scss/base/_normalize.scss */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 90, ../scss/base/_normalize.scss */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 98, ../scss/base/_normalize.scss */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 110, ../scss/base/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 118, ../scss/base/_normalize.scss */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 127, ../scss/base/_normalize.scss */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 136, ../scss/base/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
/* line 145, ../scss/base/_normalize.scss */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 154, ../scss/base/_normalize.scss */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 162, ../scss/base/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

/* line 170, ../scss/base/_normalize.scss */
sup {
  top: -0.5em; }

/* line 174, ../scss/base/_normalize.scss */
sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9. and responsive-ize
 */
/* line 185, ../scss/base/_normalize.scss */
img {
  border: 0;
  border: none;
  width: auto;
  max-width: 100%; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 196, ../scss/base/_normalize.scss */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 207, ../scss/base/_normalize.scss */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
/* line 215, ../scss/base/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
/* line 225, ../scss/base/_normalize.scss */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 233, ../scss/base/_normalize.scss */
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 5, and Chrome.
 */
/* line 256, ../scss/base/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
/* line 270, ../scss/base/_normalize.scss */
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+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
/* line 281, ../scss/base/_normalize.scss */
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.
 */
/* line 294, ../scss/base/_normalize.scss */
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.
 */
/* line 306, ../scss/base/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 315, ../scss/base/_normalize.scss */
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.
 */
/* line 326, ../scss/base/_normalize.scss */
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.
 */
/* line 338, ../scss/base/_normalize.scss */
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`.
 */
/* line 350, ../scss/base/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 361, ../scss/base/_normalize.scss */
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).
 */
/* line 374, ../scss/base/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
/* line 383, ../scss/base/_normalize.scss */
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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 394, ../scss/base/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
/* line 403, ../scss/base/_normalize.scss */
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.
 */
/* line 412, ../scss/base/_normalize.scss */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 423, ../scss/base/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* line 428, ../scss/base/_normalize.scss */
td,
th {
  padding: 0; }

table.schedule {
  width: 100%;
}


/* Fonts */
/* Layout */
/* ==|====================
   Layout/Constrained
      ======================= */
/* line 8, ../scss/layout/_constrained.scss */
.l-constrained {
  max-width: 75em;
  padding: 0 0.9375em;
  margin: 0 auto; }

/* ==|====================
   Full Width Layout
      ======================= */
/* line 8, ../scss/layout/_full-width.scss */
.full-width {
  width: 100%; }

/*
 & Columns : 12 
 & Gutter %: 20% 

 */
/* line 6, ../scss/layout/_grid.scss */
.grid_1 {
  width: 6.6666666666667%; }

/* line 7, ../scss/layout/_grid.scss */
.grid_2 {
  width: 15%; }

/* line 8, ../scss/layout/_grid.scss */
.grid_3 {
  width: 23.333333333333%; }

/* line 9, ../scss/layout/_grid.scss */
.grid_4 {
  width: 31.666666666667%; }

/* line 10, ../scss/layout/_grid.scss */
.grid_5 {
  width: 40%; }

/* line 11, ../scss/layout/_grid.scss */
.grid_6 {
  width: 48.333333333333%; }

/* line 12, ../scss/layout/_grid.scss */
.grid_7 {
  width: 56.666666666667%; }

/* line 13, ../scss/layout/_grid.scss */
.grid_8 {
  width: 65%; }

/* line 14, ../scss/layout/_grid.scss */
.grid_9 {
  width: 73.333333333333%; }

/* line 15, ../scss/layout/_grid.scss */
.grid_10 {
  width: 81.666666666667%; }

/* line 16, ../scss/layout/_grid.scss */
.grid_11 {
  width: 90%; }

/* line 17, ../scss/layout/_grid.scss */
.grid_12 {
  width: 98.333333333333%; }

/* line 19, ../scss/layout/_grid.scss */
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  margin-left: 0.83333333333333%;
  margin-right: 0.83333333333333%;
  margin-bottom: 20px;
  float: left;
  display: block; }

/* line 38, ../scss/layout/_grid.scss */
.alpha {
  margin-left: 0px; }

/* line 39, ../scss/layout/_grid.scss */
.omega {
  margin-right: 0px; }

/* Modules */
/* ==|====================
   Module/Button
	  ======================= */
/* line 18, ../scss/modules/_btn.scss */
a.btn, a.btn-color1, a.btn-color2, input.btn[type="submit"], button.btn {
  background: #9b243e;
  text-align: center;
  padding: 15px 20px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 1em;
  border: 3px solid white;
  color: white;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  display: inline-block; }

  input.btn[type="submit"] {
    border: none;
  }
  /* line 34, ../scss/modules/_btn.scss */
  a.btn:hover, a.btn-color1:hover, a.btn-color2:hover, button.btn:hover {
    color: white;
    text-decoration: none;
    border: none;
    background: #721a2d;
    border: 3px solid white; }
  /* line 39, ../scss/modules/_btn.scss */
  a.btn:active, a.btn-color1:active, a.btn-color2:active {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2); }

/* line 45, ../scss/modules/_btn.scss */
.overlap-btn {
  text-align: center;
  z-index: 600; }
  /* line 48, ../scss/modules/_btn.scss */
  .overlap-btn a {
    margin: -10px auto 0 auto; }

/* line 64, ../scss/modules/_btn.scss */
.btn-color1 {
  background: #00325b; }
  /* line 59, ../scss/modules/_btn.scss */
  .btn-color1:hover {
    background: #001628; }

/* line 67, ../scss/modules/_btn.scss */
.btn-color2 {
  background: #9b243e; }
  /* line 59, ../scss/modules/_btn.scss */
  .btn-color2:hover {
    background: #721a2d; }

@media screen and (min-width: 48em) {
  /* line 72, ../scss/modules/_btn.scss */
  .btn, .btn-color1, .btn-color2 {
    font-size: 1.125em; } }
/* ==|====================
   .header-module Module
    ======================= */
/* line 11, ../scss/modules/_header.scss */
.header-module {
  background: #00325b url(../dest/header-shimmer.png) no-repeat center;
  margin: 0 auto; }
  /* line 14, ../scss/modules/_header.scss */
  .header-module a {
    color: white; }
  /* line 20, ../scss/modules/_header.scss */
  .header-module h1 {
    font-weight: normal;
    font-size: 1.5em;
    margin: 20px 0 0 0; }

/* line 26, ../scss/modules/_header.scss */
.branding {
  text-align: center;
  width: 100%; }
  /* line 29, ../scss/modules/_header.scss */
  .branding a {
    border-bottom: 1px dotted transparent; }

/* line 34, ../scss/modules/_header.scss */
.utilities {
  text-align: center; }

/* line 37, ../scss/modules/_header.scss */
.uti-nav {
  list-style: none;
  margin: 0;
  padding: 0; }
  /* line 229, ../scss/tools/_mixins.scss */
  .uti-nav li {
    display: inline-block;
    vertical-align: middle; }
    /* line 17, ../scss/tools/_mixins.scss */
    .lt-ie8 .uti-nav li {
      display: inline;
      zoom: 1; }
  /* line 39, ../scss/modules/_header.scss */
  .uti-nav li {
    display: inline-block;
    padding: 20px 8px 12px 12px;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.8125em; }
    /* line 45, ../scss/modules/_header.scss */
    .uti-nav li:nth-child(2) {
      background: #9b243e; }

/* line 51, ../scss/modules/_header.scss */
ul.search {
  display: inline-block;
  padding: 0;
  list-style: none;
  text-align: right;
  margin: 10px 0 20px 0;
  color: #fff !important;
  width: 100%; }
  /* line 59, ../scss/modules/_header.scss */
  ul.search li {
    background-color: #FFF;
    width: 100%;
    float: right;
    margin: 0;
    padding: 10px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px; }
  /* line 69, ../scss/modules/_header.scss */
  ul.search .search-icon {
    font-size: 22px;
    color: #555;
    margin-right: 5px;
    margin-top: 5px; }
  /* line 75, ../scss/modules/_header.scss */
  ul.search input {
    background: none;
    box-shadow: none !important;
    border: none;
    width: 80%;
    color: #777 !important;
    text-align: left;
    float: left; }

@media screen and (min-width: 48em) {
  /* line 90, ../scss/modules/_header.scss */
  .header-module h1 {
    margin: -50px 0 0 0; }
    /* line 92, ../scss/modules/_header.scss */
    .header-module h1 span:last-child {
      float: left;
      margin: 55px 0 0 15px; }
  /* line 97, ../scss/modules/_header.scss */
  .header-module .branding {
    margin: 20px 0 0 0;
    float: left;
    text-align: left; }
    /* line 106, ../scss/modules/_header.scss */
    .header-module .branding img {
      float: left; }

  /* line 111, ../scss/modules/_header.scss */
  .utilities {
    float: right;
    /*z-index:200;*/
    text-align: right; }

  /* line 116, ../scss/modules/_header.scss */
  .uti-nav {
    float: right;
    width: 100%; }
    /* line 119, ../scss/modules/_header.scss */
    .uti-nav li {
      padding: 20px 8px 15px 15px; }

  /* line 123, ../scss/modules/_header.scss */
  ul.search {
    width: 270px;
    margin: -30px 0 20px 0; } }
@media screen and (min-width: 58.0625em) {
  /* line 133, ../scss/modules/_header.scss */
  .header-module {
    padding-bottom: 20px; }

  /* line 136, ../scss/modules/_header.scss */
  .branding {
    margin: 20px 0;
    width: 630px; }

  /* line 140, ../scss/modules/_header.scss */
  ul.search {
    margin: 20px 0 0 0; } }
@media screen and (min-width: 64em) {
  /* line 149, ../scss/modules/_header.scss */
  .header-module h1 span:last-child {
    margin: 70px 0 0 35px; }

  /* line 154, ../scss/modules/_header.scss */
  ul.search {
    width: 350px; } }
/* ==|====================
   Module/Icons
   Method by @vtcreative
   Documentation : http://goo.gl/kWyRmT
      ======================= */
/* line 18, ../scss/modules/_icons.scss */
[class^="sprite-"],
[class*=" sprite-"] {
  background-repeat: no-repeat;
  display: inline-block;
  background-image: url('../dest/sprites-s8e5b5e9523.png'); }

/* line 35, ../scss/modules/_icons.scss */
.sprite-medal-ribbon {
  background-position: 0 -538px;
  height: 558px;
  width: 510px; }

/* line 39, ../scss/modules/_icons.scss */
.sprite-medal {
  background-position: 0 -1254px;
  height: 158px;
  width: 158px; }

/* line 43, ../scss/modules/_icons.scss */
.sprite-angles {
  background-position: 0 0;
  height: 16px;
  width: 16px;
  background-repeat: repeat; }

/* ==|====================
   .overlap-image Module
    ======================= */
/* line 12, ../scss/modules/_overlap-image.scss */
.overlap-image {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 300;
  margin-top: -40px; }
  /* line 18, ../scss/modules/_overlap-image.scss */
  .overlap-image.home {
    margin-top: 20px; }
  /* line 21, ../scss/modules/_overlap-image.scss */
  .overlap-image.centered {
    margin-top: -80px; }

/* line 26, ../scss/modules/_overlap-image.scss */
.medallion-int {
  width: 100%;
  text-align: center;
  margin-top: -70px;
  position: relative;
  z-index: 50; }

@media screen and (min-width: 48em) {
  /* line 36, ../scss/modules/_overlap-image.scss */
  .overlap-image.home {
    margin-top: -30px; } }
/* ==|====================
   angles background module
    ======================= */
/* line 12, ../scss/modules/_angles.scss */
.angles-container {
  padding: 30px 0px;
  background: url(../dest/angles.png); }
  /* line 15, ../scss/modules/_angles.scss */
  .angles-container h2 {
    font-family: "Lora", serif;
    font-weight: normal;
    line-height: 30px;
    font-style: italic; }
  /* line 22, ../scss/modules/_angles.scss */
  .angles-container.scholarships h1 {
    background: url(../dest/g-cap.png) no-repeat center -10px;
    height: 160px; }
  /* line 26, ../scss/modules/_angles.scss */
  .angles-container.scholarships p {
    margin-top: -110px; }
  /* line 30, ../scss/modules/_angles.scss */
  .angles-container.angles-red {
    background: url(../dest/angles-red.jpg); }
    /* line 32, ../scss/modules/_angles.scss */
    .angles-container.angles-red:after {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC40Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
      background-size: 100%;
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.4)));
      background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
      background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)); }
    /* line 42, ../scss/modules/_angles.scss */
    .angles-container.angles-red .title h1 {
      font: 1.125em "Montserrat", Helvetica, Arial, sans-serif;
      color: #b19b6c;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 1.5em; }
    /* line 50, ../scss/modules/_angles.scss */
    .angles-container.angles-red h2, .angles-container.angles-red p {
      color: white;
      position: relative;
      z-index: 1; }
  /* line 56, ../scss/modules/_angles.scss */
  .angles-container .home {
    margin: 0 auto;
    text-align: center; }
  /* line 60, ../scss/modules/_angles.scss */
  .angles-container .content {
    top: 10px; }
  /* line 63, ../scss/modules/_angles.scss */
  .angles-container.has-overlap-image {
    padding-bottom: 90px; }

@media screen and (min-width: 48em) {
  /* line 72, ../scss/modules/_angles.scss */
  .angles-container h2 {
    font-size: 2.25em;
    line-height: 42px; } }
/* ==|====================
   Section Title module
    ======================= */
/* line 12, ../scss/modules/_section-title.scss */
.section-title {
  width: 100%;
  text-align: center;
  background: url(../images/section-title-bk.png) no-repeat center;
  margin: 60px 0 0 0; }
  /* line 17, ../scss/modules/_section-title.scss */
  .section-title h1 {
    color: #b19b6c; }
  /* line 20, ../scss/modules/_section-title.scss */
  .section-title.medallion-title {
    margin: -70px 0 0 0;
    background: none; }
    /* line 24, ../scss/modules/_section-title.scss */
    .section-title.medallion-title h1 {
      padding-top: 70px; }
  /* line 28, ../scss/modules/_section-title.scss */
  .section-title h1, .section-title h2, .section-title h3 {
    line-height: 38px;
    color: #b19b6c; }

/* line 1, ../scss/modules/_home-news.scss */
.home-news-container {
  margin: -20px auto 0 auto;
  text-align: center; }
  /* line 4, ../scss/modules/_home-news.scss */
  .home-news-container img {
    display: none; }

/* line 10, ../scss/modules/_home-news.scss */
.home-news-container .grid_3 {
  width: 100%; }

/* line 15, ../scss/modules/_home-news.scss */
.news-bucket {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzI1YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDgwZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #00325b), color-stop(100%, #00080f));
  background-image: -moz-linear-gradient(top, #00325b, #00080f);
  background-image: -webkit-linear-gradient(top, #00325b, #00080f);
  background-image: linear-gradient(to bottom, #00325b, #00080f); }
  /* line 17, ../scss/modules/_home-news.scss */
  .news-bucket .content {
    padding: 20px; }
    /* line 19, ../scss/modules/_home-news.scss */
    .news-bucket .content a {
      color: #e7d0a0; }
    /* line 22, ../scss/modules/_home-news.scss */
    .news-bucket .content h5 {
      font-family: 'Lora', serif;
      font-weight: 700;
      margin: 0;
      padding-top: 10px; }
    /* line 28, ../scss/modules/_home-news.scss */
    .news-bucket .content p {
      color: #fff;
      font-weight: 400 !important;
      line-height: 17px;
      font-size: 14px; }

@media screen and (min-width: 48em) {
  /* line 38, ../scss/modules/_home-news.scss */
  .home-news {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzI1YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDgwZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #00325b), color-stop(100%, #00080f));
    background-image: -moz-linear-gradient(top, #00325b, #00080f);
    background-image: -webkit-linear-gradient(top, #00325b, #00080f);
    background-image: linear-gradient(to bottom, #00325b, #00080f); }

  /* line 44, ../scss/modules/_home-news.scss */
  .home-news-container .grid_3 {
    background: #fff;
    margin: 0;
    padding: 0px 10px;
    width: 50%; }
  /* line 50, ../scss/modules/_home-news.scss */
  .home-news-container img {
    display: inherit; }

  /* line 56, ../scss/modules/_home-news.scss */
  .news-bucket .content {
    background: none;
    margin-top: -120px;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzI1YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDgwZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #00325b), color-stop(100%, #00080f));
    background-image: -moz-linear-gradient(top, #00325b, #00080f);
    background-image: -webkit-linear-gradient(top, #00325b, #00080f);
    background-image: linear-gradient(to bottom, #00325b, #00080f);
    background: url(../images/blk-bk.png) repeat;
    position: relative;
    z-index: 500;
    height: 120px;
    overflow: hidden;
    padding: 10px; } }
@media screen and (min-width: 62em) {
  /* line 71, ../scss/modules/_home-news.scss */
  .home-news-container .grid_3 {
    width: 25%; } }
/* line 2, ../scss/modules/_footer.scss */
.footer-container {
  background: #0F2A3F url(../dest/footer-back.jpg) no-repeat 0 0;
  min-height: 400px;
  margin-top: 30px;
  padding: 0 0 25px 0;
  color: white;
  text-align: center; }
  /* line 9, ../scss/modules/_footer.scss */
  .footer-container .grid-container {
    font-size: 0.875em; }
  /* line 12, ../scss/modules/_footer.scss */
  .footer-container .grid_5, .footer-container .grid_4, .footer-container .grid_3 {
    margin-bottom: 0;
    width: 100%; }
  /* line 22, ../scss/modules/_footer.scss */
  .footer-container .section-title {
    background-image: none;
    margin: 30px 0 0 0; }
    /* line 25, ../scss/modules/_footer.scss */
    .footer-container .section-title * {
      font-size: 1.5em; }
  /* line 29, ../scss/modules/_footer.scss */
  .footer-container .content {
    margin: auto;
    clear: both;
    text-align: center;
    padding: 15px 0px; }
  /* line 36, ../scss/modules/_footer.scss */
  .footer-container ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%; }
    /* line 42, ../scss/modules/_footer.scss */
    .footer-container ul li {
      margin: 0 0 8px 0;
      padding: 0 0 0 0; }
  /* line 47, ../scss/modules/_footer.scss */
  .footer-container a:link {
    color: #b59f72; }
  /* line 50, ../scss/modules/_footer.scss */
  .footer-container a:visited {
    color: #b59f72; }
  /* line 53, ../scss/modules/_footer.scss */
  .footer-container a:hover {
    color: #fff; }
  /* line 58, ../scss/modules/_footer.scss */
  .footer-container .social a:hover, .footer-container .bottom-image a:hover {
    color: transparent;
    text-decoration: none;
    border: none; }
  .footer-container .gold-span{
	 color: #b59f72;
	 text-transform: uppercase;
	 margin-bottom:-10px;
	 display:block;
}
/* line 65, ../scss/modules/_footer.scss */
.copyright {
  margin-top: 20px;
  line-height: 24px;
  font-size: 12px; }

/* line 71, ../scss/modules/_footer.scss */
.bottom-image {
  display: none; }

@media screen and (min-width: 50em) {
  /* line 77, ../scss/modules/_footer.scss */
  .footer-container {
    min-height: 400px;
    margin-top: 30px;
    text-align: left; }
    /* line 81, ../scss/modules/_footer.scss */
    .footer-container .section-title {
      text-align: left; }
    /* line 85, ../scss/modules/_footer.scss */
    .footer-container .grid-container div:not(:last-child) {
      border-right: 1px solid rgba(255, 255, 255, 0.4); }
    /* line 89, ../scss/modules/_footer.scss */
    .footer-container .grid_4 {
      width: 38%; }
    /* line 92, ../scss/modules/_footer.scss */
    .footer-container .grid_5 {
      width: 30%; }
    /* line 95, ../scss/modules/_footer.scss */
    .footer-container .grid_3 {
      width: 20%;
      margin-top: 35px; }

  /* line 100, ../scss/modules/_footer.scss */
  .copyright {
    width: 100%; } }
@media screen and (min-width: 64em) {
  /* line 107, ../scss/modules/_footer.scss */
  .footer-container {
    padding: 30px 0 0 0;
    overflow: hidden; }

  /* line 111, ../scss/modules/_footer.scss */
  .bottom-image {
    display: block;
    width: 360px;
    float: right;
    margin-top: -60px; }

  /* line 117, ../scss/modules/_footer.scss */
  .copyright {
    width: 550px;
    float: left; } }
/* line 2, ../scss/modules/_nav.scss */
.topnav-container {
  z-index: 400 !important; }

/* line 7, ../scss/modules/_nav.scss */
nav {
  font-size: 16px;
  list-style: none;
  height: 60px;
  margin: 0 auto;
  display: block;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; }
  /* line 17, ../scss/modules/_nav.scss */
  nav a {
    text-decoration: none;
    color: #191919;
    -moz-transition: color;
    -o-transition: color;
    -webkit-transition: color;
    transition: color; }
    /* line 21, ../scss/modules/_nav.scss */
    nav a:hover {
      color: #000;
      color: #000;
      text-decoration: none;
      border: none; }
  /* line 27, ../scss/modules/_nav.scss */
  nav ul.l-constrained {
    padding: 0; }
  /* line 31, ../scss/modules/_nav.scss */
  nav li, nav span.show-nav-more, nav span.show-nav-less {
    padding: 15px 0% 15px 0%;
    width: 100%;
    list-style: none;
    font-size: 16px;
    line-height: 16px;
    position: relative;
    display: block;
    margin-left: 0;
    text-align: center;
    background: #ffffff;
    /* Old browsers */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmYyZjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
    /* W3C */ }
    /* line 49, ../scss/modules/_nav.scss */
    nav li.current-page, nav span.show-nav-more.current-page, nav span.show-nav-less.current-page {
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q2Y2RiYSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2I5YWE4YSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
      background-size: 100%;
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d6cdba), color-stop(100%, #b9aa8a));
      background-image: -moz-linear-gradient(#d6cdba, #b9aa8a);
      background-image: -webkit-linear-gradient(#d6cdba, #b9aa8a);
      background-image: linear-gradient(#d6cdba, #b9aa8a); }
    /* line 52, ../scss/modules/_nav.scss */
    nav li ul, nav span.show-nav-more ul, nav span.show-nav-less ul {
      display: none; }
    /* line 55, ../scss/modules/_nav.scss */
    nav li li, nav span.show-nav-more li, nav span.show-nav-less li {
      font-size: 16px;
      text-transform: none;
      width: 200px;
      padding: 10px 10px 10px 10px !important;
      margin: 0;
      border-bottom: solid 1px #ccc;
      background: #ac1a2f;
      -webkit-box-shadow: 5px 5px 17px -8px rgba(0, 0, 0, 0.72);
      -moz-box-shadow: 5px 5px 17px -8px rgba(0, 0, 0, 0.72);
      box-shadow: 5px 5px 17px -8px rgba(0, 0, 0, 0.72); }
      /* line 66, ../scss/modules/_nav.scss */
      nav li li:hover, nav span.show-nav-more li:hover, nav span.show-nav-less li:hover {
        background: #7d1426; }
      /* line 69, ../scss/modules/_nav.scss */
      nav li li a:hover, nav span.show-nav-more li a:hover, nav span.show-nav-less li a:hover {
        color: #fff; }
      /* line 72, ../scss/modules/_nav.scss */
      nav li li:first-child, nav span.show-nav-more li:first-child, nav span.show-nav-less li:first-child {
        margin-top: 10px; }
      /* line 75, ../scss/modules/_nav.scss */
      nav li li ul, nav span.show-nav-more li ul, nav span.show-nav-less li ul {
        margin: 10px 0 0 -5px;
        background-image: none; }
      /* line 79, ../scss/modules/_nav.scss */
      nav li li li, nav span.show-nav-more li li, nav span.show-nav-less li li {
        width: 200px;
        border-bottom: solid 1px #ac1a2f;
        font-size: 14px;
        color: #666;
        background: #7d1426; }
        /* line 85, ../scss/modules/_nav.scss */
        nav li li li:first-child, nav span.show-nav-more li li:first-child, nav span.show-nav-less li li:first-child {
          margin-top: 0px; }

/* line 93, ../scss/modules/_nav.scss */
.prio-alpha,
.show-nav-less {
  display: none; }

/* line 99, ../scss/modules/_nav.scss */
#prio:target .prio-alpha,
#prio:target .show-nav-less {
  display: block; }

/* line 102, ../scss/modules/_nav.scss */
#prio:target .show-nav-more {
  display: none; }

/* line 104, ../scss/modules/_nav.scss */
.show-nav-more a {
  color: #000;
  background: none;
  display: block;
  color: black;
  -webkit-text-shadow: 1px 1px 1px #969696;
  -moz-text-shadow: 1px 1px 1px #969696;
  text-shadow: 1px 1px 1px #969696; }

@media screen and (min-width: 48em) {
  /* line 120, ../scss/modules/_nav.scss */
  nav ul.l-constrained {
    padding: 0 0.9375em; }
  /* line 125, ../scss/modules/_nav.scss */
  nav > ul > li a {
    vertical-align: top;
    display: inline-block;
    padding: 10px 3px; }
  /* line 131, ../scss/modules/_nav.scss */
  nav > ul#primary-menu > li:not(.show-nav-more):before {
    content: '';
    display: inline-block;
    height: 41px;
    width: 10px;
    background: url(../dest/nav-separator.png) no-repeat 0 0; }
  nav > ul#primary-menu > li:not(.show-nav-more):first-child:before  {
    background: none;
  }
  /* line 140, ../scss/modules/_nav.scss */
  nav li {
    width: auto;
    background: none;
    padding: 10px 0;
    vertical-align: top; }
    /* line 145, ../scss/modules/_nav.scss */
    nav li:hover ul {
      display: block; }
    /* line 148, ../scss/modules/_nav.scss */
    nav li.current-page {
      background-image: none; }
      /* line 150, ../scss/modules/_nav.scss */
      nav li.current-page > a {
        background-color: #d6cdba; }
    /* line 154, ../scss/modules/_nav.scss */
    nav li ul {
      display: block;
      position: absolute;
      left: 0;
      padding: 0 5px;
      display: none;
      background: url(../dest/red-arrow-up.png) -30px 0px no-repeat;
      z-index: 9000; }
      /* line 161, ../scss/modules/_nav.scss */
      nav li ul li {
        padding: 10px 10px 10px 10px; }
      /* line 164, ../scss/modules/_nav.scss */
      nav li ul a {
        border: none;
        color: #FFF;
        padding: 0; }

  /* line 173, ../scss/modules/_nav.scss */
  .show-nav-more {
    display: none; }

  /* line 177, ../scss/modules/_nav.scss */
  .prio-alpha {
    display: inline-block;
    font-size: 0.75em; } }
/* line 185, ../scss/modules/_nav.scss */
#prio:target .prio-alpha {
  display: inline-block; }

@media screen and (min-width: 55em) {
  /* line 283, ../scss/modules/_nav.scss */
  nav > ul > li a {
    padding: 10px 5px; }
  /* line 287, ../scss/modules/_nav.scss */
  nav > ul > li + li:not(.show-nav-more):before {
    width: 12px; }
  /* line 294, ../scss/modules/_nav.scss */
  nav li ul a {
    padding: 0; }

  /* line 300, ../scss/modules/_nav.scss */
  .prio-alpha {
    font-size: 0.8125em; } }
@media screen and (min-width: 63.9375em) {
  /* line 307, ../scss/modules/_nav.scss */
  .prio-alpha {
    font-size: 0.875em; } }
@media screen and (min-width: 72.8125em) {
  /* line 315, ../scss/modules/_nav.scss */
  nav > ul > li a {
    padding: 13px 15px 10px 15px; }
  /* line 321, ../scss/modules/_nav.scss */
  nav li ul a {
    padding: 0; }

  /* line 327, ../scss/modules/_nav.scss */
  .prio-alpha {
    font-size: 1em; } }
/* line 2, ../scss/modules/_secondary-nav.scss */
nav.secondary-nav:not(.mobile-secondary) {
  display: none; }
/* line 5, ../scss/modules/_secondary-nav.scss */
nav.secondary-nav > ul {
  padding: 0;
  margin: 0;
  display: none; }
  /* line 9, ../scss/modules/_secondary-nav.scss */
  nav.secondary-nav > ul > li {
    display: inherit; }
/* line 13, ../scss/modules/_secondary-nav.scss */
nav.secondary-nav .show-nav-less {
  display: none; }
/* line 17, ../scss/modules/_secondary-nav.scss */
nav.secondary-nav.is-open .show-nav-more {
  display: none; }
/* line 20, ../scss/modules/_secondary-nav.scss */
nav.secondary-nav.is-open .show-nav-less {
  display: block; }

@media screen and (min-width: 48em) {
  /* line 28, ../scss/modules/_secondary-nav.scss */
  nav.secondary-nav {
    position: static;
    height: auto;
    text-transform: none; }
    /* line 32, ../scss/modules/_secondary-nav.scss */
    nav.secondary-nav:not(.mobile-secondary) {
      display: block; }
      /* line 34, ../scss/modules/_secondary-nav.scss */
      nav.secondary-nav:not(.mobile-secondary) > ul {
        display: block; }
    /* line 38, ../scss/modules/_secondary-nav.scss */
    nav.secondary-nav.mobile-secondary {
      display: none; }
    /* line 41, ../scss/modules/_secondary-nav.scss */
    nav.secondary-nav .show-nav-less, nav.secondary-nav .show-nav-more {
      display: none; }
    /* line 44, ../scss/modules/_secondary-nav.scss */
    nav.secondary-nav > ul {
      margin: 0 0 20px 0px;
      padding: 0;
      text-align: left; }
      /* line 48, ../scss/modules/_secondary-nav.scss */
      nav.secondary-nav > ul > li {
        text-align: left;
        padding: 5px 0; }
        /* line 51, ../scss/modules/_secondary-nav.scss */
        nav.secondary-nav > ul > li.prio-alpha {
          display: list-item; }
        /* line 55, ../scss/modules/_secondary-nav.scss */
        nav.secondary-nav > ul > li.current-page a {
          background: transparent;
          font-weight: bold; }
        /* line 60, ../scss/modules/_secondary-nav.scss */
        nav.secondary-nav > ul > li + li {
          border-top: 1px solid #EBEBEB; }
          /* line 62, ../scss/modules/_secondary-nav.scss */
          nav.secondary-nav > ul > li + li:not(.show-nav-more):before {
            display: none; }
        /* line 66, ../scss/modules/_secondary-nav.scss */
        nav.secondary-nav > ul > li a {
          padding: 10px;
          font-family: "Montserrat", Helvetica, Arial, sans-serif;
          border-bottom: 1px solid transparent; } }
/*---------------------- Featured Member----------------------------------*/
/* line 3, ../scss/modules/_featured-banner.scss */
.featured-container {
  text-align: center;
  clear: both;
  overflow: hidden; }
  /* line 8, ../scss/modules/_featured-banner.scss */
  .featured-container.blue-gradient {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwNTE4MyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMzI1YiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #005183), color-stop(100%, #00325b));
    background-image: -moz-linear-gradient(top, #005183, #00325b);
    background-image: -webkit-linear-gradient(top, #005183, #00325b);
    background-image: linear-gradient(to bottom, #005183, #00325b); }
  /* line 11, ../scss/modules/_featured-banner.scss */
  .featured-container .featured-img img {
    max-width: 100%; }
  /* line 14, ../scss/modules/_featured-banner.scss */
  .featured-container .content {
    z-index: 250;
    position: absolute;
    width: 470px;
    margin: auto;
    padding: 20px;
    height: 100%;
    right: 8%; }
    /* line 23, ../scss/modules/_featured-banner.scss */
    .featured-container .content h3 {
      font-family: "Lora", serif;
      font-size: 1.125em;
      font-weight: 700;
      color: #b19b6c;
      text-transform: uppercase;
      padding: 0;
      margin-bottom: .25em; }
    /* line 32, ../scss/modules/_featured-banner.scss */
    .featured-container .content h4 {
      display: none;
      font-family: "Montserrat", Helvetica, Arial, sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: #b19b6c;
      text-transform: uppercase;
      margin: 0 0 15px 0;
      padding: 0; }
    /* line 42, ../scss/modules/_featured-banner.scss */
    .featured-container .content h5 {
      font-family: "Lora", serif;
      font-size: 1.125em;
      font-weight: 700;
      color: #000;
      margin: 0 0 15px 0;
      padding: 0; }
      /* line 49, ../scss/modules/_featured-banner.scss */
      .featured-container .content h5 a {
        color: black; }
    /* line 53, ../scss/modules/_featured-banner.scss */
    .featured-container .content h6 {
      font-family: "Montserrat", Helvetica, Arial, sans-serif;
      font-size: 0.875em;
      font-weight: 700;
      color: #000;
      margin: 0 auto;
      padding: 0;
      width: 60%; }
    /* line 62, ../scss/modules/_featured-banner.scss */
    .featured-container .content p {
      display: none;
      font-size: 0.875em;
      color: black; }
    /* line 68, ../scss/modules/_featured-banner.scss */
    .featured-container .content a.more-link {
      font-weight: bold;
      color: #9b243e; }
  /* line 75, ../scss/modules/_featured-banner.scss */
  .featured-container .featured-item .featured-img img {
    display: none; }
  /* line 78, ../scss/modules/_featured-banner.scss */
  .featured-container .featured-item .content {
    width: auto;
    position: static; }
    /* line 81, ../scss/modules/_featured-banner.scss */
    .featured-container .featured-item .content h3 {
      color: #e4dfd3; }
    /* line 84, ../scss/modules/_featured-banner.scss */
    .featured-container .featured-item .content h5, .featured-container .featured-item .content p {
      color: white; }
    /* line 87, ../scss/modules/_featured-banner.scss */
    .featured-container .featured-item .content p {
      display: block; }

/* line 94, ../scss/modules/_featured-banner.scss */
.featured-member {
  margin: auto;
  width: 167%;
  margin-left: -35%;
  background: #e5e5e5;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U1ZTVlNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhOGE4YTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #e5e5e5 0%, #a8a8a8 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5e5e5), color-stop(100%, #a8a8a8));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #e5e5e5 0%, #a8a8a8 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #e5e5e5 0%, #a8a8a8 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #e5e5e5 0%, #a8a8a8 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #e5e5e5 0%, #a8a8a8 100%);
  /* W3C */ }

@media screen and (min-width: 25em) {
  /* line 111, ../scss/modules/_featured-banner.scss */
  .featured-container .content {
    right: 15%; } }
@media screen and (min-width: 25em) {
  /* line 119, ../scss/modules/_featured-banner.scss */
  .featured-container .content {
    right: 20%; } }
@media screen and (min-width: 37.5625em) {
  /* line 126, ../scss/modules/_featured-banner.scss */
  .featured-container {
    display: block; }
    /* line 128, ../scss/modules/_featured-banner.scss */
    .featured-container .featured-item .content {
      position: absolute;
      right: 0;
      background: rgba(255, 255, 255, 0.8);
      width: 40%; }
      /* line 133, ../scss/modules/_featured-banner.scss */
      .featured-container .featured-item .content h3 {
        color: #00325b; }
      /* line 136, ../scss/modules/_featured-banner.scss */
      .featured-container .featured-item .content h5, .featured-container .featured-item .content p {
        color: #393939; }
    /* line 140, ../scss/modules/_featured-banner.scss */
    .featured-container .featured-item .featured-img img {
      display: block; }
    /* line 145, ../scss/modules/_featured-banner.scss */
    .featured-container .content {
      width: 30%;
      background: rgba(255, 255, 255, 0.4);
      right: 30%; }
      /* line 149, ../scss/modules/_featured-banner.scss */
      .featured-container .content h3 {
        font-size: 1.5em; }
      /* line 152, ../scss/modules/_featured-banner.scss */
      .featured-container .content h4 {
        display: block; }
      /* line 155, ../scss/modules/_featured-banner.scss */
      .featured-container .content h5 {
        font-size: 1.5em; } }
@media screen and (min-width: 53.75em) {
  /* line 163, ../scss/modules/_featured-banner.scss */
  .featured-member {
    width: 137%;
    margin-left: -21%; }

  /* line 170, ../scss/modules/_featured-banner.scss */
  .featured-container .content h3, .featured-container .content h5 {
    font-size: 1.875em; } }
@media screen and (min-width: 81.25em) {
  /* line 180, ../scss/modules/_featured-banner.scss */
  .featured-container .featured-item .content {
    padding: 60px 40px 40px 40px;
    width: 45%; }
    /* line 183, ../scss/modules/_featured-banner.scss */
    .featured-container .featured-item .content h3 {
      margin: 0 0 30px 0; }
  /* line 187, ../scss/modules/_featured-banner.scss */
  .featured-container .featured-item .featured-img {
    margin: 0 0 0 -100px; } }
@media screen and (min-width: 75em) {
  /* line 196, ../scss/modules/_featured-banner.scss */
  .featured-container .content {
    padding: 20px 20px 20px 20px;
    width: 32%; }
    /* line 199, ../scss/modules/_featured-banner.scss */
    .featured-container .content p {
      display: block;
      font-size: 1em; }
    /* line 203, ../scss/modules/_featured-banner.scss */
    .featured-container .content h3 {
      margin-bottom: 1em; }
    /* line 206, ../scss/modules/_featured-banner.scss */
    .featured-container .content h4 {
      margin-bottom: 0; }
    /* line 209, ../scss/modules/_featured-banner.scss */
    .featured-container .content h6 {
      font-size: 1em; }
  /* line 213, ../scss/modules/_featured-banner.scss */
  .featured-container .featured-member {
    width: 120%;
    margin-left: -10%; } }
@media screen and (min-width: 90.625em) {
  /* line 227, ../scss/modules/_featured-banner.scss */
  .featured-container .featured-member {
    width: 100%;
    margin-left: auto; } }
/* ===========================
   Breadcrumbs
   =========================== */
/* line 5, ../scss/modules/_breadcrumbs.scss */
.breadcrumbs {
  background-color: #d6cdba;
  color: #00325b; }
  /* line 8, ../scss/modules/_breadcrumbs.scss */
  .breadcrumbs a {
    color: #00325b;
    font-size: 0.875em;
    font-style: italic;
    font-weight: 700; }
    /* line 13, ../scss/modules/_breadcrumbs.scss */
    .breadcrumbs a:hover {
      color: white;
      text-decoration: none;
      border: none;
      border-bottom: 1px dotted transparent; }
  /* line 18, ../scss/modules/_breadcrumbs.scss */
  .breadcrumbs ul {
    padding: 10px 0;
    width: 75%;
    float: left; }
  /* line 25, ../scss/modules/_breadcrumbs.scss */
  .breadcrumbs li + li:before {
    margin: 0 10px;
    display: inline;
    content: ">";
    color: #aeadaa;
    font-size: 0.8em; }
  /* line 32, ../scss/modules/_breadcrumbs.scss */
  .breadcrumbs li i {
    font-size: 1.5em; }

/* line 1, ../scss/modules/_stats.scss */
.stats {
  margin: auto;
  background: none;
  position: relative;
  z-index: 1100; }
  /* line 6, ../scss/modules/_stats.scss */
  .stats .grid_3 {
    background: none;
    text-align: center;
    color: #999;
    text-transform: uppercase;
    width: 48%; }
    /* line 12, ../scss/modules/_stats.scss */
    .stats .grid_3 .stat {
      color: #FFF;
      text-transform: uppercase;
      position: relative;
      z-index: 1500;
      margin-top: -100px;
      width: 100%;
      font-size: 0.8125em;
      text-align: center;
      margin-bottom: 70px; }
    /* line 23, ../scss/modules/_stats.scss */
    .stats .grid_3 .stat-sub {
      display: inline-block;
      max-width: 80px;
      word-break: break-all; }
    /* line 28, ../scss/modules/_stats.scss */
    .stats .grid_3 img {
      position: relative;
      z-index: 1400; }

@media screen and (min-width: 25em) {
  /* line 38, ../scss/modules/_stats.scss */
  .stats .grid_3 .stat {
    margin-top: -115px; } }
@media screen and (min-width: 48em) {
  /* line 47, ../scss/modules/_stats.scss */
  .stats .grid_3 {
    width: 23.333333333333%; }
    /* line 49, ../scss/modules/_stats.scss */
    .stats .grid_3 .stat {
      margin-top: -115px; } }
/* line 5, ../scss/modules/_article-entry.scss */
.article-entry {
  text-align: center;
  width: 100%; }
  /* line 8, ../scss/modules/_article-entry.scss */
  .article-entry .section-title {
    margin-top: 25px;
    height: 70px;
    background-position: center bottom; }
    /* line 12, ../scss/modules/_article-entry.scss */
    .article-entry .section-title h2 {
      font-size: 1.5em;
      line-height: 1;
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
  /* line 18, ../scss/modules/_article-entry.scss */
  .article-entry p {
    margin: 5px 0 10px 0; }

@media screen and (min-width: 48em) {
  /* line 24, ../scss/modules/_article-entry.scss */
  .article-entry {
    width: 33.33333%;
    float: left;
    padding: 0 35px 0 0; }
    /* line 28, ../scss/modules/_article-entry.scss */
    .article-entry .section-title {
      height: 130px; }
      /* line 30, ../scss/modules/_article-entry.scss */
      .article-entry .section-title h2 {
        font-size: 1.875em; }
    /* line 34, ../scss/modules/_article-entry.scss */
    .article-entry:nth-child(2) {
      padding: 0 20px; }
    /* line 37, ../scss/modules/_article-entry.scss */
    .article-entry:last-child {
      padding: 0 0 0 35px; }
    /* line 40, ../scss/modules/_article-entry.scss */
    .article-entry p {
      margin: 25px 0 30px 0; } }
/* line 1, ../scss/modules/_sharing.scss */
a.page-share-link {
  background-color: #b29b6c;
  color: white;
  font-family: "Lora Bold Italic";
  font-weight: normal;
  font-size: 1em; }
  /* line 7, ../scss/modules/_sharing.scss */
  a.page-share-link span {
    padding: 0 15px;
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  /* line 13, ../scss/modules/_sharing.scss */
  a.page-share-link i {
    background-color: #97845c;
    padding: 8px 13px;
    font-size: 1.5em;
    border-radius: 1px solid; }

/* line 1, ../scss/modules/_columns.scss */
.columns {
  margin: 50px auto 0 auto;
  text-align: center;
  clear: both;
  /*padding-top:30px;*/ }
  /* line 6, ../scss/modules/_columns.scss */
  .columns .grid_4, .columns .grid_8, .columns .grid_3, .columns .grid_9, .columns .grid_6 {
    width: 100%;
    float: none; }
  /* line 10, ../scss/modules/_columns.scss */
  .columns .grid_8 {
    text-align: left;
    padding-bottom: 20px; }
  /* line 14, ../scss/modules/_columns.scss */
  .columns h1 {
    color: #b19b6c; }
  /* line 17, ../scss/modules/_columns.scss */
  .columns p {
    margin-bottom: 30px; }
  /* line 20, ../scss/modules/_columns.scss */
  .columns h3 {
    font: 1.5em "Lora", serif;
    font-weight: bold;
    color: #b19b6c;
    text-align: left; }
  /* line 27, ../scss/modules/_columns.scss */
  .columns.table-hack {
    display: table; }
    /* line 29, ../scss/modules/_columns.scss */
    .columns.table-hack .small-table-footer {
      display: table-footer-group; }

@media screen and (min-width: 48em) {
  /* line 37, ../scss/modules/_columns.scss */
  .columns .grid_4, .columns .grid_8, .columns .grid_3, .columns .grid_9, .columns .grid_6 {
    float: left;
    margin-bottom: 100px; }
  /* line 41, ../scss/modules/_columns.scss */
  .columns .grid_3 {
    width: 25%;
    padding: 0 0 20px 0;
    margin: 0; }
    /* line 45, ../scss/modules/_columns.scss */
    .columns .grid_3.alpha {
      padding: 0 20px 0 0;
      float: left; }
    /* line 49, ../scss/modules/_columns.scss */
    .columns .grid_3.omega {
      float: right;
      padding: 0 0 0 20px; }
  /* line 54, ../scss/modules/_columns.scss */
  .columns .grid_4 {
    width: 29%;
    padding: 0 0 20px 0; }
    /* line 57, ../scss/modules/_columns.scss */
    .columns .grid_4.alpha {
      padding: 0 20px 0 0;
      float: left; }
  /* line 62, ../scss/modules/_columns.scss */
  .columns .grid_6 {
    width: 50%;
    padding: 0 10px;
    margin: 0; }
  /* line 67, ../scss/modules/_columns.scss */
  .columns .grid_8 {
    width: 68%;
    padding: 0 20px 0 0; }
    /* line 70, ../scss/modules/_columns.scss */
    .columns .grid_8.omega {
      padding: 0;
      float: right; }
  /* line 75, ../scss/modules/_columns.scss */
  .columns .grid_9 {
    width: 73%;
    padding: 0 20px 0 0; }
    /* line 78, ../scss/modules/_columns.scss */
    .columns .grid_9.omega {
      padding: 0;
      float: right; } }
/* line 1, ../scss/modules/_profiles.scss */
.profiles {
  background: url(../images/div.png) no-repeat center top;
  padding-top: 20px; }
  /* line 4, ../scss/modules/_profiles.scss */
  .profiles .profile-entry {
    padding: 30px 0 0px 0;
    margin-bottom: 20px; }
    /* line 7, ../scss/modules/_profiles.scss */
    .profiles .profile-entry img {
      float: left;
      padding-right: 20px;
      padding-bottom: 30px;
	  width: 200px;	  }
	  .profiles .profile-entry .member-image img {
      float: left;
      padding-right: 20px;
      padding-bottom: 30px;
	  width: 300px;	  }
    /* line 12, ../scss/modules/_profiles.scss */
    .profiles .profile-entry.member {
      color: #393939; }
      /* line 15, ../scss/modules/_profiles.scss */
      .profiles .profile-entry.member + .member-profile-entry {
        border-top: solid 1px #ccc; }
      /* line 18, ../scss/modules/_profiles.scss */
      .profiles .profile-entry.member h2 {
        font-size: 1.5em;
        line-height: 20px;
        font-family: "Montserrat", Helvetica, Arial, sans-serif;
        font-weight: 700; }
      /* line 24, ../scss/modules/_profiles.scss */
      .profiles .profile-entry.member h3 {
        font-size: 1em;
        font-family: "Montserrat", Helvetica, Arial, sans-serif;
        color: #393939;
        font-weight: bold;
        margin: 0; }
    /* line 32, ../scss/modules/_profiles.scss */
    .profiles .profile-entry.officer {
      margin: 0 0 10px 0;
      padding: 0; }
      /* line 35, ../scss/modules/_profiles.scss */
      .profiles .profile-entry.officer:first-child {
        margin: 40px 0 10px 0; }
      /* line 38, ../scss/modules/_profiles.scss */
      .profiles .profile-entry.officer h2 {
        margin-top: 0;
        font-size: 1.5em;
        color: #b19b6c; }
.media-column {
	 margin-right: 50px;
}
/* line 1, ../scss/modules/_panel.scss */
.panel {
  background: #e4dfd3;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 35px;
  border: 5px solid #d6cdba; }
  /* line 6, ../scss/modules/_panel.scss */
  .panel + .panel {
    margin: 35px 0 0 0; }
  /* line 9, ../scss/modules/_panel.scss */
  .panel h2 {
    font-size: 1.5em; }
  /* line 12, ../scss/modules/_panel.scss */
  .panel .btn, .panel .btn-color1, .panel .btn-color2 {
    border: none; }
  /* line 15, ../scss/modules/_panel.scss */
  .panel .section-title {
    margin-top: -20px;
    height: 80px;
    background-position: center bottom; }
    /* line 19, ../scss/modules/_panel.scss */
    .panel .section-title h2 {
      line-height: 1;
      margin: 0;
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
  /* line 25, ../scss/modules/_panel.scss */
  .panel.callout {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzliMjQzZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU4MTQxZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9b243e), color-stop(100%, #58141d));
    background-image: -moz-linear-gradient(top, #9b243e, #58141d);
    background-image: -webkit-linear-gradient(top, #9b243e, #58141d);
    background-image: linear-gradient(to bottom, #9b243e, #58141d);
    border: none; }
    /* line 28, ../scss/modules/_panel.scss */
    .panel.callout h2 {
      color: #e4dfd3;
      margin: 0 0 20px 0; }
    /* line 32, ../scss/modules/_panel.scss */
    .panel.callout p {
      color: #e4dfd3; }
    /* line 35, ../scss/modules/_panel.scss */
    .panel.callout .btn, .panel.callout .btn-color1, .panel.callout .btn-color2 {
      color: white;
      border: none;
      background: transparent;
      border-bottom: 1px dotted transparent;
      -moz-transition: border-bottom 0.5s;
      -o-transition: border-bottom 0.5s;
      -webkit-transition: border-bottom 0.5s;
      transition: border-bottom 0.5s; }
      /* line 41, ../scss/modules/_panel.scss */
      .panel.callout .btn i, .panel.callout .btn-color1 i, .panel.callout .btn-color2 i {
        color: #88585f;
        -moz-transition: color 0.5s;
        -o-transition: color 0.5s;
        -webkit-transition: color 0.5s;
        transition: color 0.5s;
        margin-left: 5px; }
      /* line 46, ../scss/modules/_panel.scss */
      .panel.callout .btn:hover, .panel.callout .btn-color1:hover, .panel.callout .btn-color2:hover {
        border-bottom: 1px dotted; }
        /* line 48, ../scss/modules/_panel.scss */
        .panel.callout .btn:hover i, .panel.callout .btn-color1:hover i, .panel.callout .btn-color2:hover i {
          color: white; }
  /* line 54, ../scss/modules/_panel.scss */
  .panel select, select {
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url(../dest/grey-arrow.png) no-repeat 90% center;
    width: 100%;
    text-indent: 0.01px;
    text-overflow: "";
    color: #777;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: capitalize;
    border-radius: 0; }
    
    .panel select[multiple], select[multiple] { background: none; }
    
  /* line 69, ../scss/modules/_panel.scss */
  .panel input {
    font-size: 16px;
    width: 150px;
    margin-bottom: 20px;
    text-transform: none; }

/* line 5, ../scss/modules/_get-social.scss */
.get-social iframe {
  display: block !important; }
/* line 8, ../scss/modules/_get-social.scss */
.get-social .grid_6 {
  float: none;
  width: 100%;
  padding: 30px 0 0 0;
  min-height: 500px; }
/* line 15, ../scss/modules/_get-social.scss */
.get-social .btn-color1 {
  margin: 30px auto 0 auto; }
/* line 18, ../scss/modules/_get-social.scss */
.get-social .video-container {
  background: url(../images/div.png) no-repeat center top;
  padding-top: 20px; }
  /* line 21, ../scss/modules/_get-social.scss */
  .get-social .video-container h3 {
    margin-top: 1.5em; }
  /* line 24, ../scss/modules/_get-social.scss */
  .get-social .video-container .video {
    margin: 15px 0; }

/* line 36, ../scss/modules/_get-social.scss */
#fb-root {
  display: none; }

/* line 42, ../scss/modules/_get-social.scss */
.fb_iframe_widget {
  width: 100% !important; }
  /* line 44, ../scss/modules/_get-social.scss */
  .fb_iframe_widget span {
    width: 100% !important; }
    /* line 46, ../scss/modules/_get-social.scss */
    .fb_iframe_widget span iframe[style] {
      width: 100% !important; }

/* line 53, ../scss/modules/_get-social.scss */
.facebook-container {
  margin: 0 -10px; }

@media screen and (min-width: 48em) {
  /* line 60, ../scss/modules/_get-social.scss */
  .get-social .grid_6 {
    float: left;
    width: 48.333333333333%;
    padding: 50px 0 0 0; }
    /* line 64, ../scss/modules/_get-social.scss */
    .get-social .grid_6:first-child {
      padding: 50px 50px 0 0; }
    /* line 67, ../scss/modules/_get-social.scss */
    .get-social .grid_6:nth-child(2) {
      padding: 50px 0 0 50px;
      position: relative; }
      /* line 70, ../scss/modules/_get-social.scss */
      .get-social .grid_6:nth-child(2):before {
        content: '';
        position: absolute;
        bottom: -10px;
        min-height: 500px;
        top: 10px;
        width: 2px;
        left: 0;
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2RjZGNkYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
        background-size: 100%;
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, #dcdcdc), color-stop(100%, rgba(0, 0, 0, 0)));
        background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), #dcdcdc, rgba(0, 0, 0, 0));
        background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), #dcdcdc, rgba(0, 0, 0, 0));
        background-image: linear-gradient(rgba(0, 0, 0, 0), #dcdcdc, rgba(0, 0, 0, 0)); }
  /* line 83, ../scss/modules/_get-social.scss */
  .get-social.columns {
    margin: 0 auto; }
    /* line 85, ../scss/modules/_get-social.scss */
    .get-social.columns .grid_4 {
      padding-top: 30px; }
  /* line 89, ../scss/modules/_get-social.scss */
  .get-social .video {
    width: 31%;
    float: left; }
    /* line 92, ../scss/modules/_get-social.scss */
    .get-social .video:not(:first-child) {
      margin: 15px 0 0 15px; } }
/* line 2, ../scss/modules/_news.scss */
.news.columns {
  text-align: left; }
/* line 5, ../scss/modules/_news.scss */
.news .grid_3 {
  width: 100%;
  float: none; }
/* line 9, ../scss/modules/_news.scss */
.news h3 {
  margin-bottom: .9em; }
/* line 12, ../scss/modules/_news.scss */
.news h4, .news p {
  font: 0.875em "Montserrat", Helvetica, Arial, sans-serif;
  line-height: 1.4em;
  font-weight: bold; }
/* line 17, ../scss/modules/_news.scss */
.news p {
  color: #8d8d8d;
  margin-bottom: 20px; }

@media screen and (min-width: 48em) {
  /* line 25, ../scss/modules/_news.scss */
  .news.columns {
    padding: 0; }
    /* line 27, ../scss/modules/_news.scss */
    .news.columns .grid_3 {
      width: 25%;
      margin: 0;
      padding: 0 15px;
      float: left; }
      /* line 32, ../scss/modules/_news.scss */
      .news.columns .grid_3 + .grid_3 {
        border-left: 1px solid #f6f6f6; } }
/* Sidebar filtering */
/* line 3, ../scss/modules/_filter.scss */
.filter {
  text-align: left; }
  /* line 5, ../scss/modules/_filter.scss */
  .filter h4 {
    color: #00325b;
    text-transform: uppercase;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    margin-bottom: 0.75em; }
  /* line 11, ../scss/modules/_filter.scss */
  .filter ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    /* line 15, ../scss/modules/_filter.scss */
    .filter ul li {
      margin: 7px 0;
      line-height: 1.3;
      font-size: 0.875em; }
      /* line 19, ../scss/modules/_filter.scss */
      .filter ul li a {
        color: #3f3f3f; }
        /* line 21, ../scss/modules/_filter.scss */
        .filter ul li a:before {
          content: '> '; }
      /* line 26, ../scss/modules/_filter.scss */
      .filter ul li.current-filter a {
        color: #9b243e; }
  /* line 33, ../scss/modules/_filter.scss */
  .filter + .filter {
    margin-top: 25px; }

/* Publications */
/* line 3, ../scss/modules/_publications.scss */
.publications-container {
  text-align: left;
  margin-top: 30px;
  width: 100%;
  border-top: 1px solid #F1F1F1; }
  /* line 8, ../scss/modules/_publications.scss */
  .publications-container .entry {
    padding: 10px;
    font-size: 0.875em;
    width: 49%;
    display: inline-block;
    vertical-align: top; }
    /* line 16, ../scss/modules/_publications.scss */
    .publications-container .entry .type p {
      color: #00325b;
      text-transform: uppercase;
      margin: 10px 0 0 0; }
    /* line 23, ../scss/modules/_publications.scss */
    .publications-container .entry .title p {
      line-height: 1.3;
      margin: 0 0 10px 0; }

@media screen and (min-width: 500px) {
  /* line 33, ../scss/modules/_publications.scss */
  .publications-container .entry {
    width: 32%; } }
@media screen and (min-width: 48em) {
  /* line 40, ../scss/modules/_publications.scss */
  .filter-container {
    width: 25%;
    float: left;
    padding-right: 20px; }

  /* line 45, ../scss/modules/_publications.scss */
  .publications-container {
    width: 75%;
    padding-left: 20px;
    float: left;
    background: none;
    margin-top: 0;
    border-top: none;
    border-left: 1px solid #F1F1F1; }
    /* line 53, ../scss/modules/_publications.scss */
    .publications-container .entry {
      width: 24%; } }