@charset "UTF-8";
/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  display: none;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 * 	Default theme - Owl Carousel CSS File
 */
.owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* visual grid while developing */
/* default to 4 columns on mobile since we are going to build bottom up */
/* overwrite these to set desired column width and margin */
/* also do this if the above values are overwritten */
/* breakpoints */
/* omega reset mixin */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

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

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0;
}

/** initial setup **/
.nano {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nano > .nano-content {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.nano > .nano-content:focus {
  outline: thin dotted;
}

.nano > .nano-content::-webkit-scrollbar {
  display: none;
}

.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}

.nano > .nano-pane {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  width: 10px;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden\9 ;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.01;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.nano > .nano-pane > .nano-slider {
  background: #444;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  margin: 0 1px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  z-index: 30000000000;
}

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility: visible\9 ;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99;
}

/* fonts */
/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../scss/lib/font-awesome-4.3.0/fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("../scss/lib/font-awesome-4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../scss/lib/font-awesome-4.3.0/fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../scss/lib/font-awesome-4.3.0/fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../scss/lib/font-awesome-4.3.0/fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../scss/lib/font-awesome-4.3.0/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-genderless:before,
.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

/*------------------------------------*\
    Variables
\*------------------------------------*/
/*------------------------------------*\
    Imports
\*------------------------------------*/
@font-face {
  font-family: "booksellers";
  src: url("../fonts/booksellers/fonts/booksellers.eot");
  src: url("../fonts/booksellers/fonts/booksellers.eot?#iefix") format("embedded-opentype"), url("../fonts/booksellers/fonts/booksellers.woff") format("woff"), url("../fonts/booksellers/fonts/booksellers.ttf") format("truetype"), url("../fonts/booksellers/fonts/booksellers.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Aviano W03 Regular";
  src: url("../fonts/aviano/6f92d2ec-59b1-467a-9c72-30b93a5661f9.eot?#iefix");
  src: url("../fonts/aviano/6f92d2ec-59b1-467a-9c72-30b93a5661f9.eot?#iefix") format("eot"), url("../fonts/aviano/a11d95c4-528b-448e-96f8-b2ac0e354b66.woff2") format("woff2"), url("../fonts/aviano/b3b42c2d-871c-4093-b427-84ab12105fe1.woff") format("woff"), url("../fonts/aviano/9a1bb284-877a-4b4d-b7db-862a030a4d15.ttf") format("truetype"), url("../fonts/aviano/85799487-bdac-4609-8e09-4755ac5eab41.svg#85799487-bdac-4609-8e09-4755ac5eab41") format("svg");
}
@font-face {
  font-family: "Antonio Regular";
  src: url("../fonts/antonio/Antonio-Regular.eot?#iefix");
  src: url("../fonts/antonio/Antonio-Regular.eot?#iefix") format("eot"), url("../fonts/antonio/Antonio-Regular.woff") format("woff"), url("../fonts/antonio/Antonio-Regular.ttf") format("truetype"), url("../fonts/antonio/Antonio-Regular.svg#Antonio-Regular") format("svg");
}
@font-face {
  font-family: "Crimson Text";
  src: url("../fonts/crimson/CrimsonText-Regular.ttf") format("truetype");
}
html {
  font-family: "myriad-pro";
}

header {
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
}

/* First go color styles for overlay and modal */
/* Change mid and max width of the modal according to design */
/*
    Toggle whether the modal can be at max 100% screen height.
    Keep it this way unless you have good reason not to.
    If set to false, disable makeResponsive method in modal-base.js
*/
/* modal animation style */
/* Effect 1: Fade in and scale up */
/* Effect 2: Slide from the right */
/* Effect 3: Slide from the bottom */
/* Effect 4: Newspaper */
/* Effect 5: Fall */
/* Effect 6: Side fall */
/* Effect 7:  Slide and stick to top */
/* Effect 8: Super scaled */
/* Effect 9:  Just modal */
/* General styles for the modal */
#modals {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  z-index: 200;
}

.md-modal {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: relative;
  top: 20px;
  left: 50%;
  width: 100%;
  height: auto;
  max-height: 100%;
  min-width: none;
  max-width: 700px;
  visibility: hidden;
  z-index: 2000;
}

.md-show {
  visibility: visible;
}

.md-overlay {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

/* Content styles */
.md-content {
  background: #fff;
  position: relative;
  margin: 0 auto;
}

/* Individual modal styles with animations/transitions */
/* Effect 1: Fade in and scale up */
/* Effect 2: Slide from the right */
.md-modal .md-content {
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  -o-transform: translateX(20%);
  transform: translateX(20%);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.md-show.md-modal .md-content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

/* Effect 3: Slide from the bottom */
/* Effect 4: Newspaper */
/* Effect 5: fall */
/* Effect 6: side fall */
/* Effect 7:  slide and stick to top */
/* Effect 8: Super scaled */
/* Effect 9:  Just me */
html, body {
  font-size: 16px;
}

html {
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  background-color: #142025;
}
body:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url("../img/bg.jpg") top center no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  body:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/bg@2x.jpg");
  }
}
@media screen and (min-width: 30em) {
  body:before {
    background-size: 100% auto;
  }
}
body ::-webkit-scrollbar {
  display: none;
}
body.modal-open {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.container {
  max-width: 75em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
.container::after {
  clear: both;
  content: "";
  display: table;
}

/*  To change overlay and modal base color, go to utility/modal-settings
    Modal effects defined in mess-pattern-library/modals
    This file is primarily for adding custom styles on top of the base effect
*/
.md-modal .md-content {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  background: url("../img/modals/bg@2x.png") center left repeat-y;
  background-size: 100% auto;
  border: solid 3px #CEAD73;
  color: #ffffff;
}
.md-modal .md-content header {
  position: relative;
  height: 100px;
  text-transform: uppercase;
  text-align: center;
  line-height: 100px;
  color: #cead73;
  background-color: #191e2a;
}
.md-modal .md-content header h3 {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-size: 20px;
}
.md-modal .md-content header h3 span {
  display: inline-block;
  vertical-align: middle;
  line-height: 12px;
}
@media screen and (min-width: 30em) {
  .md-modal .md-content header h3 {
    font-size: 24px;
  }
  .md-modal .md-content header h3 span {
    line-height: 24px;
  }
}
@media screen and (min-width: 48em) {
  .md-modal .md-content header h3 {
    font-size: 26px;
  }
  .md-modal .md-content header h3 span {
    line-height: 26px;
  }
}
@media screen and (min-width: 60em) {
  .md-modal .md-content header h3 {
    font-size: 28px;
  }
  .md-modal .md-content header h3 span {
    line-height: 28px;
  }
}
.md-modal .md-content section.main-content {
  padding: 20px;
}
.md-modal .md-content section.main-content p.description {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.md-modal .md-content section.main-content h4.instructions {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  font-family: "merriweather";
  font-size: 10px;
}
@media screen and (min-width: 30em) {
  .md-modal .md-content section.main-content h4.instructions {
    font-size: 12px;
  }
}
.md-modal .md-content nav.actions {
  margin-top: 20px;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-align: center;
}
.md-modal .md-content nav.actions ul li {
  text-align: center;
}
.md-modal .md-content nav.actions ul li:not(:last-child) {
  margin-bottom: 10px;
}
.md-modal .md-content nav.actions ul li .button {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b3dfee;
  border-radius: 2px;
  color: #000000;
  text-transform: uppercase;
  cursor: pointer;
}
.md-modal .md-content nav.actions ul li .button:hover {
  background-color: #89cde5;
}
@media screen and (min-width: 48em) {
  .md-modal .md-content nav.actions ul li {
    display: inline-block;
    vertical-align: middle;
  }
  .md-modal .md-content nav.actions ul li:not(:last-child) {
    margin-bottom: 0px;
    margin-right: 10px;
  }
}
.md-modal .md-content a[data-hook=close-modal] {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
}
.md-modal .md-content a[data-hook=close-modal]:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #b3dfee;
  cursor: pointer;
}
.md-modal .md-content .inner {
  height: 100%;
  overflow: auto;
}
.md-modal.challenge .md-content .inner .main-content {
  position: relative;
  z-index: 2;
}
.md-modal.challenge .md-content .inner .main-content .information, .md-modal.challenge .md-content .inner .main-content .goal-object, .md-modal.challenge .md-content .inner .main-content .actions {
  position: relative;
  z-index: 10;
}
.md-modal.challenge .md-content .inner header {
  position: relative;
  padding: 0 100px;
  text-align: center;
}
.md-modal.challenge .md-content .inner header h3 {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-size: 16px;
}
.md-modal.challenge .md-content .inner header h3 span {
  display: inline-block;
  vertical-align: middle;
  line-height: 16px;
}
@media screen and (min-width: 30em) {
  .md-modal.challenge .md-content .inner header h3 {
    font-size: 20px;
  }
  .md-modal.challenge .md-content .inner header h3 span {
    line-height: 24px;
  }
}
@media screen and (min-width: 48em) {
  .md-modal.challenge .md-content .inner header h3 {
    font-size: 22px;
  }
  .md-modal.challenge .md-content .inner header h3 span {
    line-height: 26px;
  }
}
@media screen and (min-width: 60em) {
  .md-modal.challenge .md-content .inner header h3 {
    font-size: 24px;
  }
  .md-modal.challenge .md-content .inner header h3 span {
    line-height: 28px;
  }
}
.md-modal.challenge .md-content .inner header .progress-chart-wrapper {
  position: absolute;
  left: 25px;
  top: 25px;
  width: 50px;
  line-height: 50px;
}
.md-modal.challenge .md-content .inner header .progress-chart-wrapper .progress-chart {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
}
.md-modal.challenge .md-content .inner header .progress-chart-wrapper .progress-chart.completed .progress-fill {
  fill: #6abbde;
}
.md-modal.challenge .md-content .inner header .progress-chart-wrapper .progress-chart:not(.completed) .progress-fill {
  fill: #f9e7db;
}
.md-modal.challenge .md-content .inner header .progress-chart-wrapper .progress-chart svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 30em) {
  .md-modal.challenge .md-content .inner header .progress-chart-wrapper .progress-chart {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 60em) {
  .md-modal.challenge .md-content .inner header .progress-chart-wrapper {
    top: 15px;
    left: 15px;
  }
  .md-modal.challenge .md-content .inner header .progress-chart-wrapper .progress-chart {
    width: 70px;
    height: 70px;
  }
}
.md-modal.challenge .md-content .inner .main-content {
  color: #000000;
}
.md-modal.challenge .md-content .inner .main-content .information {
  color: #ffffff;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation {
  display: block;
  height: 40px;
  background-color: #eb0712;
  line-height: 39px;
  text-align: center;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul {
  position: relative;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li::after {
  clear: both;
  content: "";
  display: table;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a {
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  display: block;
  float: left;
  width: 50%;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.next:after, .md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.previous:before {
  font-family: "FontAwesome";
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.next {
  padding-right: 10px;
  text-align: right;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.next:after {
  content: "";
  margin-left: 10px;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.previous {
  padding-left: 10px;
  text-align: left;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.previous:before {
  content: "";
  margin-right: 10px;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.first, .md-modal.challenge .md-content .inner nav.challenge-navigation ul li a.last {
  width: 100%;
}
.md-modal.challenge .md-content .inner nav.challenge-navigation ul li a:hover {
  background-color: #88040a;
}
.md-modal.challenge .md-content .inner section.challenges .challenge-section {
  display: none;
}
.md-modal.challenge .md-content .inner section.challenges .challenge-section.active {
  display: block;
}

.md-modal.purchase {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  font-weight: bold;
}
.md-modal.purchase .md-content .inner header {
  background: transparent;
  color: #ffffff;
}
.md-modal.purchase .md-content .inner .information {
  padding: 20px 0;
}
.md-modal.purchase .md-content .inner .information ul.split-into-columns {
  -webkit-columns: 1;
  -moz-columns: 1;
  columns: 1;
}
@media screen and (min-width: 30em) {
  .md-modal.purchase .md-content .inner .information ul.split-into-columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}
@media screen and (min-width: 67.5em) {
  .md-modal.purchase .md-content .inner .information ul.split-into-columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}
.md-modal.purchase .md-content .inner .information ul.split-into-columns li {
  line-height: 24px;
}
.md-modal.purchase .md-content .inner .information ul.split-into-columns li a {
  font-size: 12px;
}
.md-modal.purchase .md-content .inner .information ul.split-into-columns li:before {
  font-size: 20px;
  width: 40%;
}
@media screen and (min-width: 30em) {
  .md-modal.purchase .md-content .inner .information ul.split-into-columns li:before {
    width: 30% !important;
    margin-right: 5px;
    font-size: 24px;
  }
  .md-modal.purchase .md-content .inner .information ul.split-into-columns li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 38.75em) {
  .md-modal.purchase .md-content .inner .information ul.split-into-columns li:before {
    width: 35%;
    margin-right: 15px;
  }
  .md-modal.purchase .md-content .inner .information ul.split-into-columns li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 48em) {
  .md-modal.purchase .md-content .inner .information ul.split-into-columns li:before {
    width: 30%;
  }
}
@media screen and (min-width: 78.75em) {
  .md-modal.purchase .md-content .inner .information ul.split-into-columns li:before {
    font-size: 30px;
  }
  .md-modal.purchase .md-content .inner .information ul.split-into-columns li a {
    font-size: 12px;
  }
}
.md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li:before {
  width: 40%;
}
@media screen and (min-width: 30em) {
  .md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 38.75em) {
  .md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li:before {
    width: 43%;
  }
}
@media screen and (min-width: 48em) {
  .md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 53.75em) {
  .md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li:before {
    font-size: 28px;
  }
  .md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 78.75em) {
  .md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li:before {
    font-size: 30px;
  }
  .md-modal.purchase .md-content .inner .information ul:not(.split-into-columns) li a {
    font-size: 14px;
  }
}
.md-modal.purchase .md-content .inner .information ul li:not(:first-child) {
  margin-top: 5px;
}
.md-modal.purchase .md-content .inner .information ul li:before {
  display: inline-block;
  text-align: center;
  font-family: "booksellers";
  vertical-align: middle;
  color: #ffffff;
  font-size: 24px;
}
.md-modal.purchase .md-content .inner .information ul li.amazon:before, .md-modal.purchase .md-content .inner .information ul li.kindle:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.audible:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.bam:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.bn:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.google:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.ibooks:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.indiebound:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.kobo:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.nook:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.overstock:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.powells:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.reader:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.target:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.walmart:before {
  content: "";
}
.md-modal.purchase .md-content .inner .information ul li.indigo:before {
  content: "!";
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
}
.md-modal.purchase .md-content .inner .information ul li a {
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
  color: #cead73;
}
.md-modal.purchase .md-content .inner .information ul li a:hover {
  color: #e8d9bf;
}

.md-modal.business-card .inner .main-content {
  padding: 20px 40px;
}
.md-modal.business-card .inner .main-content .button {
  color: #ffffff;
}
.md-modal.business-card .inner .main-content form {
  max-width: 300px;
  margin: 0 auto;
  color: #898989;
}
.md-modal.business-card .inner .main-content form ul li:not(:last-child) {
  margin-bottom: 10px;
}
.md-modal.business-card .inner .main-content form ul li input {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  background: #ffffff;
  border: none;
}
.md-modal.business-card .inner .main-content form ul li.updates input, .md-modal.business-card .inner .main-content form ul li.updates span {
  display: inline;
  width: auto;
}
.md-modal.business-card .inner .main-content form ul li.updates span {
  color: #ffffff;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.md-modal.business-card .inner .main-content #info {
  display: none;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

.goal-object .iframe-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.goal-object .iframe-container:before {
  display: block;
  content: "";
}
.goal-object .iframe-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.goal-object .object.facebook-page .iframe-container {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.goal-object .object.facebook-page .iframe-container:before {
  padding-bottom: 100%;
}
.goal-object .object.facebook-page .iframe-container iframe {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.goal-object .object.instagram-photo .iframe-container:before {
  padding-bottom: 125%;
}

.goal-object .generic .iframe-container:before {
  padding-bottom: 75%;
}
.goal-object .generic blockquote.twitter-tweet {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}
.goal-object .generic blockquote.twitter-tweet p {
  margin-top: 0;
}

.md-modal.read .md-content .inner .iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 150%;
}
.md-modal.read .md-content .inner .iframe-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 48em) {
  .md-modal.read .md-content .inner .iframe-container {
    padding-bottom: 125%;
  }
}

.md-modal.reward-chapter .md-content {
  position: relative;
}

.md-modal.reward-chapter .md-content .inner header {
  height: 80px;
  line-height: 80px;
}
.md-modal.reward-chapter .md-content .inner .reward.scribd #excerpt {
  padding: 0 !important;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content {
  padding: 0;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content .scroll-wrapper {
  position: relative;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt {
  position: relative;
  padding: 10px;
  background: #ffffff;
  color: #000000;
  overflow: auto;
  line-height: 1.5;
  font-size: 14px;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt ul li:not(:last-child), .md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt ol li:not(:last-child) {
  margin-bottom: 15px;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt ul li p, .md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt ol li p {
  margin: 10px 0;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt p {
  font-size: 12px;
  margin-bottom: 0;
  text-indent: 1.5em;
  line-height: 20px;
  font-family: "merriweather";
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt i, .md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt em {
  font-style: italic;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt b, .md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt strong {
  font-style: bold;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt h1, .md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt h2, .md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt h3 {
  font-family: "Aviano W03 Regular", Helvetica, Arial, sans-serif;
  font-variant: small-caps;
  text-align: center;
  margin: 0;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt h1 {
  font-size: 2em;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt h2 {
  font-size: 1.5em;
  margin-bottom: 0.8em;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt h3 {
  font-size: 1.3em;
  font-variant: small-caps;
}
.md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt hr {
  background: transparent;
  border: 0;
  -webkit-column-break-after: always;
  page-break-after: always;
}
@media screen and (min-width: 30em) {
  .md-modal.reward-chapter .md-content .inner .reward .main-content {
    padding: 20px;
  }
  .md-modal.reward-chapter .md-content .inner .reward .main-content #excerpt {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 30em) {
  .md-modal.reward-chapter .md-content .inner .reward .main-content {
    padding: 20px 40px;
  }
}

.md-modal.reward-image .md-content .inner .reward .main-content #image img {
  display: block;
  width: 100%;
  height: auto;
}

.md-modal.reward-video .md-content .inner .reward .main-content #video .iframe-container {
  position: relative;
}
.md-modal.reward-video .md-content .inner .reward .main-content #video .iframe-container:before {
  display: block;
  content: "";
  padding-bottom: 75%;
}
.md-modal.reward-video .md-content .inner .reward .main-content #video .iframe-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blocks .row {
  margin: 0 10px 0 0;
}
.blocks .row::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (min-width: 48em) {
  .blocks .row {
    margin: 0 0 0 -20px;
    margin-bottom: 20px;
  }
}
.blocks .row > article {
  width: 100%;
  float: left;
}
.blocks .row > article .content {
  margin: 0 0 20px 10px;
}
@media screen and (min-width: 48em) {
  .blocks .row > article .content {
    margin: 0 0 20px 20px;
    margin-bottom: 0;
    display: block;
    width: auto;
  }
}
.blocks .row > article.reviews .content {
  min-height: auto;
}
@media screen and (min-width: 48em) {
  .blocks .row.tall.feature-left > article {
    width: 33.33%;
  }
  .blocks .row.tall.feature-left > article.feature, .blocks .row.tall.feature-left > article.secondary {
    width: 50%;
    margin-bottom: 20px;
  }
  .blocks .row.tall.five-up > article, .blocks .row.tall.five-up > article.feature, .blocks .row.tall.five-up > article.secondary {
    width: 20%;
  }
}
@media screen and (min-width: 64em) {
  .blocks .row.tall.feature-left {
    margin: 0 0 13px 0;
  }
  .blocks .row.tall.feature-left > article {
    width: 25%;
  }
  .blocks .row.tall.feature-left > article .content {
    margin: 0 0 7px 7px;
  }
  .blocks .row.tall.feature-left > article.feature .content {
    margin: 0 13px 0 0;
  }
  .blocks .row.tall.feature-left > article.secondary {
    width: 25%;
  }
  .blocks .row.tall.feature-left > article.feature, .blocks .row.tall.feature-left > article.secondary {
    margin-bottom: 0;
  }
  .blocks .row.tall.feature-right {
    margin: 0 0 13px 0;
  }
  .blocks .row.tall.feature-right > article .content {
    margin: 0 12px 7px 0;
  }
  .blocks .row.tall.feature-right > article.feature {
    float: right;
  }
  .blocks .row.tall.feature-right > article.feature .content {
    margin: 0 0 0 8px;
  }
  .blocks .row.tall article {
    width: 25%;
  }
  .blocks .row.tall article h2 {
    max-width: 300px;
    margin: 0 auto;
  }
  .blocks .row.tall article.feature {
    width: 50%;
  }
  .blocks .row.tall article.feature p {
    font-size: 18px !important;
  }
  .blocks .row.tall.five-up > article, .blocks .row.tall.five-up > article.feature, .blocks .row.tall.five-up > article.secondary {
    width: 20%;
  }
}
@media screen and (min-width: 48em) {
  .blocks .row.medium {
    margin-bottom: 0;
  }
  .blocks .row.medium > article {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 64em) {
  .blocks .row.medium {
    margin-bottom: 20px;
  }
  .blocks .row.medium > article {
    width: 16.66%;
    margin-bottom: 0;
  }
  .blocks .row.medium > article .content .inner {
    vertical-align: middle;
  }
  .blocks .row.medium > article.feature {
    width: 50%;
  }
  .blocks .row.medium > article.feature .content .inner {
    vertical-align: middle;
  }
  .blocks .row.medium.two-up-right > article.feature {
    width: 33%;
  }
  .blocks .row.medium.two-up-right > article.secondary {
    width: 67%;
  }
  .blocks .row.medium.two-up-left > article.secondary {
    width: 33%;
  }
  .blocks .row.medium.two-up-left > article.feature {
    width: 67%;
  }
  .blocks .row.medium.five-up > article.feature {
    width: 20%;
  }
  .blocks .row.medium.five-up > article.secondary {
    width: 20%;
  }
}
@media screen and (min-width: 48em) {
  .blocks .row.small > article {
    width: 33.33%;
  }
  .blocks .row.small.five-up > article.feature {
    width: 25%;
  }
  .blocks .row.small.five-up > article.secondary {
    width: 25%;
  }
}
.blocks .row.double-height > article {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .blocks .row.double-height {
    width: 33.9%;
    float: right;
  }
}
@media screen and (min-width: 64em) {
  .blocks .row.double-height {
    width: 33.9%;
    float: right;
  }
}
@media screen and (min-width: 78.75em) {
  .blocks .row.double-height {
    width: 33.9%;
    float: right;
  }
}
@media screen and (min-width: 48em) {
  .blocks .row.tall > article .content {
    height: 300px;
  }
  .blocks .row.tall > article.feature .content, .blocks .row.tall > article.secondary .content {
    height: 407px;
  }
}
@media screen and (min-width: 64em) {
  .blocks .row.tall > article .content, .blocks .row.tall > article.secondary .content {
    height: 316px;
  }
  .blocks .row.tall > article.feature .content {
    height: 371px;
  }
}
@media screen and (min-width: 78.75em) {
  .blocks .row.tall > article .content {
    height: 316px;
  }
  .blocks .row.tall > article.feature .content {
    height: 371px;
  }
}
@media screen and (min-width: 48em) {
  .blocks .row.medium > article .content {
    height: 300px;
  }
  .blocks .row.medium > article .content .video-container {
    height: 280px !important;
  }
}
@media screen and (min-width: 64em) {
  .blocks .row.medium > article .content {
    height: 371px;
  }
  .blocks .row.medium > article .content .video-container {
    height: auto !important;
  }
}
@media screen and (min-width: 78.75em) {
  .blocks .row.medium > article .content {
    height: 371px;
  }
}
@media screen and (min-width: 48em) {
  .blocks .row.small > article .content {
    min-height: 300px;
  }
}
@media screen and (min-width: 64em) {
  .blocks .row.small > article .content {
    height: 468px;
  }
}
@media screen and (min-width: 78.75em) {
  .blocks .row.small > article .content {
    height: 468px;
  }
}

@media screen and (min-width: 48em) {
  body.page-extra .container .blocks .row.small.three-up article .content {
    min-height: 500px;
  }
}
@media screen and (min-width: 64em) {
  body.page-extra .container .blocks .row.small.three-up article .content {
    height: 468px;
  }
}
@media screen and (min-width: 78.75em) {
  body.page-extra .container .blocks .row.small.three-up article .content {
    height: 468px;
  }
}

/*
    General block definitions
*/
.blocks {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.blocks .block .content {
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: solid 2px #a99a74;
  color: #ffffff;
}
.blocks .block .content:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.blocks .block .content .inner {
  padding: 30px 20px;
  font-family: "myriad-pro";
}
.blocks .block .content .inner header {
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  overflow: auto;
}
.blocks .block .content .inner header h3 {
  margin: 0;
  font-size: 20px;
}
.blocks .block .content .inner header h4 {
  margin-top: 10px;
  font-size: 14px;
}
.blocks .block .content .inner .information {
  font-size: 12px;
}
.blocks .block .content .inner .information p {
  line-height: 20px;
}
@media screen and (min-width: 30em) {
  .blocks .block .content .inner header h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 48em) {
  .blocks .block .content .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  .blocks .block .content .inner header h3 {
    font-size: 34px;
  }
  .blocks .block .content .inner .information {
    font-size: 14px;
    text-align: left;
  }
}
.blocks .block .content .inner nav {
  margin-top: 20px;
  text-align: center;
}
.blocks .block .content .inner nav .button {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b3dfee;
  border-radius: 2px;
  color: #11100e;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.blocks .block .content .inner nav .button:hover {
  background-color: #89cde5;
}

@media screen and (min-width: 48em) {
  .block.reviews .content {
    min-height: 350px !important;
  }
}
.block.reviews .content .inner header {
  text-align: center;
  text-transform: uppercase;
}
.block.reviews .content .inner .books-thumb {
  max-width: 250px;
  margin: 0 auto 20px auto;
}
.block.reviews .content .inner .books-thumb:before {
  content: "";
  display: block;
  padding-bottom: 90.5537459283%;
  background: url("../img/reviews-books.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.reviews .content .inner .books-thumb:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/reviews-books@2x.png");
  }
}
.block.reviews .content .inner article#reviews {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 48em) {
  .block.reviews .content .inner article#reviews header h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 60em) {
  .block.reviews .content .inner article#reviews header h3 {
    font-size: 24px;
  }
}
.block.reviews .content .inner article#reviews ul.reviews-slider {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.block.reviews .content .inner article#reviews ul.reviews-slider .owl-stage {
  overflow: hidden;
}
.block.reviews .content .inner article#reviews ul.reviews-slider li blockquote p {
  position: relative;
  font-size: 19px;
}
.block.reviews .content .inner article#reviews ul.reviews-slider li blockquote p:before, .block.reviews .content .inner article#reviews ul.reviews-slider li blockquote p:after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.block.reviews .content .inner article#reviews ul.reviews-slider li blockquote p:before {
  top: 0px;
  left: -5px;
  background: url("../img/quotes-left.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.reviews .content .inner article#reviews ul.reviews-slider li blockquote p:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/quotes-left@2x.png");
  }
}
.block.reviews .content .inner article#reviews ul.reviews-slider li blockquote p:after {
  bottom: -10px;
  right: -5px;
  background: url("../img/quotes-right.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.reviews .content .inner article#reviews ul.reviews-slider li blockquote p:after {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/quotes-right@2x.png");
  }
}
.block.reviews .content .inner article#reviews ul.reviews-slider li blockquote footer {
  color: #52888b;
}
.block.reviews .content .inner article#reviews ul.reviews-slider li blockquote footer cite:before {
  content: "-";
  margin-right: 5px;
}
.block.reviews .content .inner article#reviews nav ul {
  cursor: default;
}
.block.reviews .content .inner article#reviews nav ul li {
  display: inline-block;
  cursor: pointer;
}
.block.reviews .content .inner article#reviews nav ul li:not(:last-child) {
  margin-right: 5px;
}
.block.reviews .content .inner article#reviews nav ul li a:before {
  font-family: "FontAwesome";
  content: "";
  display: block;
  font-size: 8px;
}
.block.reviews .content .inner article#reviews nav ul li a.active:before, .block.reviews .content .inner article#reviews nav ul li a:hover:before {
  color: #5b3d6a;
}
@media screen and (min-width: 48em) {
  .block.reviews .content .inner {
    font-size: 0;
  }
  .block.reviews .content .inner .books-thumb, .block.reviews .content .inner article#reviews {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    max-width: none;
  }
  .block.reviews .content .inner .books-thumb {
    width: 20%;
    margin-bottom: 0;
  }
  .block.reviews .content .inner article#reviews {
    width: 80%;
  }
}
@media screen and (min-width: 60em) {
  .block.reviews .content .inner .books-thumb {
    width: 30%;
  }
  .block.reviews .content .inner article#reviews {
    width: 70%;
  }
}

.block.challenge .content .inner header .progress-chart-wrapper {
  margin-bottom: 20px;
  text-align: center;
}
.block.challenge .content .inner header .progress-chart-wrapper .progress-chart {
  display: inline-block;
  width: 50px;
  height: 50px;
}
.block.challenge .content .inner header .progress-chart-wrapper .progress-chart.completed .progress-fill {
  fill: #6abbde;
}
.block.challenge .content .inner header .progress-chart-wrapper .progress-chart:not(.completed) .progress-fill {
  fill: #f9e7db;
}
@media screen and (min-width: 30em) {
  .block.challenge .content .inner header .progress-chart-wrapper .progress-chart {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 48em) {
  .block.challenge .content .inner header .progress-chart-wrapper .progress-chart {
    width: 70px;
    height: 70px;
  }
}
.block.challenge .content .inner header h3 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
}
.block.challenge .content .inner section.information {
  text-align: center;
}
.block.challenge .content .inner section.information p span.mission {
  text-transform: uppercase;
  font-weight: bold;
}

.blocks .block.book .content .inner {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
}
@media screen and (min-width: 30em) {
  .blocks .block.book .content .inner {
    padding: inherit;
  }
}
.blocks .block.book .content .inner header h4.book-header {
  font-size: 25px;
  color: #cead73;
  margin-bottom: 0px;
  padding: 15px 15px 0;
}
@media screen and (max-width: 905px) {
  .blocks .block.book .content .inner header h4.book-header {
    padding: 15px 20px 0;
    min-height: 90px;
  }
}
.blocks .block.book .content .inner .thumbnail {
  max-width: 200px;
  margin: 0 auto 20px auto;
}
.blocks .block.book .content .inner .thumbnail figcaption {
  display: block;
  font-size: 12px;
  text-align: center;
}
.blocks .block.book .content .inner .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.blocks .block.book .content .inner .information {
  min-height: auto;
}
.blocks .block.book .content .inner .information p {
  padding: 0 30px;
}
@media screen and (min-width: 48em) {
  .blocks .block.book .content .inner .information p {
    padding: 0;
  }
}
.blocks .block.book .content .inner .information p a {
  color: #b3dfee;
  text-decoration: underline;
}
.blocks .block.book .content .inner .information p a:hover {
  text-decoration: none;
}
.blocks .block.book .content .inner .buy-icons {
  margin-top: 15px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 0;
}
.blocks .block.book .content .inner .buy-icons ul::after {
  clear: both;
  content: "";
  display: table;
}
.blocks .block.book .content .inner .buy-icons ul li {
  margin-top: 10px;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  color: #cead73;
  text-align: center;
  width: 13%;
}
.blocks .block.book .content .inner .buy-icons ul li:nth-of-type(7n) {
  clear: both;
  margin-left: 27%;
}
@media screen and (min-width: 60em) {
  .blocks .block.book .content .inner .buy-icons ul li {
    width: 8%;
  }
  .blocks .block.book .content .inner .buy-icons ul li:nth-of-type(7n) {
    clear: none;
    float: left;
    margin-left: 0;
  }
}
.blocks .block.book .content .inner .buy-icons ul li a:before {
  display: inline-block;
  text-align: center;
  font-family: "booksellers";
  vertical-align: middle;
  color: #ffffff;
  font-size: 28px;
}
.blocks .block.book .content .inner .buy-icons ul li.amazon a:before, .blocks .block.book .content .inner .buy-icons ul li.kindle a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.audible a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.bam a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.bn a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.google a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.ibooks a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.indiebound a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.kobo a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.nook a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.overstock a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.powells a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.reader a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.target a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.walmart a:before {
  content: "";
}
.blocks .block.book .content .inner .buy-icons ul li.indigo a:before {
  margin-top: -5px;
  content: "!";
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
}
.blocks .block.book .content .inner .buy-icons ul li:first-of-type {
  width: 27%;
  font-size: 20px;
  text-transform: uppercase;
}
.blocks .block.book .content .inner .buy-icons ul li.pre-order {
  width: 27%;
}
@media screen and (min-width: 60em) {
  .blocks .block.book .content .inner .buy-icons ul li:first-of-type {
    width: 16%;
  }
  .blocks .block.book .content .inner .buy-icons ul li.pre-order {
    width: 20%;
  }
}
@media screen and (min-width: 30em) {
  .blocks .block.book .content .inner .book.information {
    min-height: auto;
  }
}
@media screen and (min-width: 48em) {
  .blocks .block.book .content .inner {
    font-size: 0;
    text-align: center;
    padding: 0 !important;
  }
  .blocks .block.book .content .inner .thumbnail, .blocks .block.book .content .inner .information {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
  }
  .blocks .block.book .content .inner .thumbnail {
    vertical-align: top;
    margin-left: 3%;
    width: 38%;
    max-width: 250px;
    margin-bottom: 0;
    margin-right: 2%;
  }
  .blocks .block.book .content .inner .information {
    width: 54%;
    margin-right: 3%;
  }
  .blocks .block.book .content .inner .information.buy-icons {
    width: 100%;
    margin-right: 0;
  }
  .blocks .block.book .content .inner .book.information {
    min-height: 471px;
  }
}
@media screen and (min-width: 60em) {
  .blocks .block.book .content .inner .book.information {
    min-height: 410px;
  }
}

.block.video .content .inner .information {
  text-align: center;
}
.block.video .content .inner .video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.block.video .content .inner .video-container:before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.block.video .content .inner .video-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block.book section.buy-icon.information ul.split-into-columns {
  -webkit-columns: 1;
  -moz-columns: 1;
  columns: 1;
}
@media screen and (min-width: 30em) {
  .block.book section.buy-icon.information ul.split-into-columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}
@media screen and (min-width: 48em) {
  .block.book section.buy-icon.information ul.split-into-columns {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}
@media screen and (min-width: 67.5em) {
  .block.book section.buy-icon.information ul.split-into-columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}
.block.book section.buy-icon.information ul.split-into-columns li a {
  font-size: 12px;
}
.block.book section.buy-icon.information ul.split-into-columns li:before {
  font-size: 20px;
  width: 40%;
}
@media screen and (min-width: 30em) {
  .block.book section.buy-icon.information ul.split-into-columns li:before {
    width: 30%;
    margin-right: 5px;
    font-size: 24px;
  }
  .block.book section.buy-icon.information ul.split-into-columns li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 38.75em) {
  .block.book section.buy-icon.information ul.split-into-columns li:before {
    width: 25%;
    margin-right: 5px;
  }
  .block.book section.buy-icon.information ul.split-into-columns li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 48em) {
  .block.book section.buy-icon.information ul.split-into-columns li:before {
    width: 25%;
    margin-right: 10px;
  }
}
@media screen and (min-width: 67.5em) {
  .block.book section.buy-icon.information ul.split-into-columns li:before {
    width: 20%;
  }
  .block.book section.buy-icon.information ul.split-into-columns li a {
    font-size: 11px;
  }
}
@media screen and (min-width: 78.75em) {
  .block.book section.buy-icon.information ul.split-into-columns li:before {
    width: 25%;
    font-size: 30px;
  }
  .block.book section.buy-icon.information ul.split-into-columns li a {
    font-size: 12px;
  }
}
.block.book section.buy-icon.information ul:not(.split-into-columns) li:before {
  width: 40%;
}
@media screen and (min-width: 30em) {
  .block.book section.buy-icon.information ul:not(.split-into-columns) li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 38.75em) {
  .block.book section.buy-icon.information ul:not(.split-into-columns) li:before {
    width: 43%;
  }
}
@media screen and (min-width: 48em) {
  .block.book section.buy-icon.information ul:not(.split-into-columns) li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 53.75em) {
  .block.book section.buy-icon.information ul:not(.split-into-columns) li:before {
    font-size: 28px;
  }
  .block.book section.buy-icon.information ul:not(.split-into-columns) li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 78.75em) {
  .block.book section.buy-icon.information ul:not(.split-into-columns) li:before {
    font-size: 30px;
  }
  .block.book section.buy-icon.information ul:not(.split-into-columns) li a {
    font-size: 18px;
  }
}
.block.book section.buy-icon.information ul li:not(:first-child) {
  margin-top: 5px;
}
.block.book section.buy-icon.information ul li:before {
  display: inline-block;
  text-align: center;
  font-family: "booksellers";
  vertical-align: middle;
  color: #ffffff;
  font-size: 24px;
}
.block.book section.buy-icon.information ul li.amazon:before, .block.book section.buy-icon.information ul li.kindle:before {
  content: "";
}
.block.book section.buy-icon.information ul li.audible:before {
  content: "";
}
.block.book section.buy-icon.information ul li.bam:before {
  content: "";
}
.block.book section.buy-icon.information ul li.bn:before {
  content: "";
}
.block.book section.buy-icon.information ul li.google:before {
  content: "";
}
.block.book section.buy-icon.information ul li.ibooks:before {
  content: "";
}
.block.book section.buy-icon.information ul li.indiebound:before {
  content: "";
}
.block.book section.buy-icon.information ul li.kobo:before {
  content: "";
}
.block.book section.buy-icon.information ul li.nook:before {
  content: "";
}
.block.book section.buy-icon.information ul li.overstock:before {
  content: "";
}
.block.book section.buy-icon.information ul li.powells:before {
  content: "";
}
.block.book section.buy-icon.information ul li.reader:before {
  content: "";
}
.block.book section.buy-icon.information ul li.target:before {
  content: "";
}
.block.book section.buy-icon.information ul li.walmart:before {
  content: "";
}
.block.book section.buy-icon.information ul li.indigo:before {
  content: "!";
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
}
.block.book section.buy-icon.information ul li a {
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  color: #cead73;
}
.block.book section.buy-icon.information ul li a:hover {
  color: #e8d9bf;
}

.book section.information.buy-icons ul li {
  float: left;
}

.block.newsletter {
  position: relative;
  z-index: 100;
}
.block.newsletter .inner header h3 {
  font-size: 16px;
  font-weight: 400;
}
.block.newsletter .inner nav .button {
  appearance: none;
  border: none;
}

.block.preview .inner section {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.block.preview .inner section figure {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
.block.preview .inner section figure img {
  display: block;
  width: 100%;
  height: auto;
}
.block.preview .inner section article.copy p {
  text-align: center;
}
@media screen and (min-width: 30em) {
  .block.preview .inner section {
    font-size: 0;
  }
  .block.preview .inner section figure, .block.preview .inner section article.copy {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
  }
  .block.preview .inner section figure {
    width: 45%;
    margin-right: 5%;
  }
  .block.preview .inner section article.copy {
    width: 50%;
  }
  .block.preview .inner section article.copy p {
    text-align: left;
  }
}

.block.image .content {
  padding-bottom: 75%;
}
.block.image .content .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
.block.image .content .inner img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .block.image .content {
    padding-bottom: 0;
  }
}

.block.link .content .inner img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .block.link .content .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
  }
}

.block.follow .content .inner nav ul {
  max-width: 200px;
  margin: 0 auto;
}
.block.follow .content .inner nav ul li:not(:last-child) {
  margin-bottom: 10px;
}
.block.follow .content .inner nav ul li a.button {
  display: block;
  position: relative;
  padding-left: 50px;
  padding-right: 10px;
  text-transform: uppercase;
}
.block.follow .content .inner nav ul li a.button span {
  display: inline-block;
  padding: 0 30px;
}
.block.follow .content .inner nav ul li a.button:before {
  width: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-family: "FontAwesome";
  font-size: 22px;
}
.block.follow .content .inner nav ul li a.button.facebook:before {
  content: "";
}
.block.follow .content .inner nav ul li a.button.instagram:before {
  content: "";
}
.block.follow .content .inner nav ul li a.button.twitter:before {
  content: "";
}
.block.follow .content .inner nav ul li a.button.youtube:before {
  content: "";
}
.block.follow .content .inner nav ul li a.button.pinterest:before {
  content: "";
}
.block.follow .content .inner nav ul li a.button.tumblr:before {
  content: "";
}
.block.follow .content .inner nav ul li a.button.goodreads:before {
  content: "";
  display: block;
  width: 40px;
  height: 23px;
  background: url("../img/goodreads-logo.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.follow .content .inner nav ul li a.button.goodreads:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/goodreads-logo@2x.png");
  }
}
.block.follow .content .inner nav ul li a.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  border-right: solid 2px #eb0712;
}

.block.business-card .content .inner {
  padding: 0;
}
.block.business-card .content .inner header {
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #eb0712;
  letter-spacing: 1px;
}
.block.business-card .content .inner .main-content {
  padding: 20px 40px;
}
.block.business-card .content .inner .main-content .thumbnail {
  max-width: 200px;
  margin: 0 auto 20px auto;
}
.block.business-card .content .inner .main-content .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .block.business-card .content .inner .main-content {
    padding: 40px;
    font-size: 0;
    text-align: center;
  }
  .block.business-card .content .inner .main-content nav {
    font-size: 16px;
  }
  .block.business-card .content .inner .main-content .thumbnail, .block.business-card .content .inner .main-content .information {
    display: inline-block;
    vertical-align: middle;
  }
  .block.business-card .content .inner .main-content .thumbnail {
    width: 38%;
    max-width: 250px;
    margin-bottom: 0;
    margin-right: 2%;
  }
  .block.business-card .content .inner .main-content .information {
    width: 60%;
  }
}

.block.info .inner {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.block.info .inner .thumbnail {
  max-width: 200px;
  margin: 0 auto 20px auto;
}
.block.info .inner .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .block.info .inner {
    font-size: 0;
    text-align: center;
  }
  .block.info .inner .thumbnail, .block.info .inner .information {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
  }
  .block.info .inner .thumbnail {
    width: 38%;
    max-width: 250px;
    margin-bottom: 0;
    margin-right: 2%;
  }
  .block.info .inner .information {
    width: 90%;
  }
}

.block.news .content .inner {
  padding: 0;
}
.block.news .content .inner .left {
  padding: 20px;
}
.block.news .content .inner .left figure {
  max-width: 225px;
  margin: 0 auto 20px auto;
}
.block.news .content .inner .left figure:before {
  content: "";
  display: block;
  padding-bottom: 89.7777777778%;
  background: url("../img/blocks/news.png") center center no-repeat;
  background-size: cover;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.news .content .inner .left figure:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/blocks/news@2x.png");
  }
}
.block.news .content .inner .left nav {
  max-width: 225px;
  margin: 0 auto;
}
.block.news .content .inner .left nav ul li:not(:last-child) {
  margin-bottom: 10px;
}
.block.news .content .inner .left nav ul li .button {
  display: block;
}
.block.news .content .inner .left nav ul li .button.active {
  background-color: #eb0712;
  color: #ffffff;
}
.block.news .content .inner .right ul.news-list {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.block.news .content .inner .right ul.news-list li {
  position: relative;
  padding: 20px 10px 20px 70px;
}
.block.news .content .inner .right ul.news-list li:nth-child(2n+1) {
  background-color: rgba(0, 0, 0, 0.5);
}
.block.news .content .inner .right ul.news-list li span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
}
.block.news .content .inner .right ul.news-list li:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  height: 32px;
  width: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.block.news .content .inner .right ul.news-list li.junior-associate:before {
  background-image: url("../img/blocks/news/junior-associate.png");
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.news .content .inner .right ul.news-list li.junior-associate:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/blocks/news/junior-associate.png");
  }
}
.block.news .content .inner .right ul.news-list li.intern:before {
  background-image: url("../img/blocks/news/intern.png");
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.news .content .inner .right ul.news-list li.intern:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/blocks/news/intern.png");
  }
}
.block.news .content .inner .right ul.news-list li.partner:before {
  background-image: url("../img/blocks/news/partner.png");
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.news .content .inner .right ul.news-list li.partner:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/blocks/news/partner.png");
  }
}
.block.news .content .inner .right ul.news-list li.paralegal:before {
  background-image: url("../img/blocks/news/paralegal.png");
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.news .content .inner .right ul.news-list li.paralegal:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/blocks/news/paralegal.png");
  }
}
.block.news .content .inner .right ul.news-list li.junior-partner:before {
  background-image: url("../img/blocks/news/junior-partner.png");
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .block.news .content .inner .right ul.news-list li.junior-partner:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/blocks/news/junior-partner.png");
  }
}
.block.news .content .inner .right ul.news-list li.empty {
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  height: 100%;
}
.block.news .content .inner .right ul.news-list li.empty:before {
  display: none;
}
@media screen and (min-width: 60em) {
  .block.news .content .inner {
    position: relative;
    padding-right: 50%;
  }
  .block.news .content .inner .left {
    margin-bottom: 0;
  }
  .block.news .content .inner .right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    border-left: solid 1px #464646;
  }
  .block.news .content .inner .right ul.news-list {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .block.news .content .inner .right ul.news-list li {
    height: 20%;
  }
  .block.news .content .inner .right ul.news-list li span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.block.read .content .inner .information {
  text-align: center;
}

.block.contest {
  position: relative;
  z-index: 100;
}
.block.contest .content {
  background-color: #3a8cc6;
  border-color: #ffffff;
  color: #ffffff;
}
.block.contest .content:hover {
  background-color: rgba(156, 139, 103, 0.8);
}
.block.contest .content .inner section p {
  text-align: center;
}
.block.contest .content .inner section p.small {
  font-size: 14px;
}
.block.contest .content .inner nav ul {
  font-size: 0;
}
.block.contest .content .inner nav ul li {
  max-width: 150px;
  margin: 0 auto;
  padding: 20px;
  font-size: 16px;
}
.block.contest .content .inner nav ul li .button {
  width: 100%;
  display: block;
  height: 60px;
  padding: 0 5px;
  background-color: #18252c;
  line-height: 60px;
  color: #ffffff;
}
.block.contest .content .inner nav ul li .button span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 16px;
}
.block.contest .content .inner nav ul li .button:hover {
  background-color: #2a414d;
}
.block.contest .content .inner nav ul li figure {
  margin-bottom: 20px;
}
.block.contest .content .inner nav ul li figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 30em) {
  .block.contest .content .inner nav {
    padding: 0 15px;
  }
  .block.contest .content .inner nav ul {
    font-size: 0;
  }
  .block.contest .content .inner nav ul li {
    display: inline-block;
    vertical-align: bottom;
    width: 50%;
    max-width: none;
  }
}

.block.title {
  position: relative;
  z-index: 100;
}
.block.title .content {
  height: 100px;
  background: transparent;
  border: 0;
}
.block.title .content:hover {
  background: transparent;
}
.block.title .content .inner header {
  padding: 15px 0;
}
.block.title .content .inner header h3 {
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.blocks .block.event .inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: static;
  transform: translateX(0%) translateY(0%);
}
.blocks .block.event .inner div.information {
  width: 100%;
  text-align: left;
}
.blocks .block.event .inner div.information li {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  font-size: 14px;
  padding: 15px 20px;
}
.blocks .block.event .inner div.information li::after {
  clear: both;
  content: "";
  display: table;
}
.blocks .block.event .inner div.information li:hover, .blocks .block.event .inner div.information li.active {
  background-color: #4e9bb1;
}
.blocks .block.event .inner div.information li:nth-child(2n-1) {
  background-color: rgba(21, 34, 40, 0.6);
}
.blocks .block.event .inner div.information li:nth-child(2n-1):hover, .blocks .block.event .inner div.information li:nth-child(2n-1).active {
  background-color: #4e9bb1;
}
.blocks .block.event .inner div.information a {
  cursor: pointer;
}
.blocks .block.event .inner div.information .date, .blocks .block.event .inner div.information .city, .blocks .block.event .inner div.information .location {
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  text-align: left;
}
.blocks .block.event .inner div.information .date {
  font-size: 16px;
  color: #cead73;
}
.blocks .block.event .inner div.information .city {
  font-size: 16px;
  color: #b3dfee;
}
.blocks .block.event .inner div.information .description p {
  margin: 0;
}
.blocks .block.event .inner div.information .description p a {
  color: #b3dfee;
}
@media screen and (min-width: 48em) {
  .blocks .block.event .inner {
    font-size: 0;
    text-align: center;
  }
  .blocks .block.event .inner .thumbnail, .blocks .block.event .inner .information {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
  }
}

form#newsletter-form {
  max-width: 400px;
  margin: 0 auto;
  color: #959595;
}
form#newsletter-form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
form#newsletter-form ul li:not(:last-child) {
  margin-bottom: 10px;
}
form#newsletter-form ul li input, form#newsletter-form ul li select {
  width: 100%;
  height: 100%;
}
form#newsletter-form ul li input, form#newsletter-form ul li .trigger, form#newsletter-form ul li .activetrigger {
  border-radius: 2px;
}
form#newsletter-form ul li.three::after {
  clear: both;
  content: "";
  display: table;
}
form#newsletter-form ul li.three .field {
  float: left;
}
form#newsletter-form ul li.three .field:not(:last-child) {
  width: 49%;
}
form#newsletter-form ul li.three .field:first-child {
  margin-right: 2%;
}
form#newsletter-form ul li.three .field:last-child {
  clear: left;
  width: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 48em) {
  form#newsletter-form ul li.three .field {
    width: 32% !important;
  }
  form#newsletter-form ul li.three .field:first-child {
    margin-right: 0;
  }
  form#newsletter-form ul li.three .field:last-child {
    clear: none;
    margin-top: 0;
    width: auto;
  }
  form#newsletter-form ul li.three .field:not(:last-child) {
    margin-right: 2%;
    width: auto;
  }
  form#newsletter-form ul li.three .field:not(:last-child) {
    margin-right: 2%;
  }
}
form#newsletter-form ul li .field {
  height: 40px;
}
form#newsletter-form ul li .field input {
  padding: 0 10px;
  border: none;
}
form#newsletter-form ul li .field input::-webkit-input-placeholder {
  font-size: 12px;
  color: #959595;
}
@media screen and (min-width: 30em) {
  form#newsletter-form ul li .field input::-webkit-input-placeholder {
    font-size: 14px;
  }
}
form#newsletter-form ul li .field input::-moz-placeholder {
  font-size: 12px;
  color: #959595;
}
@media screen and (min-width: 30em) {
  form#newsletter-form ul li .field input::-moz-placeholder {
    font-size: 14px;
  }
}
form#newsletter-form ul li .field input:-moz-placeholder {
  font-size: 12px;
  color: #959595;
}
@media screen and (min-width: 30em) {
  form#newsletter-form ul li .field input:-moz-placeholder {
    font-size: 14px;
  }
}
form#newsletter-form ul li .field input:-ms-input-placeholder {
  font-size: 12px;
  color: #959595;
}
@media screen and (min-width: 30em) {
  form#newsletter-form ul li .field input:-ms-input-placeholder {
    font-size: 14px;
  }
}
form#newsletter-form ul li .field.checkbox {
  height: auto;
  margin-top: 10px;
  color: #ffffff;
}
@media screen and (min-width: 48em) {
  form#newsletter-form ul li .field.checkbox {
    font-size: 14px;
  }
}
form#newsletter-form ul li .field.checkbox input[type=checkbox] {
  display: inline-block;
  width: 15px;
  height: 15px;
}
form#newsletter-form ul li .field.custom {
  position: relative;
  z-index: 10000;
}
form#newsletter-form ul li .field.custom .dropcontainer {
  color: #777;
  z-index: 100;
}
form#newsletter-form ul li .field.custom .trigger {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #959595;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
}
form#newsletter-form ul li .field.custom .activetrigger {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #959595;
  line-height: 40px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
}
form#newsletter-form ul li .field.custom .dropcontainer ul {
  border: solid 1px #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  z-index: 100;
  font-size: 12px;
  overflow-x: hidden;
}
@media screen and (min-width: 30em) {
  form#newsletter-form ul li .field.custom .dropcontainer ul {
    font-size: 14px;
  }
}
@media screen and (min-width: 30em) {
  form#newsletter-form ul li .field.custom .dropcontainer ul {
    font-size: 16px;
  }
}
form#newsletter-form ul li .field.custom .dropcontainer ul li {
  padding: 5px 10px;
  cursor: pointer;
}
form#newsletter-form ul li .field.custom .dropcontainer ul li:hover {
  background: #f5f5f5;
}
form#newsletter-form ul li .field.custom .dropcontainer ul li:first-child {
  display: none;
}
form#newsletter-form ul li .field.custom .dropcontainer ul li:last-child {
  border-bottom: none;
}
form#newsletter-form ul li .field.custom .dropcontainer ul li a {
  color: inherit;
}
form#newsletter-form ul li .field.custom .dropdownhidden {
  display: none;
}
form#newsletter-form ul li .field.custom .dropdownvisible {
  height: 200px;
  overflow-y: scroll;
}
form#newsletter-form ul li .field.custom label {
  font: 0/0 a;
  text-shadow: none;
}
form#newsletter-form ul li .field.custom.agree span {
  font-size: 12px;
}

#status-bar {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  height: 40px;
  background-color: #000000;
  line-height: 40px;
  font-family: "merriweather";
  color: #ffffff;
  z-index: 20;
}
#status-bar nav {
  text-align: right;
  font-size: 12px;
}
#status-bar nav span.user {
  margin-right: 10px;
}
#status-bar nav span.user:after {
  content: "|";
  margin-left: 10px;
}
#status-bar nav .action {
  position: relative;
  display: inline-block;
  color: #eb0712;
  cursor: pointer;
}
#status-bar nav .action:hover ul, #status-bar nav .action.active ul {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
#status-bar nav .action ul {
  -webkit-transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
  -moz-transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
  position: absolute;
  top: 100%;
  right: -10px;
  padding: 30px 15px 20px 15px;
  width: 247px;
  height: 274px;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
  background: url("../img/social-auth-bg.png") top center no-repeat;
  background-size: cover;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  #status-bar nav .action ul {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/social-auth-bg@2x.png");
  }
}
#status-bar nav .action ul li:not(:last-child) {
  margin-bottom: 15px;
}
#status-bar nav .action ul li a.button {
  position: relative;
  display: block;
  height: 45px;
  padding-left: 50px;
  padding-right: 10px;
  border: solid 1px #eb0712;
  color: #ffffff;
  text-align: center;
  line-height: 45px;
}
#status-bar nav .action ul li a.button:hover span {
  color: #eb0712;
  background-color: #ffffff;
}
#status-bar nav .action ul li a.button span {
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out, color 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
  display: inline-block;
  vertical-align: middle;
  padding: 5px 10px;
  background-color: transparent;
  border-radius: 2px;
  color: inherit;
  font-size: 10px;
  line-height: 13px;
}
#status-bar nav .action ul li a.button span strong {
  font-family: "bebas-neue";
  font-size: 16px;
}
#status-bar nav .action ul li a.button:before {
  width: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-family: "FontAwesome";
  font-size: 22px;
}
#status-bar nav .action ul li a.button.facebook:before {
  content: "";
}
#status-bar nav .action ul li a.button.instagram:before {
  content: "";
}
#status-bar nav .action ul li a.button.twitter:before {
  content: "";
}
#status-bar nav .action ul li a.button.tumblr:before {
  content: "";
}
#status-bar nav .action ul li a.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  border-right: solid 2px #eb0712;
}

#hd {
  position: relative;
  margin-bottom: 40px;
  color: #ffffff;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
}
#hd .container {
  padding: 0;
}
#hd li.logo a, #hd a.logo {
  font: 0/0 a;
  text-shadow: none;
  position: relative;
  width: 100%;
  max-width: 225px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}
#hd li.logo a:before, #hd a.logo:before {
  display: block;
  content: "";
  padding-bottom: 34.309623431%;
  background: url("../img/logo.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  #hd li.logo a:before, #hd a.logo:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/logo@2x.png");
  }
}
@media screen and (max-width: 48em) {
  #hd nav header {
    padding: 20px 0;
  }
  #hd nav header #mobile-menu-toggle {
    display: block;
    margin-top: 10px;
    text-align: center;
    padding: 15px 30px;
    float: left;
    cursor: pointer;
    z-index: 10;
  }
  #hd nav header #mobile-menu-toggle:before {
    display: inline-block;
    content: "";
    font-family: "FontAwesome";
    font-size: 24px;
    color: #ffffff;
  }
  #hd nav ul {
    -webkit-transition: z-index 0.2s ease-out, -webkit-transform 0.2s ease-out, opacity 0.2s ease-out 0.1s, visibility 0.2s ease-out;
    -moz-transition: z-index 0.2s ease-out, -moz-transform 0.2s ease-out, opacity 0.2s ease-out 0.1s, visibility 0.2s ease-out;
    transition: z-index 0.2s ease-out, transform 0.2s ease-out, opacity 0.2s ease-out 0.1s, visibility 0.2s ease-out;
    width: 100%;
    left: 0;
    padding: 10px 20px;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    z-index: -10;
    display: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: #152126;
    text-align: center;
  }
  #hd nav ul.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    display: block;
    z-index: 11;
  }
  #hd nav ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  #hd nav ul li.logo {
    display: none;
  }
  #hd nav ul li a {
    text-transform: uppercase;
    font-size: 18px;
  }
}
@media screen and (min-width: 48em) {
  #hd {
    overflow: auto;
  }
  #hd nav {
    margin-top: 20px;
  }
  #hd nav header {
    display: none;
  }
  #hd nav ul {
    font-size: 0;
  }
  #hd nav ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
  }
  #hd nav ul li.w-7 {
    width: 7%;
  }
  #hd nav ul li.w-10 {
    width: 10%;
  }
  #hd nav ul li.w-13 {
    width: 13%;
  }
  #hd nav ul li.w-20 {
    width: 20%;
  }
}
@media screen and (min-width: 60em) {
  #hd nav ul li {
    font-size: 28px;
  }
}

.page-books li.w-10.books a {
  color: #cead73;
}

.page-author li.w-10.author a {
  color: #cead73;
}

.page-events li.w-20.events a {
  color: #cead73;
}

.page-quiz li.w-10.quiz a {
  color: #cead73;
}

.page-map li.w-10.map a {
  color: #cead73;
}

.page-extra li.w-10.extras a {
  color: #cead73;
}

.page-contact li.w-10.contact a {
  color: #cead73;
}

body {
  padding-bottom: 160px;
}
@media screen and (min-width: 48em) {
  body {
    padding-bottom: 100px;
  }
}

#ft {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px;
  background-color: rgba(45, 57, 63, 0.7);
  font-family: "Crimson Text", Helvetica, Arial, sans-serif;
  color: #ffffff;
  overflow: auto;
}
#ft a {
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  color: inherit;
}
#ft a:hover {
  color: #eb0712;
}
#ft span, #ft a {
  display: block;
  text-align: center;
}
#ft .copy, #ft .terms, #ft .privacy {
  margin-bottom: 10px;
  font-size: 12px;
}
#ft nav.social {
  margin-bottom: 10px;
}
#ft nav.social ul {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0;
}
#ft nav.social ul li {
  display: inline-block;
  vertical-align: middle;
}
#ft nav.social ul li:not(:last-child) {
  margin-right: 20px;
}
#ft nav.social ul li a {
  display: block;
}
#ft nav.social ul li a:before {
  font-family: "FontAwesome";
  font-size: 14px;
}
#ft nav.social ul li a.facebook:before {
  content: "";
}
#ft nav.social ul li a.twitter:before {
  content: "";
}
#ft nav.social ul li a.tumblr:before {
  content: "";
}
#ft nav.social ul li a.pinterest:before {
  content: "";
}
#ft nav.social ul li a.instagram:before {
  content: "";
}
#ft nav.social ul li a.rss:before {
  content: "";
}
#ft nav.social ul li a.google:before {
  content: "";
}
#ft nav.social ul li a.goodreads:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/goodreads-logo.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  #ft nav.social ul li a.goodreads:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/goodreads-logo@2x.png");
  }
}
#ft nav.social ul li a:hover {
  color: inherit;
}
@media screen and (min-width: 48em) {
  #ft {
    padding: 30px 20px;
    overflow: hidden;
  }
  #ft a, #ft span {
    display: inline-block;
    vertical-align: middle;
  }
  #ft .copy, #ft .terms, #ft .privacy {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin-bottom: 0;
  }
  #ft .copy, #ft .terms {
    margin-right: 20px;
  }
  #ft nav.social {
    display: inline-block;
    vertical-align: middle;
    float: right;
    margin-bottom: 0;
  }
  #ft nav.social ul li a:before {
    font-size: 16px;
  }
}

.tumblr-ask.view .container {
  max-width: 500px;
}
.tumblr-ask.view .view-header .copy p {
  padding: 0 18px;
}
.tumblr-ask.view iframe {
  width: 100%;
  height: 200px;
}
.tumblr-ask.view iframe div.captcha_wrapper {
  position: absolute !important;
  top: 0;
}

.tumblr .section-title {
  font: 30px/1.3 "Antonio Regular", Helvetica, Arial, sans-serif;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.tumblr .post-wrapper {
  padding: 0;
}

.tumblr-posts.loading-more:after {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  content: "Loading more posts...";
  color: #fff;
  text-align: center;
}
.tumblr-posts .post {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
.tumblr-posts .post iframe, .tumblr-posts .post img, .tumblr-posts .post video, .tumblr-posts .post embed {
  width: 100%;
}
.tumblr-posts .post .post-inner {
  margin: 0 10% 10%;
  padding: 10% 0;
}
.tumblr-posts .post blockquote {
  padding-left: 1em;
  border-left: 1px solid #fff;
  margin: 0 0 1em;
}
.tumblr-posts .post a {
  color: #cead73;
}
.tumblr-posts .post a:hover {
  color: #dac296;
}
.tumblr-posts .post .tumblr_blog {
  font-weight: bold;
}
.tumblr-posts .post .tags {
  padding-bottom: 5px;
}
.tumblr-posts .post .tags:before {
  content: "Tagged";
  display: inline-block;
  margin-right: 5px;
}
.tumblr-posts .post .tags li {
  display: inline-block;
  margin-right: 5px;
}
.tumblr-posts .post .actions {
  border-top: 1px solid #cead73;
  padding-top: 10px;
  margin-top: 10px;
  text-align: center;
}
.tumblr-posts .post .actions li {
  display: inline-block;
  margin-right: 10px;
}
.tumblr-posts .post .actions a {
  display: block;
}
.tumblr-posts .post .actions .link, .tumblr-posts .post .actions .reblog {
  font-size: 0;
}
.tumblr-posts .post .actions .link:before, .tumblr-posts .post .actions .reblog:before {
  font: 15px/1 "FontAwesome";
}
.tumblr-posts .post .actions .link:before {
  content: "";
}
.tumblr-posts .post .actions .reblog:before {
  content: "";
}
.tumblr-posts .post .content {
  line-height: 1.5;
  display: none;
}
.tumblr-posts .post .content ol, .tumblr-posts .post .content ul {
  list-style-position: outside;
  padding-left: 1.5em;
  margin: 1em 0;
}
.tumblr-posts .post .content ol {
  list-style-type: decimal;
}
.tumblr-posts .post .content ul {
  list-style-type: disc;
}
.tumblr-posts .post .content figure img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.tumblr .photoset-container .row::after {
  clear: both;
  content: "";
  display: table;
}
.tumblr .photoset-container .image-container {
  float: left;
}
.tumblr .photoset-container .count-1 .image-container {
  width: 100%;
}
.tumblr .photoset-container .count-2 .image-container {
  width: 50%;
}
.tumblr .photoset-container .count-3 .image-container {
  width: 33.3333333333%;
}
.tumblr .photoset-container .count-4 .image-container {
  width: 25%;
}
.tumblr .photoset-container .count-5 .image-container {
  width: 20%;
}
.tumblr .photoset-container .count-6 .image-container {
  width: 16.6666666667%;
}
.tumblr .photoset-container .count-7 .image-container {
  width: 14.2857142857%;
}
.tumblr .photoset-container .count-8 .image-container {
  width: 12.5%;
}
.tumblr .photoset-container .count-9 .image-container {
  width: 11.1111111111%;
}
.tumblr .photoset-container .image-resizer {
  position: relative;
  overflow: hidden;
}
.tumblr .photoset-container .image-resizer img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.csstransforms .tumblr .photoset-container .image-resizer img {
  top: 50%;
  transform: translateY(-50%);
}

#map-container {
  position: relative;
  margin-bottom: 40px;
  color: #ffffff;
  clear: both;
  top: 20px;
  overflow: hidden;
}
#map-container .credit {
  position: relative;
  top: -20px;
  left: 20px;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}
#map-container article.popup {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
#map-container article.popup header {
  position: relative;
}
#map-container article.popup header:before {
  display: block;
  content: "";
  padding-bottom: 25.8169934641%;
  background: url("../img/map/popup-top.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  #map-container article.popup header:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/popup-top@2x.png");
  }
}
#map-container article.popup header h1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 26px;
  line-height: 26px;
  text-transform: uppercase;
  text-align: center;
}
#map-container article.popup main {
  padding: 20px 30px;
  background: url("../img/map/popup-body.png") top center repeat-y;
  background-size: 100% auto;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  #map-container article.popup main {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/popup-body@2x.png");
  }
}
#map-container article.popup main p {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
}
#map-container article.popup footer {
  position: relative;
}
#map-container article.popup footer:before {
  display: block;
  content: "";
  padding-bottom: 13.7254901961%;
  background: url("../img/map/popup-bottom.png") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  #map-container article.popup footer:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/popup-bottom@2x.png");
  }
}
#map-container article.popup footer nav a[data-hook-close] {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #cead73;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 37.5em) {
  #map-container:before {
    display: block;
    content: "";
    padding-bottom: 64.7457627119%;
    background: url("../img/map/map.png") center center no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 37.5em) and (min--moz-device-pixel-ratio: 1.3), screen and (max-width: 37.5em) and (-o-min-device-pixel-ratio: 2.6/2), screen and (max-width: 37.5em) and (-webkit-min-device-pixel-ratio: 1.3), screen and (max-width: 37.5em) and (min-device-pixel-ratio: 1.3), screen and (max-width: 37.5em) and (min-resolution: 1.3dppx) {
  #map-container:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/map@2x.png");
  }
}
@media screen and (max-width: 37.5em) {
  #map-container #map .places:before {
    display: block;
    content: "Choose a place";
    padding: 20px 40px;
    font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
  }
  #map-container #map .places li {
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
  }
  #map-container #map .places li:not(:last-child) {
    border-bottom: solid 1px #d2b37c;
  }
  #map-container #map .places li a {
    position: relative;
    display: block;
    padding: 15px 20px;
    cursor: pointer;
  }
  #map-container #map .places li a:before {
    -webkit-transition: width 0.2s cubic-bezier(0.86, 0.27, 0.47, 0.99);
    -moz-transition: width 0.2s cubic-bezier(0.86, 0.27, 0.47, 0.99);
    transition: width 0.2s cubic-bezier(0.86, 0.27, 0.47, 0.99);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: #d2b37c;
    z-index: -1;
  }
  #map-container #map .places li a.active:before {
    width: 100%;
  }
  #map-container #map .popup {
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    position: fixed;
    opacity: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 100;
  }
  #map-container #map .popup.active {
    opacity: 1;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .credit {
    position: absolute;
    top: auto;
    left: 7%;
    bottom: 7%;
    z-index: 100;
  }
  .csspointerevents #map-container .inner-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../img/map/frame.png") center center no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 11;
  }
}
@media screen and (min-width: 37.5em) and (min--moz-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (-o-min-device-pixel-ratio: 2.6/2), screen and (min-width: 37.5em) and (-webkit-min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-resolution: 1.3dppx) {
  .csspointerevents #map-container .inner-wrapper:after {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/frame@2x.png");
  }
}
@media screen and (min-width: 37.5em) {
  #map-container:before {
    content: "";
    display: block;
    padding-bottom: 64.7457627119%;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container #map {
    -webkit-transition: top 0.1s ease-out;
    -moz-transition: top 0.1s ease-out;
    transition: top 0.1s ease-out;
    width: 1180px;
    height: 764px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  #map-container #map:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../img/map/map.png") center center no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 37.5em) and (min--moz-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (-o-min-device-pixel-ratio: 2.6/2), screen and (min-width: 37.5em) and (-webkit-min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-resolution: 1.3dppx) {
  #map-container #map:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/map@2x.png");
  }
}
@media screen and (min-width: 37.5em) {
  #map-container article.popup {
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    width: 300px;
    color: #ffffff;
    z-index: 9;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
    position: absolute;
  }
  #map-container article.popup.active {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  #map-container article.popup[data-place=lusque] {
    top: 105px;
    left: 235px;
  }
  #map-container article.popup[data-place=svoden] {
    top: 117px;
    left: 391px;
  }
  #map-container article.popup[data-place=balma] {
    top: 241px;
    left: 170px;
  }
  #map-container article.popup[data-place=portolla] {
    top: 150px;
    left: 106px;
  }
  #map-container article.popup[data-place=krit] {
    top: 190px;
    left: 188px;
  }
  #map-container article.popup[data-place=dalmotti-empire] {
    top: 188px;
    left: 390px;
  }
  #map-container article.popup[data-place=illrya] {
    top: 391px;
    left: 385px;
  }
  #map-container article.popup[data-place=empire-of-cartorra] {
    top: 170px;
    left: 710px;
  }
  #map-container article.popup[data-place=arithuania] {
    top: 368px;
    left: 649px;
  }
  #map-container article.popup[data-place=nubrevna] {
    top: 250px;
    left: 612px;
  }
  #map-container article.popup[data-place=empire-of-marstok] {
    top: 300px;
    left: 690px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place] {
    font: 0/0 a;
    text-shadow: none;
    display: block;
    position: absolute;
    cursor: pointer;
  }
  #map-container .places .place [data-place]:hover:before {
    opacity: 0.5;
    z-index: 10;
  }
  #map-container .places .place [data-place].active:before {
    opacity: 1;
    z-index: 10;
  }
  #map-container .places .place [data-place]:before {
    -webkit-transition: opacity 0.2s ease-out, z-index 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out, z-index 0.2s ease-out;
    transition: opacity 0.2s ease-out, z-index 0.2s ease-out;
    content: "";
    display: block;
    padding-bottom: 55.4347826087%;
    background: url("../img/map/hover-small.png") center center no-repeat;
    background-size: contain;
    opacity: 0;
    z-index: -10;
  }
}
@media screen and (min-width: 37.5em) and (min--moz-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (-o-min-device-pixel-ratio: 2.6/2), screen and (min-width: 37.5em) and (-webkit-min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-resolution: 1.3dppx) {
  #map-container .places .place [data-place]:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/hover-small@2x.png");
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=lusque] {
    width: 130px;
    left: 316px;
    top: 38px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=svoden] {
    width: 130px;
    left: 475px;
    top: 50px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=balma] {
    width: 100px;
    left: 265px;
    top: 190px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=portolla] {
    width: 150px;
    left: 180px;
    top: 415px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=krit] {
    width: 100px;
    left: 289px;
    top: 475px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=dalmotti-empire] {
    width: 185px;
    left: 449px;
    top: 447px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=illrya] {
    width: 140px;
    left: 463px;
    top: 608px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=empire-of-cartorra] {
    width: 430px;
    left: 305px;
    top: 317px;
  }
  #map-container .places .place [data-place=empire-of-cartorra]:before {
    padding-bottom: 20.823798627%;
    background-image: url("../img/map/hover-medium.png");
  }
}
@media screen and (min-width: 37.5em) and (min--moz-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (-o-min-device-pixel-ratio: 2.6/2), screen and (min-width: 37.5em) and (-webkit-min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-resolution: 1.3dppx) {
  #map-container .places .place [data-place=empire-of-cartorra]:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/hover-medium@2x.png");
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=arithuania] {
    width: 165px;
    left: 710px;
    top: 284px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=nubrevna] {
    width: 130px;
    left: 694px;
    top: 530px;
  }
}
@media screen and (min-width: 37.5em) {
  #map-container .places .place [data-place=empire-of-marstok] {
    width: 170px;
    left: 970px;
    top: 358px;
  }
  #map-container .places .place [data-place=empire-of-marstok]:before {
    padding-bottom: 117.0212765957%;
    background-image: url("../img/map/hover-large.png");
  }
}
@media screen and (min-width: 37.5em) and (min--moz-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (-o-min-device-pixel-ratio: 2.6/2), screen and (min-width: 37.5em) and (-webkit-min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-device-pixel-ratio: 1.3), screen and (min-width: 37.5em) and (min-resolution: 1.3dppx) {
  #map-container .places .place [data-place=empire-of-marstok]:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/map/hover-large@2x.png");
  }
}

.page-truthwitch #bd, .page-extra #bd {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-truthwitch #bd #social > article, .page-extra #bd #social > article {
  border: solid 2px #9e8d69;
}
.page-truthwitch #bd #social > article:not(:last-child), .page-extra #bd #social > article:not(:last-child) {
  margin-bottom: 15px;
}
.page-truthwitch #bd #social .tumblr .nano, .page-extra #bd #social .tumblr .nano {
  height: 1000px;
  max-height: 600px;
}
.page-truthwitch #bd #social .twitter, .page-extra #bd #social .twitter {
  max-width: 520px;
  margin: 0 auto;
  background-color: #252525;
  color: #ffffff;
  border-radius: 5px;
  padding: 2px;
  overflow: hidden;
}
.page-truthwitch #bd #social .twitter > header, .page-extra #bd #social .twitter > header {
  position: relative;
}
.page-truthwitch #bd #social .twitter > header span.twitter-icon, .page-extra #bd #social .twitter > header span.twitter-icon {
  font: 0/0 a;
  text-shadow: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.page-truthwitch #bd #social .twitter > header span.twitter-icon:before, .page-extra #bd #social .twitter > header span.twitter-icon:before {
  position: relative;
  top: 3px;
  content: "";
  font-family: "FontAwesome";
  font-size: 20px;
  color: #00aeef;
}
.page-truthwitch #bd #social .twitter ul, .page-extra #bd #social .twitter ul {
  font-family: Helvetica, Arial, sans-serif;
}
.page-truthwitch #bd #social .twitter ul li, .page-extra #bd #social .twitter ul li {
  padding: 15px 0;
  font-size: 0;
  border-top: solid 1px #676767;
}
.page-truthwitch #bd #social .twitter ul li aside, .page-truthwitch #bd #social .twitter ul li .content, .page-extra #bd #social .twitter ul li aside, .page-extra #bd #social .twitter ul li .content {
  font-size: 12px;
  line-height: 14px;
}
.page-truthwitch #bd #social .twitter ul li aside, .page-extra #bd #social .twitter ul li aside {
  display: inline-block;
  vertical-align: top;
  width: 15%;
  padding: 0 10px;
}
.page-truthwitch #bd #social .twitter ul li aside span.thumb, .page-extra #bd #social .twitter ul li aside span.thumb {
  display: block;
  padding-bottom: 100%;
  background: url("../img/twitter-thumb-placeholder.png") center center no-repeat;
  background-size: contain;
}
.page-truthwitch #bd #social .twitter ul li .content, .page-extra #bd #social .twitter ul li .content {
  display: inline-block;
  vertical-align: top;
  width: 82%;
  margin-left: 3%;
}
.page-truthwitch #bd #social .twitter ul li .content header, .page-extra #bd #social .twitter ul li .content header {
  position: relative;
  padding-right: 40px;
  font-family: inherit;
}
.page-truthwitch #bd #social .twitter ul li .content header .name, .page-extra #bd #social .twitter ul li .content header .name {
  font-weight: bold;
}
.page-truthwitch #bd #social .twitter ul li .content header .time-ago, .page-extra #bd #social .twitter ul li .content header .time-ago {
  position: absolute;
  right: 0;
  font-size: 12px;
  color: #959595;
}
.page-truthwitch #bd #social .twitter ul li .content p a, .page-extra #bd #social .twitter ul li .content p a {
  color: #62c8f6;
}
.page-truthwitch #bd #social .tumblr, .page-extra #bd #social .tumblr {
  background-color: #18252c;
}
.page-truthwitch #bd #social .tumblr div.nano-slider, .page-extra #bd #social .tumblr div.nano-slider {
  background-color: #9e8d69;
}
@media screen and (min-width: 48em) {
  .page-truthwitch #bd #social::after, .page-extra #bd #social::after {
    clear: both;
    content: "";
    display: table;
  }
  .page-truthwitch #bd #social .twitter, .page-truthwitch #bd #social .tumblr, .page-extra #bd #social .twitter, .page-extra #bd #social .tumblr {
    margin-bottom: 0;
  }
  .page-truthwitch #bd #social .twitter, .page-extra #bd #social .twitter {
    float: left;
    width: 35%;
  }
  .page-truthwitch #bd #social .tumblr, .page-extra #bd #social .tumblr {
    float: right;
    width: 63%;
    margin-left: 2%;
  }
}

.page-books #bd header.series-title {
  margin: 20px 0;
  padding: 0 10px;
  font-size: 28px;
}
.page-books #bd header.series-title h2 {
  margin: 0;
}
.page-books #bd .row {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
.page-books #bd #series .content .inner {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(0) translateY(0);
  -moz-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  -o-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}
.page-books #bd #series .content .inner figure {
  max-width: 200px;
  margin: 0 auto;
}
.page-books #bd #series .content .inner figure figcaption {
  display: block;
  margin: 0 auto 20px;
  font-size: 12px;
  text-align: center;
}
.page-books #bd #series .content .inner figure img {
  display: block;
  width: 100%;
  height: auto;
}
.page-books #bd #series .content .inner .information nav {
  display: block;
}
.page-books #bd #series .content .inner .information nav ul li:not(:last-child) {
  margin-bottom: 10px;
}
.page-books #bd #series .content .inner .information p {
  font-size: 15px;
}
.page-books #bd #series .content .inner .information p a {
  color: #b3dfee;
  text-decoration: underline;
}
.page-books #bd #series .content .inner .information p a:hover {
  text-decoration: none;
}
@media screen and (min-width: 48em) {
  .page-books #bd #series .content .inner {
    padding: 30px 60px;
    font-size: 0;
    text-align: center;
  }
  .page-books #bd #series .content .inner figure, .page-books #bd #series .content .inner .information {
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
  }
  .page-books #bd #series .content .inner figure {
    width: 30%;
    margin-right: 6%;
    max-width: 250px;
  }
  .page-books #bd #series .content .inner .information {
    margin-top: 30px;
    width: 64%;
    text-align: left;
  }
  .page-books #bd #series .content .inner .information header {
    text-align: left;
  }
  .page-books #bd #series .content .inner .information nav {
    text-align: left;
  }
  .page-books #bd #series .content .inner .information nav ul li {
    display: inline-block;
  }
  .page-books #bd #series .content .inner .information nav ul li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 15px;
  }
}
.page-books #bd #series section.reviews {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #A99A74;
  color: #ffffff;
}
.page-books #bd #series section.reviews header {
  text-align: center;
}
.page-books #bd #series section.reviews header h1, .page-books #bd #series section.reviews header h2 {
  margin: 0;
  text-transform: uppercase;
}
.page-books #bd #series section.reviews header h2 {
  font-size: 18px;
  color: #b3dfee;
}
.page-books #bd #series section.reviews .owl-carousel {
  margin: 0 auto;
}
.page-books #bd #series section.reviews .owl-carousel .owl-nav div {
  background: none;
  position: absolute;
}
.page-books #bd #series section.reviews .owl-carousel .owl-nav div.owl-prev {
  left: -10%;
  top: 160px;
}
.page-books #bd #series section.reviews .owl-carousel .owl-nav div.owl-prev:before {
  font-size: 40px;
  font-family: "FontAwesome";
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.page-books #bd #series section.reviews .owl-carousel .owl-nav div.owl-next {
  right: -10%;
  top: 160px;
}
.page-books #bd #series section.reviews .owl-carousel .owl-nav div.owl-next:before {
  font-size: 40px;
  font-family: "FontAwesome";
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.page-books #bd #series section.reviews ul {
  width: 80%;
  font-size: 0;
}
.page-books #bd #series section.reviews ul li {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  margin: 0 auto;
  padding: 10px 0;
  width: 100;
  font-family: "Crimson Text", Helvetica, Arial, sans-serif;
}
.page-books #bd #series section.reviews ul li.starred footer:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  font-family: "FontAwesome";
  font-size: 30px;
}
.page-books #bd #series section.reviews ul li:not(:last-child) {
  margin-bottom: 20px;
}
.page-books #bd #series section.reviews ul li blockquote {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-books #bd #series section.reviews ul li blockquote p {
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
}
.page-books #bd #series section.reviews ul li blockquote p i, .page-books #bd #series section.reviews ul li blockquote p em {
  font-style: italic;
}
.page-books #bd #series section.reviews ul li blockquote p:before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 12px;
  position: relative;
  margin-left: -15px;
  left: -5px;
  top: -5px;
  background: url("../img/quotes-left.png") center center no-repeat;
  background-size: cover;
}
.page-books #bd #series section.reviews ul li blockquote p:after {
  display: inline-block;
  content: "";
  width: 15px;
  height: 12px;
  position: relative;
  margin-right: -15px;
  right: -5px;
  bottom: -5px;
  background: url("../img/quotes-right.png") center center no-repeat;
  background-size: cover;
}
.page-books #bd #series section.reviews ul li blockquote footer {
  color: #cead73;
  font-size: 14px;
}
.page-books #bd #series section.reviews ul li blockquote footer:before {
  content: "—";
}
@media screen and (min-width: 48em) {
  .page-books #bd #series section.reviews ul li {
    width: 100%;
  }
}

.page-author #bd section#author {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #A99A74;
  color: #ffffff;
}
.page-author #bd section#author h1 {
  margin-top: 0;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.page-author #bd section#author p {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 20px;
}
.page-author #bd section#author aside {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.page-author #bd section#author aside:before {
  display: block;
  content: "";
  padding-bottom: 133.3333333333%;
  background: url("../img/author/susan.jpg") center center no-repeat;
  background-size: contain;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .page-author #bd section#author aside:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/author/susan@2x.jpg");
  }
}
.page-author #bd section#author aside nav {
  margin: 20px auto;
  text-align: center;
}
.page-author #bd section#author aside nav > * {
  display: inline-block;
  vertical-align: middle;
}
.page-author #bd section#author aside nav > *:not(:last-child) {
  margin-right: 10px;
}
.page-author #bd section#author aside nav span {
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
}
.page-author #bd section#author aside nav ul {
  display: inline-block;
  font-size: 0;
  text-align: left;
}
.page-author #bd section#author aside nav ul::after {
  clear: both;
  content: "";
  display: table;
}
.page-author #bd section#author aside nav ul li {
  display: inline-block;
  width: 25%;
  font-size: 18px;
  text-align: center;
}
.page-author #bd section#author aside nav ul li:nth-child(1), .page-author #bd section#author aside nav ul li:nth-child(2), .page-author #bd section#author aside nav ul li:nth-child(3), .page-author #bd section#author aside nav ul li:nth-child(4) {
  margin-bottom: 10px;
}
.page-author #bd section#author aside nav ul li a {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -moz-transition: -moz-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.page-author #bd section#author aside nav ul li a:before {
  display: inline-block;
  font-family: "FontAwesome";
  color: #3b4849;
  font-size: 18px;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  background-color: #cead73;
}
.page-author #bd section#author aside nav ul li a.twitter:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a.instagram:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a.pinterest:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a.tumblr:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a.facebook:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a.youtube:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a.rss:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a.website:before {
  content: "";
}
.page-author #bd section#author aside nav ul li a:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
@media screen and (min-width: 48em) {
  .page-author #bd section#author {
    font-size: 0;
  }
  .page-author #bd section#author::after {
    clear: both;
    content: "";
    display: table;
  }
  .page-author #bd section#author aside, .page-author #bd section#author article {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
  }
  .page-author #bd section#author aside {
    width: 50%;
    max-width: none;
    padding: 0 50px;
  }
  .page-author #bd section#author aside nav {
    margin-bottom: 0;
  }
  .page-author #bd section#author article {
    width: 50%;
  }
  .page-author #bd section#author article header h1 {
    margin-top: 0;
  }
}
@media screen and (min-width: 60em) {
  .page-author #bd section#author aside, .page-author #bd section#author article {
    vertical-align: top;
  }
  .page-author #bd section#author aside {
    padding: 0 70px;
  }
}

.page-events #bd section {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #A99A74;
  color: #ffffff;
}
.page-events #bd section h1 {
  margin-top: 0;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.page-events #bd section p {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  text-align: center;
}
.page-events #bd section nav {
  text-align: center;
  margin-top: 20px;
}
.page-events #bd section nav .button {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b3dfee;
  border-radius: 2px;
  color: #11100e;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.page-events #bd section nav .button:hover {
  background-color: #89cde5;
}
.page-events #bd section#tours, .page-events #bd section#new-events {
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}
.page-events #bd section#tours h2, .page-events #bd section#new-events h2 {
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 15px;
  padding: 10px;
  margin: 0 0 15px 0;
}
.page-events #bd section#tours li, .page-events #bd section#new-events li {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  padding: 10px 15px 10px 55px;
  font-family: "Crimson Text", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.page-events #bd section#tours li::after, .page-events #bd section#new-events li::after {
  clear: both;
  content: "";
  display: table;
}
.page-events #bd section#tours li:hover, .page-events #bd section#tours li.active, .page-events #bd section#new-events li:hover, .page-events #bd section#new-events li.active {
  background-color: #4e9bb1;
}
.page-events #bd section#tours li:nth-child(2n-1), .page-events #bd section#new-events li:nth-child(2n-1) {
  background-color: rgba(21, 34, 40, 0.6);
}
.page-events #bd section#tours li:nth-child(2n-1):hover, .page-events #bd section#tours li:nth-child(2n-1).active, .page-events #bd section#new-events li:nth-child(2n-1):hover, .page-events #bd section#new-events li:nth-child(2n-1).active {
  background-color: #4e9bb1;
}
.page-events #bd section#tours a, .page-events #bd section#new-events a {
  cursor: pointer;
}
.page-events #bd section#tours .link a, .page-events #bd section#new-events .link a {
  font: 0/0 a;
  background: url("../img/icon-link.png");
  height: 30px;
  width: 30px;
  float: left;
  margin: 0 10px 5px -40px;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .page-events #bd section#tours .link a, .page-events #bd section#new-events .link a {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../img/icon-link.png");
    background-size: 30px 30px;
  }
}
.page-events #bd section#tours .location a, .page-events #bd section#tours .city a, .page-events #bd section#tours .description a, .page-events #bd section#new-events .location a, .page-events #bd section#new-events .city a, .page-events #bd section#new-events .description a {
  color: white;
  text-decoration: none;
}
.page-events #bd section#tours .location:before, .page-events #bd section#tours .city:before, .page-events #bd section#tours .description:before, .page-events #bd section#new-events .location:before, .page-events #bd section#new-events .city:before, .page-events #bd section#new-events .description:before {
  content: "";
  display: block;
  height: 5px;
}
.page-events #bd section#tours .description p, .page-events #bd section#new-events .description p {
  margin-top: 0;
  text-align: left;
}
.page-events #bd section#tours .description p a, .page-events #bd section#new-events .description p a {
  color: #b3dfee;
  text-decoration: underline;
}
.page-events #bd section#tours .description p a:hover, .page-events #bd section#new-events .description p a:hover {
  color: white;
  text-decoration: none;
}
@media screen and (min-width: 30em) {
  .page-events #bd section#tours h2, .page-events #bd section#new-events h2 {
    font-size: 18px;
  }
  .page-events #bd section#tours ul, .page-events #bd section#new-events ul {
    display: table;
    width: 100%;
  }
  .page-events #bd section#tours li, .page-events #bd section#new-events li {
    display: table-row;
    margin: 0;
    padding: 0;
  }
  .page-events #bd section#tours span, .page-events #bd section#new-events span {
    display: table-cell;
    vertical-align: top;
    padding: 10px;
    text-align: center;
  }
  .page-events #bd section#tours span:before, .page-events #bd section#tours span:after, .page-events #bd section#new-events span:before, .page-events #bd section#new-events span:after {
    display: none;
  }
  .page-events #bd section#tours span:first-child, .page-events #bd section#new-events span:first-child {
    padding-left: 25px;
  }
  .page-events #bd section#tours span:last-child, .page-events #bd section#new-events span:last-child {
    padding-right: 25px;
  }
  .page-events #bd section#tours .link a, .page-events #bd section#new-events .link a {
    margin: 0;
  }
  .page-events #bd section#tours .link, .page-events #bd section#new-events .link {
    float: none;
    margin: 0;
  }
}
@media screen and (min-width: 60em) {
  .page-events #bd section#tours h2, .page-events #bd section#new-events h2 {
    font-size: 20px;
  }
}
.page-events #bd section#events ul li .image {
  padding-bottom: 60%;
  background-position: center center;
  background-size: cover;
}
.page-events #bd section#events ul li header {
  margin: 10px 0;
}
.page-events #bd section#events ul li header h1, .page-events #bd section#events ul li header h4 {
  text-align: left;
}
.page-events #bd section#events ul li header h1 {
  margin: 0;
  line-height: 1em;
}
.page-events #bd section#events ul li header h4 {
  margin: 0;
  color: #cead73;
  font-size: 20px;
}
@media screen and (min-width: 48em) {
  .page-events #bd section#events ul {
    font-size: 0;
  }
  .page-events #bd section#events ul li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 20px;
    font-size: 14px;
  }
}

.page-quiz #bd section.quiz {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 40px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #A99A74;
  color: #ffffff;
  text-align: center;
}
.page-quiz #bd section.quiz h1 {
  margin-top: 0;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.page-quiz #bd section.quiz p {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 20px;
}
.page-quiz #bd section.quiz nav {
  margin-top: 20px;
}
.page-quiz #bd section.quiz nav .button {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b3dfee;
  border-radius: 2px;
  color: #11100e;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.page-quiz #bd section.quiz nav .button:hover {
  background-color: #89cde5;
}

.page-contact #bd section#contact {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #A99A74;
  color: #ffffff;
}
.page-contact #bd section#contact h1 {
  margin-top: 0;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.page-contact #bd section#contact p {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
}
.page-contact #bd section#contact nav {
  text-align: center;
}
.page-contact #bd section#contact nav.actions {
  margin-top: 20px;
}
.page-contact #bd section#contact nav.actions .button {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b3dfee;
  border-radius: 2px;
  color: #11100e;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.page-contact #bd section#contact nav.actions .button:hover {
  background-color: #89cde5;
}
.page-contact #bd section#contact nav.social {
  margin-bottom: 20px;
}
.page-contact #bd section#contact nav.social ul li {
  display: inline-block;
  vertical-align: middle;
}
.page-contact #bd section#contact nav.social ul li:not(:last-child) {
  margin-right: 10px;
}
.page-contact #bd section#contact nav.social ul li a {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -moz-transition: -moz-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  display: block;
}
.page-contact #bd section#contact nav.social ul li a:before {
  display: block;
  font-family: "FontAwesome";
  color: #3b4849;
  font-size: 18px;
  height: 28px;
  width: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  background-color: #cead73;
}
.page-contact #bd section#contact nav.social ul li a.facebook:before {
  content: "";
}
.page-contact #bd section#contact nav.social ul li a.twitter:before {
  content: "";
}
.page-contact #bd section#contact nav.social ul li a.tumblr:before {
  content: "";
}
.page-contact #bd section#contact nav.social ul li a.instagram:before {
  content: "";
}
.page-contact #bd section#contact nav.social ul li a.pinterest:before {
  content: "";
}
.page-contact #bd section#contact nav.social ul li a:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
@media screen and (min-width: 48em) {
  .page-contact #bd section#contact nav.social ul li a:before {
    height: 35px;
    width: 35px;
    line-height: 35px;
  }
}

.page-contest #bd section#contest {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #A99A74;
  color: #ffffff;
}
@media screen and (min-width: 48em) {
  .page-contest #bd section#contest {
    padding: 40px;
  }
}
.page-contest #bd section#contest h1, .page-contest #bd section#contest h3, .page-contest #bd section#contest h5 {
  margin-top: 0;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.page-contest #bd section#contest p {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.page-contest #bd section#contest article.rules {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.page-contest #bd section#contest article.rules p {
  text-align: left;
}
.page-contest #bd section#contest article.rules ul {
  padding-left: 20px;
  list-style: disc;
  font-size: 14px;
}
.page-contest #bd section#contest article.form {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}
.page-contest #bd section#contest article.form nav {
  margin-top: 20px;
  text-align: center;
}
.page-contest #bd section#contest article.form nav .button {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b3dfee;
  border-radius: 2px;
  color: #11100e;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.page-contest #bd section#contest article.form nav .button:hover {
  background-color: #89cde5;
}
.page-contest #bd section#contest article.form figure {
  max-width: 250px;
  margin: 0 auto;
}
.page-contest #bd section#contest article.form figure:before {
  display: block;
  content: "";
  padding-bottom: 165.7276995305%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.page-contest #bd section#contest article.form figure.uk:before {
  background-image: url("../img/contest/cover_uk.png");
}
.page-contest #bd section#contest article.form figure.us:before {
  background-image: url("../img/contest/cover_us.png");
}
.page-contest #bd section#contest article.form form ul li.rules {
  text-align: center;
}
.page-contest #bd section#contest article.form form ul li.rules > span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}
.page-contest #bd section#contest article.form form ul li.rules > span .yellow {
  color: #cead73;
}
.page-contest #bd section#contest article.form form ul li.rules input {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  margin-right: 20px;
}
.page-contest #bd section#contest article.form form ul li .errorlist {
  text-align: right;
  color: #c3b69e;
}
.page-contest #bd section#contest article.form form ul li:not(:last-child) {
  margin-bottom: 20px;
}
.page-contest #bd section#contest article.form form ul li label, .page-contest #bd section#contest article.form form ul li input, .page-contest #bd section#contest article.form form ul li .NFI-wrapper {
  color: #000000;
}
.page-contest #bd section#contest article.form form ul li label {
  display: block;
  color: #ffffff;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  text-align: left;
}
.page-contest #bd section#contest article.form form ul li input, .page-contest #bd section#contest article.form form ul li .NFI-wrapper {
  width: 100%;
}
.page-contest #bd section#contest article.form form ul li input {
  padding: 10px 20px;
}
.page-contest #bd section#contest article.form form ul li .dropdown {
  position: relative;
}
.page-contest #bd section#contest article.form form ul li .NFI-wrapper {
  position: relative;
  padding-right: 25%;
}
.page-contest #bd section#contest article.form form ul li .NFI-wrapper .NFI-button {
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: block;
  position: absolute !important;
  right: 0;
  top: 0;
  bottom: 0;
  width: 24%;
  background-color: #b3dfee;
  font-family: "Antonio Regular", Helvetica, Arial, sans-serif;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}
.page-contest #bd section#contest article.form form ul li .NFI-wrapper .NFI-button:hover {
  background-color: #89cde5;
}
.page-contest #bd section#contest article.form form ul li .NFI-wrapper .NFI-filename {
  width: 100%;
  padding: 10px 20px !important;
}
.page-contest #bd section#contest article.form form ul li .dropcontainer {
  color: #777;
  z-index: 100;
}
.page-contest #bd section#contest article.form form ul li .trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background-color: #fff;
  color: #11100e;
  line-height: 40px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}
.page-contest #bd section#contest article.form form ul li .activetrigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background-color: #fff;
  color: #11100e;
  line-height: 40px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}
.page-contest #bd section#contest article.form form ul li .dropcontainer ul {
  position: absolute;
  left: 0;
  right: 0;
  border: solid 1px #ffffff;
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  z-index: 100;
  font-size: 12px;
  overflow-x: hidden;
}
@media screen and (min-width: 30em) {
  .page-contest #bd section#contest article.form form ul li .dropcontainer ul {
    font-size: 14px;
  }
}
@media screen and (min-width: 30em) {
  .page-contest #bd section#contest article.form form ul li .dropcontainer ul {
    font-size: 16px;
  }
}
.page-contest #bd section#contest article.form form ul li .dropcontainer ul li:hover {
  background: #f5f5f5;
}
.page-contest #bd section#contest article.form form ul li .dropcontainer ul li:first-child {
  display: none;
}
.page-contest #bd section#contest article.form form ul li .dropcontainer ul li:last-child {
  border-bottom: none;
}
.page-contest #bd section#contest article.form form ul li .dropcontainer ul li a {
  display: block;
  padding: 5px 20px;
  color: inherit;
  font-size: 12px;
}
.page-contest #bd section#contest article.form form ul li .dropdownhidden {
  display: none;
}
.page-contest #bd section#contest article.form form ul li .dropdownvisible {
  height: 200px;
  overflow-y: scroll;
}
.page-contest #bd section#contest article.form form ul li.agree span {
  font-size: 12px;
}
@media screen and (min-width: 48em) {
  .page-contest #bd section#contest article.form {
    font-size: 0;
  }
  .page-contest #bd section#contest article.form figure, .page-contest #bd section#contest article.form form {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
  }
  .page-contest #bd section#contest article.form figure {
    width: 25%;
    max-width: none;
  }
  .page-contest #bd section#contest article.form form {
    width: 75%;
    padding: 20px;
  }
  .page-contest #bd section#contest article.form form ul li {
    position: relative;
    font-size: 0;
  }
  .page-contest #bd section#contest article.form form ul li.state label {
    font-size: 15px;
  }
  .page-contest #bd section#contest article.form form ul li .errorlist li {
    font-size: 14px;
  }
  .page-contest #bd section#contest article.form form ul li label, .page-contest #bd section#contest article.form form ul li input, .page-contest #bd section#contest article.form form ul li .NFI-wrapper, .page-contest #bd section#contest article.form form ul li .dropdown {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
  }
  .page-contest #bd section#contest article.form form ul li input, .page-contest #bd section#contest article.form form ul li .NFI-wrapper, .page-contest #bd section#contest article.form form ul li .dropdown {
    width: 75%;
  }
  .page-contest #bd section#contest article.form form ul li label {
    width: 25%;
    font-size: 24px;
  }
}
@media screen and (min-width: 60em) {
  .page-contest #bd section#contest article.form form ul li .errorlist {
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 150px;
    margin-left: 20px;
    text-align: left;
  }
}

/*# sourceMappingURL=style.css.map */
