@charset "UTF-8";
/*
**  01. Resets
**  02. Defaults
**  03. Fonts
**  04. Typography
**  05. Grid
**  06. Menus & Lists
**  07. Forms & Tables
**  08. Elements
**  09. CSS Animations
**  10. Media Queries
*/
/*
**
*** 01. Resets
**
*/


/* line 1, ../scss/_reset.scss */
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

/* line 1, ../scss/_reset.scss */
html, body {
  height: 100%;
}

/* line 1, ../scss/_reset.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 1, ../scss/_reset.scss */
b, strong {
  font-weight: 800;
}

/* line 1, ../scss/_reset.scss */
img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

/* line 1, ../scss/_reset.scss */
li {
  display: list-item;
}

/* line 1, ../scss/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 1, ../scss/_reset.scss */
th, td, caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

/* line 1, ../scss/_reset.scss */
q {
  quotes: none;
}

/* line 1, ../scss/_reset.scss */
q:before, q:after {
  content: '';
  content: none;
}

/* line 1, ../scss/_reset.scss */
sub, sup, small {
  font-size: 75%;
}

/* line 1, ../scss/_reset.scss */
sub, sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 1, ../scss/_reset.scss */
sub {
  bottom: -0.25em;
}

/* line 1, ../scss/_reset.scss */
sup {
  top: -0.5em;
}

/* line 1, ../scss/_reset.scss */
svg {
  overflow: hidden;
}

/*
**
*** 02. Defaults
**
*/
/* line 57, ../scss/main.scss */
*,
*:after,
*::before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 63, ../scss/main.scss */
html {
  position: relative;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-font-feature-settings: "calt", "liga", "clig", "kern";
  -moz-font-feature-settings: "calt=1, liga=1, clig=1, kern=1";
  -ms-font-feature-settings: "calt", "liga", "clig", "kern";
  -o-font-feature-settings: "calt", "liga", "clig", "kern";
  -webkit-font-feature-settings: "calt", "liga", "clig", "kern";
  font-feature-settings: "calt", "liga", "clig", "kern";
  -moz-osx-font-smoothing: grayscale;
}

/* line 75, ../scss/main.scss */
html body {
  font-size: 100%;
}

/* line 78, ../scss/main.scss */
body {
  max-width: 100%;
  height: 100%;
  margin: 0 0 0em;
  overflow-x: hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* line 84, ../scss/main.scss */
#wrap {
  width: 100%;
}

/* line 87, ../scss/main.scss */
.wrap {
  position: relative;
  overflow: hidden;
}

/* line 91, ../scss/main.scss */
.home .wrap {
  height: 100%;
}

/* Elements */
/* line 97, ../scss/main.scss */
img {
  outline: 0;
  border: 0;
  width: 100%;
  max-width: 100%;
}

/* line 103, ../scss/main.scss */
iframe {
  margin: 2em 0;
}

/* line 107, ../scss/main.scss */
.hide-desktop {
  display: none;
}

/* Body Classes */
/* line 113, ../scss/main.scss */
.home br {
  display: none;
}

/* line 116, ../scss/main.scss */
.home > p {
  padding-bottom: 2.5em;
}

/* line 119, ../scss/main.scss */
.home {
  background: white;
}

/* line 122, ../scss/main.scss */
.return {
  margin-top: 1.85em;
  margin-bottom: 9em;
}

/* line 126, ../scss/main.scss */
.home .hide-all {
  opacity: 0;
}

/*
**
*** 03. Typography
**
*/


@font-face {
  font-family: "GT-Sectra-Book";
  font-style: normal;
  font-weight: 300;
  src: url('../../fonts/gt-sectra-book.eot') format("eot"), url('../../fonts/gt-sectra-book.woff') format("woff"), url('../../fonts/gt-sectra-book.svg') format("svg");
}
@font-face {
  font-family: "GT-Sectra-Display-Regular";
  font-style: normal;
  font-weight: normal;
  src: url('../../fonts/gt-sectra-display-regular.eot') format("eot"), url('../../fonts/gt-sectra-display-regular.woff') format("woff"), url('../../fonts/gt-sectra-display-regular.svg') format("svg");
}
@font-face {
  font-family: "GT-Sectra-Regular-Italic";
  font-style: normal;
  font-weight: normal;
  src: url('../../fonts/gt-sectra-regular-italic.eot') format("eot"), url('../../fonts/gt-sectra-regular-italic.woff') format("woff"), url('../../fonts/gt-sectra-regular-italic.svg') format("svg");
}


/* line 51, ../scss/_typography.scss */
body {
  font-family: "GT-Sectra-Book";
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #2e2e2e;
}

/* line 58, ../scss/_typography.scss */
.home p,
.home h1,
.home a,
.home em,
.home small,
.home dt {
  color: #2e2e2e;
}

/* line 68, ../scss/_typography.scss */
h1 {
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: normal;
  display: inline-block;
}

/* line 73, ../scss/_typography.scss */
.masthead {
  position: relative;
  z-index: 100;
}

/* line 77, ../scss/_typography.scss */
.home header a {
  font-family: "Stanley-Bold";
}

/* line 80, ../scss/_typography.scss */
.return a {
  font-family: "GT-Sectra-Book";
  text-align: center;
  display: block;
  text-decoration: underline;
  border: 0;
}

/* line 87, ../scss/_typography.scss */
.return a:hover {
  border: 0;
}

/* line 90, ../scss/_typography.scss */
h1.title {
  font-family: "GT-Sectra-Book";
  font-size: 80px;
  line-height: 84px;
  font-size: 5rem;
  line-height: 5.25rem;
  font-weight: normal;
  margin: 1.3em 1.5em 1.35em 1.5em;
  text-align: center;
}

/* line 97, ../scss/_typography.scss */
h2 {
  font-family: "GT-Sectra-Display-Regular";
  font-size: 20.8px;
  line-height: 27.2px;
  font-size: 1.3rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0 auto;
  padding-top: 30%;
  width: 50%;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}

/* line 106, ../scss/_typography.scss */
.home h2 {
  font-family: "GT-Sectra-Display-Regular";
  /*font-size: 40px;
  line-height: 48px;
  */
  font-size: 4.5rem;
  line-height: 5rem;
  color: #2e2e2e;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  display: block;
  text-align: left;
  padding: 0.5em 0 1.85em 0;
  width: 100%;
  margin: 0;
}

/* line 117, ../scss/_typography.scss */
h3 {
  font-family: "GT-Sectra-Display-Regular";
  -webkit-font-smoothing: antialiased;
  font-size: 26.4px;
  line-height: 32px;
  font-size: 1.65rem;
  line-height: 2rem;
  font-weight: normal;
  color: #696969;
  margin: 1.5em 0 0.5em 0;
}

/* line 124, ../scss/_typography.scss */
h4 {
  font-family: "GT-Sectra-Book";
  font-size: 20px;
  line-height: 24px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: normal;
  padding: 0 0 0.5em 0;
  text-transform: uppercase;
}

/* line 132, ../scss/_typography.scss */
p {
  font-size: 20.8px;
  line-height: 28px;
  font-size: 1.3rem;
  line-height: 1.75rem;
  font-weight: normal;
  padding-bottom: 0.85em;
}

/* line 138, ../scss/_typography.scss */
article p:first-of-type {
  margin-top: 4.55em;
}

/* line 141, ../scss/_typography.scss */
.home p:first-of-type,
footer p:first-of-type {
  margin-top: 0;
}

/* line 146, ../scss/_typography.scss */
article p:last-of-type {
  font-size: 13.6px;
  line-height: 16.8px;
  font-size: 0.85rem;
  line-height: 1.05rem;
  margin-bottom: 7.5em;
}

/* line 151, ../scss/_typography.scss */
footer p:last-of-type {
  margin-bottom: 0;
}

/* line 155, ../scss/_typography.scss */
p.details {
  padding-top: 0.6em;
}

/* line 158, ../scss/_typography.scss */
small,
footer small,
footer p > a,
p.details {
  font-size: 12px;
  line-height: 16px;
  font-size: 0.75rem;
  line-height: 1rem;
  padding-bottom: 0;
  letter-spacing: .03em;
}

/* line 166, ../scss/_typography.scss */
span.numbers {
  font-family: "Lyon Text Web";
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  display: block;
  padding-bottom: 2em;
  text-decoration: underline;
  text-align: center;
}

/* line 174, ../scss/_typography.scss */
p.tags {
  text-decoration: underline;
  padding-bottom: 3em;
}

/* line 178, ../scss/_typography.scss */
p.tags, a.tags {
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #696969;
}

/* line 184, ../scss/_typography.scss */
p + h4,
figure + h4 {
  margin-top: 2.5em;
  text-align: center;
}

/* line 190, ../scss/_typography.scss */
div + h4 {
  margin-top: 4.55em;
}

/* line 193, ../scss/_typography.scss */
h4 + p:first-of-type {
  margin-top: 0;
}

/* line 197, ../scss/_typography.scss */
figcaption {
  font-size: 12px;
  line-height: 18px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  display: block;
  margin-top: 0.5em;
}

/* Footnotes */
/* line 205, ../scss/_typography.scss */
.footnotes {
  margin-bottom: 2.5em;
}

/* line 208, ../scss/_typography.scss */
.footnotes ol li p {
  font-weight: normal;
  margin: 0;
}

/* line 212, ../scss/_typography.scss */
.footnotes p {
  font-size: 13.6px;
  line-height: 20.4px;
  font-size: 0.85rem;
  line-height: 1.275rem;
  padding: 0;
}

/* line 216, ../scss/_typography.scss */
.footnotes li {
  list-style: decimal !important;
  display: block;
  padding-bottom: 6px;
}

/* line 221, ../scss/_typography.scss */
.footnotes ol {
  list-style: decimal !important;
  padding-top: 0.5em;
  margin-top: 2.5em;
}

/* line 226, ../scss/_typography.scss */
.footnotes hr {
  display: none;
}

/* line 229, ../scss/_typography.scss */
.footnotes a,
.footnotes a:hover {
  border: none;
}

/* line 233, ../scss/_typography.scss */
sup a {
  border: none !important;
  color: #54FF9F;
  font-size: 70%;
  padding-left: 0.15em;
}

/* line 239, ../scss/_typography.scss */
sup a:hover {
  border: none;
  color: #2e2e2e;
}

/* Link Styles */
/* line 140, ../scss/main.scss */
a,
a:hover,
a:active,
a:visited {
  outline: 0px;
}

/* line 146, ../scss/main.scss */
a {
  color: #2e2e2e;
  text-decoration: none;
}

/* line 151, ../scss/main.scss */
a:hover,
#tags a:hover {
  color: #54FF9F;
}

/* line 155, ../scss/main.scss */
#tags,
#tags a {
  font-size: 13.6px;
  line-height: 16px;
  font-size: 0.85rem;
  line-height: 1rem;
  color: #ccc;
}

/* line 160, ../scss/main.scss */
#tags a {
  border-bottom: 1px solid #ccc;
}

/* line 164, ../scss/main.scss */
a.active {
  font-style: italic;
  color: #2e2e2e !important;
}

/* line 168, ../scss/main.scss */
.save {
  font-size: 13.6px;
  line-height: 16px;
  font-size: 0.85rem;
  line-height: 1rem;
}

/* line 171, ../scss/main.scss */
.save a {
  border-bottom: 1px solid #2e2e2e;
}

/* line 175, ../scss/main.scss */
figcaption a {
  color: #a1a1a1;
  border-bottom: 1px solid #a1a1a1;
}

/* line 179, ../scss/main.scss */
article a {
  border-bottom: 2px solid #2e2e2e;
}

/* line 182, ../scss/main.scss */
article a:hover,
figcaption a:hover
li.clear a:hover,
.save a:hover {
  color: #54FF9F;
  border-bottom: 1px solid #54FF9F;
}

/* line 189, ../scss/main.scss */
.tabbed {
  margin-left: 0.35em;
}

/*
**
*** 05. Grid
**
*/
/* line 3, ../scss/_grid.scss */
.span1 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 6.95833%;
}

/* line 3, ../scss/_grid.scss */
.span2 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 15.41667%;
}

/* line 3, ../scss/_grid.scss */
.span3 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 23.875%;
}

/* line 3, ../scss/_grid.scss */
.span4 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 32.33333%;
}

/* line 3, ../scss/_grid.scss */
.span5 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 40.79167%;
}

/* line 3, ../scss/_grid.scss */
.span6 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 49.25%;
}

/* line 3, ../scss/_grid.scss */
.span7 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 57.70833%;
}

/* line 3, ../scss/_grid.scss */
.span8 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 66.16667%;
}

/* line 3, ../scss/_grid.scss */
.span9 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 74.625%;
}

/* line 3, ../scss/_grid.scss */
.span10 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 83.08333%;
}

/* line 3, ../scss/_grid.scss */
.span11 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 91.54167%;
}

/* line 3, ../scss/_grid.scss */
.span12 {
  display: block;
  float: left;
  margin: 0 1.5% 1.5% 0;
  width: 100.0%;
}

/* line 10, ../scss/_grid.scss */
.push1 {
  margin-left: 8.45833%;
}

/* line 10, ../scss/_grid.scss */
.push2 {
  margin-left: 16.91667%;
}

/* line 10, ../scss/_grid.scss */
.push3 {
  margin-left: 25.375%;
}

/* line 10, ../scss/_grid.scss */
.push4 {
  margin-left: 33.83333%;
}

/* line 10, ../scss/_grid.scss */
.push5 {
  margin-left: 42.29167%;
}

/* line 10, ../scss/_grid.scss */
.push6 {
  margin-left: 50.75%;
}

/* line 10, ../scss/_grid.scss */
.push7 {
  margin-left: 59.20833%;
}

/* line 10, ../scss/_grid.scss */
.push8 {
  margin-left: 67.66667%;
}

/* line 10, ../scss/_grid.scss */
.push9 {
  margin-left: 76.125%;
}

/* line 10, ../scss/_grid.scss */
.push10 {
  margin-left: 84.58333%;
}

/* line 10, ../scss/_grid.scss */
.push11 {
  margin-left: 93.04167%;
}

/* line 10, ../scss/_grid.scss */
.push12 {
  margin-left: 101.5%;
}

/* line 203, ../scss/main.scss */
.row {
  margin: 0;
  height: auto;
}

/* line 208, ../scss/main.scss */
.row,
.row-inner {
  position: relative;
}

/* line 213, ../scss/main.scss */
.last {
  margin-right: 0;
}

/* line 216, ../scss/main.scss */
.innerLeft {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -10;
  width: 50%;
  height: 100%;
  background: #f9f9f9;
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

/* line 228, ../scss/main.scss */
.innerRight {
  position: relative;
  z-index: 1000;
  width: 50%;
  left: 50%;
  top: 0;
  bottom: 0;
  right: 0;
  background: white;
}

/*
**
*** 06. Menus & Lists
**
*/
/* line 245, ../scss/main.scss */
ul {
  display: inline-block;
}

/* line 248, ../scss/main.scss */
li {
  list-style: none;
  display: inline;
}

/* line 252, ../scss/main.scss */
ol > p {
  padding: 0;
}

/* line 255, ../scss/main.scss */
ol {
  display: block;
}

/* line 258, ../scss/main.scss */
dl {
  width: 100%;
  position: relative;
  padding: 0;
}

/* line 263, ../scss/main.scss */
dt {
  font-size: 24px;
  line-height: 24px;
  font-size: 1.5rem;
  line-height: 1.5rem;
  width: 5%;
  position: absolute;
  padding-top: 0.35em;
}

/* line 269, ../scss/main.scss */
dd {
  font-size: 45.6px;
  line-height: 52px;
  font-size: 2.85rem;
  line-height: 3.25rem;
  width: 90%;
  padding-left: 10%;
}

/* line 274, ../scss/main.scss */
dt, dd {
  color: white;
  height: auto;
  padding-bottom: 0.35em;
}

/* line 279, ../scss/main.scss */
dd a {
  color: white;
}

/*
**
*** 08. Elements
**
*/
/* line 287, ../scss/main.scss */
header {
  height: 2em;
  padding: 2em 0;
}

/* line 291, ../scss/main.scss */
.article header.left {
  display: none;
}

/* line 294, ../scss/main.scss */
.about {
  width: 100%;
  max-width: 760px;
  margin: 0;
  clear: left;
}

/* line 300, ../scss/main.scss */
.home footer {
  position: absolute;
  left: 5%;
  bottom: 0;
  height: 2.5em;
  width: 100%;
  z-index: -1;
}

/* line 308, ../scss/main.scss */
.article footer {
  position: relative;
  background: transparent;
  float: left;
  z-index: 10000;
  width: 100%;
  height: 2.5em;
  max-width: 100%;
  padding-top: 0;
  margin: 0 5%;
  border: 0;
  outline: 0;
}

/* line 321, ../scss/main.scss */
body.home header {
  margin-bottom: 6.5em;
}

/* line 324, ../scss/main.scss */
header.left {
  float: left;
  display: inline;
  margin-left: 5%;
}

/* line 329, ../scss/main.scss */
article {
  max-width: 750px;
  padding: 0 3em 0 4.5em;
}

/* line 333, ../scss/main.scss */
.home article {
  padding: 0.85em 0 0 5%;
}

/* Article titles */
/* line 339, ../scss/main.scss */
.title-page {
  z-index: 100;
  max-width: 780px;
  margin: 0 auto;
  top: 30px;
  padding-top: 1.85em;
}

/* line 347, ../scss/main.scss */
figure {
  position: absolute;
  left: -90%;
  width: 45%;
  max-width: 28em;
  z-index: 150;
}
@media only screen and (max-width: 768px) and (min-width: 320px) {
  /* line 347, ../scss/main.scss */
  figure {
    position: static;
    margin: 1.25em !important;
  }
  /* line 358, ../scss/main.scss */
  figure img {
    max-width: 70%;
    margin-left: 15%;
    padding-top: 1.5em;
  }
  /* line 363, ../scss/main.scss */
  figure figcaption {
    margin-left: 15%;
  }
}

/* Article Breaks */
/* line 372, ../scss/main.scss */
hr {
  height: 2em;
  display: block;
  margin: 2em 0 1em 0;
  border: none;
  color: #2e2e2e;
  text-align: center;
}

/* line 382, ../scss/main.scss */
hr:after {
  font-size: 18.4px;
  line-height: 27.6px;
  font-size: 1.15rem;
  line-height: 1.725rem;
  content: "\2733  \2733  \2733";
  display: inline-block;
  position: relative;
  top: -0.7em;
  padding: 0 0.25em;
  background: transparent;
}

/* line 392, ../scss/main.scss */
hr.spacer {
  height: 0.15em;
}

/* line 396, ../scss/main.scss */
hr.spacer:after {
  content: "";
}

/* Share button */
/* line 402, ../scss/main.scss */
.save {
  margin-top: 0.65em;
}

/* line 406, ../scss/main.scss */
.share {
  line-height: 20px;
  margin-top: 6px;
  display: inline-block;
}
/* line 410, ../scss/main.scss */
.share:before {
  content: '\2192';
  padding-right: 0.25em;
}
/* line 414, ../scss/main.scss */
.share:hover {
  cursor: pointer;
}

/* line 418, ../scss/main.scss */
.share-this {
  line-height: 20px;
  display: inline-block;
  margin-top: 0;
  margin-left: 1em;
  opacity: 0;
  -webkit-transition: opacity 400ms linear;
  transition: opacity 400ms linear;
}

/* line 427, ../scss/main.scss */
.share-this a {
  margin-right: 0.5em;
  border: 0;
}
/* line 430, ../scss/main.scss */
.share-this a:hover {
  border: 0;
}

/* line 434, ../scss/main.scss */
.show {
  opacity: 1;
}

/* line 437, ../scss/main.scss */
.instapaper {
  padding-right: 0.5em;
}

/* Side-on menu link */
/* line 441, ../scss/main.scss */
.home #side-menu {
  display: none;
}

/* line 444, ../scss/main.scss */
#side-menu {
  width: 4em;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

/* line 454, ../scss/main.scss */
#side-menu {
  background: #f9f9f9;
}

/* line 458, ../scss/main.scss */
#side-menu > nav {
  width: 8em;
  position: absolute;
  top: 50%;
  bottom: 50%;
  -webkit-transform-origin: 0% 50%;
  -webkit-transform: rotate(-90deg) translate(-50%, 50%);
  -moz-transform-origin: 0 50%;
  -moz-transform: rotate(-90deg) translate(-50%, 50%);
  -ms-transform-origin: 0 50%;
  -ms-transform: rotate(-90deg) translate(-50%, 50%);
  -o-transform-origin: 0 50%;
  -o-transform: rotate(-90deg) translate(-50%, 50%);
  transform-origin: 0 50%;
  transform: rotate(-90deg) translate(-50%, 50%);
  left: 1em;
}

/* line 475, ../scss/main.scss */
#side-menu > nav a {
  cursor: pointer;
}

/* Left-hand menu */
/* line 481, ../scss/main.scss */
.cnts-push {
  height: 100%;
  background: white;
}

/* line 485, ../scss/main.scss */
.cnts-push {
  position: relative;
  left: 0;
  z-index: 99;
  height: 100%;
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

/* line 493, ../scss/main.scss */
.cnts-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  visibility: hidden;
  width: 380px;
  height: 100%;
  overflow: auto;
  background: #f4f4f4;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* line 506, ../scss/main.scss */
.cnts-menu::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

/* line 518, ../scss/main.scss */
.cnts-menu-open .cnts-menu::after {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */
/* line 528, ../scss/main.scss */
.articles-wrapper {
  margin-bottom: 3.5em;
}

/* line 531, ../scss/main.scss */
.cnts-menu {
  padding: 0 2em;
}

/* line 534, ../scss/main.scss */
.cnts-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 539, ../scss/main.scss */
.cnts-menu ul.tags {
  margin-bottom: 4.85em;
}

/* line 542, ../scss/main.scss */
.cnts-menu ul.tags li {
  float: left;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  border-bottom: 1px solid #2e2e2e;
  line-height: 1;
}

/* line 549, ../scss/main.scss */
.cnts-menu ul.articles {
  margin-bottom: 1.35em;
}

/* line 552, ../scss/main.scss */
.cnts-menu ul.articles li:first-of-type {
  font-family: "Lyon Text Web";
  font-size: 13.6px;
  line-height: 13.6px;
  font-size: 0.85rem;
  line-height: 0.85rem;
  display: inline-block;
}

/* line 557, ../scss/main.scss */
.cnts-menu ul.articles li a {
  font-family: "Larish Neue Semibold";
  font-size: 22.4px;
  line-height: 26.4px;
  font-size: 1.4rem;
  line-height: 1.65rem;
  display: inline-block;
  width: 90%;
  float: right;
  margin-bottom: 0.25em;
}

/* line 565, ../scss/main.scss */
li.number {
  padding: 0.65em 1em 0 0;
  display: inline-block;
  width: 10%;
  float: left;
}

/* line 571, ../scss/main.scss */
li.subtitle {
  font-style: normal;
  margin: 0.5em 0 0 2em;
  display: block;
  color: #696969;
  line-height: 1.35;
}

/* line 578, ../scss/main.scss */
span.long-underscore {
  display: inline-block;
  border-bottom: 1px solid #a1a1a1;
  width: 2.5em;
  margin: 0;
}

/* line 584, ../scss/main.scss */
.cnts-menu h1, .cnts-menu h2 {
  font-family: "Larish Neue Semibold";
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 2.15em;
  width: 100%;
}

/* line 590, ../scss/main.scss */
.cnts-menu h2 {
  padding: 0 0 0.5em 0;
  text-align: left;
  width: auto;
}

/* line 595, ../scss/main.scss */
.cnts-menu ul li a {
  display: block;
  outline: none;
  color: #2e2e2e;
  font-family: "Lyon Text Web";
}

/* line 601, ../scss/main.scss */
.cnts-menu ul li a:hover,
.cnts-menu ul li a.active {
  color: #54FF9F;
}

/* CSS Animations */

.animated {
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
       -o-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


/* line 608, ../scss/main.scss */
.slide-in.cnts-menu-open #side-menu,
.slide-in.cnts-menu-open .innerLeft,
.slide-in.cnts-menu-open .cnts-push {
  left: 380px;
}

/* line 613, ../scss/main.scss */
.slide-in.cnts-menu {
  z-index: 1;
}

/* line 616, ../scss/main.scss */
.slide-in.cnts-menu-open .slide-in.cnts-menu {
  visibility: visible;
}

/* line 619, ../scss/main.scss */
.slide-in.cnts-menu::after {
  display: none;
}

/* line 624, ../scss/main.scss */
.article-inner .hidden-placeholder {
  visibility: hidden;
  pointer-events: none;
}

/* line 628, ../scss/main.scss */
.innerLeft .image-clone {
  position: absolute;
  top: 3em;
  left: 3em;
  max-width: 40%;
}
/* line 631, ../scss/main.scss */
.innerLeft .image-clone.img-top-right {
  left: auto;
  right: 3em;
}
/* line 634, ../scss/main.scss */
.innerLeft .image-clone.img-centre {
  top: 32.5%;
  left: 20%;
  max-width: none;
  width: auto;
}
/* line 637, ../scss/main.scss */
.innerLeft .image-clone.img-centre img {
  width: 100%;
}
/* line 640, ../scss/main.scss */
.innerLeft .image-clone.img-bottom-left {
  top: auto;
  left: 3em;
  bottom: 3em;
  max-width: 40%;
}
/* line 643, ../scss/main.scss */
.innerLeft .image-clone.img-bottom-right {
  top: auto;
  left: auto;
  bottom: 3em;
  right: 3em;
}

/* line 648, ../scss/main.scss */
figure.img-inline {
  position: static !important;
  visibility: visible !important;
  left: 0;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

/* line 655, ../scss/main.scss */
figure.img-inline.image-clone {
  visibility: hidden !important;
  opacity: 0;
}

/*
**
*** 10. Media Queries
**
*/
@media only screen and (max-width: 1400px) {
  /* line 672, ../scss/main.scss */
  h1.title {
    font-size: 64px;
    line-height: 68px;
    font-size: 4rem;
    line-height: 4.25rem;
    margin-top: 2.25em;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  /* line 677, ../scss/main.scss */
  .cnts-menu-open .copyright {
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* line 684, ../scss/main.scss */
  article p:first-of-type {
    margin-top: 2.5em;
  }

  /* line 687, ../scss/main.scss */
  h3 {
    font-size: 21.6px;
    line-height: 28px;
    font-size: 1.35rem;
    line-height: 1.75rem;
    margin-bottom: 2.5em;
    margin-top: 1.5em;
  }

  /* line 692, ../scss/main.scss */
  span.numbers {
    text-align: center;
  }

  /* line 696, ../scss/main.scss */
  .innerLeft .image-clone {
    display: none !important;
  }

  /* line 699, ../scss/main.scss */
  .article-inner .hidden-placeholder {
    visibility: visible;
    position: static;
  }

  /* line 703, ../scss/main.scss */
  .innerLeft {
    display: none;
  }

  /* line 707, ../scss/main.scss */
  .titles {
    display: block !important;
    opacity: 1 !important;
    z-index: 1000000;
  }
  /* line 711, ../scss/main.scss */
  .titles h1.title {
    font-size: 64px;
    line-height: 72px;
    font-size: 4rem;
    line-height: 4.5rem;
    margin: 2em 0.9em 0 0.9em;
    padding: 0 0 2.5em 0;
    width: 80%;
  }

  /* line 718, ../scss/main.scss */
  .innerRight {
    -webkit-overflow-scrolling: touch;
    width: 85%;
    left: 4em;
    margin-top: 0;
    padding: 0 0.5em 0 2em;
  }
  /* line 724, ../scss/main.scss */
  .article .innerRight {
    margin-top: 1em;
  }
  /* line 727, ../scss/main.scss */
  .innerRight figure {
    width: auto;
    max-width: 100%;
    padding: 2em 0;
  }
  /* line 732, ../scss/main.scss */
  .innerRight .return {
    display: none;
  }
}
@media only screen and (max-width: 768px) and (min-width: 480px) {
  /* line 741, ../scss/main.scss */
  .hide-desktop {
    display: block;
  }

  /* line 744, ../scss/main.scss */
  article.span6 {
    width: 100%;
    margin-left: 0;
  }

  /* line 748, ../scss/main.scss */
  .span3 {
    width: 28%;
  }

  /* line 751, ../scss/main.scss */
  .article footer {
    margin-left: 6em;
  }

  /* line 754, ../scss/main.scss */
  .about {
    max-width: 700px;
  }

  /* line 757, ../scss/main.scss */
  .titles h2 {
    font-size: 24px;
    line-height: 28px;
    font-size: 1.5rem;
    line-height: 1.75rem;
    width: 80%;
    margin-bottom: 6.5em;
  }

  /* line 764, ../scss/main.scss */
  nav h2 {
    display: block;
  }

  /* line 767, ../scss/main.scss */
  p {
    font-size: 17.52px;
    line-height: 26.28px;
    font-size: 1.095rem;
    line-height: 1.6425rem;
  }

  /* line 770, ../scss/main.scss */
  .title-page {
    left: 9em;
  }
}
@media only screen and (max-width: 480px) and (min-width: 320px) {
  /* line 779, ../scss/main.scss */
  .hide-mobile,
  .hide-home,
  .slide-in footer {
    display: none;
  }

  /* line 785, ../scss/main.scss */
  .hide-desktop {
    display: block;
  }

  /* line 788, ../scss/main.scss */
  .titles {
    position: relative;
    z-index: 500000000;
  }

  /* line 792, ../scss/main.scss */
  .titles h1.title {
    font-size: 44px;
    line-height: 47.2px;
    font-size: 2.75rem;
    line-height: 2.95rem;
    width: 100%;
    padding: 0;
    margin: 1.5em 0;
  }

  /* line 798, ../scss/main.scss */
  .titles h2 {
    font-size: 16px;
    line-height: 24px;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 80%;
    display: none;
  }

  /* line 803, ../scss/main.scss */
  h4 + p:first-of-type {
    margin-top: 0 !important;
    padding-top: 0;
  }

  /* line 807, ../scss/main.scss */
  div + h4 {
    margin-top: 2.5em;
  }

  /* line 810, ../scss/main.scss */
  .about h2 {
    font-size: 28px;
    line-height: 30.4px;
    font-size: 1.75rem;
    line-height: 2.1rem;
  }

  /* line 813, ../scss/main.scss */
  .cnts-menu h2 {
    text-indent: 2.25em;
  }

  /* line 817, ../scss/main.scss */
  h3 {
    font-size: 19.2px;
    line-height: 24px;
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 2em 0;
  }

  /* line 821, ../scss/main.scss */
  p {
    font-size: 16.8px;
    line-height: 24px;
    font-size: 1.05rem;
    line-height: 1.5rem;
    clear: left;
  }

  /* line 825, ../scss/main.scss */
  article p:first-of-type {
    margin-top: 2.5em;
  }

  /* line 828, ../scss/main.scss */
  p.details {
    padding-top: 0.5em;
  }

  /* line 831, ../scss/main.scss */
  ul.tags {
    margin-left: 2.25em;
  }

  /* line 834, ../scss/main.scss */
  .cnts-menu ul li a {
    font-size: 15.2px;
    line-height: 16px;
    font-size: 0.95rem;
    line-height: 1rem;
  }

  /* line 837, ../scss/main.scss */
  #tags {
    font-size: 13.6px;
    line-height: 16px;
    font-size: 0.85rem;
    line-height: 1rem;
    position: relative;
    z-index: 110;
    display: block;
    float: left;
    width: 100%;
    margin: 0.75em 0;
  }
  /* line 845, ../scss/main.scss */
  #tags a {
    border-bottom: 1px solid #ccc;
  }

  /* line 850, ../scss/main.scss */
  .save {
    width: 100%;
    font-size: 12px;
    line-height: 16px;
    font-size: 0.75rem;
    line-height: 1rem;
  }

  /* line 854, ../scss/main.scss */
  #share a,
  ul.social-links li a {
    font-size: 12px;
    line-height: 16px;
    font-size: 0.75rem;
    line-height: 1rem;
    border-bottom: 1px solid #2e2e2e;
  }

  /* line 859, ../scss/main.scss */
  small {
    font-size: 10.4px;
    line-height: 12px;
    font-size: 0.65rem;
    line-height: 0.75rem;
  }

  /* line 862, ../scss/main.scss */
  .about {
    max-width: 480px;
  }

  /* line 865, ../scss/main.scss */
  .home article {
    padding: 1em 0.75em 0 1.25em;
    margin: 0;
  }

  /* line 869, ../scss/main.scss */
  span.numbers {
    font-size: 13.6px;
    line-height: 20.4px;
    font-size: 0.85rem;
    line-height: 1.275rem;
    text-align: center;
    padding: 0;
  }

  /* line 874, ../scss/main.scss */
  .article footer {
    margin-left: 3em;
    padding-bottom: 1em;
  }

  /* line 878, ../scss/main.scss */
  .span3 {
    width: 45%;
  }

  /* line 881, ../scss/main.scss */
  .cnts-menu {
    width: 280px;
    padding: 0 1em;
    overflow-y: auto;
    outline: 2px solid red;
  }

  /* line 887, ../scss/main.scss */
  .slide-in.cnts-menu-open #side-menu,
  .slide-in.cnts-menu-open .innerLeft,
  .slide-in.cnts-menu-open .cnts-push {
    left: 280px;
  }

  /* line 892, ../scss/main.scss */
  .cnts-menu ul.articles li a {
    font-size: 20.8px;
    line-height: 24.8px;
    font-size: 1.3rem;
    line-height: 1.55rem;
    width: 87.5%;
    padding: 0.05em 0 0.25em 2.5%;
  }

  /* line 897, ../scss/main.scss */
  li.subtitle {
    font-size: 15.2px;
    line-height: 19.2px;
    font-size: 0.95rem;
    line-height: 1.2rem;
    margin-left: 2.5em;
  }

  /* line 901, ../scss/main.scss */
  .title-page {
    position: relative;
    z-index: 10000000000;
  }

  /* line 905, ../scss/main.scss */
  .innerRight {
    width: 95%;
    -webkit-overflow-scrolling: touch;
    left: 0.5em;
  }
  /* line 909, ../scss/main.scss */
  .article .innerRight {
    margin-top: 1em !important;
  }
  /* line 912, ../scss/main.scss */
  .innerRight .return {
    display: none;
  }
  /* line 915, ../scss/main.scss */
  .innerRight figure {
    padding: 1em 0;
  }

  /* line 919, ../scss/main.scss */
  .share {
    font-size: 12px;
    line-height: 18px;
    font-size: 0.75rem;
    line-height: 1.125rem;
  }

  /* line 922, ../scss/main.scss */
  #cnts-trigger a {
    color: #ddd;
    z-index: 2000000000;
  }

  /* line 926, ../scss/main.scss */
  #side-menu {
    background: white;
    width: 2em;
  }

  /* line 930, ../scss/main.scss */
  #side-menu > nav {
    left: 0.5em;
    z-index: 100000;
  }

  /* line 934, ../scss/main.scss */
  .cnts-menu ul.tags {
    margin-bottom: 2.5em;
  }

  /* line 937, ../scss/main.scss */
  iframe {
    margin: 1em 0 1.5em 0;
  }
}
