@charset "UTF-8";
/*!
 * Roots 6.5.2
 */
@import url(http://fonts.googleapis.com/css?family=Exo+2:700,400&subset=latin,cyrillic);
html {
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   Maps
   ========================================================================== */
.google-map img {
  display: block;
  width: 100%;
  height: 100%;
}

.entry-content-asset {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  overflow: hidden;
  height: auto;
}
.entry-content-asset iframe,
.entry-content-asset object,
.entry-content-asset embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
 *  Remodal - v0.5.0
 *  Flat, responsive, lightweight, easy customizable modal window plugin with declarative state notation and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  visibility: hidden;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-transform: translateZ(0px);
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  display: inline-block;
}

/* Anti-zoom. Font-size should be >= 16px. */
.remodal select,
.remodal textarea,
.remodal input,
.remodal select:focus,
.remodal textarea:focus,
.remodal input:focus {
  font-size: 16px;
}

/* ==========================================================================
   Remodal default theme
   ========================================================================== */
/* Default theme font */
.remodal,
.remodal * {
  font-family: "Exo 2", sans-serif;
}

/* Background for effects */
.remodal-bg {
  -webkit-transition: -webkit-filter 0.2s ease-out;
  -moz-transition: -moz-filter 0.2s ease-out;
  -o-transition: -o-filter 0.2s ease-out;
  transition: filter 0.2s ease-out;
}

body.remodal-is-active .remodal-bg {
  -webkit-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0;
  background: rgba(33, 36, 46, 0.95);
}

body.remodal-is-active .remodal-overlay {
  opacity: 1;
}

/* Default theme styles of the modal dialog */
.remodal {
  font-size: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  padding: 35px;
  -webkit-transition: -webkit-transform 0.2s ease-out, opacity 0.2s ease-out;
  -moz-transition: -moz-transform 0.2s ease-out, opacity 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out, opacity 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0;
  color: #182a3c;
  background: #f4f4f4;
  background-clip: padding-box;
}

body.remodal-is-active .remodal {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 28px;
  height: 28px;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  text-decoration: none;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.remodal-close:after {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 28px;
  line-height: 28px;
  display: block;
  content: "×";
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-decoration: none;
  color: #3e5368;
}

.remodal-close:hover,
.remodal-close:active {
  background: #3e5368;
}

.remodal-close:hover.remodal-close:after,
.remodal-close:active.remodal-close:after {
  color: #f4f4f4;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font-size: 10pt;
  display: inline-block;
  width: 120px;
  margin: 0 0 5px 0;
  padding: 9px 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-align: center;
  text-decoration: none;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-clip: padding-box;
}

.remodal-confirm {
  color: #16a085;
  border: 2px solid #16a085;
  background: #f4f4f4;
}

.remodal-confirm:hover,
.remodal-confirm:active {
  color: #f4f4f4;
  background: #16a085;
}

.remodal-cancel {
  color: #c0392b;
  border: 2px solid #c0392b;
  background: #f4f4f4;
}

.remodal-cancel:hover,
.remodal-cancel:active {
  color: #f4f4f4;
  background: #c0392b;
}

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 40.063em) {
  .remodal {
    max-width: 700px;
    min-height: 0;
    margin: 20px auto;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F021242E, endColorstr=#F021242E);
}

.lt-ie9 .remodal {
  width: 700px;
  min-height: 0;
  margin: 20px auto;
}

.lt-ie9 .remodal-close:after {
  margin: auto;
  text-align: center;
}

.lt-ie9 .remodal-close:hover,
.lt-ie9 .remodal-close:active {
  background: transparent;
}

.lt-ie9 .remodal-close:hover.remodal-close:after,
.lt-ie9 .remodal-close:active.remodal-close:after {
  color: #3e5368;
}

/* ==========================================================================
   Colours
   ========================================================================== */
/* ==========================================================================
   Breakpoints
   ========================================================================== */
/* ==========================================================================
   Z-Index
   ========================================================================== */
@font-face {
  font-family: 'LibreBaskerville-Italic';
  src: url("../fonts/librebaskerville-italic.eot");
  src: url("../fonts/librebaskerville-italic.eot") format("embedded-opentype"), url("../fonts/librebaskerville-italic.woff2") format("woff2"), url("../fonts/LibreBaskerville-Italic.woff") format("woff"), url("../fonts/librebaskerville-italic.ttf") format("truetype"), url("../fonts/librebaskerville-italic.svg#LibreBaskervilleItalic") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'tradegothic-light';
  src: url("../fonts/tradegothic-light.eot");
  src: url("../fonts/tradegothic-light.eot") format("embedded-opentype"), url("../fonts/tradegothic-light.woff2") format("woff2"), url("../fonts/tradegothic-light.woff") format("woff"), url("../fonts/tradegothic-light.ttf") format("truetype"), url("../fonts/tradegothic-light.svg#TradeGothicLight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tradegothic';
  src: url("../fonts/tradegothic.eot");
  src: url("../fonts/tradegothic.eot") format("embedded-opentype"), url("../fonts/tradegothic.woff2") format("woff2"), url("../fonts/tradegothic.woff") format("woff"), url("../fonts/tradegothic.ttf") format("truetype"), url("../fonts/tradegothic.svg#TradeGothicMedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Trade-Gothic-LT-Bold-Condensed';
  src: url("../fonts/trade-gothic-lt-bold-condensed-no.eot");
  src: url("../fonts/trade-gothic-lt-bold-condensed-no.eot") format("embedded-opentype"), url("../fonts/trade-gothic-lt-bold-condensed-no.woff2") format("woff2"), url("../fonts/Trade-Gothic-LT-Bold-Condensed-No.woff") format("woff"), url("../fonts/trade-gothic-lt-bold-condensed-no.ttf") format("truetype"), url("../fonts/trade-gothic-lt-bold-condensed-no.svg#TradeGothicLTCondEighteenBold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'TradeGothicLT-BoldTwo';
  src: url("../fonts/tradegothiclt-boldtwo.eot");
  src: url("../fonts/tradegothiclt-boldtwo.eot") format("embedded-opentype"), url("../fonts/tradegothiclt-boldtwo.woff2") format("woff2"), url("../fonts/TradeGothicLT-BoldTwo.woff") format("woff"), url("../fonts/tradegothiclt-boldtwo.ttf") format("truetype"), url("../fonts/tradegothiclt-boldtwo.svg#TradeGothicLTBold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'libre_baskervilleregular';
  src: url("../fonts/baskervillecom-upright.eot");
  src: url("../fonts/baskervillecom-upright.eot") format("embedded-opentype"), url("../fonts/baskervillecom-upright.woff2") format("woff2"), url("../fonts/baskervillecom-upright.woff") format("woff"), url("../fonts/baskervillecom-upright.ttf") format("truetype"), url("../fonts/baskervillecom-upright.svg#BaskervilleComUpright") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ==========================================================================
   Mixins
   ========================================================================== */
/* ==========================================================================
   Cookie Bar
   ========================================================================== */
.cookie-bars {
  z-index: 212;
  position: relative;
}
.cookie-bars.hidden {
  display: none;
}

.cookie-bar {
  background-color: #64c2c8;
  position: relative;
  margin-bottom: -1px;
}
.cookie-bar.bg {
  position: fixed;
  z-index: 211;
  top: 0;
  left: 0;
  width: 100%;
}
.cookie-bar.bg .container {
  visibility: hidden;
}
html.js.cookie-bar-loaded .cookie-bar {
  visibility: hidden;
}
html.js.cookie-bar-loaded .cookie-bar.bg {
  visibility: visible;
}
.cookie-bar .container {
  position: relative;
}
.cookie-bar:hover {
  cursor: pointer;
}
.cookie-bar .sprite-button {
  float: none;
  position: absolute;
  left: -65px;
  top: 19px;
}
@media (max-width: 980px) {
  .cookie-bar .sprite-button {
    display: none;
  }
}
.cookie-bar .contents {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 750px;
  position: relative;
}
.cookie-bar .contents.fixed {
  position: fixed;
  z-index: 212;
}
@media (max-width: 767px) {
  .cookie-bar .contents {
    width: 306px;
  }
}
html.js.cookie-bar-loaded .cookie-bar .contents {
  visibility: hidden;
}
html.js.cookie-bar-loaded .cookie-bar .contents.fixed {
  visibility: visible;
}
.cookie-bar p {
  margin: 0;
}
.cookie-bar .heading {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: 20px;
  line-height: 27px;
}
.cookie-bar .heading p {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: 20px;
  line-height: 27px;
}
.cookie-bar .heading a {
  color: white;
  border-bottom-color: white;
  border-bottom-color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 767px) {
  .cookie-bar .heading {
    font-size: 18px;
    line-height: 25px;
  }
  .cookie-bar .heading p {
    font-size: 18px;
    line-height: 25px;
  }
}

/* ==========================================================================
   Base
   ========================================================================== */
#ajax-content {
  display: none;
}

.sr-only {
  display: none;
}

html {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #ededed;
  margin: 0;
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #1A1E52;
  font-size: 14px;
  line-height: 1.5;
}

.page-wrapper {
  padding-bottom: 1px;
  background-color: #f9f9fa;
  position: relative;
  z-index: 100;
}

.top-line {
  z-index: 202;
  background-color: #64c2c8;
  height: 4px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
html.touch .top-line {
  position: static;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1A1E52;
  margin-top: 30px;
  margin-bottom: 20px;
}
h1 span, h1 b, h1 strong, h1 i, h2 span, h2 b, h2 strong, h2 i, h3 span, h3 b, h3 strong, h3 i, h4 span, h4 b, h4 strong, h4 i, h5 span, h5 b, h5 strong, h5 i, h6 span, h6 b, h6 strong, h6 i {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1A1E52;
}

a {
  color: #1A1E52;
  text-decoration: none !important;
}
a:hover {
  color: #64c2c8;
  text-decoration: none !important;
}
a:focus, a:active {
  outline: none;
}

p a {
  -moz-transition-property: color, border-bottom-color, border-bottom-width;
  -o-transition-property: color, border-bottom-color, border-bottom-width;
  -webkit-transition-property: color, border-bottom-color, border-bottom-width;
  transition-property: color, border-bottom-color, border-bottom-width;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  text-decoration: none;
  border-bottom: 1px solid #1A1E52;
  border-bottom-color: #1A1E52;
  border-bottom-width: 1px;
  border-bottom-color: rgba(26, 30, 82, 0.5);
}
p a:hover {
  border-bottom-color: transparent;
  border-bottom-width: 0px;
}

b, strong {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}

p {
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

span.image-wrapper {
  display: block;
  background-color: #ededed;
  margin-left: -10px;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  span.image-wrapper {
    margin-right: -10px;
  }
}

.container {
  width: 750px;
  padding-right: 10px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .container {
    width: 750px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .container {
    width: 306px;
  }
}

/* ==========================================================================
   header
   ========================================================================== */
.logo {
  margin: 0;
  position: absolute;
  bottom: 0;
  margin-left: 15px;
}
.logo a {
  display: block;
  width: 112px;
  height: 22px;
  background-image: url(../img/aesop_logo.png);
  background-size: 112px 22px;
  background-repeat: no-repeat;
}
html.backgroundsize.hires .logo a {
  background-image: url(../img/aesop_logo@2x.png);
}
html.svg.hires .logo a {
  background-image: url(../img/aesop_logo.svg);
}
.logo .alt-logo {
  display: none;
}
.logo.fixed {
  position: absolute;
  bottom: 0;
  right: 0;
}

html.no-touch header .navbar-toggle {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
}

header {
  height: auto;
  overflow: hidden;
  *zoom: 1;
}
header .navbar-toggle {
  display: none;
  position: absolute;
  bottom: 24px;
  right: 0;
}
header .navbar-toggle .icon-bar {
  display: block;
  width: 40px;
  height: 4px;
  background-color: #64c2c8;
  margin-bottom: 6px;
}
header .navbar-toggle:active {
  -moz-transform: scale(0.85, 0.85);
  -ms-transform: scale(0.85, 0.85);
  -webkit-transform: scale(0.85, 0.85);
  transform: scale(0.85, 0.85);
}
header .navbar-toggle:active .icon-bar {
  background-color: #1A1E52;
}
@media (max-width: 767px) {
  header .navbar-toggle {
    display: block;
  }
}
html.no-touch header .navbar-toggle {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
}
html.no-touch header .navbar-toggle:hover .icon-bar {
  background-color: #1A1E52;
}
header .navbar-header {
  height: 75px;
  margin-bottom: 25px;
  position: relative;
}
header .tagline {
  font-size: 14px;
  line-height: 21px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1A1E52;
  font-size: 16px;
  line-height: 25px;
  position: absolute;
  right: 0;
  bottom: -7px;
  margin: 0;
}
@media (max-width: 767px) {
  header .tagline {
    display: none;
    font-size: 14px;
    line-height: 21px;
    font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
    font-style: italic;
    font-weight: normal;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1A1E52;
    font-size: 13px;
    bottom: -6px;
  }
}
header nav.fixed {
  display: none;
  position: fixed;
  width: 750px;
  z-index: 201;
}
header nav.fixed li.home {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
header nav.fixed li.home a {
  pointer-events: all;
}
header nav.fixed-full li.home {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
header nav.fixed-full li.home a {
  pointer-events: all;
}
header nav .top {
  height: 76px;
  margin-bottom: 15px;
  position: relative;
}
header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #1A1E52;
  width: 180px;
}
header nav li {
  padding: 0;
  margin: 0;
}
header nav li.home {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition-property: opacity, width;
  -o-transition-property: opacity, width;
  -webkit-transition-property: opacity, width;
  transition-property: opacity, width;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  display: none;
}
header nav li.home a {
  border-top-color: transparent;
  pointer-events: none;
}
header nav li a {
  display: block;
  text-decoration: none;
  font-family: 'Trade-Gothic-LT-Bold-Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  letter-spacing: 1px;
  letter-spacing: 0.02em;
  font-size: 1.4em;
  color: #1A1E52;
  padding: 4px 0 3px 0;
  border-top: 1px solid #1A1E52;
  text-align: right;
}
header nav li a:hover {
  background-color: #ededed;
  color: #1A1E52;
}
header nav li.active a {
  background-color: #ededed;
}
@media (min-width: 768px) {
  header nav {
    position: static;
    margin-left: 0;
    margin-top: 0;
    width: 750px;
    margin-bottom: 20px;
    background-color: #f9f9fa;
  }
  header nav .top {
    display: none;
  }
  header nav ul {
    text-align: center;
    width: auto;
    border-top: 1px solid #1A1E52;
  }
  header nav li {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
  }
  header nav li a {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    padding: 4px 10px 3px 10px;
    border-top: 0;
  }
}
@media (max-width: 767px) {
  header nav {
    margin-left: 0;
    width: 100%;
    position: static;
    display: none;
    margin-top: 0;
    margin-bottom: 10px;
    background-color: #f9f9fa;
  }
  header nav ul {
    width: 100%;
  }
  header nav ul li.home {
    display: block;
  }
  header nav ul li.home a {
    pointer-events: all;
    border-top-color: #1A1E52;
  }
  header nav .top {
    display: none;
  }
  header nav.fixed {
    display: none;
  }
  html.mobile-nav-open header nav {
    display: block;
  }
}

/* ==========================================================================
   Content
   ========================================================================== */
.content {
  margin-bottom: 45px;
}

.main {
  overflow: hidden;
}

/* Gallery Shortcode */
.gallery-row {
  padding: 15px 0;
}

.entry-featured {
  position: relative;
  overflow: hidden;
  background-color: #ededed;
}
.entry-featured .oembed-link {
  display: block;
}

.entry-featured.has-image {
  height: 370px;
}
@media (max-width: 767px) {
  .entry-featured.has-image {
    height: 147px;
  }
}

html.js .entry-featured img,
html.js .entry-content img,
html.js .entry-footer img,
html.js .post-preview img,
html.js .box.image img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.page-content-special-footer {
  width: 560px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-content-special-footer {
    width: 306px;
    margin-bottom: 8px;
  }
}

.page-content-sidebar {
  float: right;
  width: 180px;
}
@media (max-width: 767px) {
  .page-content-sidebar {
    width: auto;
  }
}
.page-content-sidebar .post-preview.cat-news .overlay {
  background-color: #64c2c8;
}
.page-content-sidebar .twitter {
  background-color: #fab942;
  padding: 10px 15px;
  height: 350px;
  overflow: hidden;
  margin-bottom: 10px;
}
.page-content-sidebar .twitter a {
  color: #1A1E52;
  text-decoration: none;
}
.page-content-sidebar .twitter a:hover {
  color: #1A1E52;
  border-bottom: 1px solid rgba(26, 30, 82, 0.5);
}
.page-content-sidebar .twitter .tweet {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 30, 82, 0.2);
}
.page-content-sidebar .twitter h4 a {
  color: white;
}
.page-content-sidebar .twitter h4 a:hover {
  color: white;
  border-bottom: none;
}
.page-content-sidebar .twitter .text-content {
  background-color: transparent;
}
.page-content-sidebar .twitter .text-content .fade {
  background-image: url(../img/light-blue-fade.png);
  bottom: -45px;
}
.page-content-sidebar .twitter .text-content {
  height: 350px;
  position: relative;
}
.page-content-sidebar .twitter .fade {
  position: absolute;
  width: 100%;
  height: 87px;
  bottom: -15px;
  left: 0;
  background-image: url(../img/green-blue.png);
}
.page-content-sidebar .twitter h4.sub-title {
  margin-top: 0;
  margin-bottom: 10px;
}

.page-content {
  width: 520px;
  padding: 15px;
}
.page-content p {
  margin-top: 0;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  margin-bottom: 3px;
}
.page-content h1.page-title {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1A1E52;
  margin-top: 0;
  margin-bottom: 20px;
}
.page-content.special {
  float: left;
  background-color: #fab942;
  padding: 20px;
  margin-bottom: 10px;
}
.page-content.special h1.page-title {
  font-size: 48px;
  line-height: 56px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}
@media (max-width: 767px) {
  .page-content.special h1.page-title {
    font-size: 34px;
    line-height: 40px;
  }
}
.page-content.special h1, .page-content.special h2, .page-content.special h3, .page-content.special h4, .page-content.special h5, .page-content.special h6 {
  color: white;
}
.page-content.special a:hover {
  color: #1A1E52;
  text-decoration: none;
}
.page-content.characters {
  padding: 20px;
}
.page-content span.image-wrapper {
  background-color: transparent;
}
.page-content.characters {
  background-color: #64c2c8;
  width: auto;
  margin-bottom: 10px;
}
.page-content.characters h1.page-title {
  font-size: 48px;
  line-height: 56px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}
@media (max-width: 767px) {
  .page-content.characters h1.page-title {
    font-size: 34px;
    line-height: 40px;
  }
}
.page-content.characters p {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-content {
    width: 266px;
  }
  .page-content.characters, .page-content.special {
    margin-bottom: 8px;
  }
}

.entry-content,
.entry-header,
#comments,
#respond {
  width: 550px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .entry-content,
  .entry-header,
  #comments,
  #respond {
    width: 286px;
  }
}

.entry-content p,
.page-content p {
  margin-bottom: 1.5em;
}
.entry-content img,
.page-content img {
  margin-bottom: 10px;
}

.entry-header .entry-meta {
  text-transform: uppercase;
  letter-spacing: 1px;
  letter-spacing: 0;
  margin-bottom: 1.8em;
  margin-top: 1.8em;
}
.entry-header .entry-meta a {
  border-bottom: none;
}
.entry-header .entry-meta p {
  display: inline;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
@media (max-width: 767px) {
  .entry-header .entry-meta p {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
  }
}

h1.entry-title {
  font-size: 48px;
  line-height: 56px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #64c2c8;
  margin-top: 10px;
  margin-bottom: 0.65em;
}
@media (max-width: 767px) {
  h1.entry-title {
    font-size: 34px;
    line-height: 40px;
  }
}

.entry-footer {
  overflow: hidden;
  *zoom: 1;
  margin-top: 45px;
}
.entry-footer.special {
  clear: both;
}
.entry-footer .author-image {
  width: 180px;
  height: 180px;
  margin-right: 10px;
  margin-bottom: 10px;
  float: left;
  background-color: #ededed !important;
}
.entry-footer .author-image img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.entry-footer .author-description {
  background-color: #fab942;
  width: 530px;
  height: 160px;
  padding: 10px 15px;
  margin-bottom: 10px;
  float: left;
}
.entry-footer .author-description h3 {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  margin: 0 0 5px 0;
}
.entry-footer .author-description p {
  margin: 0;
}
.entry-footer .author-description p.description {
  margin-bottom: 3px;
}
.entry-footer .author-description a {
  color: white;
  text-decoration: none;
  border-bottom-color: transparent;
  border-bottom-width: 0px;
}
.entry-footer .author-description a:hover {
  border-bottom-color: white;
  border-bottom-width: 1px;
  color: white;
}
@media (max-width: 767px) {
  .entry-footer .author-description {
    width: auto;
    height: auto;
    float: none;
    clear: both;
  }
}

.entries-footer {
  overflow: hidden;
  *zoom: 1;
}

html.no-touch .entry-footer nav a, html.no-touch .entries-footer nav a {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
}

.entry-footer nav, .entries-footer nav {
  float: left;
  width: 100%;
  overflow: hidden;
  *zoom: 1;
}
.entry-footer nav a, .entries-footer nav a {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 0 10px;
  text-align: center;
  line-height: 45px;
  color: #1A1E52;
  background-color: #ededed;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  width: 340px;
}
.entry-footer nav a:hover, .entries-footer nav a:hover {
  color: white;
  background-color: #64c2c8;
  text-decoration: none;
}
.entry-footer nav a span, .entries-footer nav a span {
  position: relative;
  top: -1px;
}
.entry-footer nav a:active, .entries-footer nav a:active {
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}
.entry-footer nav .full a,
.entry-footer nav .full a, .entries-footer nav .full a,
.entries-footer nav .full a {
  width: 720px;
}
.entry-footer nav .loadmore, .entries-footer nav .loadmore {
  display: none;
}
.entry-footer nav .loadmore a.is-loading, .entries-footer nav .loadmore a.is-loading {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.entry-footer nav .loadmore a.is-loading:hover, .entries-footer nav .loadmore a.is-loading:hover {
  cursor: default;
  background-color: #ededed;
  color: #1A1E52;
}
.entry-footer nav .prev a, .entries-footer nav .prev a {
  float: left;
  text-align: left;
}
.entry-footer nav .next a, .entries-footer nav .next a {
  float: right;
  text-align: right;
}
@media (max-width: 767px) {
  .entry-footer nav a, .entries-footer nav a {
    width: 133px;
    font-size: 12px;
  }
  .entry-footer nav .prev a, .entries-footer nav .prev a {
    padding-right: 0;
  }
  .entry-footer nav .next a, .entries-footer nav .next a {
    padding-left: 0;
  }
  .entry-footer nav .full a,
  .entry-footer nav .full a, .entries-footer nav .full a,
  .entries-footer nav .full a {
    width: 276px;
  }
}

html.js .entries-footer .prev, html.js .entries-footer .next {
  display: none;
}
html.js .entries-footer .loadmore {
  display: block;
}

.previews-wrapper {
  overflow: hidden;
}
.previews-wrapper h4 {
  margin-left: 10px;
}

.previews {
  margin-right: -10px;
  overflow: hidden;
  *zoom: 1;
}

html.no-touch .post-preview a, html.no-touch .post-preview div.link-alt {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
}

.post-preview {
  float: left;
  width: 180px;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .post-preview.hide-from-mob {
    display: none;
  }
}
.post-preview a, .post-preview div.link-alt {
  overflow: hidden;
  display: block;
  text-decoration: none;
  position: relative;
}
.post-preview a .overlay-text, .post-preview div.link-alt .overlay-text {
  font-family: 'Trade-Gothic-LT-Bold-Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 26px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  visibility: hidden;
}
.post-preview a .overlay, .post-preview div.link-alt .overlay {
  background-color: #ea5050;
  width: 110%;
  height: 110%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.post-preview a:hover, .post-preview div.link-alt:hover {
  color: #1A1E52;
  cursor: pointer;
}
.post-preview a:active, .post-preview div.link-alt:active {
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}
.post-preview a span, .post-preview div.link-alt span {
  display: block;
}
.post-preview a span.image, .post-preview div.link-alt span.image {
  width: 180px;
  background-color: #ededed;
  height: 180px;
}
.post-preview a span.alt-image, .post-preview div.link-alt span.alt-image {
  display: none;
  background-color: #ededed;
}
.post-preview a span.text, .post-preview div.link-alt span.text {
  background-color: #ededed;
  margin-top: 10px;
  padding: 10px;
  height: 70px;
}
.post-preview a span.text span, .post-preview div.link-alt span.text span {
  position: relative;
}
.post-preview.work .overlay.blue {
  background-color: #64c2c8;
}
.post-preview.work .overlay.light-blue {
  background-color: #fab942;
}
.post-preview.work .overlay.green {
  background-color: #ea5050;
}
.post-preview.work .overlay.dark-green {
  background-color: #64c2c8;
}
.post-preview.work .overlay.red {
  background-color: #ea5050;
}
.post-preview.work .overlay.purple {
  background-color: #fab942;
}
.post-preview.work .overlay.yellow {
  background-color: #fab942;
}
.post-preview.work .overlay.grey {
  background-color: #1A1E52;
}
.post-preview.box a .overlay {
  background-color: #404040;
}
.post-preview.box .static-text {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  position: absolute;
  left: 15px;
  top: 10px;
}
.post-preview.work a .overlay, .post-preview.work div.link-alt .overlay, .post-preview.character a .overlay, .post-preview.character div.link-alt .overlay {
  background-color: #fab942;
}
.post-preview.work .text, .post-preview.character .text {
  text-transform: uppercase;
  letter-spacing: 1px;
  letter-spacing: 0;
}
.post-preview.work .text .client, .post-preview.character .text .client {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.post-preview.character .image {
  background-color: #ededed !important;
}
.post-preview.character img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  position: relative;
}
.post-preview.mark a .overlay, .post-preview.mark div.link-alt .overlay {
  background-color: #ea5050;
  z-index: 90;
}
.post-preview.mark a .overlay.blue, .post-preview.mark div.link-alt .overlay.blue {
  background-color: #64c2c8;
}
.post-preview.mark a .overlay.light-blue, .post-preview.mark div.link-alt .overlay.light-blue {
  background-color: #fab942;
}
.post-preview.mark a .overlay.green, .post-preview.mark div.link-alt .overlay.green {
  background-color: #ea5050;
}
.post-preview.mark a .overlay.dark-green, .post-preview.mark div.link-alt .overlay.dark-green {
  background-color: #64c2c8;
}
.post-preview.mark a .overlay.red, .post-preview.mark div.link-alt .overlay.red {
  background-color: #ea5050;
}
.post-preview.mark a .overlay.purple, .post-preview.mark div.link-alt .overlay.purple {
  background-color: #fab942;
}
.post-preview.mark a .overlay.yellow, .post-preview.mark div.link-alt .overlay.yellow {
  background-color: #fab942;
}
.post-preview.mark a .overlay.grey, .post-preview.mark div.link-alt .overlay.grey {
  background-color: #1A1E52;
}
.post-preview.mark div.link-alt {
  cursor: default;
}
.post-preview.mark div.link-alt:active {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.post-preview.mark a .overlay-text, .post-preview.mark div.link-alt .overlay-text {
  top: 0;
  text-align: left;
  z-index: 91;
}
.post-preview.mark a .overlay-text .inner, .post-preview.mark div.link-alt .overlay-text .inner {
  padding: 15px;
}
@media (max-width: 767px) {
  .post-preview.mark a .overlay-text .inner, .post-preview.mark div.link-alt .overlay-text .inner {
    padding: 10px;
  }
}
.post-preview.mark a .overlay-text h4, .post-preview.mark a .overlay-text h5, .post-preview.mark a .overlay-text span, .post-preview.mark div.link-alt .overlay-text h4, .post-preview.mark div.link-alt .overlay-text h5, .post-preview.mark div.link-alt .overlay-text span {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.post-preview.mark a .overlay-text h4, .post-preview.mark div.link-alt .overlay-text h4 {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.post-preview.mark a .overlay-text h5, .post-preview.mark div.link-alt .overlay-text h5 {
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 8px;
}
.post-preview.mark a .overlay-text span, .post-preview.mark div.link-alt .overlay-text span {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  border-bottom: 1px solid white;
  display: inline;
}
@media (max-width: 767px) {
  .post-preview.mark a .overlay-text h4, .post-preview.mark a .overlay-text h5, .post-preview.mark a .overlay-text span, .post-preview.mark div.link-alt .overlay-text h4, .post-preview.mark div.link-alt .overlay-text h5, .post-preview.mark div.link-alt .overlay-text span {
    font-size: 13px;
  }
}
.post-preview.post {
  float: none;
  height: auto;
  width: auto;
  overflow: hidden;
  margin-right: 0;
  min-height: 180px;
}
.post-preview.post.cat-news a .overlay {
  background-color: #64c2c8;
}
.post-preview.post a {
  background-color: #ededed;
  min-height: 180px;
}
.post-preview.post .overlay-text {
  width: 180px;
}
.post-preview.post .overlay-text .cat,
.post-preview.post .overlay-text .title,
.post-preview.post .overlay-text .read-more span {
  display: none;
}
.post-preview.post .image {
  position: absolute;
}
.post-preview.post .text {
  background-color: transparent;
  width: 530px;
  height: auto;
  padding: 0;
  margin: 0;
  margin-left: 200px;
  padding-top: 15px;
  padding-bottom: 37px;
}
.post-preview.post .text .sub-title {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  color: #1A1E52;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
  opacity: 0.25;
  display: none;
}
.post-preview.post .text .title {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1A1E52;
}
.post-preview.post .text .excerpt {
  margin-top: 2px;
}
.post-preview.post .text .meta {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
  opacity: 0.25;
  color: #1A1E52;
  font-size: 12px;
  margin-top: 10px;
  position: absolute;
  bottom: 15px;
  left: 200px;
}
.post-preview.post .text .meta .author {
  display: inline;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
@media (max-width: 767px) {
  .post-preview.post {
    height: auto;
    min-height: 0;
  }
  .post-preview.post .image {
    display: none;
  }
  .post-preview.post .text {
    margin-left: 0;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
  }
  .post-preview.post .text .meta {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .post-preview.post .text .meta .author {
    display: block;
  }
  .post-preview.post .overlay-text {
    display: none;
  }
  .post-preview.post.featured .overlay-text {
    display: block;
  }
}
.post-preview.post.featured {
  width: 370px;
  float: left;
  margin-right: 10px;
}
.post-preview.post.featured .image {
  width: 370px;
  height: 180px;
}
.post-preview.post.featured .text {
  display: none;
}
.post-preview.post.featured .overlay-text {
  top: 0;
  height: 100%;
  width: 100%;
}
.post-preview.post.featured .overlay-text .title {
  padding-left: 25px;
  padding-right: 25px;
  line-height: 1.1;
  position: absolute;
  top: 50px;
  width: 320px;
}
.post-preview.post.featured .overlay-text .cat {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  text-transform: none;
  position: absolute;
  left: 0;
  top: 15px;
  width: 100%;
  text-align: center;
}
.post-preview.post.featured .overlay-text .read-more {
  font-size: 15px;
  letter-spacing: 1px;
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  text-align: center;
}
.post-preview.post.featured .overlay-text .read-more span {
  display: inline;
  position: relative;
  top: -1px;
}
.post-preview.post.featured .overlay-text .read-more span.lt {
  visibility: hidden;
}
.post-preview.post.featured .overlay-text .cat,
.post-preview.post.featured .overlay-text .title {
  display: block;
}
.post-preview.post.featured .overlay-text .read-more span {
  display: inline;
}
@media (max-width: 767px) {
  .post-preview.post.featured {
    width: 306px;
    height: 149px;
    min-height: 149px;
  }
  .post-preview.post.featured .image {
    display: block;
    width: 306px;
    height: 149px;
  }
  .post-preview.post.featured .overlay, .post-preview.post.featured a {
    height: 149px;
    width: 306px;
    min-height: 149px;
  }
  .post-preview.post.featured .overlay-text {
    height: 149px;
  }
  .post-preview.post.featured .overlay-text .cat {
    top: 10px;
  }
  .post-preview.post.featured .overlay-text .title {
    top: 45px;
    width: 266px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .post-preview.post.featured .overlay-text .read-more {
    bottom: 10px;
  }
  .post-preview.post.featured.hide-from-mob {
    display: none;
    min-height: 0;
    height: auto;
  }
  .post-preview.post.featured.hide-from-mob .image {
    display: none;
  }
  .post-preview.post.featured.hide-from-mob .overlay-text {
    display: none;
  }
  .post-preview.post.featured.hide-from-mob .text {
    display: block;
  }
}
@media (max-width: 767px) {
  .post-preview {
    width: 149px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .post-preview a span.image, .post-preview div.link-alt span.image {
    width: 149px;
    height: 149px;
  }
  .post-preview a span.text, .post-preview div.link-alt span.text {
    font-size: 12px;
    line-height: 1.6;
    padding-left: 8px;
    padding-right: 8px;
  }
  .post-preview a .overlay-text, .post-preview div.link-alt .overlay-text {
    font-size: 20px;
    top: 70px;
  }
  .post-preview a span.text, .post-preview div.link-alt span.text {
    margin-top: 8px;
  }
}

html.no-js .post-preview a:hover .overlay, html.no-js .post-preview div.link-alt:hover .overlay, html.no-touch .post-preview a:hover .overlay, html.no-touch .post-preview div.link-alt:hover .overlay {
  visibility: visible;
}
html.no-js .post-preview a:hover .overlay-text, html.no-js .post-preview div.link-alt:hover .overlay-text, html.no-touch .post-preview a:hover .overlay-text, html.no-touch .post-preview div.link-alt:hover .overlay-text {
  visibility: visible;
}

html.js .post-preview a:hover .overlay, html.js .post-preview div.link-alt:hover .overlay {
  visibility: hidden;
}
html.js .post-preview a:hover .overlay-text, html.js .post-preview div.link-alt:hover .overlay-text {
  visibility: hidden;
}

.previews .featured .post-preview {
  width: 370px;
}
.previews .featured .post-preview a span.image {
  width: 370px;
}
.previews .featured .post-preview a .overlay-text {
  font-size: 40px;
}
@media (max-width: 767px) {
  .previews .featured .post-preview {
    width: 306px;
  }
  .previews .featured .post-preview a span.image {
    width: 306px;
    height: 149px;
  }
}
@media (max-width: 767px) {
  .previews .featured .post-preview.hide-from-mob {
    display: block;
    width: 149px;
  }
  .previews .featured .post-preview.hide-from-mob a span.image {
    display: none;
  }
  .previews .featured .post-preview.hide-from-mob a span.alt-image {
    display: block;
    width: 149px;
    height: 149px;
  }
  .previews .featured .post-preview.hide-from-mob a .overlay-text {
    font-size: 20px;
  }
}

.entry-content-asset-wrapper {
  margin-left: -10px;
  margin-bottom: 1.5em;
  background-color: #ededed;
}
@media (max-width: 767px) {
  .entry-content-asset-wrapper {
    margin-right: -10px;
  }
}

html.js .entry-content-asset iframe,
html.js .entry-content-asset object,
html.js .entry-content-asset embed {
  display: none;
}

/* ==========================================================================
   Work
   ========================================================================== */
.entry-content.work,
.page-template-content {
  overflow: hidden;
  *zoom: 1;
  width: auto;
  margin-left: 0;
}
.entry-content.work img,
.page-template-content img {
  margin: 0;
}
.entry-content.work .col-left, .entry-content.work .col-right,
.page-template-content .col-left,
.page-template-content .col-right {
  float: left;
  margin-top: 10px;
  width: 370px;
  overflow: hidden;
  height: 370px;
}
.entry-content.work .col-left .tags, .entry-content.work .col-right .tags,
.page-template-content .col-left .tags,
.page-template-content .col-right .tags {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0;
}
.entry-content.work .col-left .html, .entry-content.work .col-right .html,
.page-template-content .col-left .html,
.page-template-content .col-right .html {
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
}
.entry-content.work .col-left .html .moral b, .entry-content.work .col-left .html .moral strong, .entry-content.work .col-right .html .moral b, .entry-content.work .col-right .html .moral strong,
.page-template-content .col-left .html .moral b,
.page-template-content .col-left .html .moral strong,
.page-template-content .col-right .html .moral b,
.page-template-content .col-right .html .moral strong {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  letter-spacing: 0;
}
.entry-content.work .col-left .html .moral i, .entry-content.work .col-left .html .moral em, .entry-content.work .col-right .html .moral i, .entry-content.work .col-right .html .moral em,
.page-template-content .col-left .html .moral i,
.page-template-content .col-left .html .moral em,
.page-template-content .col-right .html .moral i,
.page-template-content .col-right .html .moral em {
  display: block;
}
.entry-content.work .col-left .image, .entry-content.work .col-right .image,
.page-template-content .col-left .image,
.page-template-content .col-right .image {
  width: 370px;
  height: 370px;
  background-color: #ededed;
}
.entry-content.work .col-left .slideshow, .entry-content.work .col-right .slideshow,
.page-template-content .col-left .slideshow,
.page-template-content .col-right .slideshow {
  position: relative;
  width: 370px;
  height: 370px;
  background-color: #ededed;
}
.entry-content.work .col-left .slideshow img, .entry-content.work .col-right .slideshow img,
.page-template-content .col-left .slideshow img,
.page-template-content .col-right .slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.entry-content.work .col-left .oembed, .entry-content.work .col-right .oembed,
.page-template-content .col-left .oembed,
.page-template-content .col-right .oembed {
  position: relative;
  background-color: transparent;
}
.entry-content.work .col-left .oembed .oembed-link, .entry-content.work .col-right .oembed .oembed-link,
.page-template-content .col-left .oembed .oembed-link,
.page-template-content .col-right .oembed .oembed-link {
  display: block;
  background-color: #ededed;
}
.entry-content.work .col-left .oembed .oembed-html, .entry-content.work .col-right .oembed .oembed-html,
.page-template-content .col-left .oembed .oembed-html,
.page-template-content .col-right .oembed .oembed-html {
  display: none;
}
.entry-content.work .col-left.top, .entry-content.work .col-right.top,
.page-template-content .col-left.top,
.page-template-content .col-right.top {
  margin-top: 0;
}
.entry-content.work .col-left.small, .entry-content.work .col-right.small,
.page-template-content .col-left.small,
.page-template-content .col-right.small {
  height: 180px;
}
.entry-content.work .col-left.small.coloured-box.purple, .entry-content.work .col-right.small.coloured-box.purple,
.page-template-content .col-left.small.coloured-box.purple,
.page-template-content .col-right.small.coloured-box.purple {
  background-color: #fab942;
  width: 340px;
  height: 160px;
  padding: 10px 15px;
  color: white;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.entry-content.work .col-left.small.coloured-box.purple h1, .entry-content.work .col-left.small.coloured-box.purple h2, .entry-content.work .col-left.small.coloured-box.purple h3, .entry-content.work .col-left.small.coloured-box.purple h4, .entry-content.work .col-left.small.coloured-box.purple h5, .entry-content.work .col-left.small.coloured-box.purple h6, .entry-content.work .col-right.small.coloured-box.purple h1, .entry-content.work .col-right.small.coloured-box.purple h2, .entry-content.work .col-right.small.coloured-box.purple h3, .entry-content.work .col-right.small.coloured-box.purple h4, .entry-content.work .col-right.small.coloured-box.purple h5, .entry-content.work .col-right.small.coloured-box.purple h6,
.page-template-content .col-left.small.coloured-box.purple h1,
.page-template-content .col-left.small.coloured-box.purple h2,
.page-template-content .col-left.small.coloured-box.purple h3,
.page-template-content .col-left.small.coloured-box.purple h4,
.page-template-content .col-left.small.coloured-box.purple h5,
.page-template-content .col-left.small.coloured-box.purple h6,
.page-template-content .col-right.small.coloured-box.purple h1,
.page-template-content .col-right.small.coloured-box.purple h2,
.page-template-content .col-right.small.coloured-box.purple h3,
.page-template-content .col-right.small.coloured-box.purple h4,
.page-template-content .col-right.small.coloured-box.purple h5,
.page-template-content .col-right.small.coloured-box.purple h6 {
  color: white;
  margin-top: 0;
  margin-bottom: 0;
}
.entry-content.work .col-left.small.coloured-box.purple p, .entry-content.work .col-right.small.coloured-box.purple p,
.page-template-content .col-left.small.coloured-box.purple p,
.page-template-content .col-right.small.coloured-box.purple p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .entry-content.work .col-left.small, .entry-content.work .col-right.small,
  .page-template-content .col-left.small,
  .page-template-content .col-right.small {
    width: 306px;
    height: auto;
  }
  .entry-content.work .col-left.small.coloured-box.purple, .entry-content.work .col-right.small.coloured-box.purple,
  .page-template-content .col-left.small.coloured-box.purple,
  .page-template-content .col-right.small.coloured-box.purple {
    width: 276px;
    height: auto;
  }
  .entry-content.work .col-left.small.coloured-box br, .entry-content.work .col-right.small.coloured-box br,
  .page-template-content .col-left.small.coloured-box br,
  .page-template-content .col-right.small.coloured-box br {
    display: none;
  }
}
.entry-content.work .col-left.switch,
.page-template-content .col-left.switch {
  float: right;
  margin-right: 0;
}
.entry-content.work .col-right.switch,
.page-template-content .col-right.switch {
  float: left;
  margin-right: 10px;
}
.entry-content.work .entry-header,
.page-template-content .entry-header {
  margin: 0;
  width: auto;
}
.entry-content.work .entry-header h1,
.page-template-content .entry-header h1 {
  margin-top: 0;
  margin-bottom: 0;
}
.entry-content.work .entry-header .entry-meta,
.page-template-content .entry-header .entry-meta {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.entry-content.work .col-left,
.page-template-content .col-left {
  margin-right: 10px;
}
.entry-content.work .col-right.image,
.page-template-content .col-right.image {
  background-color: #ededed;
}
.entry-content.work i, .entry-content.work em,
.page-template-content i,
.page-template-content em {
  font-size: 14px;
  line-height: 21px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #64c2c8;
}
.entry-content.work p,
.page-template-content p {
  margin-top: 0;
}
@media (max-width: 767px) {
  .entry-content.work .entry-header p,
  .page-template-content .entry-header p {
    display: inline;
  }
  .entry-content.work .col-left, .entry-content.work .col-right,
  .page-template-content .col-left,
  .page-template-content .col-right {
    float: none;
    width: 306px;
    height: auto;
    margin-top: 8px;
  }
  .entry-content.work .col-left .html, .entry-content.work .col-right .html,
  .page-template-content .col-left .html,
  .page-template-content .col-right .html {
    margin-left: 10px;
    margin-right: 10px;
  }
  .entry-content.work .col-left .image, .entry-content.work .col-right .image,
  .page-template-content .col-left .image,
  .page-template-content .col-right .image {
    width: 306px;
    height: 306px;
  }
  .entry-content.work .col-left .slideshow, .entry-content.work .col-right .slideshow,
  .page-template-content .col-left .slideshow,
  .page-template-content .col-right .slideshow {
    width: 306px;
    height: 306px;
  }
}

.page-template-content .col-left h1, .page-template-content .col-left h2, .page-template-content .col-left h3, .page-template-content .col-left h4, .page-template-content .col-left h5, .page-template-content .col-left h6, .page-template-content .col-right h1, .page-template-content .col-right h2, .page-template-content .col-right h3, .page-template-content .col-right h4, .page-template-content .col-right h5, .page-template-content .col-right h6 {
  margin-top: 10px;
}

html.js .page-template-content img.static, html.js .page-template-content .col-right.image img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

/* ==========================================================================
   Vacancies
   ========================================================================== */
.vacancies {
  position: relative;
}

.vacancies-anchor {
  position: absolute;
  top: -50px;
  left: 0;
}

.vacancy {
  overflow: hidden;
  *zoom: 1;
  margin-top: 10px;
  padding-left: 15px;
  background-color: #ededed;
  padding-top: 10px;
  padding-bottom: 10px;
}
.vacancy h3.title, .vacancy h2.title {
  margin: 0;
}
.vacancy h3.title {
  color: white;
}
.vacancy h2.title {
  float: left;
  width: 200px;
  margin-right: 10px;
}
.vacancy .description {
  float: left;
  width: 400px;
}
.vacancy .description p {
  margin-top: 7px;
}
.vacancy .description .readmore {
  display: none;
}
.vacancy .description .readmore a {
  border-bottom-color: transparent;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  color: white;
}
.vacancy .description .readmore a:hover {
  color: #64c2c8;
}
html.js .vacancy .description .extended {
  display: none;
}
html.js .vacancy .description .readmore {
  display: block;
}
@media (max-width: 767px) {
  .vacancy {
    margin-bottom: 8px;
    padding-right: 15px;
  }
  .vacancy h2.title, .vacancy .description {
    float: none;
    width: auto;
  }
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
/* ==========================================================================
   Posts
   ========================================================================== */
/* ==========================================================================
   Sprites
   ========================================================================== */
.social-list {
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #1A1E52;
}
.social-list p {
  margin-bottom: 6px;
}
.social-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  *zoom: 1;
  padding-bottom: 10px;
}
.social-list ul li {
  padding: 0;
  margin: 0;
  display: inline;
}
.social-list ul li a {
  margin-right: 10px;
}

html.no-touch a.sprite-button {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
}

a.sprite-button, a.remodal-close {
  display: block;
  float: left;
  width: 36px;
  height: 36px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimizeQuality;
  background-image: url(../img/sprites-v2.png?t=1234);
}
a.sprite-button span, a.remodal-close span {
  display: none;
}
a.sprite-button:active, a.remodal-close:active {
  -moz-transform: scale(0.85, 0.85);
  -ms-transform: scale(0.85, 0.85);
  -webkit-transform: scale(0.85, 0.85);
  transform: scale(0.85, 0.85);
}

a.remodal-close {
  background-position: -280px 40px;
  -moz-transition-property: none;
  -o-transition-property: none;
  -webkit-transition-property: none;
  transition-property: none;
}
a.remodal-close:hover, a.remodal-close:active {
  background: none;
  background-image: url(../img/sprites-v2.png?t=1234);
  background-position: -320px 40px;
}

a.sprite-button.twitter {
  background-position: 0px 0px;
}
a.sprite-button.twitter:hover {
  background-position: 0px 40px;
}
a.sprite-button.vimeo {
  background-position: -40px 0px;
}
a.sprite-button.vimeo:hover {
  background-position: -40px 40px;
}
a.sprite-button.linkedin {
  background-position: -80px 0px;
}
a.sprite-button.linkedin:hover {
  background-position: -80px 40px;
}
a.sprite-button.facebook {
  background-position: -360px 0px;
}
a.sprite-button.facebook:hover {
  background-position: -360px 40px;
}
a.sprite-button.email {
  background-position: -400px 0px;
}
a.sprite-button.email:hover {
  background-position: -400px 40px;
}
a.sprite-button.twitter.dark {
  background-position: -120px 0px;
}
a.sprite-button.twitter.dark:hover {
  background-position: -120px 40px;
}
a.sprite-button.facebook.dark {
  background-position: -160px 0px;
}
a.sprite-button.facebook.dark:hover {
  background-position: -160px 40px;
}
a.sprite-button.pinterest.dark {
  background-position: -200px 0px;
}
a.sprite-button.pinterest.dark:hover {
  background-position: -200px 40px;
}
a.sprite-button.linkedin.dark {
  background-position: -440px 0px;
}
a.sprite-button.linkedin.dark:hover {
  background-position: -440px 40px;
}
a.sprite-button.linkedin.char {
  background-position: -240px 0px;
}
a.sprite-button.close {
  background-position: -280px 0px;
}
a.sprite-button.instagram {
  background-position: -480px 0px;
}
a.sprite-button.instagram:hover {
  background-position: -480px 40px;
}

html.backgroundsize.hires a.sprite-button, html.backgroundsize.hires a.remodal-close {
  background-image: url(../img/sprites-v2@2x.png?t=1235);
  background-size: 520px 80px;
}

html.svg.hires a.sprite-button, html.svg.hires a.remodal-close {
  background-image: url(../img/sprites-v2.svg?t=1235);
  background-size: 520px 80px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  padding-top: 45px;
  overflow: hidden;
  *zoom: 1;
}
footer .container {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 45px;
  width: 730px;
}
footer .social-list {
  border-bottom: none;
  padding-left: 0;
  padding-right: 0;
}
footer.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 980px) {
  footer .container {
    padding-left: 10px;
    width: 730px;
  }
}
@media (max-width: 767px) {
  footer .container {
    width: 286px;
  }
}

/* ==========================================================================
   Map
   ========================================================================== */
#contact-map {
  width: 366px;
  height: 366px;
  background-color: #ededed;
  overflow: hidden;
}
@media (max-width: 767px) {
  #contact-map {
    width: 300px;
    height: 300px;
  }
}

.map-wrapper {
  padding: 2px;
  width: 366px;
  height: 366px;
  background-color: #ededed;
}
@media (max-width: 767px) {
  .map-wrapper {
    width: 300px;
    height: 300px;
  }
  .map-wrapper img.static {
    left: -33px;
    top: -33px;
    width: 366px;
    height: 366px;
  }
}

.google-map {
  position: relative;
  background-color: #f9f9fa;
}

.google-map img.static {
  position: absolute;
  z-index: 199;
}

/* ==========================================================================
   Remodal
   ========================================================================== */
.remodal, .remodal * {
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.remodal {
  padding: 0;
  background-color: #1A1E52;
  text-align: left;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: -webkit-transform 0.2s linear;
  -moz-transition: -moz-transform 0.2s linear;
  -o-transition: -o-transform 0.2s linear;
  transition: transform 0.2s linear;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}
.remodal a {
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.remodal .remodal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
}
.remodal .remodal-close:after {
  content: '';
}
.remodal.character, .remodal.message {
  background-color: #fab942;
}
.remodal.character .inner, .remodal.message .inner {
  padding: 15px;
}
.remodal.character img, .remodal.message img {
  width: 149px;
  height: 149px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}
.remodal.character .name, .remodal.message .name {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px 0 0 0;
}
.remodal.character .position, .remodal.message .position {
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.remodal.character .optional, .remodal.message .optional {
  margin-top: 20px;
  border-top: 1px solid #1A1E52;
}
.remodal.character .optional p, .remodal.message .optional p {
  margin-top: 20px;
  margin-bottom: 0;
}
.remodal.character .optional a, .remodal.message .optional a {
  clear: both;
  float: none;
}
.remodal.character .optional a:hover, .remodal.message .optional a:hover {
  color: #1A1E52;
  text-decoration: none;
}
.remodal.character .optional a.sprite-button, .remodal.message .optional a.sprite-button {
  margin-top: 20px;
}
.remodal.character .description, .remodal.message .description {
  margin: 25px 0 0 0;
}
.remodal.character a.remodal-close, .remodal.message a.remodal-close {
  background-position: -280px 0px;
}
.remodal.character a.remodal-close:hover, .remodal.message a.remodal-close:hover {
  background-position: -320px 40px;
}
.remodal.message h2 {
  font-size: 14px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  line-height: 19px;
}
.remodal.message p {
  margin-top: 0;
}
.remodal.message ul {
  padding: 0 0 0 16px;
  list-style-type: square;
}
.remodal.work {
  background-color: black;
}
.remodal.work .remodal-close {
  top: -46px;
  right: 10px;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.remodal {
  max-width: 100%;
  min-height: 0;
  width: 400px;
  margin: 0 auto;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.remodal.work {
  width: 60%;
}
@media (max-width: 980px) {
  .remodal.work {
    width: 80%;
  }
}
@media (max-width: 520px) {
  .remodal {
    width: 100%;
    min-height: 100%;
  }
  .remodal.work {
    min-height: 0;
    width: 100%;
  }
}

/* ==========================================================================
   Remodal
   ========================================================================== */
.entry-content-asset-popover {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  overflow: hidden;
  height: auto;
}
.entry-content-asset-popover iframe,
.entry-content-asset-popover object,
.entry-content-asset-popover embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Homepage Wall
   ========================================================================== */
h1#homepage-blurb {
  font-size: 2em;
  line-height: 1.4em;
  color: #1A1E52;
  padding-left: 0.5em;
  max-width: 15em;
}
h1#homepage-blurb b {
  font-size: 1em;
  color: #ea5050;
}
@media (min-width: 768px) {
  h1#homepage-blurb {
    font-size: 3.5em;
  }
}

.homepage-wall {
  overflow: hidden;
  *zoom: 1;
  position: relative;
  height: 750px;
  width: 750px;
}
.homepage-wall .box {
  position: absolute;
  height: 180px;
  width: 180px;
  float: none;
}
.homepage-wall .box.post-preview a {
  background-color: #ededed;
}
.homepage-wall .box.post-preview .text-content a {
  background-color: transparent;
}
.homepage-wall .box.post-preview .text-content a:active {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.homepage-wall .box .text {
  display: none;
}
.homepage-wall .box .text-content {
  background-color: #ea5050;
  padding: 10px 15px;
  height: 350px;
  position: relative;
  overflow: hidden;
}
.homepage-wall .box .text-content .fade {
  position: absolute;
  width: 100%;
  height: 87px;
  bottom: -15px;
  left: 0;
  background-image: url(../img/green-fade.png);
}
.homepage-wall .box .text-content .read-more {
  position: absolute;
  left: 15px;
  bottom: 10px;
  display: block;
  color: white;
  text-decoration: none;
  border-bottom-color: transparent;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.homepage-wall .box .text-content .read-more span {
  display: inline;
  position: relative;
  top: -1px;
}
.homepage-wall .box .text-content .inner {
  height: 310px;
  overflow: hidden;
}
.homepage-wall .box .text-content h3, .homepage-wall .box .text-content h4 {
  margin: 0;
}
.homepage-wall .box .text-content h3 {
  margin-bottom: 15px;
}
.homepage-wall .box .text-content h4 {
  color: white;
  margin-bottom: 10px;
}
.homepage-wall .box .text-content .excerpt a {
  display: none;
}
@media (max-width: 767px) {
  .homepage-wall .box .text-content {
    height: 360px;
  }
  .homepage-wall .box .text-content .inner {
    height: 335px;
  }
}
.homepage-wall .intro {
  top: 0;
  left: 0;
  width: 370px;
  background-color: transparent;
}
.homepage-wall .intro .inner {
  padding: 10px 15px;
}
.homepage-wall .intro a {
  text-decoration: none;
}
.homepage-wall .intro a h3, .homepage-wall .intro a h4 {
  margin: 0;
}
.homepage-wall .intro a h3 {
  line-height: 30px;
}
.homepage-wall .intro a h4 {
  color: #1A1E52;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 12px;
}
.homepage-wall .twitter {
  top: 0;
  left: 570px;
  height: 370px;
}
.homepage-wall .image {
  top: 570px;
  left: 570px;
  background-color: transparent;
}
.homepage-wall .image.wide {
  top: 570px;
  left: 190px;
  width: 370px;
  background-color: #ededed;
}
.homepage-wall .news {
  top: 190px;
  left: 380px;
  height: 370px;
  background-color: #64c2c8;
}
.homepage-wall .news .text-content {
  background-color: #64c2c8;
}
.homepage-wall .news .text-content .fade {
  background-image: url(../img/blue-fade.png);
}
.homepage-wall .twitter {
  background-color: #fab942;
}
.homepage-wall .twitter a {
  color: #1A1E52;
  text-decoration: none;
}
.homepage-wall .twitter a:hover {
  color: #1A1E52;
  border-bottom: 1px solid rgba(26, 30, 82, 0.5);
}
.homepage-wall .twitter .tweet {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 30, 82, 0.2);
}
.homepage-wall .twitter h4 a {
  color: white;
}
.homepage-wall .twitter h4 a:hover {
  color: white;
  border-bottom: none;
}
.homepage-wall .twitter .text-content {
  background-color: transparent;
}
.homepage-wall .twitter .text-content .fade {
  background-image: url(../img/light-blue-fade.png);
  bottom: -45px;
}
.homepage-wall .post-preview.one {
  top: 0;
  left: 380px;
}
.homepage-wall .post-preview.two {
  top: 190px;
  left: 190px;
}
.homepage-wall .post-preview.three {
  top: 190px;
  height: 560px;
  background-color: transparent;
}
.homepage-wall .post-preview.three .image-content {
  margin-bottom: 10px;
  width: 180px;
  height: 180px;
  position: relative;
}
.homepage-wall .post-preview.three .image-content a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ededed;
}
.homepage-wall .post-preview.three .image-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .homepage-wall .post-preview.three .image-content {
    margin-bottom: 8px;
    width: 149px;
    height: 149px;
  }
}
.homepage-wall .post-preview.four {
  top: 380px;
  left: 190px;
}
.homepage-wall .post-preview.five {
  top: 380px;
  left: 570px;
}
@media (max-width: 767px) {
  .homepage-wall {
    height: 1322px;
    width: 306px;
  }
  .homepage-wall .box {
    height: 149px;
    width: 149px;
  }
  .homepage-wall .intro {
    width: 306px;
  }
  .homepage-wall .intro a h3 {
    line-height: 28px;
    font-size: 19px;
  }
  .homepage-wall .intro a h4 {
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .homepage-wall .twitter {
    top: 157px;
    left: 157px;
    height: 306px;
  }
  .homepage-wall .image {
    top: 1016px;
    left: 157px;
  }
  .homepage-wall .image.wide {
    top: 1173px;
    left: 0;
    width: 306px;
  }
  .homepage-wall .news {
    top: 471px;
    left: 157px;
    height: 380px;
  }
  .homepage-wall .twitter .text-content {
    height: 286px;
  }
  .homepage-wall .post-preview.one {
    top: 157px;
    left: 0;
  }
  .homepage-wall .post-preview.two {
    top: 314px;
    left: 0;
  }
  .homepage-wall .post-preview.three {
    top: 471px;
    height: 537px;
  }
  .homepage-wall .post-preview.four {
    top: 859px;
    left: 157px;
  }
  .homepage-wall .post-preview.five {
    top: 1016px;
    left: 0;
  }
}

/* ==========================================================================
   Search
   ========================================================================== */
.search-title {
  height: 48px;
  overflow: hidden;
  *zoom: 1;
  background-color: #ededed;
  margin-bottom: 10px;
}
.search-title h3, .search-title h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.search-title h3 {
  float: left;
  margin-left: 20px;
}
.search-title h4 {
  margin-left: 10px;
  color: white;
  float: left;
  width: 170px;
}
@media (max-width: 767px) {
  .search-title {
    margin-bottom: 8px;
    height: 100px;
    position: relative;
  }
  .search-title h4 {
    width: 80px;
  }
}

.search-title form {
  overflow: hidden;
}
.search-title form label {
  display: none;
}
.search-title form input {
  font-size: 21px;
  line-height: 28px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1A1E52;
  width: 390px;
  float: left;
  margin-left: 20px;
  margin-top: 10px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
.search-title form input:active, .search-title form input:focus {
  border: none;
  outline: none;
}
.search-title form input::-webkit-input-placeholder {
  color: rgba(100, 194, 200, 0.3);
}
.search-title form input:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(100, 194, 200, 0.3);
}
.search-title form input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(100, 194, 200, 0.3);
}
.search-title form input:-ms-input-placeholder {
  color: rgba(100, 194, 200, 0.3);
}
@media (max-width: 767px) {
  .search-title form input {
    width: 196px;
  }
}
.search-title form .btn {
  background: none;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 0 10px;
  text-align: center;
  line-height: 45px;
  color: #1A1E52;
  background-color: #ededed;
  text-decoration: none;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  float: right;
  height: 48px;
  width: 150px;
  border-left-width: 10px;
  border-left-style: solid;
  border-color: #f9f9fa;
}
.search-title form .btn:hover {
  color: white;
  background-color: #64c2c8;
  text-decoration: none;
}
@media (max-width: 767px) {
  .search-title form .btn {
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 8px solid #f9f9fa;
    border-left: none;
    float: none;
    width: 306px;
    height: 54px;
    padding: 0;
  }
}
.search-title form .btn:active, .search-title form .btn:focus {
  outline: none;
}

.no-posts {
  background-color: #ededed;
  padding: 15px 10px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Homepage Carousel
   ========================================================================== */
.carousel {
  position: relative;
  width: 750px;
  height: 370px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #ededed;
}
.carousel h3.latest {
  display: none;
  color: white;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 3;
  pointer-events: none;
  margin: 0;
}
.carousel .nav {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  text-align: center;
  z-index: 3;
}
.carousel .nav .circle {
  background-image: url(../img/circle.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 30px;
  position: relative;
  top: -30px;
  pointer-events: click;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}
.carousel .nav .circle.active, .carousel .nav .circle:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.carousel .inner {
  height: 370px;
  position: absolute;
  top: 0;
  left: 0;
}
.carousel .slide, .carousel .slide img {
  width: 750px;
  height: 370px;
}
.carousel .slide {
  float: left;
  overflow: hidden;
  position: relative;
}
.carousel .slide a .overlay-text {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  left: 15px;
  top: 75px;
  z-index: 2;
}
.carousel .slide a .overlay-text h4 {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0;
}
.carousel .slide a .overlay-text h3 {
  font-size: 48px;
  line-height: 56px;
  font-family: 'LibreBaskerville-Italic', Times, 'Times New Roman', serif;
  font-style: italic;
  font-weight: normal;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  margin-bottom: 0;
  margin-top: 0.1em;
  margin-left: 0.1em;
  width: 340px;
}
@media (max-width: 767px) {
  .carousel .slide a .overlay-text h3 {
    font-size: 34px;
    line-height: 40px;
  }
}
.carousel .slide.hide img {
  display: none;
}
.carousel .slide .overlay {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  background-color: #ea5050;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel .slide .overlay.blue {
  background-color: #64c2c8;
}
.carousel .slide .overlay.light-blue {
  background-color: #fab942;
}
.carousel .slide .overlay.green {
  background-color: #ea5050;
}
.carousel .slide .overlay.dark-green {
  background-color: #64c2c8;
}
.carousel .slide .overlay.red {
  background-color: #ea5050;
}
.carousel .slide .overlay.purple {
  background-color: #fab942;
}
.carousel .slide .overlay.yellow {
  background-color: #fab942;
}
.carousel .slide .overlay.grey {
  background-color: #1A1E52;
}
@media (max-width: 767px) {
  .carousel {
    width: 306px;
    height: 306px;
    margin-bottom: 8px;
  }
  .carousel .slide {
    width: 306px;
    height: 306px;
  }
  .carousel .slide img {
    width: 620.27027px;
    height: 306px;
    margin-left: -157.13514px;
  }
}

html.js .carousel .slide img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

html.backgroundsize.hires .carousel .nav .circle {
  background-image: url(../img/circle@2x.png);
  background-size: 10px 10px;
}

html.svg.hires .carousel .nav .circle {
  background-image: url(../img/circle.svg);
  background-size: 10px 10px;
}

.carousel-static {
  margin-top: 3em;
}
.carousel-static .inner {
  width: 100% !important;
}
.carousel-static .slide {
  position: relative;
  margin-bottom: 1em;
}
.carousel-static .slide .overlay {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  background-color: #ea5050;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-static .slide .overlay.blue {
  background-color: #64c2c8;
}
.carousel-static .slide .overlay.light-blue {
  background-color: #fab942;
}
.carousel-static .slide .overlay.green {
  background-color: #ea5050;
}
.carousel-static .slide .overlay.dark-green {
  background-color: #64c2c8;
}
.carousel-static .slide .overlay.red {
  background-color: #ea5050;
}
.carousel-static .slide .overlay.purple {
  background-color: #fab942;
}
.carousel-static .slide .overlay.yellow {
  background-color: #fab942;
}
.carousel-static .slide .overlay.grey {
  background-color: #1A1E52;
}
.carousel-static .slide a {
  display: block;
  position: relative;
}
.carousel-static .slide a .overlay-text {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  z-index: 2;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  text-align: center;
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
}
@media (min-width: 768px) {
  .carousel-static .slide a .overlay-text {
    height: 369px;
  }
}
.carousel-static .slide a .overlay-text .inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: auto !important;
  padding-left: 1em;
  padding-right: 1em;
}
@media (min-width: 768px) {
  .carousel-static .slide a .overlay-text .inner {
    padding-left: 10em;
    padding-right: 10em;
  }
}
.carousel-static .slide a .overlay-text h4 {
  font-family: 'Trade-Gothic-LT-Bold-Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-size: 0.9em;
  line-height: 1.5em;
  margin-top: 0;
  margin-bottom: 0;
}
.carousel-static .slide a .overlay-text h3 {
  font-family: 'Trade-Gothic-LT-Bold-Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-size: 1.8em;
  line-height: 1.3em;
  margin-bottom: 0;
  margin-top: 0.1em;
  margin-left: 0.1em;
}
@media (min-width: 768px) {
  .carousel-static .slide a .overlay-text h4 {
    font-size: 2em;
  }
  .carousel-static .slide a .overlay-text h3 {
    font-size: 4em;
  }
}
.carousel-static .slide a:hover .overlay {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.carousel-static .slide a:hover .overlay-text {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/* ==========================================================================
   Comments
   ========================================================================== */
#comments {
  border-bottom: 1px solid #1A1E52;
  padding-right: 190px;
}
#comments h3 span {
  color: #1A1E52;
}
#comments .comment h4, #comments .comment time {
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline;
  font-size: 14px;
}
#comments .comment h4 {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
#comments .comment time a {
  pointer-events: none;
}
#comments .comment time a:hover {
  color: #1A1E52;
}
#comments .comment img.avatar {
  display: none;
}
#comments .media-list {
  padding: 0;
  margin: 0;
}
#comments .media-list li {
  list-style-type: none;
}
#comments .media-body p {
  margin-top: 0;
}

#respond input, #respond textarea {
  background-color: #ededed;
  border: none;
  outline: none;
  width: 96%;
  max-width: 96%;
  min-width: 96%;
  padding: 0;
  padding-left: 2%;
  padding-right: 2%;
  margin: 0;
  display: block;
  margin-bottom: 10px;
  font-size: 1em !important;
}
#respond .btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 0 10px;
  text-align: center;
  line-height: 45px;
  color: #1A1E52;
  background-color: #ededed;
  text-decoration: none;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
#respond .btn:hover {
  color: white;
  background-color: #ea5050;
  text-decoration: none;
}
#respond textarea {
  padding-top: 2%;
  padding-bottom: 2%;
  height: 140px;
}
#respond input.field,
#respond input#cptch_input {
  padding-top: 13px;
  padding-bottom: 13px;
}
#respond input#cptch_input {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
}
#respond .cptch_block {
  padding-left: 10px;
}
#respond .cptch_block label {
  margin-left: 0;
}
#respond .cptch_block input {
  background-color: transparent;
  border: 2px solid #ededed;
}
#respond .captcha-exp {
  margin-left: 10px;
}
#respond .form-group {
  margin-left: -10px;
}
@media (max-width: 767px) {
  #respond .form-group {
    margin-right: -10px;
  }
}
#respond label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  margin-left: 10px;
}

/* ==========================================================================
   Oembed Play buttons
   ========================================================================== */
html.no-touch .play-button .inner {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
}

.play-button span.button {
  pointer-events: none;
  z-index: 200;
  display: block;
  background-repeat: no-repeat;
  background-position: top;
  width: 150px;
  height: 150px;
  position: absolute;
  overflow: hidden;
  top: 110px;
  left: 110px;
}
.play-button span.button .inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.play-button span.button img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
}
.play-button:active span.button img {
  bottom: 0;
  top: auto;
}
.play-button:active span.button .inner {
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}
.play-button.top span.button, .play-button.bottom span.button {
  width: 130px;
  height: 130px;
  top: 120px;
  left: 120px;
}
.play-button.top span.button {
  top: 25px;
}
.play-button.bottom span.button {
  top: auto;
  bottom: 25px;
}
@media (max-width: 767px) {
  .play-button span.button {
    width: 124.05405px;
    height: 124.05405px;
    top: 90.97297px;
    left: 90.97297px;
  }
  .play-button.top span.button, .play-button.bottom span.button {
    width: 107.51351px;
    height: 107.51351px;
    top: 99.24324px;
    left: 99.24324px;
  }
  .play-button.top span.button {
    top: 20.67568px;
  }
  .play-button.bottom span.button {
    top: auto;
    bottom: 20.67568px;
  }
}

html.no-touch .play-button:hover span.button img {
  bottom: 0;
  top: auto;
}

.entry-featured.play-button span.button {
  left: 300px;
}
@media (max-width: 767px) {
  .entry-featured.play-button span.button {
    width: 107.51351px;
    height: 107.51351px;
    top: 20.67568px;
    left: 99.24324px;
  }
}

html.js .play-button span.button img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

/* ==========================================================================
   404
   ========================================================================== */
body.error404 {
  background-color: #f9f9fa;
  background-image: url(../img/constellations.png);
  background-repeat: no-repeat;
  background-position: center -150px;
}
@media (max-width: 767px) {
  body.error404 {
    background-position: center -250px;
  }
}
body.error404 .page-wrapper {
  background: none;
}
body.error404 h1 {
  display: none;
}
body.error404 h2 {
  color: #64c2c8;
  font-size: 2.1em;
  line-height: 1.3em;
}
@media (min-width: 981px) {
  body.error404 .container {
    width: 930px;
    padding-right: 10px;
    margin: 0 auto;
    padding-left: 10px;
  }
}
body.error404 .content {
  margin-top: 250px;
  text-align: center;
}
@media (max-width: 767px) {
  body.error404 .content {
    margin-top: 150px;
  }
}
body.error404 p {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  body.error404 p {
    width: auto;
  }
}
body.error404 .logo {
  margin: 0;
  width: 100%;
  position: static;
  margin-top: 2em;
}
body.error404 .logo a {
  margin: 0 auto;
}

/* ==========================================================================
   WordPress Generated Classes
   See: http://codex.wordpress.org/CSS#WordPress_Generated_Classes
   ========================================================================== */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: none;
}

.alignright {
  float: none;
}

figure.alignnone {
  margin-left: 0;
  margin-right: 0;
}

/* ==========================================================================
   Gift of Reading
   ========================================================================== */
.page-content.gift-of-reading {
  background-color: white;
  background-image: url(../img/gift-of-reading/bg.jpg);
  background-size: 1053px 1296px;
  width: 750px;
  padding: 0;
}
.page-content.gift-of-reading img {
  margin: 0;
}
html.backgroundsize.hires .page-content.gift-of-reading {
  background-image: url(../img/gift-of-reading/bg@2x.jpg);
}
@media (max-width: 767px) {
  .page-content.gift-of-reading {
    width: 100%;
  }
}
.page-content.gift-of-reading #tree-wrapper {
  width: 555px;
  margin: 0 auto;
  top: 0;
  position: relative;
  z-index: 0;
  pointer-events: none;
  padding-top: 150px;
}
.page-content.gift-of-reading #tree-wrapper.go {
  z-index: 1;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #tree-wrapper {
    width: auto;
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 223px;
  }
}
.page-content.gift-of-reading #tree-container {
  padding-top: 162.34234%;
  position: relative;
}
.page-content.gift-of-reading #tree-container .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-content.gift-of-reading #tree-container .full-tree {
  height: 901px;
  background-image: url(../img/gift-of-reading/tree.png);
  background-size: 555px 901px;
  background-position: center;
}
html.backgroundsize.hires .page-content.gift-of-reading #tree-container .full-tree {
  background-image: url(../img/gift-of-reading/tree@2x.png);
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #tree-container .full-tree {
    height: 465px;
    background-image: url(../img/gift-of-reading/tree_mobile.png);
    background-size: 286px 465px;
  }
  html.backgroundsize.hires .page-content.gift-of-reading #tree-container .full-tree {
    background-image: url(../img/gift-of-reading/tree_mobile@2x.png);
  }
}
.page-content.gift-of-reading #tree-container .full-tree.hidden {
  display: none;
}
.page-content.gift-of-reading #thank-you {
  z-index: -1;
  position: relative;
  margin-bottom: -15px;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #thank-you {
    margin-bottom: -8px;
  }
}
.page-content.gift-of-reading #thank-you .share {
  overflow: hidden;
  *zoom: 1;
  position: absolute;
  left: 437px;
  top: 118px;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #thank-you .share {
    left: 0;
    top: 105px;
    width: 100%;
  }
}
.page-content.gift-of-reading #thank-you .share h4 {
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border-bottom: 1px solid #1A1E52;
  float: left;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #thank-you .share h4 {
    float: none;
    width: auto;
    text-align: center;
  }
}
.page-content.gift-of-reading #thank-you .share a {
  margin-right: 10px;
}
.page-content.gift-of-reading #thank-you .share a.clear-left {
  clear: left;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #thank-you .share a {
    margin-right: 5px;
    margin-left: 5px;
  }
  .page-content.gift-of-reading #thank-you .share a.clear-left {
    margin-left: 47px;
  }
}
.page-content.gift-of-reading #thank-you h3, .page-content.gift-of-reading #thank-you h4.sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ea5050;
}
html.js .page-content.gift-of-reading #thank-you.go h3, html.js .page-content.gift-of-reading #thank-you.go h4.sub, html.js .page-content.gift-of-reading #thank-you.go .share {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transform: scale(1.5, 1.5);
  -ms-transform: scale(1.5, 1.5);
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}
html.js .page-content.gift-of-reading #thank-you.go h3.go, html.js .page-content.gift-of-reading #thank-you.go h4.sub.go, html.js .page-content.gift-of-reading #thank-you.go .share.go {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.page-content.gift-of-reading #thank-you h3 {
  font-family: 'libre_baskervilleregular', Times, 'Times New Roman', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 70px;
  letter-spacing: -0.05em;
  line-height: 70px;
  top: -35px;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #thank-you h3 {
    font-size: 47px;
  }
}
.page-content.gift-of-reading #thank-you h4.sub {
  top: 52px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  letter-spacing: 0.20em;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading #thank-you h4.sub {
    font-size: 15px;
    margin-top: 15px;
  }
}
.page-content.gift-of-reading #thank-you.go {
  z-index: 1;
}
.page-content.gift-of-reading .page-content-inner {
  overflow: hidden;
  *zoom: 1;
  padding: 45px 30px;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .page-content-inner {
    padding: 20px 20px;
  }
}
.page-content.gift-of-reading p {
  font-size: 0.92em;
}
.page-content.gift-of-reading .enter,
.page-content.gift-of-reading .about,
.page-content.gift-of-reading .result,
.page-content.gift-of-reading .complete {
  width: 48%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .enter,
  .page-content.gift-of-reading .about,
  .page-content.gift-of-reading .result,
  .page-content.gift-of-reading .complete {
    width: 100%;
  }
}
.page-content.gift-of-reading .result,
.page-content.gift-of-reading .about {
  background-color: #f4f6f4;
  background-color: rgba(228, 230, 228, 0.3);
}
.page-content.gift-of-reading .page-header {
  float: left;
  width: 100%;
  text-align: center;
}
.page-content.gift-of-reading .page-header .page-title {
  height: 284px;
  background-image: url(../img/gift-of-reading/logo.png);
  background-size: 339px 284px;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}
.page-content.gift-of-reading .page-header .page-title span {
  display: none;
}
html.backgroundsize.hires .page-content.gift-of-reading .page-header .page-title {
  background-image: url(../img/gift-of-reading/logo@2x.png);
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .page-header .page-title {
    background-image: url(../img/gift-of-reading/logo_mobile.png);
    background-size: 244px 188px;
    height: 188px;
    margin-bottom: 35px;
  }
  .page-content.gift-of-reading .page-header .page-title at-root html.backgroundsize.hires .page-content.gift-of-reading .page-header .page-title {
    background-image: url(../img/gift-of-reading/logo_mobile@2x.png);
  }
}
.page-content.gift-of-reading .enter,
.page-content.gift-of-reading .complete {
  float: left;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .enter,
  .page-content.gift-of-reading .complete {
    float: left;
  }
}
.page-content.gift-of-reading .result {
  float: right;
  clear: right;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .result {
    float: left;
    padding: 1px;
  }
}
.page-content.gift-of-reading .result .inner {
  height: 276px;
  position: relative;
  background-image: url(../img/gift-of-reading/bauble.png);
  background-size: 211px 276px;
  background-position: center;
  background-repeat: no-repeat;
}
html.backgroundsize.hires .page-content.gift-of-reading .result .inner {
  background-image: url(../img/gift-of-reading/bauble@2x.png);
}
.page-content.gift-of-reading .result .target,
.page-content.gift-of-reading .result .status {
  text-align: center;
  display: block;
}
.page-content.gift-of-reading .result .target {
  font-family: 'libre_baskervilleregular', Times, 'Times New Roman', serif;
  font-style: normal;
  font-weight: normal;
  color: #64c2c8;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.05em;
  line-height: 1.15;
  font-size: 28px;
  margin: 15px 0 -20px 0;
}
.page-content.gift-of-reading .result .target span {
  font-size: 38px;
}
.page-content.gift-of-reading .result .status {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  color: #59ccd3;
  margin-top: 10px;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .result .status {
    margin-bottom: 20px;
  }
}
.page-content.gift-of-reading .result .percent {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
  -moz-transform:  scale(1, 1) rotateZ(15deg);
  -ms-transform:  scale(1, 1) rotateZ(15deg);
  -webkit-transform:  scale(1, 1) rotateZ(15deg);
  transform:  scale(1, 1) rotateZ(15deg);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  display: block;
  color: white;
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 75px;
  top: 116px;
}
.page-content.gift-of-reading .result .percent.boop {
  -moz-transform:  scale(1.2, 1.2) rotateZ(-15deg);
  -ms-transform:  scale(1.2, 1.2) rotateZ(-15deg);
  -webkit-transform:  scale(1.2, 1.2) rotateZ(-15deg);
  transform:  scale(1.2, 1.2) rotateZ(-15deg);
}
.page-content.gift-of-reading .result .percent span.symbol {
  font-size: 75%;
}
html.js .page-content.gift-of-reading .result .percent {
  display: none;
}
.page-content.gift-of-reading .enter form p {
  margin: 0;
}
.page-content.gift-of-reading .enter form input {
  background-color: #ededed;
  border: none;
  outline: none;
  width: 96%;
  max-width: 96%;
  min-width: 96%;
  padding: 0;
  padding-left: 2%;
  padding-right: 2%;
  margin: 0;
  display: block;
  margin-bottom: 10px;
  font-size: 1em !important;
  padding-top: 13px;
  padding-bottom: 13px;
  margin-bottom: 20px;
  padding-left: 4%;
  padding-right: 4%;
  width: 92%;
  min-width: 92%;
  max-width: 92%;
  clear: both;
  margin-top: 3px;
}
.page-content.gift-of-reading .enter form label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.page-content.gift-of-reading .enter form label span {
  text-transform: none;
  color: #4ed5de;
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0px;
}
.page-content.gift-of-reading .enter form .btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 0 10px;
  text-align: center;
  line-height: 45px;
  color: #1A1E52;
  background-color: #ededed;
  text-decoration: none;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.05s;
  -o-transition-duration: 0.05s;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
  background-color: #ea5050;
  border: none;
  width: 100%;
  color: white;
  max-width: 100%;
  min-width: 100%;
}
.page-content.gift-of-reading .enter form .btn:hover {
  color: white;
  background-color: #ededed;
  text-decoration: none;
}
.page-content.gift-of-reading .enter form .btn:active {
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}
.page-content.gift-of-reading .enter form .btn:focus, .page-content.gift-of-reading .enter form .btn:active {
  outline: none;
}
.page-content.gift-of-reading .enter form .btn:hover {
  color: #1A1E52;
  cursor: pointer;
}
.page-content.gift-of-reading .enter form .btn.is-loading {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.page-content.gift-of-reading .enter form .btn.is-loading:hover {
  color: white;
  background-color: #fab942;
  cursor: default;
}
.page-content.gift-of-reading .enter form .btn.is-loading:active {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.page-content.gift-of-reading .enter form input.inline,
.page-content.gift-of-reading .enter form p.inline {
  float: left;
  min-width: 0;
}
.page-content.gift-of-reading .enter form input.inline {
  margin-right: 5%;
  clear: none;
  width: auto;
  width: 20px;
  height: 20px;
}
.page-content.gift-of-reading .enter form p.inline {
  margin-bottom: 20px;
  width: 80%;
  position: relative;
  top: -0.2em;
}
html.js .page-content.gift-of-reading .enter form p.inline {
  top: -0.1em;
}
html.js .page-content.gift-of-reading .enter form .checkbox {
  float: left;
  margin-right: 5%;
  clear: none;
  width: 32px;
  height: 32px;
  background-color: #ededed;
  background-image: url(../img/gift-of-reading/checkbox.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 32px 64px;
}
html.js .page-content.gift-of-reading .enter form .checkbox.checked {
  background-position: bottom;
}
html.js .page-content.gift-of-reading .enter form .checkbox input {
  display: none;
}
html.js .page-content.gift-of-reading .enter form .checkbox .icheckbox {
  width: 32px;
  height: 32px;
  background-color: #ededed;
  background-image: url(../img/gift-of-reading/checkbox.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 32px 64px;
}
html.js .page-content.gift-of-reading .enter form .checkbox .icheckbox.checked {
  background-position: bottom;
}
html.js .page-content.gift-of-reading .enter form .checkbox .icheckbox.hover {
  cursor: pointer;
}
html.js.backgroundsize.hires .page-content.gift-of-reading .enter form .checkbox {
  background-image: url(../img/gift-of-reading/checkbox@2x.jpg);
}
html.js.backgroundsize.hires .page-content.gift-of-reading .enter form .checkbox .icheckbox {
  background-image: url(../img/gift-of-reading/checkbox@2x.jpg);
}
.page-content.gift-of-reading .enter .error {
  display: none;
  font-family: 'tradegothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #f24848;
  margin-bottom: 10px;
}
.page-content.gift-of-reading .about {
  float: right;
  clear: right;
  color: #4ed5de;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .about {
    margin: 20px 0;
  }
}
.page-content.gift-of-reading .about .inner {
  margin: 30px;
  padding: 27px;
  text-align: center;
  background-color: white;
}
@media (max-width: 767px) {
  .page-content.gift-of-reading .about .inner {
    padding: 0 10px;
    margin: 0;
  }
}
.page-content.gift-of-reading .about h3 {
  height: 62px;
  margin: 0 0 20px 0;
  background-image: url(../img/gift-of-reading/kids_company_logo.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 152px 62px;
}
.page-content.gift-of-reading .about h3 .alt-logo {
  display: none;
}
html.backgroundsize.hires .page-content.gift-of-reading .about h3 {
  background-image: url(../img/gift-of-reading/kids_company_logo@2x.jpg);
}
.page-content.gift-of-reading .about a {
  color: #4ed5de;
  border-bottom-color: #4ed5de;
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.page-content.gift-of-reading .about p {
  margin: 0;
}
@media (max-width: 767px) {
  html.js .page-content.gift-of-reading .about {
    display: none;
  }
}
.page-content.gift-of-reading .about.mobile-only {
  display: none;
}
@media (max-width: 767px) {
  html.js .page-content.gift-of-reading .about.mobile-only {
    display: block;
  }
}
.page-content.gift-of-reading .complete h2 {
  font-size: 40px;
  color: #59ccd3;
  line-height: 40px;
  margin: 0 0 20px 0;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-content.gift-of-reading .complete h3 {
  font-family: 'TradeGothicLT-BoldTwo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #59ccd3;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.2em;
}
.page-content.gift-of-reading .animate-out {
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.75s;
  -o-transition-duration: 0.75s;
  -webkit-transition-duration: 0.75s;
  transition-duration: 0.75s;
  -moz-transition-timing-function: cubic-bezier(0.64, 0.01, 0.75, 0.14);
  -o-transition-timing-function: cubic-bezier(0.64, 0.01, 0.75, 0.14);
  -webkit-transition-timing-function: cubic-bezier(0.64, 0.01, 0.75, 0.14);
  transition-timing-function: cubic-bezier(0.64, 0.01, 0.75, 0.14);
}
@media (min-width: 768px) {
  .page-content.gift-of-reading .animate-out.go {
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
  }
}
.page-content.gift-of-reading.success .page-header,
.page-content.gift-of-reading.success .enter,
.page-content.gift-of-reading.success .result,
.page-content.gift-of-reading.success .about {
  display: none;
}
.page-content.gift-of-reading.success #thank-you {
  z-index: 1;
}
.page-content.gift-of-reading.success #thank-you #tree-wrapper {
  z-index: 1;
}
.page-content.gift-of-reading.fail .enter .error {
  display: block;
}
