@charset "UTF-8";
/*
Theme Name: NoMadd Theme
Theme URI: https://www.pixelspoke.com/
Author: PixelSpoke
Author URI: https://www.pixelspoke.com/
Description: This is a suggested starting point for PixelSpoke projects.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nomadd_theme
Tags:

Pixelspoke Starter Theme is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

*/
/*
 * This file contains all mixins and functions. Ya, it's called
 * 'mixins' but I cheat a little and put functions in here too.
 */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes open_height_toggle {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }

@keyframes open_height_toggle {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.1 Links
6.0 Accessibility
7.0 Alignments
8.0 Clearings
10.0 Content
  10.3 Comments
12.0 Media
  12.1 Captions
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */ }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block; }

ol,
ul {
  list-style: none; }

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0; }

caption,
th,
td {
  font-weight: normal;
  text-align: left; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: ""; }

blockquote,
q {
  quotes: "" ""; }

a:focus {
  outline: thin dotted; }

a:hover,
a:active {
  outline: 0; }

a img {
  border: 0; }

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4; }

p {
  margin-bottom: 1em; }

b,
strong {
  font-weight: 600; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 1.5rem; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  bottom: 1ex; }

sub {
  top: .5ex; }

small {
  font-size: 75%; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul,
ol {
  margin: 0 0 1em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: 600; }

dd {
  margin: 0 1.5em 1.5em; }

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

figure {
  margin: 0; }

table {
  margin: 0 0 1.5em;
  width: 100%; }

th {
  font-weight: bold; }

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */ }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02); }
  button:focus, button:active,
  input[type="button"]:focus,
  input[type="button"]:active,
  input[type="reset"]:focus,
  input[type="reset"]:active,
  input[type="submit"]:focus,
  input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
    -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15); }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */ }

input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  textarea:focus {
    color: #111; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px; }

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%; }

/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: royalblue; }

a:visited {
  color: purple; }

a:hover,
a:focus,
a:active {
  color: midnightblue; }

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  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 */ }

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

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

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto; }

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:after,
.comment-content:after {
  content: "";
  display: table;
  clear: both; }

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.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; }

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

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto; }

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

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

body {
  font-size: 18px;
  min-height: 100%; }

h1 {
  font-weight: 400;
  line-height: 1;
  font-size: 48px;
  font-size: 4.8rem; }

h2 {
  font-weight: 400;
  line-height: 1;
  font-family: "trajan-pro-3", serif;
  font-size: 36px;
  font-size: 3.6rem; }

h3 {
  font-weight: 400;
  line-height: 1;
  font-family: "goudy-old-style", serif;
  font-size: 30px;
  font-size: 3rem; }

h4 {
  font-weight: 400;
  line-height: 1;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25; }

h5 {
  font-weight: 400;
  line-height: 1;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2; }

h6 {
  font-weight: 400;
  line-height: 1;
  font-size: 18px;
  font-size: 1.8rem; }

a:link, a:visited {
  color: #023ba6;
  text-decoration: none; }

a:hover, a:active {
  text-decoration: underline; }

.co-button,
button {
  background: #729dc1;
  background: -webkit-linear-gradient(-90deg, #729dc1, #012364);
  background: -webkit-gradient(linear, left top, left bottom, from(#729dc1), to(#012364));
  background: -webkit-linear-gradient(top, #729dc1, #012364);
  background: -o-linear-gradient(top, #729dc1, #012364);
  background: linear-gradient(180deg, #729dc1, #012364);
  /*background-color: $c-darkBlue;*/
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 3px;
  border-radius: 0.3rem;
  color: #FFFFFF;
  display: inline-block;
  font-family: "trajan-pro-3", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding-top: 0.5em;
  padding-right: 1.5em;
  padding-bottom: 0.65em;
  padding-left: 1.5em;
  text-align: center;
  /*text-transform: uppercase;*/
  text-shadow: none;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease; }
  .co-button:hover, .co-button:active, .co-button:focus,
  button:hover,
  button:active,
  button:focus {
    background: #6091b9;
    background: -webkit-linear-gradient(-90deg, #6091b9, #011a4b);
    background: -webkit-gradient(linear, left top, left bottom, from(#6091b9), to(#011a4b));
    background: -webkit-linear-gradient(top, #6091b9, #011a4b);
    background: -o-linear-gradient(top, #6091b9, #011a4b);
    background: linear-gradient(180deg, #6091b9, #011a4b);
    background-color: #729dc1;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none; }
    .co-button:hover:link, .co-button:hover:visited, .co-button:active:link, .co-button:active:visited, .co-button:focus:link, .co-button:focus:visited,
    button:hover:link,
    button:hover:visited,
    button:active:link,
    button:active:visited,
    button:focus:link,
    button:focus:visited {
      background-color: #729dc1;
      color: #FFFFFF;
      text-decoration: none; }
  .co-button:link, .co-button:visited,
  button:link,
  button:visited {
    color: #FFFFFF; }
  .co-button:focus,
  button:focus {
    -webkit-box-shadow: #709ca8 0 0 0.5em;
            box-shadow: #709ca8 0 0 0.5em;
    outline: none; }

.gform_wrapper li.gfield fieldset legend.gfield_label {
  font-weight: 700; }

.gform_wrapper .gform_body li.field_sublabel_below .ginput_complex {
  margin-top: 0 !important; }

/*
 * Layout
 *
 * This file contains all of the styles relate to layout.
 * All layout should be included in an additional class
 * on each element. Style and layout should be added
 * to elements with different classes.
 */
.co-row {
  margin-right: auto;
  margin-left: auto;
  max-width: 65em;
  padding-right: 30px;
  padding-left: 30px;
  width: 100%; }
  .co-row:after {
    content: "";
    display: table;
    clear: both; }
  .co-row__margin {
    margin-top: 50px;
    margin-bottom: 50px; }
  .co-row__margin_above {
    margin-top: 50px; }
  .co-row__margin_below {
    margin-bottom: 50px; }
  .co-row__narrow {
    max-width: 730px; }

@media (min-width: 55em) {
  .l-large--two_thirds {
    width: 65.625%;
    float: left;
    margin-left: 3.125%; } }

.no-mediaqueries .l-large--two_thirds {
  width: 65.625%;
  float: left;
  margin-left: 3.125%; }

@media (min-width: 55em) {
  .l-large--one_third {
    width: 31.25%;
    float: left;
    margin-left: 3.125%; } }

.no-mediaqueries .l-large--one_third {
  width: 31.25%;
  float: left;
  margin-left: 3.125%; }

@media (min-width: 55em) {
  .l-large--12_12, .l-large--full {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; } }

.no-mediaqueries .l-large--12_12, .no-mediaqueries .l-large--full {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }

@media (min-width: 55em) {
  .l-large--11_12 {
    width: 91.4414414414%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--11_12 {
  width: 91.4414414414%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--10_12 {
    width: 82.8828828829%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--10_12 {
  width: 82.8828828829%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--9_12 {
    width: 74.3243243243%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--9_12 {
  width: 74.3243243243%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--8_12 {
    width: 65.7657657658%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--8_12 {
  width: 65.7657657658%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--7_12 {
    width: 57.2072072072%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--7_12 {
  width: 57.2072072072%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--6_12, .l-large--half {
    width: 48.6486486486%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--6_12, .no-mediaqueries .l-large--half {
  width: 48.6486486486%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--5_12 {
    width: 40.0900900901%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--5_12 {
  width: 40.0900900901%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--4_12 {
    width: 31.5315315315%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--4_12 {
  width: 31.5315315315%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--3_12 {
    width: 22.972972973%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--3_12 {
  width: 22.972972973%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--2_12 {
    width: 14.4144144144%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--2_12 {
  width: 14.4144144144%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--1_12 {
    width: 5.8558558559%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .l-large--1_12 {
  width: 5.8558558559%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--5_9 {
    width: 53.9393939394%;
    float: left;
    margin-left: 3.6363636364%; } }

.no-mediaqueries .l-large--5_9 {
  width: 53.9393939394%;
  float: left;
  margin-left: 3.6363636364%; }

@media (min-width: 55em) {
  .l-large--4-5_9 {
    width: 48.1818181818%;
    float: left;
    margin-left: 3.6363636364%; } }

.no-mediaqueries .l-large--4-5_9 {
  width: 48.1818181818%;
  float: left;
  margin-left: 3.6363636364%; }

@media (min-width: 55em) {
  .l-large--4_9 {
    width: 42.4242424242%;
    float: left;
    margin-left: 3.6363636364%; } }

.no-mediaqueries .l-large--4_9 {
  width: 42.4242424242%;
  float: left;
  margin-left: 3.6363636364%; }

@media (min-width: 55em) {
  .l-large--3_9 {
    width: 30.9090909091%;
    float: left;
    margin-left: 3.6363636364%; } }

.no-mediaqueries .l-large--3_9 {
  width: 30.9090909091%;
  float: left;
  margin-left: 3.6363636364%; }

@media (min-width: 55em) {
  .l-large--2_8 {
    width: 21.9178082192%;
    float: left;
    margin-left: 4.1095890411%; } }

.no-mediaqueries .l-large--2_8 {
  width: 21.9178082192%;
  float: left;
  margin-left: 4.1095890411%; }

@media (min-width: 55em) {
  .l-large--6_8 {
    width: 73.9726027397%;
    float: left;
    margin-left: 4.1095890411%; } }

.no-mediaqueries .l-large--6_8 {
  width: 73.9726027397%;
  float: left;
  margin-left: 4.1095890411%; }

@media (min-width: 55em) {
  .l-large--4_8 {
    width: 47.9452054795%;
    float: left;
    margin-left: 4.1095890411%; } }

.no-mediaqueries .l-large--4_8 {
  width: 47.9452054795%;
  float: left;
  margin-left: 4.1095890411%; }

@media (min-width: 55em) {
  .l-large--3_6 {
    width: 47.2222222222%;
    float: left;
    margin-left: 5.5555555556%; } }

.no-mediaqueries .l-large--3_6 {
  width: 47.2222222222%;
  float: left;
  margin-left: 5.5555555556%; }

@media (min-width: 55em) {
  .l-large--2-5_5 {
    width: 46.6292134831%;
    float: left;
    margin-left: 6.7415730337%; } }

.no-mediaqueries .l-large--2-5_5 {
  width: 46.6292134831%;
  float: left;
  margin-left: 6.7415730337%; }

@media (min-width: 55em) {
  .l-large--rtl--9_12 {
    width: 74.3243243243%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--9_12 {
  width: 74.3243243243%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--8_12 {
    width: 65.7657657658%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--8_12 {
  width: 65.7657657658%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--7_12 {
    width: 57.2072072072%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--7_12 {
  width: 57.2072072072%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--6_12 {
    width: 48.6486486486%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--6_12 {
  width: 48.6486486486%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--5_12 {
    width: 40.0900900901%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--5_12 {
  width: 40.0900900901%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--4_12 {
    width: 31.5315315315%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--4_12 {
  width: 31.5315315315%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--3_12 {
    width: 22.972972973%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--3_12 {
  width: 22.972972973%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--2_12 {
    width: 14.4144144144%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--2_12 {
  width: 14.4144144144%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--1_12 {
    width: 5.8558558559%;
    float: right;
    margin-right: 2.7027027027%; } }

.no-mediaqueries .l-large--rtl--1_12 {
  width: 5.8558558559%;
  float: right;
  margin-right: 2.7027027027%; }

@media (min-width: 55em) {
  .l-large--rtl--5_9 {
    width: 53.9393939394%;
    float: right;
    margin-right: 3.6363636364%; } }

.no-mediaqueries .l-large--rtl--5_9 {
  width: 53.9393939394%;
  float: right;
  margin-right: 3.6363636364%; }

@media (min-width: 55em) {
  .l-large__first {
    clear: left;
    margin-left: 0; }
  .l-large--rtl__first {
    clear: right;
    margin-right: 0; } }

.no-mediaqueries .l-large__first {
  clear: left;
  margin-left: 0; }

.no-mediaqueries .l-large--rtl__first {
  clear: right;
  margin-right: 0; }

@media (min-width: 55em) {
  .l-large--push_2_12 {
    margin-left: 17.1171171171%; } }

.no-mediaqueries .l-large--push_2_12 {
  margin-left: 17.1171171171%; }

@media (min-width: 55em) {
  .l-large--push_4_12 {
    margin-left: 34.2342342342%; } }

.no-mediaqueries .l-large--push_4_12 {
  margin-left: 34.2342342342%; }

@media (min-width: 55em) {
  .logged-in .l-large__logged_in--6_12 {
    width: 48.6486486486%;
    float: left;
    margin-left: 2.7027027027%; } }

.no-mediaqueries .logged-in .l-large__logged_in--6_12 {
  width: 48.6486486486%;
  float: left;
  margin-left: 2.7027027027%; }

@media (min-width: 37.5em) and (max-width: 55em) {
  .l-medium--8_8, .l-medium--full {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .l-medium--two_thirds {
    width: 64.8630136986%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--one_third {
    width: 30.5849315068%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--7_8 {
    width: 86.9863013699%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--6_8 {
    width: 73.9726027397%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--5_8 {
    width: 60.9589041096%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--half, .l-medium--4_8 {
    width: 47.9452054795%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--3_8 {
    width: 34.9315068493%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--2_8 {
    width: 21.9178082192%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--1_8 {
    width: 8.904109589%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--5_6 {
    width: 82.4074074074%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--4_6 {
    width: 64.8148148148%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--3_6 {
    width: 47.2222222222%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--2_6 {
    width: 29.6296296296%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--1_6 {
    width: 12.037037037%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--rtl {
    float: right; }
    .l-medium--rtl--6_8 {
      width: 73.9726027397%;
      float: right;
      margin-right: 4.1095890411%; }
    .l-medium--rtl--5_8 {
      width: 60.9589041096%;
      float: right;
      margin-right: 4.1095890411%; }
    .l-medium--rtl--3_8 {
      width: 34.9315068493%;
      float: right;
      margin-right: 4.1095890411%; }
    .l-medium--rtl--2_8 {
      width: 21.9178082192%;
      float: right;
      margin-right: 4.1095890411%; }
  .l-medium__first {
    clear: left;
    margin-left: 0; }
  .l-medium--rtl__first {
    clear: right;
    margin-right: 0; }
  .l-medium--push_one_third {
    margin-left: 34.6945205479%; }
  .l-medium--push_one_sixth {
    margin-left: 17.347260274%; } }

@media (min-width: 0em) and (max-width: 37.5em) {
  .l-small--full {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .l-small--4_5 {
    width: 78.6516853933%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--3_5 {
    width: 57.3033707865%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--2-5_5, .l-small--half {
    width: 46.6292134831%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--2_5 {
    width: 35.9550561798%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--1_5 {
    width: 35.9550561798%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small__first {
    clear: left;
    margin-left: 0; }
  .l-small--rtl__first {
    clear: right;
    margin-right: 0; } }

/*
 * Components
 *
 * This file contains all of the components that will be reused
 * on many layouts for many different purposes. Selectors
 * that apply to individual elements should not be in _unique.scss
 */
body {
  background-color: #e3e4e7;
  font-family: "goudy-old-style", serif; }
  body.has-background {
    background-repeat: no-repeat;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; }

.site_content {
  position: relative;
  padding-bottom: 100px; }
  .site_content--social {
    display: none;
    position: absolute; }
    @media (min-width: 37.5em) and (max-width: 55em) {
      .site_content--social {
        display: inline-block;
        left: 50%;
        top: -25px;
        margin-left: -125px; } }
    @media (min-width: 55em) {
      .site_content--social {
        display: inline-block;
        right: 30px;
        top: -50px; } }
    .no-mediaqueries .site_content--social {
      display: inline-block;
      right: 30px;
      top: -50px; }

.page-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  max-width: 970px;
  margin-right: auto;
  margin-left: auto; }
  .page-container:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 55em) {
    .page-container {
      max-width: 65em; } }
  .no-mediaqueries .page-container {
    max-width: 65em; }

.angleBackground {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: skewY(-3deg);
      -ms-transform: skewY(-3deg);
          transform: skewY(-3deg);
  pointer-events: none; }
  .angleBackground .angle {
    position: absolute;
    top: auto;
    left: 0;
    right: 0; }

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

@media (min-width: 0em) and (max-width: 37.5em) {
  .social {
    text-align: center; } }

.social_title {
  float: left;
  font-family: "trajan-pro-3", serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #2b2b2b;
  margin-right: 15px; }
  .site_footer .social_title {
    color: #FFFFFF; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .social_title {
      float: none; } }

.social_list {
  float: left;
  list-style-type: none;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0; }
  .social_list--item {
    display: inline-block;
    margin-right: 15px; }
    .social_list--item:last-child {
      margin-right: 0; }
    .site_footer .social_list--item path {
      fill: #FFFFFF; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .social_list {
      float: none; } }

.co-quick_links {
  text-align: left;
  margin-bottom: 15px; }
  .co-quick_links--link:visited, .co-quick_links--link:link {
    font-size: 30px;
    font-size: 3rem;
    font-family: "goudy-old-style", serif;
    color: #FFFFFF; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .co-quick_links {
      text-align: center; }
      .co-quick_links--link:visited, .co-quick_links--link:link {
        font-size: 24px;
        font-size: 2.4rem; } }

.page-title {
  font-family: "trajan-pro-3", serif; }

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

.co-blog--post {
  margin-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #729dc1; }
  .co-blog--post:last-of-type {
    border-bottom: 0; }
  .co-blog--post-thumbnail {
    min-height: 200px;
    background-color: #2b2b2b;
    overflow: hidden; }
    @media (min-width: 55em) {
      .co-blog--post-thumbnail {
        height: 367px; }
        .co-blog--post-thumbnail img {
          width: 100%;
          height: auto; } }
    .no-mediaqueries .co-blog--post-thumbnail {
      height: 367px; }
      .no-mediaqueries .co-blog--post-thumbnail img {
        width: 100%;
        height: auto; }
  .co-blog--post-title {
    margin-bottom: 15px; }
  .co-blog--post-content {
    padding: 15px 0;
    word-wrap: break-word; }

.gform_wrapper .left_label .gfieldset .gfield_label {
  margin: 0 !important; }

.gform_confirmation_message {
  margin: 50px 0;
  padding: 15px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }

.post-navigation {
  margin-top: 50px;
  padding-top: 15px;
  border-top: 1px solid #729dc1; }
  .post-navigation:after {
    content: "";
    display: table;
    clear: both; }
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    width: 100%; }
    @media (min-width: 37.5em) {
      .post-navigation .nav-previous,
      .post-navigation .nav-next {
        width: 50%; } }
    .no-mediaqueries .post-navigation .nav-previous, .no-mediaqueries
    .post-navigation .nav-next {
      width: 50%; }
  .post-navigation .nav-previous {
    float: left; }
  .post-navigation .nav-next {
    float: right;
    text-align: right; }

.co-gallery {
  position: relative; }
  .co-gallery:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .single-issue .co-gallery {
      display: none; } }
  .co-gallery--header {
    font-family: "trajan-pro-3", serif;
    margin-bottom: 30px; }
  .co-gallery--grid {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
    .co-gallery--grid .co-issues--item {
      width: calc(100% / 4);
      padding: 10px; }
  @supports (display: grid) {
    .co-gallery--grid {
      display: -ms-grid;
      display: grid;
      grid-gap: 4px;
      grid-template-columns: repeat(1, auto); }
      @media (min-width: 37.5em) and (max-width: 55em) {
        .co-gallery--grid {
          grid-template-columns: repeat(2, 1fr); } }
      @media (min-width: 55em) {
        .co-gallery--grid {
          grid-template-columns: repeat(4, 1fr); } }
      .no-mediaqueries .co-gallery--grid {
        grid-template-columns: repeat(4, 1fr); } }

.co-entry--intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px; }
  @media (min-width: 37.5em) {
    .co-entry--intro {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .no-mediaqueries .co-entry--intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
  .co-entry--intro_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 15px; }
    .co-entry--intro_img:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 37.5em) {
      .co-entry--intro_img {
        -webkit-box-flex: 3;
        -webkit-flex: 3;
            -ms-flex: 3;
                flex: 3;
        margin-bottom: 0; } }
    .no-mediaqueries .co-entry--intro_img {
      -webkit-box-flex: 3;
      -webkit-flex: 3;
          -ms-flex: 3;
              flex: 3;
      margin-bottom: 0; }
  .co-entry--intro_content {
    margin-left: 0; }
    .co-entry--intro_content h4 {
      margin-bottom: 1em; }
    @media (min-width: 37.5em) {
      .co-entry--intro_content {
        -webkit-box-flex: 5;
        -webkit-flex: 5;
            -ms-flex: 5;
                flex: 5;
        margin-left: 4.25rem; } }
    .no-mediaqueries .co-entry--intro_content {
      -webkit-box-flex: 5;
      -webkit-flex: 5;
          -ms-flex: 5;
              flex: 5;
      margin-left: 4.25rem; }

.tag-links {
  display: block;
  clear: left;
  margin-top: 5px; }
  .tag-links a:link,
  .tag-links a:visited {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 4px;
    margin-right: 4px;
    padding: 2px 10px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4); }
    @media (min-width: 0em) and (max-width: 37.5em) {
      .tag-links a:link,
      .tag-links a:visited {
        display: block; } }

.co-announcement {
  position: relative;
  padding: 0 25px 50px;
  text-align: center; }
  .co-announcement--title {
    margin-bottom: 15px; }
    .co-announcement--title h4 {
      font-family: "trajan-pro-3", serif;
      line-height: 1.25em; }
  .co-announcement--content {
    margin-bottom: 10px; }
    .co-announcement--content h5 {
      font-weight: bold; }
  .co-announcement:after {
    content: '';
    width: 18px;
    height: 18px;
    background: url(images/glyph-divider.png) top center no-repeat;
    position: absolute;
    bottom: 18px;
    left: 50%;
    margin-left: -9px; }

.pagination {
  margin-top: 25px;
  position: relative; }
  .pagination:after {
    content: "";
    display: table;
    clear: both; }
  .pagination a {
    background: #729dc1;
    background: -webkit-linear-gradient(-90deg, #729dc1, #012364);
    background: -webkit-gradient(linear, left top, left bottom, from(#729dc1), to(#012364));
    background: -webkit-linear-gradient(top, #729dc1, #012364);
    background: -o-linear-gradient(top, #729dc1, #012364);
    background: linear-gradient(180deg, #729dc1, #012364);
    /*background-color: $c-darkBlue;*/
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    border-radius: 3px;
    border-radius: 0.3rem;
    color: #FFFFFF;
    display: inline-block;
    font-family: "trajan-pro-3", serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 0.5em;
    padding-right: 1.5em;
    padding-bottom: 0.65em;
    padding-left: 1.5em;
    text-align: center;
    /*text-transform: uppercase;*/
    text-shadow: none;
    -webkit-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
    margin-right: 4px;
    padding-top: 5px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 8px; }
    .pagination a:hover, .pagination a:active, .pagination a:focus {
      background: #6091b9;
      background: -webkit-linear-gradient(-90deg, #6091b9, #011a4b);
      background: -webkit-gradient(linear, left top, left bottom, from(#6091b9), to(#011a4b));
      background: -webkit-linear-gradient(top, #6091b9, #011a4b);
      background: -o-linear-gradient(top, #6091b9, #011a4b);
      background: linear-gradient(180deg, #6091b9, #011a4b);
      background-color: #729dc1;
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none; }
      .pagination a:hover:link, .pagination a:hover:visited, .pagination a:active:link, .pagination a:active:visited, .pagination a:focus:link, .pagination a:focus:visited {
        background-color: #729dc1;
        color: #FFFFFF;
        text-decoration: none; }
    .pagination a:link, .pagination a:visited {
      color: #FFFFFF; }
    .pagination a:focus {
      -webkit-box-shadow: #709ca8 0 0 0.5em;
              box-shadow: #709ca8 0 0 0.5em;
      outline: none; }
  .pagination span {
    background: rgba(255, 255, 255, 0.4);
    margin-right: 4px;
    padding-top: 5px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 8px; }
    .pagination span.current {
      color: #023ba6; }
    .pagination span.page-data {
      margin-right: 10px; }
  .pagination span, .pagination a {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1; }

.co-character--list_group {
  margin-bottom: 30px; }
  .co-character--list_group:after {
    content: "";
    display: table;
    clear: both; }
  .co-character--list_group:last-of-type {
    margin-bottom: 0; }

.co-character--list_title {
  font-size: 3rem; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .co-character--list_title {
      font-size: 2.2rem; } }

.co-feat_issue {
  margin-bottom: 25px; }
  @media (min-width: 55em) {
    .co-feat_issue {
      display: block; } }
  .no-mediaqueries .co-feat_issue {
    display: block; }
  .co-feat_issue--title {
    text-align: center;
    margin-bottom: 25px; }
    .co-feat_issue--title h2 {
      margin-bottom: 15px; }
    .co-feat_issue--title h4 {
      font-family: "goudy-old-style", serif; }
  .co-feat_issue--cta {
    text-align: center; }
  .co-feat_issue--cta_button {
    background: #729dc1;
    background: -webkit-linear-gradient(-90deg, #729dc1, #012364);
    background: -webkit-gradient(linear, left top, left bottom, from(#729dc1), to(#012364));
    background: -webkit-linear-gradient(top, #729dc1, #012364);
    background: -o-linear-gradient(top, #729dc1, #012364);
    background: linear-gradient(180deg, #729dc1, #012364);
    /*background-color: $c-darkBlue;*/
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    border-radius: 3px;
    border-radius: 0.3rem;
    color: #FFFFFF;
    display: inline-block;
    font-family: "trajan-pro-3", serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 0.5em;
    padding-right: 1.5em;
    padding-bottom: 0.65em;
    padding-left: 1.5em;
    text-align: center;
    /*text-transform: uppercase;*/
    text-shadow: none;
    -webkit-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease; }
    .co-feat_issue--cta_button:hover, .co-feat_issue--cta_button:active, .co-feat_issue--cta_button:focus {
      background: #6091b9;
      background: -webkit-linear-gradient(-90deg, #6091b9, #011a4b);
      background: -webkit-gradient(linear, left top, left bottom, from(#6091b9), to(#011a4b));
      background: -webkit-linear-gradient(top, #6091b9, #011a4b);
      background: -o-linear-gradient(top, #6091b9, #011a4b);
      background: linear-gradient(180deg, #6091b9, #011a4b);
      background-color: #729dc1;
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none; }
      .co-feat_issue--cta_button:hover:link, .co-feat_issue--cta_button:hover:visited, .co-feat_issue--cta_button:active:link, .co-feat_issue--cta_button:active:visited, .co-feat_issue--cta_button:focus:link, .co-feat_issue--cta_button:focus:visited {
        background-color: #729dc1;
        color: #FFFFFF;
        text-decoration: none; }
    .co-feat_issue--cta_button:link, .co-feat_issue--cta_button:visited {
      color: #FFFFFF; }
    .co-feat_issue--cta_button:focus {
      -webkit-box-shadow: #709ca8 0 0 0.5em;
              box-shadow: #709ca8 0 0 0.5em;
      outline: none; }
    @media (min-width: 0em) and (max-width: 37.5em) {
      .co-feat_issue--cta_button {
        font-size: 13px;
        font-size: 1.3rem; } }
  .co-feat_issue--gallery {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
    .co-feat_issue--gallery:after {
      content: "";
      display: table;
      clear: both; }
    .co-feat_issue--gallery .co-feat_issue--img {
      width: calc(100% / 3);
      padding: 15px; }
  @supports (display: grid) {
    .co-feat_issue--gallery {
      display: -ms-grid;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px; }
      .co-feat_issue--gallery:after {
        content: "";
        display: table;
        clear: both; }
      .co-feat_issue--gallery .co-feat_issue--img {
        width: auto;
        padding: 0; }
      @media (min-width: 37.5em) {
        .co-feat_issue--gallery {
          grid-template-columns: repeat(3, 1fr); } }
      .no-mediaqueries .co-feat_issue--gallery {
        grid-template-columns: repeat(3, 1fr); } }

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

@media (min-width: 55em) {
  .co-issues {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #729dc1; } }

.no-mediaqueries .co-issues {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #729dc1; }

.co-issues--title {
  text-align: center;
  margin-bottom: 30px; }

.co-issues--group {
  border-bottom: 1px solid #2b2b2b;
  margin-bottom: 25px;
  padding-bottom: 25px; }
  .co-issues--group:last-of-type {
    margin-bottom: 0;
    border-bottom: 0; }
  .co-issues--group:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 55em) {
    .co-issues--group {
      margin-bottom: 50px;
      padding-bottom: 50px; } }
  .no-mediaqueries .co-issues--group {
    margin-bottom: 50px;
    padding-bottom: 50px; }

.co-issues--group_title {
  font-size: 2.4rem;
  margin-bottom: 25px; }

.co-issues--list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }
  .co-issues--list:after {
    content: "";
    display: table;
    clear: both; }
  .co-issues--list .co-issues--item {
    width: calc(100% / 3);
    padding: 15px; }

@supports (display: grid) {
  .co-issues--list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px; }
    .co-issues--list:after {
      content: "";
      display: table;
      clear: both; }
    .co-issues--list .co-issues--item {
      width: auto;
      padding: 0; }
    @media (min-width: 37.5em) and (max-width: 55em) {
      .co-issues--list {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 55em) {
      .co-issues--list {
        grid-template-columns: repeat(3, 1fr); } }
    .no-mediaqueries .co-issues--list {
      grid-template-columns: repeat(3, 1fr); }
    @media (min-width: 37.5em) and (max-width: 55em) {
      .co-issues--list__page {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 55em) {
      .co-issues--list__page {
        grid-template-columns: repeat(3, 1fr); } }
    .no-mediaqueries .co-issues--list__page {
      grid-template-columns: repeat(3, 1fr); } }

.co-issues--item {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .co-issues--item:after {
    content: "";
    display: table;
    clear: both; }
  .co-issues--item_top {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .co-issues--item_bottom {
    margin-top: auto; }
  .co-issues--item__title {
    margin-bottom: 20px; }
    .co-issues--item__title h4 {
      font-size: 20px;
      font-size: 2rem;
      font-family: "trajan-pro-3", serif;
      line-height: 1.25em; }
      @media (min-width: 0em) and (max-width: 37.5em) {
        .co-issues--item__title h4 {
          font-size: 16px;
          font-size: 1.6rem; } }
  .co-issues--item__media {
    position: relative;
    margin-bottom: 20px; }
    .co-issues--item__media img {
      display: block; }
    .co-issues--item__media .soon {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.45);
      color: #FFFFFF;
      text-transform: uppercase;
      font-size: 1em;
      letter-spacing: 1px; }
  .co-issues--item__link {
    background: #729dc1;
    background: -webkit-linear-gradient(-90deg, #729dc1, #012364);
    background: -webkit-gradient(linear, left top, left bottom, from(#729dc1), to(#012364));
    background: -webkit-linear-gradient(top, #729dc1, #012364);
    background: -o-linear-gradient(top, #729dc1, #012364);
    background: linear-gradient(180deg, #729dc1, #012364);
    /*background-color: $c-darkBlue;*/
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    border-radius: 3px;
    border-radius: 0.3rem;
    color: #FFFFFF;
    display: inline-block;
    font-family: "trajan-pro-3", serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 0.5em;
    padding-right: 1.5em;
    padding-bottom: 0.65em;
    padding-left: 1.5em;
    text-align: center;
    /*text-transform: uppercase;*/
    text-shadow: none;
    -webkit-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease; }
    .co-issues--item__link:hover, .co-issues--item__link:active, .co-issues--item__link:focus {
      background: #6091b9;
      background: -webkit-linear-gradient(-90deg, #6091b9, #011a4b);
      background: -webkit-gradient(linear, left top, left bottom, from(#6091b9), to(#011a4b));
      background: -webkit-linear-gradient(top, #6091b9, #011a4b);
      background: -o-linear-gradient(top, #6091b9, #011a4b);
      background: linear-gradient(180deg, #6091b9, #011a4b);
      background-color: #729dc1;
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none; }
      .co-issues--item__link:hover:link, .co-issues--item__link:hover:visited, .co-issues--item__link:active:link, .co-issues--item__link:active:visited, .co-issues--item__link:focus:link, .co-issues--item__link:focus:visited {
        background-color: #729dc1;
        color: #FFFFFF;
        text-decoration: none; }
    .co-issues--item__link:link, .co-issues--item__link:visited {
      color: #FFFFFF; }
    .co-issues--item__link:focus {
      -webkit-box-shadow: #709ca8 0 0 0.5em;
              box-shadow: #709ca8 0 0 0.5em;
      outline: none; }

.co-issue {
  position: relative; }
  .co-issue:after {
    content: "";
    display: table;
    clear: both; }
  .co-issue--intro {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px; }
    .co-issue--intro_img {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      width: 140.0625rem;
      margin-left: 0; }
      .co-issue--intro_img:after {
        content: "";
        display: table;
        clear: both; }
    .co-issue--intro_content {
      margin-left: 1.125rem; }
      @media (min-width: 55em) {
        .co-issue--intro_content {
          margin-left: 4.25rem; } }
      .no-mediaqueries .co-issue--intro_content {
        margin-left: 4.25rem; }
  .co-issue--ordernow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 50px 0; }
    .co-issue--ordernow:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 0) and (max-width: 55em) {
      .co-issue--ordernow {
        display: none; } }
  .co-issue--details {
    margin-bottom: 30px; }
    .co-issue--details:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 37.5em) and (max-width: 55em) {
      .co-issue--details {
        padding-top: 50px;
        text-align: center; } }
    .co-issue--details_title {
      margin-bottom: 15px;
      font-family: "trajan-pro-3", serif; }
      .co-issue--details_title h4 {
        margin-bottom: 10px; }
    .co-issue--details_price {
      font-family: "goudy-old-style", serif;
      font-size: 1.25em; }
    .co-issue--details_cta {
      margin-bottom: 20px; }
      .co-issue--details_cta:after {
        content: "";
        display: table;
        clear: both; }
      .co-issue--details_cta:last-of-type {
        margin-bottom: 0; }
      .co-issue--ordernow .co-issue--details_cta {
        display: inline-block;
        margin: 0 20px 20px;
        text-align: center; }
    .co-issue--details_cta_price, .co-issue--details_cta_info {
      display: block; }
    .co-issue--details_cta_price {
      font-size: 2.4rem;
      font-weight: 600;
      margin-top: 5px; }
    .co-issue--details_cta_info {
      font-size: 1.8rem; }
    .co-issue--details_link {
      background: #729dc1;
      background: -webkit-linear-gradient(-90deg, #729dc1, #012364);
      background: -webkit-gradient(linear, left top, left bottom, from(#729dc1), to(#012364));
      background: -webkit-linear-gradient(top, #729dc1, #012364);
      background: -o-linear-gradient(top, #729dc1, #012364);
      background: linear-gradient(180deg, #729dc1, #012364);
      /*background-color: $c-darkBlue;*/
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none;
      border-radius: 3px;
      border-radius: 0.3rem;
      color: #FFFFFF;
      display: inline-block;
      font-family: "trajan-pro-3", serif;
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 400;
      letter-spacing: 1px;
      padding-top: 0.5em;
      padding-right: 1.5em;
      padding-bottom: 0.65em;
      padding-left: 1.5em;
      text-align: center;
      /*text-transform: uppercase;*/
      text-shadow: none;
      -webkit-transition: background-color 0.2s ease;
      -o-transition: background-color 0.2s ease;
      transition: background-color 0.2s ease;
      min-width: 22rem;
      margin-bottom: 10px; }
      .co-issue--details_link:hover, .co-issue--details_link:active, .co-issue--details_link:focus {
        background: #6091b9;
        background: -webkit-linear-gradient(-90deg, #6091b9, #011a4b);
        background: -webkit-gradient(linear, left top, left bottom, from(#6091b9), to(#011a4b));
        background: -webkit-linear-gradient(top, #6091b9, #011a4b);
        background: -o-linear-gradient(top, #6091b9, #011a4b);
        background: linear-gradient(180deg, #6091b9, #011a4b);
        background-color: #729dc1;
        -webkit-box-shadow: none;
                box-shadow: none;
        border: none; }
        .co-issue--details_link:hover:link, .co-issue--details_link:hover:visited, .co-issue--details_link:active:link, .co-issue--details_link:active:visited, .co-issue--details_link:focus:link, .co-issue--details_link:focus:visited {
          background-color: #729dc1;
          color: #FFFFFF;
          text-decoration: none; }
      .co-issue--details_link:link, .co-issue--details_link:visited {
        color: #FFFFFF; }
      .co-issue--details_link:focus {
        -webkit-box-shadow: #709ca8 0 0 0.5em;
                box-shadow: #709ca8 0 0 0.5em;
        outline: none; }
      .co-issue--details_link:last-of-type {
        margin-bottom: 0; }
      .co-issue--details_link.no-link {
        pointer-events: none; }
  @media (min-width: 37.5em) and (max-width: 55em) {
    .co-issue--details_links {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .co-issue--details_links:after {
        content: "";
        display: table;
        clear: both; }
      .co-issue--details_links .co-issue--details_cta {
        display: inline-block;
        margin: 0 16.6666666667px;
        text-align: center; } }
  @media (min-width: 55em) {
    .co-issue--sidebar {
      border-left: 1px solid #729dc1;
      padding-left: 25px; } }
  .no-mediaqueries .co-issue--sidebar {
    border-left: 1px solid #729dc1;
    padding-left: 25px; }

.co-gallery_row {
  margin-top: 12.5px; }
  .co-gallery_row:after {
    content: "";
    display: table;
    clear: both; }
  .co-gallery_row--title {
    font-size: 3rem;
    margin-bottom: 30px; }
    @media (min-width: 0em) and (max-width: 37.5em) {
      .co-gallery_row--title {
        font-size: 2.2rem; } }

.co-flex_row {
  margin-top: 50px; }
  .co-flex_row:focus {
    outline: none; }
  .co-flex_row__first {
    margin-top: 0;
    padding-top: 50px; }
  .co-flex_row__light_gray, .co-flex_row__gray, .co-flex_row__light_blue, .co-flex_row__blue, .co-flex_row__black, .co-flex_row__transparent {
    padding-top: 50px;
    padding-bottom: 50px; }
  .co-flex_row__transparent {
    padding-top: 0; }
  .co-flex_row__black, .co-flex_row__blue {
    color: #FFFFFF; }
    .co-flex_row__black a:link,
    .co-flex_row__black a:visited, .co-flex_row__blue a:link,
    .co-flex_row__blue a:visited {
      color: #FFFFFF; }
  .co-flex_row__light_gray, .co-flex_row__gray, .co-flex_row__light_blue, .co-flex_row__transparent {
    color: #2b2b2b; }
    .main_accent_color__blue .co-flex_row__light_gray h1, .main_accent_color__blue .co-flex_row__light_gray h2, .main_accent_color__blue .co-flex_row__light_gray h3, .main_accent_color__blue .co-flex_row__gray h1, .main_accent_color__blue .co-flex_row__gray h2, .main_accent_color__blue .co-flex_row__gray h3, .main_accent_color__blue .co-flex_row__light_blue h1, .main_accent_color__blue .co-flex_row__light_blue h2, .main_accent_color__blue .co-flex_row__light_blue h3, .main_accent_color__blue .co-flex_row__transparent h1, .main_accent_color__blue .co-flex_row__transparent h2, .main_accent_color__blue .co-flex_row__transparent h3 {
      color: #012364; }
    .main_accent_color__black .co-flex_row__light_gray h1, .main_accent_color__black .co-flex_row__light_gray h2, .main_accent_color__black .co-flex_row__light_gray h3, .main_accent_color__black .co-flex_row__gray h1, .main_accent_color__black .co-flex_row__gray h2, .main_accent_color__black .co-flex_row__gray h3, .main_accent_color__black .co-flex_row__light_blue h1, .main_accent_color__black .co-flex_row__light_blue h2, .main_accent_color__black .co-flex_row__light_blue h3, .main_accent_color__black .co-flex_row__transparent h1, .main_accent_color__black .co-flex_row__transparent h2, .main_accent_color__black .co-flex_row__transparent h3 {
      color: #2b2b2b; }
    .main_accent_color__gray .co-flex_row__light_gray h1, .main_accent_color__gray .co-flex_row__light_gray h2, .main_accent_color__gray .co-flex_row__light_gray h3, .main_accent_color__gray .co-flex_row__gray h1, .main_accent_color__gray .co-flex_row__gray h2, .main_accent_color__gray .co-flex_row__gray h3, .main_accent_color__gray .co-flex_row__light_blue h1, .main_accent_color__gray .co-flex_row__light_blue h2, .main_accent_color__gray .co-flex_row__light_blue h3, .main_accent_color__gray .co-flex_row__transparent h1, .main_accent_color__gray .co-flex_row__transparent h2, .main_accent_color__gray .co-flex_row__transparent h3 {
      color: #626366; }
  .co-flex_row__light_gray {
    background-color: #e3e4e7; }
  .co-flex_row__gray {
    background-color: #626366; }
  .co-flex_row__black {
    background-color: #000000; }
  .co-flex_row__light_blue {
    background-color: #729dc1; }
  .co-flex_row__dark_blue {
    background-color: #012364; }
  .co-flex_row__blue {
    background-color: #023ba6; }
  .co-flex_row__second_color_row {
    padding-top: 0;
    margin-top: 0; }
  .co-flex_row__trailing_color_row {
    margin-top: 0; }
  .co-flex_row__hr_top {
    padding-top: 50px; }
  .co-flex_row__next_hr_top {
    padding-bottom: 50px; }
  .co-flex_row__hr_bottom {
    padding-bottom: 50px; }
  .co-flex_row__prev_hr_bottom {
    margin-top: 0;
    padding-top: 50px; }
  .co-flex_row--row {
    position: relative; }
  .co-flex_row--hr {
    border-top: 1px solid #626366;
    margin: 0;
    left: 30px;
    position: absolute;
    right: 30px; }
    .co-flex_row--hr__top {
      top: -50px; }
    .co-flex_row--hr__bottom {
      bottom: -50px; }

.co-full_width_cta h2 {
  font-weight: 400;
  line-height: 1;
  font-family: "goudy-old-style", serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 400;
  text-align: center; }
  .co-flex_row__purple .co-full_width_cta h2,
  .co-flex_row__blue .co-full_width_cta h2,
  .co-flex_row__teal .co-full_width_cta h2 {
    color: #FFFFFF; }

.co-full_width_cta--button {
  margin-top: 25px;
  text-align: center; }

.co-full_width_cta--cta_button {
  background: #729dc1;
  background: -webkit-linear-gradient(-90deg, #729dc1, #012364);
  background: -webkit-gradient(linear, left top, left bottom, from(#729dc1), to(#012364));
  background: -webkit-linear-gradient(top, #729dc1, #012364);
  background: -o-linear-gradient(top, #729dc1, #012364);
  background: linear-gradient(180deg, #729dc1, #012364);
  /*background-color: $c-darkBlue;*/
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 3px;
  border-radius: 0.3rem;
  color: #FFFFFF;
  display: inline-block;
  font-family: "trajan-pro-3", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding-top: 0.5em;
  padding-right: 1.5em;
  padding-bottom: 0.65em;
  padding-left: 1.5em;
  text-align: center;
  /*text-transform: uppercase;*/
  text-shadow: none;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  font-size: 24px;
  font-size: 2.4rem;
  margin-left: 25px;
  position: relative; }
  .co-full_width_cta--cta_button:hover, .co-full_width_cta--cta_button:active, .co-full_width_cta--cta_button:focus {
    background: #6091b9;
    background: -webkit-linear-gradient(-90deg, #6091b9, #011a4b);
    background: -webkit-gradient(linear, left top, left bottom, from(#6091b9), to(#011a4b));
    background: -webkit-linear-gradient(top, #6091b9, #011a4b);
    background: -o-linear-gradient(top, #6091b9, #011a4b);
    background: linear-gradient(180deg, #6091b9, #011a4b);
    background-color: #729dc1;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none; }
    .co-full_width_cta--cta_button:hover:link, .co-full_width_cta--cta_button:hover:visited, .co-full_width_cta--cta_button:active:link, .co-full_width_cta--cta_button:active:visited, .co-full_width_cta--cta_button:focus:link, .co-full_width_cta--cta_button:focus:visited {
      background-color: #729dc1;
      color: #FFFFFF;
      text-decoration: none; }
  .co-full_width_cta--cta_button:link, .co-full_width_cta--cta_button:visited {
    color: #FFFFFF; }
  .co-full_width_cta--cta_button:focus {
    -webkit-box-shadow: #709ca8 0 0 0.5em;
            box-shadow: #709ca8 0 0 0.5em;
    outline: none; }
  .co-full_width_cta--cta_button:link, .co-full_width_cta--cta_button:visited {
    color: #FFFFFF; }
  .co-full_width_cta--cta_button:first-child {
    margin-left: 0; }

.co-testis {
  position: relative;
  padding: 10px;
  background-color: #000000;
  margin-bottom: 25px; }
  .co-testis--inner {
    padding: 30px 20px 0;
    background-color: #FFFFFF;
    background: -webkit-linear-gradient(180deg, #d7d7d7, white);
    background: -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(white));
    background: -webkit-linear-gradient(top, #d7d7d7, white);
    background: -o-linear-gradient(top, #d7d7d7, white);
    background: linear-gradient(180deg, #d7d7d7, white); }

.co-testi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 50px;
  position: relative; }
  .co-testi:after {
    content: '';
    width: 18px;
    height: 18px;
    background: url(images/glyph-divider.png) top center no-repeat;
    position: absolute;
    bottom: 18px;
    left: 50%;
    margin-left: -9px; }
  .co-testi:last-of-type:after {
    display: none; }
  .co-testi--attr {
    text-align: right;
    font-style: normal; }
  .co-testi--content, .co-testi--attr {
    font-size: 20px;
    font-size: 2rem;
    font-family: "goudy-old-style", serif;
    font-style: italic; }
    @media (min-width: 0) and (max-width: 55em) {
      .co-testi--content, .co-testi--attr {
        text-align: center; } }

/*
 * Layout
 *
 * This file contains all of the styles that only appear once in the markup.
 * The site-wide header and footer are good examples. Maybe there is
 * a page or two that have truely unique layouts. That stuff goes here.
 */
.page-wrapper,
.single-wrapper {
  padding: 40px;
  margin-top: 60px;
  position: relative;
  background-color: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #d7d7d7, white);
  background: -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(white));
  background: -webkit-linear-gradient(top, #d7d7d7, white);
  background: -o-linear-gradient(top, #d7d7d7, white);
  background: linear-gradient(180deg, #d7d7d7, white); }
  .page-wrapper:after,
  .single-wrapper:after {
    content: "";
    display: table;
    clear: both; }
  .page-wrapper::before,
  .single-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    background-color: #d7d7d7;
    -webkit-clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
    height: 50px; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .page-wrapper,
    .single-wrapper {
      margin-top: 30px; }
      .page-wrapper::before,
      .single-wrapper::before {
        display: none; } }

.attachment-title {
  margin-bottom: 25px;
  word-wrap: break-word;
  line-height: 1.25; }

.angle {
  background-color: #FFFFFF;
  position: relative;
  height: 30px; }
  .angle:after {
    content: "";
    display: table;
    clear: both; }
  .angle-top {
    -webkit-clip-path: polygon(0 65%, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(0 65%, 100% 0%, 100% 100%, 0 100%); }
  .angle-bottom {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 65%);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 65%); }
  @media (min-width: 37.5em) and (max-width: 55em) {
    .angle {
      height: 45px; } }
  @media (min-width: 55em) {
    .angle {
      height: 60px; } }
  .no-mediaqueries .angle {
    height: 60px; }

.co-blog {
  position: relative; }
  .co-blog:after {
    content: "";
    display: table;
    clear: both; }

.entry-title,
.page-title {
  font-family: "trajan-pro-3", serif;
  line-height: 1.25; }

.entry-title {
  font-size: 30px;
  font-size: 3rem; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .entry-title {
      font-size: 24px;
      font-size: 2.4rem; } }

.entry_header {
  margin-bottom: 25px; }

.entry--disclosure {
  border-top: 1px solid #729dc1;
  padding-top: 50px;
  font-size: 16px;
  font-size: 1.6rem; }
  .entry--disclosure h4 {
    margin-bottom: 25px; }

.sidebar {
  position: relative;
  margin-top: 50px; }
  .sidebar:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 37.5em) {
    .sidebar {
      margin-top: 0;
      padding-left: 25px;
      border-left: 1px solid #729dc1; } }
  .no-mediaqueries .sidebar {
    margin-top: 0;
    padding-left: 25px;
    border-left: 1px solid #729dc1; }
  .home .sidebar {
    margin-top: 0;
    padding-left: 0;
    border-left: 0; }
    @media (min-width: 55em) {
      .home .sidebar {
        margin-top: 106px; } }
    .no-mediaqueries .home .sidebar {
      margin-top: 106px; }

.widget {
  position: relative;
  margin-bottom: 30px; }
  .widget:after {
    content: "";
    display: table;
    clear: both; }
  .widget-title {
    font-size: 22px;
    font-size: 2.2rem;
    font-family: "trajan-pro-3", serif;
    margin-bottom: 15px; }
  .widget_categories ul, .widget_archive ul {
    list-style: none;
    margin-left: 0; }
  .widget .gform_wrapper .top_label div.ginput_container {
    margin-top: 3px; }

.gform_wrapper .gform_button {
  background: #729dc1;
  background: -webkit-linear-gradient(-90deg, #729dc1, #012364);
  background: -webkit-gradient(linear, left top, left bottom, from(#729dc1), to(#012364));
  background: -webkit-linear-gradient(top, #729dc1, #012364);
  background: -o-linear-gradient(top, #729dc1, #012364);
  background: linear-gradient(180deg, #729dc1, #012364);
  /*background-color: $c-darkBlue;*/
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 3px;
  border-radius: 0.3rem;
  color: #FFFFFF;
  display: inline-block;
  font-family: "trajan-pro-3", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding-top: 0.5em;
  padding-right: 1.5em;
  padding-bottom: 0.65em;
  padding-left: 1.5em;
  text-align: center;
  /*text-transform: uppercase;*/
  text-shadow: none;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease; }
  .gform_wrapper .gform_button:hover, .gform_wrapper .gform_button:active, .gform_wrapper .gform_button:focus {
    background: #6091b9;
    background: -webkit-linear-gradient(-90deg, #6091b9, #011a4b);
    background: -webkit-gradient(linear, left top, left bottom, from(#6091b9), to(#011a4b));
    background: -webkit-linear-gradient(top, #6091b9, #011a4b);
    background: -o-linear-gradient(top, #6091b9, #011a4b);
    background: linear-gradient(180deg, #6091b9, #011a4b);
    background-color: #729dc1;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none; }
    .gform_wrapper .gform_button:hover:link, .gform_wrapper .gform_button:hover:visited, .gform_wrapper .gform_button:active:link, .gform_wrapper .gform_button:active:visited, .gform_wrapper .gform_button:focus:link, .gform_wrapper .gform_button:focus:visited {
      background-color: #729dc1;
      color: #FFFFFF;
      text-decoration: none; }
  .gform_wrapper .gform_button:link, .gform_wrapper .gform_button:visited {
    color: #FFFFFF; }
  .gform_wrapper .gform_button:focus {
    -webkit-box-shadow: #709ca8 0 0 0.5em;
            box-shadow: #709ca8 0 0 0.5em;
    outline: none; }

.edit-link {
  display: inline;
  margin: 0 5px; }

.test_block {
  margin-right: auto;
  margin-left: auto;
  max-width: 65em;
  padding-right: 30px;
  padding-left: 30px; }
  .test_block:after {
    content: "";
    display: table;
    clear: both; }
  .test_block--item {
    background-color: red;
    height: 3em;
    margin-top: 1em; }
    @media (min-width: 0em) and (max-width: 37.5em) {
      .test_block--item {
        width: 14.606741573%;
        float: left;
        margin-left: 6.7415730337%; }
        .test_block--item:nth-child(5n-4) {
          margin-left: 0; } }
    @media (min-width: 37.5em) and (max-width: 55em) {
      .test_block--item {
        background-color: orange;
        width: 8.904109589%;
        float: left;
        margin-left: 4.1095890411%; }
        .test_block--item:nth-child(8n-7) {
          margin-left: 0; } }
    @media (min-width: 55em) {
      .test_block--item {
        background-color: yellow;
        width: 5.8558558559%;
        float: left;
        margin-left: 2.7027027027%; }
        .test_block--item:nth-child(16n-15) {
          margin-left: 0; } }
    .no-mediaqueries .test_block--item {
      background-color: yellow;
      width: 5.8558558559%;
      float: left;
      margin-left: 2.7027027027%; }
      .no-mediaqueries .test_block--item:nth-child(16n-15) {
        margin-left: 0; }

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  overflow: hidden; }

.featherlight {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background: #333;
  background: transparent; }

.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8); }

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

.featherlight .featherlight-content {
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  background: #fff;
  cursor: auto;
  white-space: normal; }

.featherlight .featherlight-inner {
  display: block; }

.featherlight link.featherlight-inner, .featherlight script.featherlight-inner, .featherlight style.featherlight-inner {
  display: none; }

.featherlight .featherlight-close-icon {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  line-height: 25px;
  width: 25px;
  cursor: pointer;
  text-align: center;
  font-family: Arial,sans-serif;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: 0;
  padding: 0; }

.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0; }

.featherlight .featherlight-image {
  width: 100%; }

.featherlight-iframe .featherlight-content {
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; }

.featherlight iframe {
  border: 0; }

.featherlight * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }

@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none; } }

.site_header {
  position: relative;
  margin-top: 30px;
  padding-bottom: 30px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%); }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .site_header {
      margin-top: 0;
      padding-bottom: 15px;
      -webkit-clip-path: none;
              clip-path: none; }
      .home .site_header > .co-row {
        padding-right: 15px;
        padding-left: 15px; } }
  .home .site_header {
    background-color: #000000; }
  .site_header--inner {
    position: relative;
    margin-bottom: 30px; }
    .site_header--inner:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 55em) {
      .site_header--inner {
        margin-bottom: 0;
        min-height: 240px; } }
    .no-mediaqueries .site_header--inner {
      margin-bottom: 0;
      min-height: 240px; }
    .site_header--inner.internal {
      background-color: #000000; }
      @media (min-width: 0em) and (max-width: 37.5em) {
        .site_header--inner.internal {
          min-height: 0; } }
      @media (min-width: 55em) {
        .site_header--inner.internal {
          background-color: transparent;
          min-height: 280px; } }
      .no-mediaqueries .site_header--inner.internal {
        background-color: transparent;
        min-height: 280px; }
    .site_header--inner.no-hero {
      background-color: #012364;
      margin-bottom: 0;
      min-height: 0; }
      @media (min-width: 37.5em) {
        .site_header--inner.no-hero {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          margin-bottom: 50px; } }
      .no-mediaqueries .site_header--inner.no-hero {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 50px; }
  .site_header--logo_link {
    height: auto !important;
    margin: 10px 0;
    max-width: 160px;
    max-height: 110px;
    position: relative;
    z-index: 1; }
    .site_header--logo_link path {
      fill: #FFFFFF;
      -webkit-transition: fill .35s ease;
      -o-transition: fill .35s ease;
      transition: fill .35s ease; }
    .site_header--logo_link:hover path, .site_header--logo_link:focus path {
      fill: #eebf1b; }
    .internal .site_header--logo_link {
      max-width: none; }
      .internal .site_header--logo_link {
        width: 160px; }
        @media screen and (min-width: 960px) {
          .internal .site_header--logo_link {
            width: calc(160px + 50 * ((100vw - 960px) / 594)); } }
        @media screen and (min-width: 1554px) {
          .internal .site_header--logo_link {
            width: 210px; } }
    @media (min-width: 0em) and (max-width: 37.5em) {
      .site_header--logo_link {
        max-width: 110px !important;
        position: absolute;
        left: 20px;
        z-index: 999; }
        .site_header--logo_link path {
          fill: #023ba6; }
        .site_header--logo_link:hover path, .site_header--logo_link:focus path {
          fill: #000000; } }
    @media (min-width: 37.5em) and (max-width: 55em) {
      .internal .site_header--logo_link {
        display: block;
        margin: 20px 0;
        width: 100%;
        max-width: 210px;
        position: relative;
        text-align: center; } }
  .site_header--logo {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%; }
    .site_header--logo svg, .site_header--logo img {
      max-width: 100%; }
  .site_header--hero {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: relative; }
    .site_header--hero:after {
      content: "";
      display: table;
      clear: both; }
    .site_header--hero_image {
      position: relative;
      display: block;
      width: 100%; }
      .site_header--hero_image_img {
        display: block; }
    .site_header--hero .slanted-hero {
      display: block; }
      @media (min-width: 0) and (max-width: 55em) {
        .site_header--hero .slanted-hero image {
          -webkit-clip-path: none;
                  clip-path: none; } }
    @media (min-width: 0em) and (max-width: 37.5em) {
      .internal.no-hero .site_header--hero {
        display: none; } }
    @media (min-width: 37.5em) {
      .internal .site_header--hero {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0; } }
    .internal .no-mediaqueries .site_header--hero {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
  .site_header--global_nav {
    z-index: 500; }
    @media (min-width: 0em) and (max-width: 37.5em) {
      .site_header--global_nav {
        width: 100%; }
        .home .site_header--global_nav {
          margin-bottom: 15px; }
        .internal .site_header--global_nav {
          position: relative;
          top: auto;
          right: 0; }
        .site_header--global_nav .social {
          position: relative;
          padding: 15px;
          padding-bottom: 30px;
          text-align: center;
          border-top: 1px solid #729dc1; }
          .site_header--global_nav .social_title, .site_header--global_nav .social_list {
            float: none;
            margin: 0; } }
    @media (min-width: 37.5em) and (max-width: 55em) {
      .home .site_header--global_nav {
        margin-bottom: 30px; }
      .internal .site_header--global_nav {
        background-color: #000000;
        padding: 20px;
        position: relative;
        width: 100%; } }
    @media (min-width: 55em) {
      .site_header--global_nav {
        margin-left: auto; } }
    .no-mediaqueries .site_header--global_nav {
      margin-left: auto; }
  .site_header--top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    @media (min-width: 37.5em) {
      .site_header--top {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .internal .site_header--top {
          width: 100%; } }
    .no-mediaqueries .site_header--top {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .internal .no-mediaqueries .site_header--top {
        width: 100%; }
    @media (min-width: 55em) {
      .site_header--top {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row; }
        .internal .site_header--top {
          padding: 30px; } }
    .no-mediaqueries .site_header--top {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
      .internal .no-mediaqueries .site_header--top {
        padding: 30px; }
  .site_header .angle {
    background-color: #023ba6; }
    .home .site_header .angle {
      background-color: #000000; }

.main_nav a:link, .main_nav a:visited {
  color: #FFFFFF;
  font-family: "trajan-pro-3", serif;
  font-style: normal;
  font-weight: 400;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color; }
  .main_nav a:link, .main_nav a:visited {
    font-size: 16px; }
    @media screen and (min-width: 768px) {
      .main_nav a:link, .main_nav a:visited {
        font-size: calc(16px + 8 * ((100vw - 768px) / 512)); } }
    @media screen and (min-width: 1280px) {
      .main_nav a:link, .main_nav a:visited {
        font-size: 24px; } }

.main_nav a:hover, .main_nav a:focus {
  color: #eebf1b;
  text-decoration: none;
  -webkit-transition-duration: .175s;
       -o-transition-duration: .175s;
          transition-duration: .175s; }

.main_nav .current-menu-item > a:link,
.main_nav .current-menu-item > a:visited,
.main_nav .current_page_parent > a:link,
.main_nav .current_page_parent > a:visited {
  color: #eebf1b; }

@media (min-width: 0em) and (max-width: 37.5em) {
  .main_nav--inner {
    background: #f3f3f3;
    padding-left: 30px;
    padding-right: 30px; } }

.main_nav--logo_link {
  position: absolute;
  top: 0;
  left: 20px;
  width: 110px;
  z-index: 99; }
  @media (min-width: 37.5em) {
    .main_nav--logo_link {
      display: none; } }
  .no-mediaqueries .main_nav--logo_link {
    display: none; }

.main_nav--toggle {
  color: #023ba6;
  background-color: #626366;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
  background: -webkit-linear-gradient(top, #fff, #f3f3f3);
  background: -o-linear-gradient(top, #fff, #f3f3f3);
  background: linear-gradient(180deg, #fff, #f3f3f3);
  border-radius: 0;
  padding: 30px 75px 30px;
  position: relative;
  text-align: right;
  width: 100%; }
  .main_nav--toggle:hover, .main_nav--toggle:focus {
    background-color: #626366;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
    background: -webkit-linear-gradient(top, #fff, #f3f3f3);
    background: -o-linear-gradient(top, #fff, #f3f3f3);
    background: linear-gradient(180deg, #fff, #f3f3f3);
    -webkit-box-shadow: none;
            box-shadow: none; }
  .closed .main_nav--toggle {
    background-color: #709ca8;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
    background: -webkit-linear-gradient(top, #fff, #f3f3f3);
    background: -o-linear-gradient(top, #fff, #f3f3f3);
    background: linear-gradient(180deg, #fff, #f3f3f3); }
  @media (min-width: 37.5em) {
    .main_nav--toggle {
      display: none; } }
  .no-mediaqueries .main_nav--toggle {
    display: none; }

.main_nav--toggle_icon {
  border-top: 0.2em solid transparent;
  right: 30px;
  position: absolute;
  top: calc(50% - 0.1em);
  -webkit-transition: border-color 0.2s ease, width 0.2s ease;
  -o-transition: border-color 0.2s ease, width 0.2s ease;
  transition: border-color 0.2s ease, width 0.2s ease;
  width: 1.5em; }
  .closed .main_nav--toggle_icon {
    border-top: 0.2em solid #023ba6; }
  .main_nav--toggle_icon:before, .main_nav--toggle_icon:after {
    border-top: 0.2em solid #023ba6;
    content: "";
    left: 0;
    position: absolute;
    top: -0.2em;
    -webkit-transition: width 0.2s ease, -webkit-transform 0.2s ease;
    transition: width 0.2s ease, -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease, width 0.2s ease;
    transition: transform 0.2s ease, width 0.2s ease;
    transition: transform 0.2s ease, width 0.2s ease, -webkit-transform 0.2s ease;
    width: 1.3em; }
    .closed .main_nav--toggle_icon:before, .closed .main_nav--toggle_icon:after {
      -webkit-transform: rotate(0);
          -ms-transform: rotate(0);
              transform: rotate(0);
      width: 1.5em; }
  .main_nav--toggle_icon:before {
    -webkit-transform: rotate(50deg);
        -ms-transform: rotate(50deg);
            transform: rotate(50deg); }
    .closed .main_nav--toggle_icon:before {
      top: -0.6em; }
  .main_nav--toggle_icon:after {
    -webkit-transform: rotate(-50deg);
        -ms-transform: rotate(-50deg);
            transform: rotate(-50deg); }
    .closed .main_nav--toggle_icon:after {
      top: 0.2em; }

@media (min-width: 0em) and (max-width: 37.5em) {
  .main_nav--container {
    margin-bottom: 15px; } }

@media (min-width: 37.5em) {
  .main_nav--social {
    display: none; } }

.no-mediaqueries .main_nav--social {
  display: none; }

@media (min-width: 0em) and (max-width: 37.5em) {
  .main_nav--inner, .main_nav--container, .main_nav--social {
    max-height: 2000px;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease;
    -o-transition: max-height 0.2s ease;
    transition: max-height 0.2s ease; } }

@media (min-width: 0em) and (max-width: 37.5em) {
  .closed .main_nav--inner, .closed .main_nav--container, .closed .main_nav--social {
    max-height: 0; } }

.main_nav .menu-item {
  display: inline-block;
  margin-left: 1.2em; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .main_nav .menu-item.desktop-only {
      display: none; } }
  @media (min-width: 37.5em) {
    .main_nav .menu-item.mobile-only {
      display: none; } }
  .no-mediaqueries .main_nav .menu-item.mobile-only {
    display: none; }

.main_nav--menu {
  list-style-type: none;
  margin: 0;
  text-align: right; }
  @media (min-width: 37.5em) and (max-width: 55em) {
    .main_nav--menu {
      text-align: center; } }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .main_nav--menu {
      text-align: center; }
      .main_nav--menu .menu-item {
        display: block;
        margin-left: 0;
        padding: 10px 0; }
        .main_nav--menu .menu-item a:link, .main_nav--menu .menu-item a:visited {
          color: #023ba6; }
          .main_nav--menu .menu-item a:link:hover, .main_nav--menu .menu-item a:link:focus, .main_nav--menu .menu-item a:visited:hover, .main_nav--menu .menu-item a:visited:focus {
            color: #000000; }
        .main_nav--menu .menu-item.current-menu-item > a:link,
        .main_nav--menu .menu-item.current-menu-item > a:visited,
        .main_nav--menu .menu-item.current_page_parent > a:link,
        .main_nav--menu .menu-item.current_page_parent > a:visited {
          color: #eebf1b;
          text-decoration: underline; }
          .main_nav--menu .menu-item.current-menu-item > a:link:hover, .main_nav--menu .menu-item.current-menu-item > a:link:focus,
          .main_nav--menu .menu-item.current-menu-item > a:visited:hover,
          .main_nav--menu .menu-item.current-menu-item > a:visited:focus,
          .main_nav--menu .menu-item.current_page_parent > a:link:hover,
          .main_nav--menu .menu-item.current_page_parent > a:link:focus,
          .main_nav--menu .menu-item.current_page_parent > a:visited:hover,
          .main_nav--menu .menu-item.current_page_parent > a:visited:focus {
            color: #000000; } }

.site_footer {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center; }
  .site_footer--credit_logo {
    margin-bottom: 15px; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .site_footer--credit {
      font-size: 1.4rem;
      padding-right: 30px;
      padding-left: 30px; } }

.footer_nav a:link, .footer_nav a:visited {
  color: #FFFFFF;
  font-family: "trajan-pro-3", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400; }

.footer_nav .menu-item {
  display: inline-block;
  margin-right: 1.2em; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .footer_nav .menu-item.desktop-only {
      display: none; } }
  @media (min-width: 37.5em) {
    .footer_nav .menu-item.mobile-only {
      display: none; } }
  .no-mediaqueries .footer_nav .menu-item.mobile-only {
    display: none; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .footer_nav .menu-item {
      display: block;
      margin-right: 0;
      margin-bottom: 1.2em;
      text-align: center; } }

.footer_nav--menu {
  list-style-type: none;
  margin: 0;
  text-align: left; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .footer_nav--menu {
      margin: 50px 0; } }

.home .site_header {
  margin-top: 0;
  margin-bottom: 30px;
  position: relative; }

.about--intro:after, .about--map:after, .about--editions:after, .about--creators:after {
  content: "";
  display: table;
  clear: both; }

.about--intro_media_image, .about--intro_media_video {
  margin-bottom: 30px; }
  .about--intro_media_image img, .about--intro_media_image iframe, .about--intro_media_image embed, .about--intro_media_image object, .about--intro_media_video img, .about--intro_media_video iframe, .about--intro_media_video embed, .about--intro_media_video object {
    width: 100%; }

.about--map, .about--creators {
  margin-top: 30px; }
  .about--map-title, .about--creators-title {
    margin-bottom: 20px;
    font-family: "trajan-pro-3", serif; }

.about--creators-list .creator {
  position: relative;
  margin-bottom: 30px; }
  .about--creators-list .creator:after {
    content: "";
    display: table;
    clear: both; }
  .about--creators-list .creator--wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .about--creators-list .creator--media {
    width: 13%;
    margin-right: 5%;
    display: none; }
    @media (min-width: 55em) {
      .about--creators-list .creator--media {
        display: inline-block; } }
    .no-mediaqueries .about--creators-list .creator--media {
      display: inline-block; }
  .about--creators-list .creator--text {
    width: 82%; }
    .about--creators-list .creator--text h4 {
      font-weight: 400;
      line-height: 1;
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.25;
      margin-bottom: 10px; }

.about--editions {
  margin-bottom: 30px; }
  .about--editions:after {
    content: "";
    display: table;
    clear: both; }
  .about--editions_title {
    margin-bottom: 20px;
    font-family: "trajan-pro-3", serif; }
  .about--editions_items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
    .about--editions_items .co-issue--item {
      width: calc(100% / 2);
      padding: 15px; }
      .about--editions_items .co-issue--item__media {
        position: relative;
        margin-bottom: 20px; }
        .about--editions_items .co-issue--item__media img {
          display: block; }
        .about--editions_items .co-issue--item__media .soon {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          top: 0;
          background-color: rgba(0, 0, 0, 0.45);
          color: #fff;
          text-transform: uppercase;
          font-size: 0.85em;
          letter-spacing: 1px; }
  @supports (display: grid) {
    .about--editions_items {
      display: -ms-grid;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px; }
      @media (min-width: 55em) {
        .about--editions_items {
          grid-template-columns: repeat(2, 1fr); } }
      .no-mediaqueries .about--editions_items {
        grid-template-columns: repeat(2, 1fr); }
      .about--editions_items .co-issue--item {
        padding: 0;
        width: auto; } }

.single-character .angle-top {
  background-color: #d7d7d7; }

.co-character {
  margin-bottom: 25px; }
  .co-character:after {
    content: "";
    display: table;
    clear: both; }
  .co-character--intro:after, .co-character--gallery:after, .co-character--list:after, .co-character--featIn:after, .co-character--sidebar:after {
    content: "";
    display: table;
    clear: both; }
  .co-character--list {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #729dc1; }
    .co-character--list_title {
      font-family: "trajan-pro-3", serif;
      margin-bottom: 30px; }
    .co-character--list_items {
      display: -ms-grid;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px; }
      @media (min-width: 37.5em) {
        .co-character--list_items {
          grid-template-columns: repeat(3, 1fr); } }
      .no-mediaqueries .co-character--list_items {
        grid-template-columns: repeat(3, 1fr); }
  .co-character--featIn {
    margin-bottom: 30px; }
    .co-character--featIn_title {
      font-family: "trajan-pro-3", serif;
      margin-bottom: 30px; }
    .co-character--featIn_items {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
      .co-character--featIn_items .co-issue--item {
        width: calc(100% / 2);
        padding: 15px; }
    .co-character--featIn_items {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 auto;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
      .co-character--featIn_items .co-issue--item {
        width: calc(100% / 2);
        padding: 15px; }
        .co-character--featIn_items .co-issue--item__title {
          text-align: center; }
          .co-character--featIn_items .co-issue--item__title h5 {
            font-size: 16px;
            font-size: 1.6rem; }
          .co-character--featIn_items .co-issue--item__title span {
            display: block;
            font-size: 14px;
            font-size: 1.4rem; }
    @supports (display: grid) {
      .co-character--featIn_items {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px; }
        @media (min-width: 55em) {
          .co-character--featIn_items {
            grid-template-columns: repeat(2, 1fr); } }
        .no-mediaqueries .co-character--featIn_items {
          grid-template-columns: repeat(2, 1fr); }
        .co-character--featIn_items .co-issue--item {
          padding: 0;
          width: auto; }
          .co-character--featIn_items .co-issue--item__media {
            width: 100%; }
            .co-character--featIn_items .co-issue--item__media > img {
              width: 100%;
              -o-object-fit: cover;
                 object-fit: cover; } }
  @media (min-width: 0) and (max-width: 55em) {
    .co-character--sidebar {
      border-top: 1px solid #729dc1;
      margin-top: 30px;
      padding-top: 30px; } }
  @media (min-width: 55em) {
    .co-character--sidebar {
      border-left: 1px solid #729dc1;
      padding-left: 25px; } }
  .no-mediaqueries .co-character--sidebar {
    border-left: 1px solid #729dc1;
    padding-left: 25px; }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .co-character .co-entry--intro {
      margin-bottom: 0; } }
  @media (min-width: 0em) and (max-width: 37.5em) {
    .co-character .co-gallery {
      display: none; } }
/*# sourceMappingURL=style.css.map */