/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALSds
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 12, ../scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

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

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

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 67, ../scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, ../scss/partials/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 119, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, ../scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 197, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 205, ../scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 212, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 218, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

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

/* line 234, ../scss/partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 238, ../scss/partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 257, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 269, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 293, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 301, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 313, ../scss/partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 347, ../scss/partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 373, ../scss/partials/_normalize.scss */
button,
select {
  text-transform: none;
}

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

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 408, ../scss/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 452, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 465, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 472, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 479, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 487, ../scss/partials/_normalize.scss */
.clearfix, .cf {
  zoom: 1;
}
/* line 489, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
/* line 490, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 497, ../scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/********************* 
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/   
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
@font-face {
  font-family: 'AkkuratBold';
  src: url("fonts/lineto-akkurat-bold.eot");
  src: url("fonts/lineto-akkurat-bold.eot?#iefix") format("embedded-opentype"), url("fonts/lineto-akkurat-bold.woff") format("woff"), url("fonts/lineto-akkurat-bold.ttf") format("truetype"), url("fonts/lineto-akkurat-bold.svg#AkkuratBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AkkuratRegular';
  src: url("fonts/lineto-akkurat-regular-c.eot");
  src: url("fonts/lineto-akkurat-regular-c?#iefix") format("embedded-opentype"), url("fonts/lineto-akkurat-regular-c.woff") format("woff"), url("fonts/lineto-akkurat-regular-c.ttf") format("truetype"), url("fonts/lineto-akkurat-regular-c.svg#AkkuratBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ReplicaRegular';
  src: url("fonts/lineto-replica-regular.eot");
  src: url("fonts/lineto-replica-regular.eot?#iefix") format("embedded-opentype"), url("fonts/lineto-replica-regular.woff") format("woff"), url("fonts/lineto-replica-regular.ttf") format("truetype"), url("fonts/lineto-replica-regular.svg#ReplicaRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ReplicaItalic';
  src: url("fonts/lineto-replica-italic.eot");
  src: url("fonts/lineto-replica-italic.eot?#iefix") format("embedded-opentype"), url("fonts/lineto-replica-italic.woff") format("woff"), url("fonts/lineto-replica-italic.ttf") format("truetype"), url("fonts/lineto-replica-italic.svg#ReplicaItalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ReplicaLight';
  src: url("fonts/lineto-replica-light.eot");
  src: url("fonts/lineto-replica-light.eot?#iefix") format("embedded-opentype"), url("fonts/lineto-replica-light.woff") format("woff"), url("fonts/lineto-replica-light.ttf") format("truetype"), url("fonts/lineto-replica-light.svg#ReplicaLight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ReplicaLightItalic';
  src: url("fonts/lineto-replica-lightitalic.eot");
  src: url("fonts/lineto-replica-lightitalic.eot?#iefix") format("embedded-opentype"), url("fonts/lineto-replica-lightitalic.woff") format("woff"), url("fonts/lineto-replica-lightitalic.ttf") format("truetype"), url("fonts/lineto-replica-lightitalic.svg#ReplicaLightItalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ReplicaBold';
  src: url("fonts/lineto-replica-bold.eot");
  src: url("fonts/lineto-replica-bold.eot?#iefix") format("embedded-opentype"), url("fonts/lineto-replica-bold.woff") format("woff"), url("fonts/lineto-replica-bold.ttf") format("truetype"), url("fonts/lineto-replica-bold.svg#ReplicaBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ReplicaBoldItalic';
  src: url("fonts/lineto-replica-bolditalic.eot");
  src: url("fonts/lineto-replica-bolditalic.eot?#iefix") format("embedded-opentype"), url("fonts/lineto-replica-bolditalic.woff") format("woff"), url("fonts/lineto-replica-bolditalic.ttf") format("truetype"), url("fonts/lineto-replica-bolditalic.svg#ReplicaBoldItalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*ds
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*sad
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 130, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/* line 149, ../scss/partials/_typography.scss */
body.single-series .wrap p {
  margin: 0;
}

/* line 152, ../scss/partials/_typography.scss */
p.serif {
  margin-top: 10px;
  font-family: "Baskerville", Cambria, Times New Roman, Times, serif;
  font-size: 1.25em;
  letter-spacing: 0.02em;
  line-height: 1.1 !important;
  font-style: italic;
}

/* line 160, ../scss/partials/_typography.scss */
.seriestext p {
  font-size: 1.3em !important;
  letter-spacing: 0.02em;
  line-height: 1.25 !important;
  font-style: normal;
  font-family: "Baskerville", Cambria, Times New Roman, Times, serif;
  margin: 10px 0 0 0;
  text-align: left;
}

/* line 170, ../scss/partials/_typography.scss */
.mag_col_holder .d-1of3 {
  font-size: 1.1em;
  letter-spacing: 0.02em;
}

/* line 174, ../scss/partials/_typography.scss */
.mag_col_holder .d-1of3 p {
  margin: 0 0 5px;
}

/* line 177, ../scss/partials/_typography.scss */
.mag_col_holder .d-1of3 a {
  color: #000000;
  border-bottom: solid thin #000000;
}

/* line 181, ../scss/partials/_typography.scss */
h3.letter {
  background-color: #000000;
  color: #fff;
  text-align: center;
  margin-top: 0;
  padding-top: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* line 191, ../scss/partials/_typography.scss */
body.post-type-archive-contributor h3 {
  margin-top: 0;
  margin-bottom: 0.75em;
}

/* line 195, ../scss/partials/_typography.scss */
p.dl {
  font-size: 1.1em;
  margin-bottom: 5px;
}

/* line 199, ../scss/partials/_typography.scss */
body.single-contributor p.cont_bio {
  max-width: 650px;
  font-family: 'ReplicaRegular';
  margin: 0 auto 20px auto;
  text-align: left !important;
  font-size: 1.25em;
  line-height: 1.3;
}

/* line 207, ../scss/partials/_typography.scss */
body.single-contributor p.cont_bio em {
  font-family: 'ReplicaItalic';
}

/* line 210, ../scss/partials/_typography.scss */
.mag_col_holder .concept_tag {
  font-family: 'AkkuratRegular';
  text-transform: capitalize;
  line-height: 1.6;
}

/* line 215, ../scss/partials/_typography.scss */
.mag_col_holder .concept_tag a {
  padding-right: 0.0em;
  display: inline-block;
  text-align: left;
  border-bottom: none !important;
}

/* line 221, ../scss/partials/_typography.scss */
body.single-document ::selection {
  background: #37b097;
  /* WebKit/Blink Browsers */
  color: #fff;
}

/* line 225, ../scss/partials/_typography.scss */
body.single-document ::-moz-selection {
  background: #37b097;
  /* Gecko Browsers */
  color: #fff;
}

/* line 229, ../scss/partials/_typography.scss */
body.single-event ::selection {
  background: #fcc2c1;
  /* WebKit/Blink Browsers */
  color: #fff;
}

/* line 233, ../scss/partials/_typography.scss */
body.single-event ::-moz-selection {
  background: #fcc2c1;
  /* Gecko Browsers */
  color: #fff;
}

/* line 237, ../scss/partials/_typography.scss */
body.single-book ::selection {
  background: #d20071;
  /* WebKit/Blink Browsers */
  color: #fff;
}

/* line 241, ../scss/partials/_typography.scss */
body.single-book ::-moz-selection {
  background: #d20071;
  /* Gecko Browsers */
  color: #fff;
}

/* line 246, ../scss/partials/_typography.scss */
body.single-book .border-block .mag_col_holder ul li {
  font-size: 0.9em;
  letter-spacing: 0.04em;
}

/* line 251, ../scss/partials/_typography.scss */
.mag_col_left {
  font-size: 1.1em;
}

/* line 254, ../scss/partials/_typography.scss */
.mag_col_left ul {
  margin: 0 0 10px;
}

/* line 257, ../scss/partials/_typography.scss */
.fett {
  font-family: 'AkkuratBold' !important;
}

/* line 260, ../scss/partials/_typography.scss */
.book_content_author {
  padding-left: 1em;
}

/* line 263, ../scss/partials/_typography.scss */
.book_content_author.sub {
  padding-left: 1.3em;
  margin-top: -7px;
  margin-bottom: 7px;
}

/* line 268, ../scss/partials/_typography.scss */
.chevron:after {
  content: '\f105' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-left: 0.5em;
  font-size: 1em;
  vertical-align: middle;
}

/* line 277, ../scss/partials/_typography.scss */
body.single-event li.menu-item-1448 a, body.post-type-archive-book li.menu-item-1450 a {
  border-bottom: solid 3px #fff;
}

/* line 280, ../scss/partials/_typography.scss */
h6.inline {
  display: inline-block;
  clear: none !important;
}

/* line 285, ../scss/partials/_typography.scss */
.doccode h6 {
  font-size: 0.7em;
}

/* line 290, ../scss/partials/_typography.scss */
h6.pad {
  padding-left: 0.5em;
  text-transform: uppercase;
}

/* line 294, ../scss/partials/_typography.scss */
h6.pad:after {
  content: '/' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  padding-left: 0.5em;
  vertical-align: middle;
}

/* line 301, ../scss/partials/_typography.scss */
article .excerpt ul {
  margin: 5px 0 0 0;
}

/* line 304, ../scss/partials/_typography.scss */
article .excerpt ul li {
  display: inline-block;
  font-family: 'AkkuratRegular';
  color: #fff;
  font-size: 0.9em;
}

/* line 310, ../scss/partials/_typography.scss */
article .excerpt ul li:after {
  content: ", ";
}

/* line 313, ../scss/partials/_typography.scss */
article .excerpt ul li:last-child:after {
  content: " ";
}

/* line 317, ../scss/partials/_typography.scss */
h6.pad:last-child:after {
  content: '' !important;
}

/* line 320, ../scss/partials/_typography.scss */
h6.marg, h3.marg {
  margin-top: 10px;
}

/* line 324, ../scss/partials/_typography.scss */
body.single-book .magtitle_holder h3.inl.nocomma:after {
  content: " " !important;
}

/* line 327, ../scss/partials/_typography.scss */
.magtitle_holder h3.inl {
  font-family: 'AkkuratRegular' !important;
}

/* line 330, ../scss/partials/_typography.scss */
.magtitle_holder h3 .fett {
  font-family: 'AkkuratBold' !important;
}

/* line 333, ../scss/partials/_typography.scss */
em, i {
  font-family: 'ReplicaItalic';
  font-style: normal;
}

/* line 337, ../scss/partials/_typography.scss */
strong {
  font-family: 'ReplicaBold';
  font-weight: normal !important;
}

/* line 338, ../scss/partials/_typography.scss */
.d-1of5 h3 {
  font-family: 'AkkuratRegular';
  text-align: center;
  margin: 0;
}

/* line 343, ../scss/partials/_typography.scss */
body.post-type-archive-book h4 {
  text-align: center;
  font-family: 'AkkuratBold';
}

/* line 347, ../scss/partials/_typography.scss */
.morelink {
  font-family: 'AkkuratBold';
}

/* line 350, ../scss/partials/_typography.scss */
h6.lt {
  text-align: left !important;
  margin-top: 10px;
  margin-bottom: 2px;
}

/* line 355, ../scss/partials/_typography.scss */
.morelink:before {
  content: "...";
  font-family: 'AkkuratRegular';
}

/* line 359, ../scss/partials/_typography.scss */
.morelink:after {
  content: '\f105' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-left: 0.5em;
  font-size: 1em;
  vertical-align: middle;
}

/* line 368, ../scss/partials/_typography.scss */
.mag_content p, body.single-podcast .entry-content p {
  margin: 0 0 25px;
  font-size: 1.1em;
  line-height: 1.35;
}

/* line 373, ../scss/partials/_typography.scss */
.mag_col_left h6 {
  text-transform: uppercase;
}

/* line 376, ../scss/partials/_typography.scss */
.d-1of3 .social-post2 li a {
  color: #fff !important;
  border-bottom: none !important;
}

/* line 380, ../scss/partials/_typography.scss */
.d-2of3 .pub_description h4, body.single-chapter .pub_description h4 {
  font-size: 1.1em;
  text-transform: none;
  font-family: 'AkkuratBold';
  text-align: left;
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 388, ../scss/partials/_typography.scss */
.pub_description p {
  font-size: 1.15em;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 25px;
}

/* line 394, ../scss/partials/_typography.scss */
.magtitle_holder h1 {
  text-transform: normal;
  font-size: 2.5em;
  margin-bottom: 0;
  line-height: 1.15;
  max-width: 700px;
  margin-top: 0;
  color: #fff;
}

/* line 403, ../scss/partials/_typography.scss */
.magtitle_holder h2 {
  text-transform: normal;
  font-size: 1.7em;
  line-height: 1.15;
  max-width: 700px;
  margin-top: 0;
  color: #fff;
  text-align: left;
  font-family: 'AkkuratBold';
}

/* line 413, ../scss/partials/_typography.scss */
body.single-event .magtitle_holder h1 {
  margin-bottom: 0;
}

/* line 416, ../scss/partials/_typography.scss */
.publabel h5 {
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 5px 0 0;
  font-size: 1em;
}

/* line 422, ../scss/partials/_typography.scss */
.publabel h5 a {
  color: #fff;
}

/* line 425, ../scss/partials/_typography.scss */
body.single-contributor h1 {
  margin-bottom: -5px;
}

/* line 428, ../scss/partials/_typography.scss */
.magtitle_holder h3.mag {
  text-transform: none;
  font-size: 1.3em;
  line-height: 1.15;
  max-width: 750px;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #fff;
}

/* line 437, ../scss/partials/_typography.scss */
.mag_content i, .mag_content em {
  font-family: 'ReplicaItalic';
  font-style: normal;
}

/* line 441, ../scss/partials/_typography.scss */
.mag_content.entry-content strong {
  font-family: 'ReplicaRegular';
  font-weight: normal;
  line-height: 1.2;
  font-variant: small-caps;
  font-size: 1.3em;
  text-transform: lowercase;
}

/* line 449, ../scss/partials/_typography.scss */
.fixtype {
  display: none;
  font-family: 'AkkuratBold';
  position: fixed;
  letter-spacing: 0.03em;
  top: 12px;
  width: 70%;
  margin: 0 15%;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

/* line 462, ../scss/partials/_typography.scss */
.fixtype, .mag_scroll_title {
  color: #000000;
}

/* line 465, ../scss/partials/_typography.scss */
.mag_scroll_title {
  display: none;
  font-family: 'AkkuratBold';
  position: fixed;
  top: 28px;
  width: 70%;
  margin: 0 15%;
  text-align: center;
  font-size: 1.2em;
}

/* line 475, ../scss/partials/_typography.scss */
.e_left h6 {
  font-family: 'AkkuratBold';
  padding-top: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* line 481, ../scss/partials/_typography.scss */
body.single-document .mag_content.entry-content p:first-child,
body.single-podcast .entry-content p:first-child {
  font-family: 'AkkuratBold';
  font-size: 1.5em;
}

/* line 486, ../scss/partials/_typography.scss */
body.single-document .mag_content.entry-content p:first-child em,
body.single-podcast .entry-content p:first-child em,
body.single-podcast .entry-content p:first-child i {
  font-family: 'AkkuratBold';
  font-style: italic;
}

/* line 493, ../scss/partials/_typography.scss */
body.single-document .mag_content.entry-content .lb-album a, body.single-document .mag_content.entry-content .easy-footnote a, body.single-document .mag_content.entry-content a.easy-footnote-to-top {
  border-bottom: none !important;
}

/* line 496, ../scss/partials/_typography.scss */
body.single-document .mag_content.entry-content .easy-footnote a, body.single-document .mag_content.entry-content a.easy-footnote-to-top {
  color: #000000;
  font-family: 'AkkuratBold';
}

/* line 500, ../scss/partials/_typography.scss */
.easy-footnotes-wrapper li a {
  border-bottom: solid thin #000000;
}

/* line 503, ../scss/partials/_typography.scss */
h3.inl, h4.inl {
  display: inline-block;
  clear: none;
  margin: 0px 0 0px;
  font-size: 1.325em;
  color: #fff;
}

/* line 510, ../scss/partials/_typography.scss */
h3.inl a, h4.inl a {
  color: #fff;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/* line 32, ../scss/partials/_grid.scss */
body.home .d-1of4 {
  padding-right: 1.5em;
}

/* line 35, ../scss/partials/_grid.scss */
.d-1of5 {
  border-top: solid 3px #fcd4d1;
  border-left: solid 3px #fcd4d1;
  padding: 13px 3px !important;
}

/* line 40, ../scss/partials/_grid.scss */
.d-1of5:last-child {
  border-right: solid 3px #fcd4d1;
  padding: 13px 3px !important;
}

/* line 46, ../scss/partials/_grid.scss */
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  /* line 60, ../scss/partials/_grid.scss */
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 66, ../scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 71, ../scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 76, ../scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 81, ../scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 86, ../scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 97, ../scss/partials/_grid.scss */
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 103, ../scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 108, ../scss/partials/_grid.scss */
  .t-1of3 {
    padding-right: 1.5em;
    width: 33.33%;
    float: left;
    padding-left: 1.5em;
  }

  /* line 115, ../scss/partials/_grid.scss */
  .t-2of3 {
    padding-right: 1.5em;
    width: 66.66%;
    float: left;
  }

  /* line 121, ../scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 126, ../scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 131, ../scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 136, ../scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 141, ../scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 146, ../scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 156, ../scss/partials/_grid.scss */
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 162, ../scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 166, ../scss/partials/_grid.scss */
  body.single-book .d-1of3,
  body.single-chapter .d-1of3,
  body.single-podcast .d-1of3,
  body.single-edition .d-1of3 {
    width: 25% !important;
    padding-right: 1.6em;
  }

  /* line 173, ../scss/partials/_grid.scss */
  body.single-book .d-1of3 {
    position: relative;
  }

  /* line 176, ../scss/partials/_grid.scss */
  body.single-book .d-2of3,
  body.single-edition .d-2of3,
  body.single-podcast .d-2of3,
  body.single-chapter .d-2of3 {
    width: 75% !important;
    padding-right: 0;
  }

  /* line 184, ../scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 189, ../scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 194, ../scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 199, ../scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 204, ../scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 209, ../scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 214, ../scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 219, ../scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  /* line 224, ../scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }

  /* line 229, ../scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }

  /* line 234, ../scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }

  /* line 239, ../scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }

  /* line 244, ../scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }

  /* line 249, ../scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }

  /* line 254, ../scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }

  /* line 259, ../scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }

  /* line 264, ../scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  /* line 269, ../scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  /* line 274, ../scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }

  /* line 279, ../scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/* line 15, ../scss/modules/_alerts.scss */
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

/* line 21, ../scss/modules/_alerts.scss */
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

/* line 27, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

/* line 33, ../scss/modules/_alerts.scss */
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

/* line 39, ../scss/modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
/* line 27, ../scss/modules/_buttons.scss */
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "ReplicaRegular", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 44, ../scss/modules/_buttons.scss */
.blue-btn:hover, .blue-btn:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
/* line 51, ../scss/modules/_buttons.scss */
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
/* line 62, ../scss/modules/_buttons.scss */
.blue-btn {
  background-color: #2980b9;
}
/* line 66, ../scss/modules/_buttons.scss */
.blue-btn:hover, .blue-btn:focus {
  background-color: #2574a8;
}
/* line 71, ../scss/modules/_buttons.scss */
.blue-btn:active {
  background-color: #2472a4;
}

/* line 76, ../scss/modules/_buttons.scss */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  background-color: #000000;
  color: #fff;
  padding: 9px 15px;
  text-transform: uppercase;
  font-family: 'AkkuratRegular';
  font-size: 0.8em;
  border: none;
}

/* line 85, ../scss/modules/_buttons.scss */
input[type="hidden"] {
  display: none;
}

/* line 88, ../scss/modules/_buttons.scss */
.d-3of3 .ec_product_details_quantity {
  display: none;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
/* line 24, ../scss/modules/_forms.scss */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #000000;
  border-radius: 0px;
  vertical-align: middle;
  box-shadow: none;
  border: solid 3px #000000;
  width: 100%;
  max-width: 670px;
  font-family: 'AkkuratRegular';
  background-color: transparent;
  -webkit-transition: border-color 0.24s ease-in-out;
  transition: border-color 0.24s ease-in-out;
}
/* line 59, ../scss/modules/_forms.scss */
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  border-color: #fcc2c1;
  color: #000000;
  outline: none;
}
/* line 67, ../scss/modules/_forms.scss */
input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
/* line 79, ../scss/modules/_forms.scss */
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
/* line 91, ../scss/modules/_forms.scss */
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
/* line 97, ../scss/modules/_forms.scss */
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

/* line 107, ../scss/modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em;
}

/* line 112, ../scss/modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

/* line 119, ../scss/modules/_forms.scss */
select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/* line 128, ../scss/modules/_forms.scss */
input[type="email"] {
  display: inline-block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 0;
  font-size: 1em;
  color: #33302e;
  border-radius: 0px;
  vertical-align: middle;
  box-shadow: none;
  border: solid 3px #33302e;
  width: 95%;
  font-family: 'AkkuratRegular';
  background-color: transparent;
  -webkit-transition: border-color 0.24s ease-in-out;
  transition: border-color 0.24s ease-in-out;
}

/* line 147, ../scss/modules/_forms.scss */
input[type="email"]:focus,
input[type="email"]:active {
  border-color: #f07985;
  color: #000000;
  outline: none;
}

/* line 153, ../scss/modules/_forms.scss */
body.home h4.widgettitle {
  display: block;
  vertical-align: top;
  margin-right: 0px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* line 159, ../scss/modules/_forms.scss */
body.home .directmail_sf {
  display: inline-block;
  width: 60%;
}

/* line 160, ../scss/modules/_forms.scss */
.wpcf7 p {
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* line 165, ../scss/modules/_forms.scss */
input[type="submit"] {
  display: inline-block;
  border: solid 3px #33302e;
  margin-left: 15px;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
body {
  font-family: "ReplicaRegular", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-width: 320px;
  height: 100%;
}

/* line 30, ../scss/breakpoints/_base.scss */
html {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}

@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/* line 39, ../scss/breakpoints/_base.scss */
.directmail_sf {
  font-size: 0.8em;
  line-height: 300%;
  text-align: center;
  padding: 0px;
}

/* line 48, ../scss/breakpoints/_base.scss */
.entry-content [data-featherlight] {
  cursor: url(../images/cursor_expandimage.png), auto;
  cursor: -webkit-image-set(url("../images/cursor_expandimage.png") 1x, url("../images/cursor_expandimage2.png") 2x), auto;
}

/* line 52, ../scss/breakpoints/_base.scss */
.m-all .entry-content .wp-caption img {
  margin: 0 0 0.5em 0;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 99, ../scss/breakpoints/_base.scss */
.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* line 104, ../scss/breakpoints/_base.scss */
.prevlink, .nextlink {
  position: fixed;
  top: 370px;
  text-transform: uppercase;
  z-index: 9999;
  font-size: 0.85em;
  font-family: 'AkkuratRegular';
  text-align: center;
  width: 8em;
}

/* line 114, ../scss/breakpoints/_base.scss */
.prevlink {
  left: 0px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 121, ../scss/breakpoints/_base.scss */
.prevlink a, .nextlink a {
  opacity: 0.5;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 127, ../scss/breakpoints/_base.scss */
.prevlink a:hover, .nextlink a:hover {
  opacity: 1;
  text-decoration: none;
}

/* line 131, ../scss/breakpoints/_base.scss */
.nextlink {
  right: 0px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 137, ../scss/breakpoints/_base.scss */
svg.arrow-left {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 144, ../scss/breakpoints/_base.scss */
.arrow-link-positioner {
  left: 50%;
  margin-left: -2.3rem;
}

/* line 148, ../scss/breakpoints/_base.scss */
.outer-grid-wrapper {
  position: relative;
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}

/* line 154, ../scss/breakpoints/_base.scss */
.outer-col-left {
  left: -1.5rem;
}

/* line 157, ../scss/breakpoints/_base.scss */
.outer-col-right {
  right: 0;
}

/* line 160, ../scss/breakpoints/_base.scss */
.outer-col-left, .outer-col-right {
  position: absolute;
  top: 0;
  padding-top: 2rem;
  background: transparent;
  color: #ffffff;
  z-index: 1000;
  opacity: 1;
  display: none;
}

/* line 170, ../scss/breakpoints/_base.scss */
svg.arrow-left, svg.arrow-right {
  transform-origin: 50% 50% 0px;
}

/* line 173, ../scss/breakpoints/_base.scss */
.arrow-link-text-overlay svg {
  stroke: #ffffff;
  fill: #ffffff;
}

/* line 177, ../scss/breakpoints/_base.scss */
.arrow-link-text-positioner {
  padding: 0em 1em 0em 2em;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -ms-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
}

/* line 187, ../scss/breakpoints/_base.scss */
.outer-col-right-arrow-link .arrow-link-text-positioner {
  padding: 0em 2em 0em 1em;
}

/* line 190, ../scss/breakpoints/_base.scss */
.outer-col-left-arrow-link, .outer-col-right-arrow-link {
  position: absolute;
  top: 50%;
  font-size: 0.9em;
  font-family: 'AkkuratBold';
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}

/* line 199, ../scss/breakpoints/_base.scss */
.arrow-link-text-wrapper {
  height: 100%;
}

/* line 202, ../scss/breakpoints/_base.scss */
.outer-col-right-arrow-link .arrow-link-text-overlay {
  right: 0;
}

/* line 205, ../scss/breakpoints/_base.scss */
.arrow-link-positioner {
  position: relative;
  top: 50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 212, ../scss/breakpoints/_base.scss */
.arrow-link-text-positioner {
  position: relative;
  top: 29px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 219, ../scss/breakpoints/_base.scss */
.outer-col-right-arrow-link .arrow-link-text-overlay .arrow-link-container {
  float: right;
}

/*************************
PANELS COLOUR
*************************/
/* line 226, ../scss/breakpoints/_base.scss */
.contributor_wrapper {
  margin: 0;
  padding-top: 10px;
  clear: both;
  width: 100%;
}

/* line 233, ../scss/breakpoints/_base.scss */
body.single-document .magazine_header {
  background-color: #79b2c6;
  border-bottom: solid 3px #79b2c6;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* line 240, ../scss/breakpoints/_base.scss */
body.single-event .magazine_header {
  background-color: #fcc2c1;
  border-bottom: solid 3px #fcc2c1;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* line 246, ../scss/breakpoints/_base.scss */
body.single-podcast .magazine_header {
  background-color: #b45620;
  border-bottom: solid 3px #b45620;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* line 252, ../scss/breakpoints/_base.scss */
body.single-book .magazine_header, body.single-edition .magazine_header {
  background-color: #d20071;
  border-bottom: solid 3px #d20071;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* line 260, ../scss/breakpoints/_base.scss */
.clearer {
  clear: both;
}

/* line 263, ../scss/breakpoints/_base.scss */
.underline {
  border-bottom: solid 2px #000000;
}

/* line 267, ../scss/breakpoints/_base.scss */
.contributor_wrapper h2 {
  text-align: center !important;
  font-size: 1.3em;
  text-transform: uppercase;
  font-family: 'AkkuratBold';
  margin: 0px 0 7px;
}

/* line 274, ../scss/breakpoints/_base.scss */
.index_post:hover {
  cursor: pointer;
  cursor: hand;
}

/* line 278, ../scss/breakpoints/_base.scss */
.panel.books img, body.post-type-archive-book .d-1of4 img,
body.single-series .d-1of4 img, body.single-contributor .index_post.books img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* line 286, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .d-1of4 img,
body.single-series .d-1of4 img {
  margin-top: 12px;
}

/*********************
TABS
**********************/
/* line 294, ../scss/breakpoints/_base.scss */
.tab-content.hide {
  display: none;
}

/* line 297, ../scss/breakpoints/_base.scss */
.tab-content.active {
  display: block;
}

/* line 300, ../scss/breakpoints/_base.scss */
.page-id-4417 .ec_product_title_type1 {
  display: block !important;
}

/* line 303, ../scss/breakpoints/_base.scss */
.ec_product_page_sort .ec_product_page_perpage,
.ec_product_page_sort .ec_product_page_showing {
  font-family: 'AkkuratBold' !important;
}

/* line 307, ../scss/breakpoints/_base.scss */
.page-id-4417 .ec_product_type1 .ec_product_addtocart a, .ec_product_type1 .ec_product_addtocart a:hover, .ec_product_type1 .ec_product_addtocart a:focus {
  font-size: 0.7em !important;
}

/* line 312, ../scss/breakpoints/_base.scss */
.ec_price_type1 {
  font-weight: normal;
  font-family: 'AkkuratBold' !important;
  color: #222;
  font-size: 14px;
  text-align: center;
}

/* line 319, ../scss/breakpoints/_base.scss */
.ec_product_title_type1 {
  border-top: 1px solid #EAEAEA;
  font-family: 'AkkuratBold' !important;
  padding: 10px 10px 0px 10px;
  font-weight: normal !important;
  text-transform: none !important;
  font-size: 18px !important;
  text-align: center;
  margin: 0 0 0px !important;
  line-height: 1.2em;
  text-shadow: none;
}

/* line 331, ../scss/breakpoints/_base.scss */
.page-id-4417 #ec_store_product_list img,
.page-id-4417 .ec_product_type1 > .ec_image_container_none,
.page-id-4417 .ec_single_fade_container .ec_product_image_container {
  border-top-right-radius: 0px !important;
  border-top-left-radius: 0px !important;
}

/* line 338, ../scss/breakpoints/_base.scss */
.page-id-4417 .ec_image_container_none {
  display: block !important;
}

/* line 341, ../scss/breakpoints/_base.scss */
.ec_product_page_sort .ec_product_page_perpage > a {
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin: 2px;
  background-color: #000;
  border: 0px solid #CCC !important;
  border-radius: 0px !important;
  font-family: 'AkkuratBold' !important;
  font-size: 12px;
  font-weight: bold;
  float: left;
  color: #FFF !important;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

/* line 358, ../scss/breakpoints/_base.scss */
.page-id-4417 .ec_product_type1 {
  position: relative;
  border: 0px solid #EAEAEA !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background-color: transparent !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

/* line 369, ../scss/breakpoints/_base.scss */
.d-2of3 .nav-tabs {
  width: 100%;
  margin: 15px 0 15px;
  border-bottom: solid 3px #000000;
  padding-bottom: 20px;
}

/* line 375, ../scss/breakpoints/_base.scss */
.tab-content {
  font-size: 1.05em;
  letter-spacing: 0.03em;
}

/* line 379, ../scss/breakpoints/_base.scss */
.d-2of3 #tab2 .book_content li a {
  border-bottom: solid thin #000000 !important;
}

/* line 382, ../scss/breakpoints/_base.scss */
.d-2of3 #tab2 .book_content li a:hover {
  border-bottom: solid thin #fcc2c1 !important;
}

/* line 385, ../scss/breakpoints/_base.scss */
.d-2of3 .nav-tabs li a {
  border-bottom: none !important;
  padding: 0 !important;
  opacity: 0.5;
  text-align: center;
}

/* line 391, ../scss/breakpoints/_base.scss */
.d-2of3 ul.nav-tabs li a:hover {
  color: #fcc2c1 !important;
}

/* line 394, ../scss/breakpoints/_base.scss */
.d-2of3 .nav-tabs li a:before {
  content: '-';
  display: inline-block;
  padding-right: 0.4em;
}

/* line 399, ../scss/breakpoints/_base.scss */
.d-2of3 .nav-tabs li.active a {
  color: #000000;
  opacity: 1;
}

/* line 403, ../scss/breakpoints/_base.scss */
.d-2of3 .nav-tabs li.active a:before {
  content: '+';
  display: inline-block;
  padding-right: 0.4em;
}

/* line 408, ../scss/breakpoints/_base.scss */
.d-2of3 .nav-tabs li {
  display: inline-block;
  text-transform: uppercase;
  width: 50%;
  text-align: center;
  font-family: 'AkkuratRegular';
  font-size: 0.95em;
  margin: -6px 0 10px;
}

/* line 417, ../scss/breakpoints/_base.scss */
.d-2of3 .nav-tabs li:after {
  content: '';
  padding: 0;
}

/***************************
PUB ARCHIVE
****************************/
/* line 424, ../scss/breakpoints/_base.scss */
.labelholder {
  position: absolute;
  left: 50%;
  top: 42%;
}

/* line 429, ../scss/breakpoints/_base.scss */
body.single-contributor .pubarchive_head .publabel {
  text-transform: none;
  font-size: 1.4em;
  margin-top: 30px;
  color: #fff;
}

/* line 435, ../scss/breakpoints/_base.scss */
.pubarchive_head .publabel {
  text-align: center;
  font-family: 'AkkuratBold';
  text-transform: uppercase;
  clear: none;
  position: relative;
  left: -50%;
  font-size: 2.2em;
  display: block;
}

/* line 445, ../scss/breakpoints/_base.scss */
.borderbox {
  padding: 10px;
  background-color: #fff;
  border: solid 3px #000000;
}

/* line 450, ../scss/breakpoints/_base.scss */
.pubarchive_head h6 {
  text-transform: uppercase;
  font-size: 0.9em;
  color: #fff;
  margin: 0;
}

/* line 456, ../scss/breakpoints/_base.scss */
.pubarchive_head h2 {
  font-size: 1.9em;
  font-family: 'AkkuratBold';
  color: #fff;
  margin: 0 0 5px 0;
}

/* line 462, ../scss/breakpoints/_base.scss */
.pubarchive_head h3 {
  font-size: 1.5em;
  font-family: 'AkkuratRegular';
  color: #fff;
  margin: 0 0 0 0;
}

/* line 468, ../scss/breakpoints/_base.scss */
.pubarchive_head {
  width: 100%;
  margin-top: -111px;
  position: absolute;
  z-index: 1;
  display: table;
}

/* line 475, ../scss/breakpoints/_base.scss */
.news_archive ul {
  -moz-column-count: 1;
  -moz-column-gap: 20px;
  -webkit-column-count: 1;
  -webkit-column-gap: 20px;
  column-count: 1;
  column-gap: 20px;
  margin: 0 !important;
}

/* line 484, ../scss/breakpoints/_base.scss */
body.single-contributor .archive_50 {
  display: inline-block;
  width: 100%;
  padding: 30px 30px 20px;
  vertical-align: bottom;
}

/* line 490, ../scss/breakpoints/_base.scss */
.archive_50 {
  display: table-cell;
  width: 50.0%;
  padding: 30px 30px 20px;
  vertical-align: bottom;
}

/* line 496, ../scss/breakpoints/_base.scss */
.logopub {
  position: absolute;
  top: 10%;
  left: 4%;
  display: block;
}

/* line 502, ../scss/breakpoints/_base.scss */
.archive_50 h4 {
  color: #fff;
  font-size: 1.3em;
  font-family: 'AkkuratRegular' !important;
  margin: 0;
}

/* line 508, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .border-block:nth-child(3) {
  margin-top: 0;
}

/* line 510, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .d-1of4 h4,
body.single-series .d-1of4 h4,
body.single-contributor .index_post.books h4.fett {
  text-align: center;
  line-height: 1.2;
  margin: 10px 0 0px;
}

/* line 517, ../scss/breakpoints/_base.scss */
body.single-contributor .index_post.books h4.fett {
  font-size: 1.1em;
  color: #000000;
}

/* line 521, ../scss/breakpoints/_base.scss */
body.single-contributor .index_post.books h4.fett a {
  color: #000000;
}

/* line 524, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .d-1of4,
body.single-series .d-1of4 {
  position: relative;
}

/* line 528, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .d-1of4 h5,
body.single-series .d-1of4 h5,
body.single-contributor .index_post.books h5 {
  text-align: center;
  font-family: 'AkkuratRegular' !important;
  margin: 5px 0 0;
  line-height: 1.2;
  letter-spacing: 0.01em !important;
}

/* line 537, ../scss/breakpoints/_base.scss */
body.single-contributor .index_post.books h5 {
  color: #000000;
}

/* line 540, ../scss/breakpoints/_base.scss */
body.single-contributor .index_post h5 {
  text-align: left;
  font-family: 'AkkuratBold' !important;
  margin: 5px 0 0;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em !important;
}

/* line 548, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .border-block {
  font-size: 1.3em;
  font-family: 'AkkuratBold' !important;
  text-align: center;
  padding-bottom: 5px;
  text-transform: uppercase;
  border-bottom: none;
  margin-bottom: 0px;
}

/* line 557, ../scss/breakpoints/_base.scss */
.archive_50:nth-child(2),
.archive_50:nth-child(2) h2,
.archive_50:nth-child(2) h4 {
  text-align: right;
}

/* line 562, ../scss/breakpoints/_base.scss */
.pubarchive_head .archive_50 h2,
.pubarchive_head .archive_50 h4 {
  text-align: left;
}

/*********************
LINK STYLES
*********************/
/* line 570, ../scss/breakpoints/_base.scss */
.m-all .publabel img {
  max-height: 50px;
  width: auto;
  margin: 0 auto;
}

/* line 575, ../scss/breakpoints/_base.scss */
a, a:visited {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 583, ../scss/breakpoints/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: black;
  outline: none;
}
/* line 594, ../scss/breakpoints/_base.scss */
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/* line 603, ../scss/breakpoints/_base.scss */
a[href$=".PDF"]:before, a[href$=".pdf"]:before,
a[href$=".pdf"][target="_blank"]:before {
  content: '\f1c1' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.2em;
  font-size: 1em;
  vertical-align: top;
}

/* line 613, ../scss/breakpoints/_base.scss */
.ex_icon {
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  background-color: rgba(51, 51, 51, 0.6);
  position: absolute !important;
  margin: 0.625rem;
  display: block;
  z-index: 1;
  -webkit-border-radius: 50.0rem;
  border-radius: 50rem;
}

/* line 626, ../scss/breakpoints/_base.scss */
.ex_icon .fa {
  display: inline-block;
  color: #fff;
  width: 100%;
  padding-left: 0.6em;
  padding-top: 0.5em;
  font-size: 1em;
  vertical-align: middle;
  height: 100%;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 641, ../scss/breakpoints/_base.scss */
.tagscont {
  display: block;
  vertical-align: middle;
  overflow: visible;
  width: 100%;
  padding: 0 55px 5px;
  height: 45px;
}

/* line 649, ../scss/breakpoints/_base.scss */
.pubarchive_head h1 {
  margin: 4px 0;
}

/* line 652, ../scss/breakpoints/_base.scss */
.pubarchive_head h1 a {
  color: #fff;
}

/* line 655, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .tagscont.overlay, body.single-series .tagscont.overlay {
  z-index: 9;
  position: absolute;
  height: 35px;
  margin-top: -15px;
}

/* line 662, ../scss/breakpoints/_base.scss */
body.home .tagscont {
  vertical-align: top;
}

/* line 666, ../scss/breakpoints/_base.scss */
.tagscont .responsive2 div a {
  color: #f07985;
}

/* line 669, ../scss/breakpoints/_base.scss */
.tagscont ul {
  text-align: center;
  margin: 0;
}

/* line 673, ../scss/breakpoints/_base.scss */
.tagscont .responsive2 div {
  font-family: 'ReplicaRegular';
  text-transform: capitalize;
  font-size: 1em;
  text-align: center;
}

/* line 679, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .tagscont ul li,
body.single-series .tagscont ul li {
  padding: 0.6em 0.7em;
  font-family: 'AkkuratRegular';
  display: inline-block;
  font-size: 1.1em;
}

/* line 687, ../scss/breakpoints/_base.scss */
body.single-product .nav a a:link a:hover {
  color: black;
}

/* line 690, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .tagscont.overlay ul li a,
body.single-series .tagscont ul li a {
  color: #cbf3f7;
}

/* line 694, ../scss/breakpoints/_base.scss */
body.post-type-archive-book .tagscont.overlay ul li a:hover,
body.single-series .tagscont ul li a:hover {
  color: #fff;
}

/* line 698, ../scss/breakpoints/_base.scss */
h1, .h1, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: normal;
  font-family: 'AkkuratBold';
}

/* line 703, ../scss/breakpoints/_base.scss */
h6 {
  font-size: 0.85em;
  margin: 0.2em 0 0.1em;
  font-family: 'AkkuratBold';
  font-weight: normal;
  letter-spacing: 0.03em;
}

/* line 710, ../scss/breakpoints/_base.scss */
body.home h2,
body.home h1,
body.home h3 {
  margin-top: 0 !important;
  text-align: center;
  line-height: 1.2;
}

/* line 717, ../scss/breakpoints/_base.scss */
.d-2of3 h4 {
  text-align: center;
  font-family: 'AkkuratRegular';
  font-size: 0.9em;
  margin: -2px 0 0;
}

/* line 723, ../scss/breakpoints/_base.scss */
.t-1of3 .border-block, .mag_col_left .border-block {
  margin: 10px 0 10px;
}

/* line 726, ../scss/breakpoints/_base.scss */
.border-block {
  border-top: solid 2px #000000;
  margin: 25px 0 20px;
  padding: 12px 0 15px;
  border-bottom: solid 2px #000000;
}

/* line 732, ../scss/breakpoints/_base.scss */
.border-block-top {
  border-top: solid 2px #000000;
  margin: 25px auto 5px;
  width: 100%;
  padding: 20px 0 0;
}

/* line 739, ../scss/breakpoints/_base.scss */
.email_holder .e_left {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  width: 25%;
  height: 100%;
}

/* line 746, ../scss/breakpoints/_base.scss */
.email_holder .e_right {
  display: inline-block;
  vertical-align: top;
  width: 70%;
  padding-left: 1%;
  text-align: left;
  height: 100%;
}

/* line 754, ../scss/breakpoints/_base.scss */
.emailsign {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* line 759, ../scss/breakpoints/_base.scss */
.tab-content ul {
  display: block;
}

/* line 762, ../scss/breakpoints/_base.scss */
.tab-content ul li a, ul.edextra li a {
  border-bottom: none !important;
}

/* line 765, ../scss/breakpoints/_base.scss */
.tab-content ul li {
  display: block;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* line 770, ../scss/breakpoints/_base.scss */
.tab-content ul li:after {
  content: "" !important;
  padding-right: 0em;
}

/* line 774, ../scss/breakpoints/_base.scss */
.tab-content ul li:before {
  content: "\f111";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.5em;
  padding-top: 0.2em;
  font-size: 0.7em;
  vertical-align: top;
}

/* line 784, ../scss/breakpoints/_base.scss */
.tab-content ul li.nodot:before {
  content: "" !important;
  display: none;
}

/* line 788, ../scss/breakpoints/_base.scss */
body.single-book .t-2of3 a, body.single-edition .t-2of3 a {
  color: #000000;
  text-decoration: none;
  border-bottom: solid thin #000000;
}

/* line 793, ../scss/breakpoints/_base.scss */
.t-1of3 ul li, .pub_description ul.part li {
  display: inline-block;
  line-height: 1.6;
}

/* line 797, ../scss/breakpoints/_base.scss */
.t-1of3 ul.topics li, .mag_col_left ul.topics li {
  display: block;
  line-height: 1.6;
  font-size: 0.9em;
}

/* line 802, ../scss/breakpoints/_base.scss */
body.single-event ul.specs li, body.single-book ul.specs li, body.single-podcast ul.specs li {
  margin-bottom: 5px;
  line-height: 1.3;
}

/* line 806, ../scss/breakpoints/_base.scss */
body.single-event ul.topics li a:hover, body.single-event ul.part li a:hover {
  color: #d20071;
}

/* line 809, ../scss/breakpoints/_base.scss */
body.single-document ul.topics li a:hover, body.single-document ul.part li a:hover {
  color: #79b2c6;
}

/* line 812, ../scss/breakpoints/_base.scss */
body.single-event ul.specs {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* line 817, ../scss/breakpoints/_base.scss */
.entry-content p a {
  border-bottom: solid thin #000000;
}

/* line 820, ../scss/breakpoints/_base.scss */
.entry-content a img {
  border-bottom: none !important;
}

/* line 823, ../scss/breakpoints/_base.scss */
body.single-podcast .entry-content a:hover {
  border-bottom: solid thin #b45620;
}

/* line 826, ../scss/breakpoints/_base.scss */
body.single-event ul.specs li a {
  border-bottom: solid thin #000000;
}

/* line 829, ../scss/breakpoints/_base.scss */
ul.specs li, ul.part li {
  display: block;
  line-height: 1.4;
}

/* line 833, ../scss/breakpoints/_base.scss */
ul.part li {
  font-family: 'AkkuratRegular';
  font-size: 0.9em;
}

/* line 837, ../scss/breakpoints/_base.scss */
.t-1of3 ul.part li a {
  border-bottom: none;
}

/* line 840, ../scss/breakpoints/_base.scss */
.t-1of3 ul.part li:after {
  content: "";
}

/* line 843, ../scss/breakpoints/_base.scss */
body.single-event ul.part li:before {
  content: '\f11a' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.2em;
  color: #fcc2c1;
  font-size: 0.8em;
  vertical-align: middle;
}

/* line 853, ../scss/breakpoints/_base.scss */
body.single-document ul.part li:before {
  content: '\f040' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.2em;
  color: #79b2c6;
  font-size: 0.8em;
  vertical-align: middle;
}

/* line 863, ../scss/breakpoints/_base.scss */
body.single-podcast ul.part li:before {
  content: '\f130' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.2em;
  color: #b45620;
  font-size: 0.8em;
  vertical-align: middle;
}

/* line 873, ../scss/breakpoints/_base.scss */
.t-1of3 ul.edextra li {
  display: block;
  line-height: 1.6;
  font-size: 1em;
}

/* line 878, ../scss/breakpoints/_base.scss */
.t-1of3 ul.topics, .t-1of3 ul.specs, .mag_col_left ul.topics, .mag_col_left ul.part {
  margin-bottom: 10px;
  font-size: 0.8em;
}

/* line 882, ../scss/breakpoints/_base.scss */
body.single-document .mag_col_left ul.part,
body.single-podcast .mag_col_left ul.part {
  margin-bottom: 15px;
}

/* line 887, ../scss/breakpoints/_base.scss */
.t-1of3 img {
  border: 1px solid black;
}

/* line 891, ../scss/breakpoints/_base.scss */
.t-1of3 ul.edextra {
  margin: 10px 0;
}

/* line 894, ../scss/breakpoints/_base.scss */
.t-1of3 ul.topics li:last-child, .t-1of3 ul.edextra li:last-child, .mag_col_left ul.topics li:last-child {
  margin-bottom: -15px;
}

/* line 897, ../scss/breakpoints/_base.scss */
.t-1of3 ul.topics li:after, .t-1of3 ul.edextra li:after, .t-1of3 ul.specs li:after {
  content: " " !important;
}

/* line 900, ../scss/breakpoints/_base.scss */
.t-1of3 ul.topics li:before, td.topics li:before, .mag_col_left ul.topics li:before {
  content: "#" !important;
}

/* line 903, ../scss/breakpoints/_base.scss */
td.topics li {
  display: inline-block;
  list-style: none;
  margin-right: 7px;
  text-transform: capitalize;
}

/* line 909, ../scss/breakpoints/_base.scss */
td.topics ul {
  list-style: none;
  margin: 0;
}

/* line 913, ../scss/breakpoints/_base.scss */
.t-1of3 ul.edextra li:before {
  content: "\f111";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.5em;
  padding-top: 0.2em;
  font-size: 0.7em;
  vertical-align: top;
}

/* line 923, ../scss/breakpoints/_base.scss */
.t-1of3 ul, .pub_description ul.part {
  margin: 0 0 15px;
}

/* line 926, ../scss/breakpoints/_base.scss */
.pub_description ul.part li {
  font-size: 1.1em;
}

/* line 929, ../scss/breakpoints/_base.scss */
.t-1of3 ul li:after, .pub_description ul.part li:after {
  content: ", ";
  padding-right: 0em;
}

/* line 933, ../scss/breakpoints/_base.scss */
.t-1of3 li:last-child:after, .pub_description ul.part li:last-child:after {
  content: "";
}

/* line 936, ../scss/breakpoints/_base.scss */
.t-1of3 h6, .mag_col_left h6 {
  text-align: center;
  font-size: 0.8em;
  text-transform: uppercase;
}

/* line 949, ../scss/breakpoints/_base.scss */
body.single-contributor img,
body.post-type-archive-book .d-1of4 img,
body.single-series .d-1of4 img {
  border: 1px solid black;
}

/* line 954, ../scss/breakpoints/_base.scss */
body.home h1 {
  font-size: 1.3em;
  line-height: 1.4em;
  font-weight: normal;
  margin-bottom: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

/* line 962, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 1.7em;
  line-height: 1.233em;
  letter-spacing: 0.02em;
}

/* line 968, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 1.3em;
  line-height: 1.35em;
  font-weight: normal;
  margin-bottom: 0.2em;
  letter-spacing: 0.02em;
  text-align: center;
  font-family: 'AkkuratRegular';
}

/* line 977, ../scss/breakpoints/_base.scss */
h3.lrgmarg {
  margin-bottom: 40px;
}

/* line 980, ../scss/breakpoints/_base.scss */
.d-2of3 h3 {
  font-family: 'AkkuratRegular';
  margin-top: 0.2em;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 0.5em;
}

/* line 987, ../scss/breakpoints/_base.scss */
.d-2of3 .tab-content h3 {
  text-align: left;
  margin-top: 1.1em;
  margin-left: 1.1em;
  font-size: 1.3em;
}

/* line 994, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 1.125em;
}

/* line 998, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
}

/* line 1002, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 1008, ../scss/breakpoints/_base.scss */
ul.comaut_list {
  display: inline-block;
  margin: 0;
}

/* line 1012, ../scss/breakpoints/_base.scss */
ul.comaut_list li {
  display: inline-block;
  margin: 0;
}

/* line 1016, ../scss/breakpoints/_base.scss */
ul.comaut_list li:after {
  content: ", ";
  font-family: 'AkkuratBold' !important;
  color: #fff;
}

/* line 1021, ../scss/breakpoints/_base.scss */
ul.comaut_list li:last-child:after {
  content: " ";
  padding-right: 0.5em;
}

/* line 1025, ../scss/breakpoints/_base.scss */
.t-1of3 .ec_product_li .ec_product_editor {
  z-index: 3 !important;
}

/*********************
HEADER STYLES
*********************/
/* line 1032, ../scss/breakpoints/_base.scss */
#nav-toggle {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-opacity: 0;
  -ms-opacity: 0;
  -moz-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
}

/* line 1042, ../scss/breakpoints/_base.scss */
.books_push {
  margin-top: 397px;
}

/* line 1045, ../scss/breakpoints/_base.scss */
.nav-toggle-mob {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  z-index: 999;
  right: 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-image: url(../images/toggle_mobile.svg);
  background-repeat: no-repeat;
  background-size: 100px 100px;
  background-position: top left;
}

/* line 1060, ../scss/breakpoints/_base.scss */
body.single-book .nav-toggle-mob, body.single-document .nav-toggle-mob, body.single-chapter .nav-toggle-mob,
body.single-event .nav-toggle-mob, body.post-type-archive-book .nav-toggle-mob {
  background-position: top right;
}

/* line 1062, ../scss/breakpoints/_base.scss */
body.single-book .nav-toggle-mob.active, body.single-document .nav-toggle-mob.active, body.single-chapter .nav-toggle-mob.active,
body.single-event .nav-toggle-mob.active, body.post-type-archive-book .nav-toggle-mob.active {
  background-position: bottom right;
}

/* line 1064, ../scss/breakpoints/_base.scss */
.nav-toggle-mob.active {
  background-position: bottom left;
}

/* line 1065, ../scss/breakpoints/_base.scss */
body #nav-toggle:checked + #nav-toggle-label, body #nav-toggle:checked + #nav-toggle-label.slide-out {
  background: transparent;
  right: 0;
}

/* line 1069, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #hamburger {
  position: absolute;
  height: 28px;
  width: 40px;
  top: 19px;
  right: 22px;
}

/* line 1076, ../scss/breakpoints/_base.scss */
body #nav-toggle:checked + #nav-toggle-label #hamburger span:nth-child(1), body #nav-toggle:checked + #nav-toggle-label.slide-out #hamburger span:nth-child(1) {
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

/* line 1083, ../scss/breakpoints/_base.scss */
body #nav-toggle:checked + #nav-toggle-label #hamburger span:nth-child(2), body #nav-toggle:checked + #nav-toggle-label.slide-out #hamburger span:nth-child(2) {
  -webkit-transition-delay: 0.125s;
  -ms-transition-delay: 0.125s;
  -moz-transition-delay: 0.125s;
  -o-transition-delay: 0.125s;
  transition-delay: 0.125s;
}

/* line 1090, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #hamburger span:nth-child(2) {
  -webkit-transition-delay: 0.625s;
  -ms-transition-delay: 0.625s;
  -moz-transition-delay: 0.625s;
  -o-transition-delay: 0.625s;
  transition-delay: 0.625s;
}

/* line 1097, ../scss/breakpoints/_base.scss */
body #nav-toggle:checked + #nav-toggle-label #hamburger span:nth-child(3), body #nav-toggle:checked + #nav-toggle-label.slide-out #hamburger span:nth-child(3) {
  -webkit-transition-delay: 0.25s;
  -ms-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

/* line 1104, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #hamburger span:nth-child(3) {
  -webkit-transition-delay: 0.75s;
  -ms-transition-delay: 0.75s;
  -moz-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

/* line 1111, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #cross {
  position: absolute;
  right: 18px;
  top: 13px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 1123, ../scss/breakpoints/_base.scss */
body #nav-toggle:checked + #nav-toggle-label #cross span:nth-child(1), body #nav-toggle:checked + #nav-toggle-label.slide-out #cross span:nth-child(1) {
  height: 100%;
  -webkit-transition-delay: 0.625s;
  -ms-transition-delay: 0.625s;
  -moz-transition-delay: 0.625s;
  -o-transition-delay: 0.625s;
  transition-delay: 0.625s;
}

/* line 1131, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #cross span:nth-child(1) {
  height: 0%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

/* line 1144, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #cross span {
  display: block;
  background: #000000;
}

/* line 1148, ../scss/breakpoints/_base.scss */
body #nav-toggle:checked + #nav-toggle-label #cross span:nth-child(2), body #nav-toggle:checked + #nav-toggle-label.slide-out #cross span:nth-child(2) {
  width: 100%;
  -webkit-transition-delay: 0.375s;
  -ms-transition-delay: 0.375s;
  -moz-transition-delay: 0.375s;
  -o-transition-delay: 0.375s;
  transition-delay: 0.375s;
}

/* line 1156, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #cross span:nth-child(2) {
  width: 0%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  -webkit-transition-delay: 0.25s;
  -ms-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

/* line 1169, ../scss/breakpoints/_base.scss */
body #nav-toggle:checked + #nav-toggle-label #hamburger span, body #nav-toggle:checked + #nav-toggle-label.slide-out #hamburger span {
  width: 0%;
}

/* line 1172, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #hamburger span:nth-child(1) {
  -webkit-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

/* line 1179, ../scss/breakpoints/_base.scss */
body #nav-toggle-label #hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
  margin: 0 0 11px 0;
  background: #000000;
}

/* line 1187, ../scss/breakpoints/_base.scss */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-text-size-adjust: none;
}

/* line 1200, ../scss/breakpoints/_base.scss */
nav#main {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
}

/* line 1208, ../scss/breakpoints/_base.scss */
#nav-toggle:checked + #nav-toggle-label, body #nav-toggle:checked + #nav-toggle-label.slide-out {
  background: transparent;
  right: 0;
}

/* line 1212, ../scss/breakpoints/_base.scss */
.drawer-menu-item,
.drawer-menu li.menu-item-4448 a,
li.sea {
  font-size: 1.1em;
  display: block;
  font-family: 'AkkuratBold';
  padding: 0;
  margin: 0.2rem 0;
  text-decoration: none;
  color: #33302e;
}

/* line 1223, ../scss/breakpoints/_base.scss */
ul.drawer-menu li ul {
  margin: 0;
}

/* line 1226, ../scss/breakpoints/_base.scss */
.drawer-menu .social_search {
  position: relative !important;
}

/* line 1229, ../scss/breakpoints/_base.scss */
.ec_menu_mini_cart .dashicons {
  font-size: 24px;
  margin-top: -3px;
}

/* line 1233, ../scss/breakpoints/_base.scss */
ul.drawer-menu li.ec_menu_mini_cart {
  margin-left: 10px;
}

/* line 1236, ../scss/breakpoints/_base.scss */
ul.drawer-menu li ul li {
  display: inline-block;
}

/* line 1239, ../scss/breakpoints/_base.scss */
ul.drawer-menu .fa {
  font-size: 1.3em;
}

/* line 1242, ../scss/breakpoints/_base.scss */
li.menupop {
  display: inline-block;
}

/* line 1245, ../scss/breakpoints/_base.scss */
li.menupop:last-child {
  margin-left: 15px;
}

/* line 1248, ../scss/breakpoints/_base.scss */
ul#menu-shop {
  padding-bottom: 13px;
  margin-right: 25px;
  border-bottom: solid thin #eccdb9;
  margin-bottom: 13px;
}

/* line 1254, ../scss/breakpoints/_base.scss */
.ec_product_title_type1 {
  display: none !important;
}

/* line 1257, ../scss/breakpoints/_base.scss */
.ec_productlist_ul .ec_product_li {
  width: 100% !important;
  padding: 0 0px !important;
}

/* line 1261, ../scss/breakpoints/_base.scss */
.ec_product_type1:hover {
  box-shadow: none !important;
}

/* line 1264, ../scss/breakpoints/_base.scss */
.ec_product_type1 .ec_product_addtocart {
  line-height: 22px;
  position: relative;
  width: 100%;
  display: inline-block;
  background-color: #000;
  color: #FFF !important;
  font-family: 'AkkuratBold';
  cursor: pointer;
  border-radius: 0px !important;
}

/* line 1275, ../scss/breakpoints/_base.scss */
.ec_productlist_ul {
  min-height: auto !important;
}

/* line 1278, ../scss/breakpoints/_base.scss */
.ec_image_container_none {
  display: none !important;
}

/* line 1279, ../scss/breakpoints/_base.scss */
.ec_product_type1 .ec_product_addtocart_container {
  position: relative;
  text-align: center;
  width: 100%;
  background-color: transparent !important;
  z-index: 670;
  height: auto !important;
  opacity: 1;
  padding-top: 8px;
}

/* line 1289, ../scss/breakpoints/_base.scss */
.ec_product_type1 .ec_product_addtocart a, .ec_product_type1 .ec_product_addtocart a:hover, .ec_product_type1 .ec_product_addtocart a:focus {
  display: inline-block;
  color: #FFF !important;
  font-weight: normal !important;
  text-shadow: none !important;
  text-decoration: none !important;
  font-size: 0.9em !important;
  border: none;
  padding: 8px 14px !important;
  line-height: initial;
}

/* line 1300, ../scss/breakpoints/_base.scss */
.ec_productlist_ul .ec_product_li {
  margin: 0 0 15px 0 !important;
}

/* line 1303, ../scss/breakpoints/_base.scss */
.ec_price_container_type1 {
  text-align: center;
  margin-bottom: 2px !important;
}

/* line 1307, ../scss/breakpoints/_base.scss */
.ec_productlist_ul .ec_price_type1 {
  font-weight: normal;
  font-family: 'AkkuratBold';
  color: #222;
  font-size: 1.0em;
  text-align: center;
}

/* line 1314, ../scss/breakpoints/_base.scss */
.ec_productlist_ul .ec_product_type1 {
  border: 0px solid #EAEAEA !important;
  background-color: transparent !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

/* line 1320, ../scss/breakpoints/_base.scss */
.leftmenu {
  display: inline-block;
  float: left;
  height: 100%;
  vertical-align: top;
  margin: 25px 0 0 1.5em;
  padding-right: 25px;
  border-right: solid thin #eccdb9;
  width: 210px;
}

/* line 1330, ../scss/breakpoints/_base.scss */
.middlemenu {
  display: inline-block;
  float: left;
  height: 100%;
  vertical-align: top;
  margin: 25px 0 0 25px;
  padding-right: 25px;
  width: 120px;
}

/* line 1339, ../scss/breakpoints/_base.scss */
.rightmenu1 {
  display: block;
  float: none;
  height: 100%;
  vertical-align: top;
  margin: 25px 0 0 25px;
  width: 100%;
}

/* line 1347, ../scss/breakpoints/_base.scss */
.middlemenu2 {
  border-right: solid thin #eccdb9;
  display: inline-block;
  float: left;
  height: 100%;
  vertical-align: top;
  margin: 25px 0 0 25px;
  width: 135px;
}

/* line 1356, ../scss/breakpoints/_base.scss */
.rightmenu2 {
  display: inline-block;
  float: left;
  height: 100%;
  vertical-align: top;
  margin: 25px 0 0 25px;
  width: 19%;
}

/* line 1365, ../scss/breakpoints/_base.scss */
#nav-toggle-label {
  height: 65px;
  width: 65px;
  position: fixed;
  z-index: 7;
  right: 0;
  top: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/* line 1384, ../scss/breakpoints/_base.scss */
nav#main #nav-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  height: 0;
}

/* line 1390, ../scss/breakpoints/_base.scss */
#nav-toggle:checked ~ nav#main #nav-container #nav-wrap {
  top: 65px;
  border-bottom: solid 3px #eccdb9;
}

/* line 1394, ../scss/breakpoints/_base.scss */
nav#main #nav-container #nav-wrap {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  z-index: 99999;
  left: 0;
  -webkit-transition: 0.65s ease-in-out;
  -ms-transition: 0.65s ease-in-out;
  -moz-transition: 0.65s ease-in-out;
  -o-transition: 0.65s ease-in-out;
  transition: 0.65s ease-in-out;
  top: -100%;
  height: auto;
  padding-bottom: 25px;
  max-height: 100%;
}

/* line 1411, ../scss/breakpoints/_base.scss */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  margin-bottom: 25px;
  /*	overflow: hidden; */
}

/* line 1420, ../scss/breakpoints/_base.scss */
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*body.home .header{ -webkit-animation: head 2s infinite alternate;}*/
/* line 1432, ../scss/breakpoints/_base.scss */
.headerfixed {
  display: none;
  color: #000000;
  text-align: left;
  padding: 0;
  overflow: visible !important;
  position: fixed;
  z-index: 99999;
  top: 0;
  height: 65px;
  width: 100%;
}

/* line 1444, ../scss/breakpoints/_base.scss */
.header {
  background-color: transparent;
  position: relative;
  height: 66px;
  width: 100%;
  z-index: 100;
  display: block !important;
}

/* line 1453, ../scss/breakpoints/_base.scss */
#inner-header {
  width: 100%;
}

/* line 1457, ../scss/breakpoints/_base.scss */
.shopcart {
  position: fixed;
  height: 65px;
  width: 120px;
  right: 95px;
  top: 0;
}

/* line 1465, ../scss/breakpoints/_base.scss */
.social_search {
  top: 0;
  height: 65px;
  z-depth: 99999;
  right: 0;
  position: fixed;
  width: 125px;
}

/* line 1473, ../scss/breakpoints/_base.scss */
.subnav {
  /*border-top: solid 3px $black;*/
  position: fixed;
  z-depth: 9999;
  top: 44px;
  left: 88px;
  right: 0;
  background-color: #fff;
  text-align: center;
  /*border-right: solid 3px $black;*/
  height: 41px;
}

/* line 1484, ../scss/breakpoints/_base.scss */
.subnav ul li a {
  padding: 0.85em 1em;
}

/* line 1487, ../scss/breakpoints/_base.scss */
.subnav ul {
  padding: 0;
  margin: 0;
}

/* line 1491, ../scss/breakpoints/_base.scss */
.subnav ul li {
  display: inline-block;
  font-family: 'AkkuratRegular';
  font-size: 0.85em;
  letter-spacing: 0.03em;
}

/* line 1497, ../scss/breakpoints/_base.scss */
.topnav {
  position: relative;
  margin: -70px auto 0 auto;
  text-align: center;
  max-width: 100%;
  display: block;
  vertical-align: middle;
  height: 65px;
}

/* line 1507, ../scss/breakpoints/_base.scss */
.topnav a, #menu-right-menu a {
  text-transform: uppercase;
  font-family: 'AkkuratBold';
  font-size: 0.8em;
  letter-spacing: 0.02em;
  color: #fff;
}

/* line 1517, ../scss/breakpoints/_base.scss */
ul.nav li a:hover, li.menu-item-3983 a:hover {
  border-bottom: solid 3px #fff;
  color: #fff;
}

/* line 1522, ../scss/breakpoints/_base.scss */
.shopcart ul li, .social_search ul li {
  display: inline-block;
}

/* line 1525, ../scss/breakpoints/_base.scss */
.headerfixed .ec_cart_price_total {
  display: none;
}

/* line 1528, ../scss/breakpoints/_base.scss */
.social_search ul li {
  padding-left: 0.4em;
  padding-top: 0.25em;
  font-size: 1.3em;
}

/* line 1533, ../scss/breakpoints/_base.scss */
.social_search ul li:last-child {
  padding-right: 1em;
}

/* line 1536, ../scss/breakpoints/_base.scss */
.social_search li a {
  color: #000000;
}

/* line 1539, ../scss/breakpoints/_base.scss */
.social_search {
  text-align: right;
}

/* line 1542, ../scss/breakpoints/_base.scss */
.ec_cart_items_total {
  padding: 0px;
  color: #fff;
}

/* line 1546, ../scss/breakpoints/_base.scss */
.topnav .ec_cart_title_bar {
  display: none;
}

/* line 1549, ../scss/breakpoints/_base.scss */
#logo {
  display: inline-block;
  text-indent: -9999px;
  width: 65px;
  margin-left: 0px;
  margin-top: 0px;
  height: 65px;
  background-image: url("../images/pub_logo_archive.svg");
  overflow: hidden;
  background-size: 130px 130px;
  background-position: 65px 0px;
}

/* line 1562, ../scss/breakpoints/_base.scss */
body.home .headerfixed #logo {
  background-position: 130px bottom;
  margin-left: 0;
}

/* line 1566, ../scss/breakpoints/_base.scss */
body.home .headerfixed #logo:hover {
  background-position: 260px top;
}

/* line 1570, ../scss/breakpoints/_base.scss */
.headerfixed #logo {
  background-position: bottom left !important;
  width: 65px;
  height: 65px;
  margin-left: 0px;
  margin-top: 0px;
  background-size: 130px 130px;
}

/* line 1578, ../scss/breakpoints/_base.scss */
.headerfixed #logo:hover {
  background-position: top left;
}

/*********************
NAVIGATION STYLES
*********************/
/* Search in the header */
/* line 1586, ../scss/breakpoints/_base.scss */
#nav-wrap .ec_cart_page {
  display: none;
}

/* line 1588, ../scss/breakpoints/_base.scss */
body.single-document .top_menu_right a {
  color: #79b2c6;
}

/* line 1591, ../scss/breakpoints/_base.scss */
.top_menu_right {
  display: none;
  width: 65px;
  height: 65px;
  position: fixed;
  right: 0;
  top: 0;
}

/* line 1601, ../scss/breakpoints/_base.scss */
.searchform
#searchsubmit {
  display: none;
}

/* line 1605, ../scss/breakpoints/_base.scss */
.searchform label {
  display: none;
}

/* line 1610, ../scss/breakpoints/_base.scss */
.search-toggle:before {
  content: "\f002";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.5em;
  padding-top: 0.2em;
  vertical-align: top;
  color: #fff;
  font-size: 20px;
  margin-top: 14px;
}

/* line 1622, ../scss/breakpoints/_base.scss */
.nav .ec_menu_mini_cart {
  display: none;
}

/* line 1626, ../scss/breakpoints/_base.scss */
h4.index_author {
  margin: 15px 0;
  text-align: right;
  font-size: 0.4em;
  padding-left: 0px;
  margin-right: -40px;
  font-weight: normal;
  font-family: 'Replicalight';
}

/* line 1636, ../scss/breakpoints/_base.scss */
#widget .btn-o a.btn {
  background-color: #79b2c6 !important;
}

/* line 1639, ../scss/breakpoints/_base.scss */
#widget .btn-o i {
  width: 24px !important;
  height: 24px !important;
}

/* line 1643, ../scss/breakpoints/_base.scss */
#widget .btn-o .label {
  display: none;
}

/* line 1646, ../scss/breakpoints/_base.scss */
.headerfixed {
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: solid 3px #000000;
}

/* line 1650, ../scss/breakpoints/_base.scss */
.int_wrap, .int_wrap2 {
  position: relative;
  width: 100%;
  max-width: 1168px;
  margin: 0 auto 15px;
}

/* line 1656, ../scss/breakpoints/_base.scss */
.social-post {
  top: 3.0em;
}

/* line 1657, ../scss/breakpoints/_base.scss */
.shop_top_link {
  position: relative;
  float: right;
  z-index: 9999;
}

/* line 1662, ../scss/breakpoints/_base.scss */
#menu-right-menu {
  margin: -65px 20px 0;
}

/* line 1665, ../scss/breakpoints/_base.scss */
#menu-right-menu li {
  display: inline-block;
  vertical-align: top;
}
/* line 1668, ../scss/breakpoints/_base.scss */
#menu-right-menu li a {
  display: block;
  color: #fff;
  text-decoration: none !important;
  padding: 1.6em 0 0.2em;
  margin: 0 0 0 0.1em;
}

/* line 1675, ../scss/breakpoints/_base.scss */
.cont_url {
  text-align: center;
  font-family: 'AkkuratRegular';
  font-size: 1.25em;
  line-height: 1.3;
  margin-top: 0px;
  margin-bottom: 2px;
}

/* line 1683, ../scss/breakpoints/_base.scss */
body.single-contributor h1, body.search-results h1, body.tag h1, body.page h1, body.archive.date h1 {
  margin-bottom: 10px;
  text-align: center;
  margin-top: 10px;
}

/* line 1688, ../scss/breakpoints/_base.scss */
body.tag h1, body.tag .mag_scroll_title {
  text-transform: capitalize;
}

/* line 1691, ../scss/breakpoints/_base.scss */
body.post-type-archive-document .nav li a, body.post-type-archive-document #menu-right-menu li a, body.post-type-archive-document .ec_cart_items_total,
body.post-type-archive-event .nav li a, body.post-type-archive-event #menu-right-menu li a, body.post-type-archive-event .ec_cart_items_total,
body.tag .nav li a, body.tag #menu-right-menu li a, body.tag .ec_cart_items_total,
body.post-type-archive-podcast .nav li a, body.post-type-archive-podcast #menu-right-menu li a, body.post-type-archive-podcast .ec_cart_items_total, body.archive.date .nav li a, body.archive.date #menu-right-menu li a, body.archive.date .ec_cart_items_total,
body.home .nav li a, body.home #menu-right-menu li a, body.home .ec_cart_items_total,
body.post-type-archive-contributor .nav li a, body.post-type-archive-contributor #menu-right-menu li a, body.post-type-archive-contributor .ec_cart_items_total,
body.single-contributor .nav li a, body.single-contributor #menu-right-menu li a, body.single-contributor .ec_cart_items_total,
body.search-results .nav li a, body.search-results #menu-right-menu li a, body.search-results .ec_cart_items_total,
body.page .nav li a, body.page #menu-right-menu li a, body.page .ec_cart_items_total,
body.single-post .nav li a, body.single-post #menu-right-menu li a, body.single-post .ec_cart_items_total {
  color: #000000;
}

/* line 1704, ../scss/breakpoints/_base.scss */
body.post-type-archive-document .nav li a:hover, body.post-type-archive-document #menu-right-menu li.menu-item-3983 a:hover,
body.archive.date .nav li a:hover,
body.post-type-archive-event .nav li a:hover, body.post-type-archive-event #menu-right-menu li.menu-item-3983 a:hover,
body.tag .nav li a:hover, body.tag #menu-right-menu li.menu-item-3983 a:hover,
body.post-type-archive-podcast .nav li a:hover, body.post-type-archive-podcast #menu-right-menu li.menu-item-3983 a:hover,
body.home .nav li a:hover, body.home #menu-right-menu li.menu-item-3983 a:hover,
body.search-results .nav li a:hover, body.search-results #menu-right-menu li.menu-item-3983 a:hover,
body.page .nav li a:hover, body.page #menu-right-menu li.menu-item-3983 a:hover,
body.post-type-archive-contributor .nav li a:hover, body.single-contributor .nav li a:hover, body.post-type-archive-contributor #menu-right-menu li.menu-item-3983 a:hover,
body.post-type-archive-contributor .menu-item-1696 a, body.single-contributor .menu-item-1696 a,
body.post-type-archive-podcast .menu-item-1937 a {
  border-bottom: solid 3px #000000;
}

/* line 1717, ../scss/breakpoints/_base.scss */
body.post-type-archive-document #logo,
body.archive.date #logo,
body.post-type-archive-event #logo,
body.tag #logo,
body.post-type-archive-podcast #logo,
body.post-type-archive-contributor #logo,
body.single-contributor #logo,
body.search-results #logo,
body.page #logo,
body.single-post #logo {
  background-position: 390px 0px;
}

/* line 1729, ../scss/breakpoints/_base.scss */
.datecode h6 {
  text-transform: uppercase;
  text-align: center;
  opacity: 0.5;
}

/* line 1734, ../scss/breakpoints/_base.scss */
body.page-template-archive-news h2, body.single-post h2, body.archive.date h2 {
  margin-top: 0;
  margin-bottom: 0px;
  font-family: 'AkkuratBold';
  letter-spacing: 0;
}

/* line 1735, ../scss/breakpoints/_base.scss */
body.page-template-archive-news h4.indexauthornews, body.archive.date h4.indexauthornews, body.single-post h4.indexauthornews {
  margin-top: 0;
  margin-bottom: 18px;
  font-family: 'AkkuratRegular';
  letter-spacing: 0;
  text-align: center;
}

/* line 1736, ../scss/breakpoints/_base.scss */
body.home #logo {
  background-position: 0px 0px;
}

/* line 1740, ../scss/breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  text-align: center;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 1745, ../scss/breakpoints/_base.scss */
.nav li {
  display: inline-block;
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http://www.alistapart.com/articles/organizing-mobile/
  */
}
/* line 1747, ../scss/breakpoints/_base.scss */
.nav li a {
  display: block;
  color: #fff;
  text-decoration: none !important;
  padding: 1.6em 0 0.2em;
  margin: 0 0.55em;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
/* line 1760, ../scss/breakpoints/_base.scss */
.nav li a:hover, .nav li a:focus {
  color: #000000;
  ouline: none;
}
/* line 1766, ../scss/breakpoints/_base.scss */
.nav li:first-child {
  margin-left: 0em;
}
/* line 1769, ../scss/breakpoints/_base.scss */
.nav li:last-child {
  margin-right: 0em;
}
/* line 1785, ../scss/breakpoints/_base.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}

/* end .nav */
/* line 1815, ../scss/breakpoints/_base.scss */
.m-all img {
  max-width: 100%;
  margin: 0 auto 0.5em auto;
  height: auto;
  display: block;
}

/* line 1821, ../scss/breakpoints/_base.scss */
.m-all.publist img {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 0.5em auto;
  height: auto;
  display: block;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 1832, ../scss/breakpoints/_base.scss */
.rel_carousel {
  clear: both;
  margin: 50px auto 0;
  width: 100%;
  max-width: 1168px;
}

/* line 1838, ../scss/breakpoints/_base.scss */
.index_post {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 0;
}

/* line 1844, ../scss/breakpoints/_base.scss */
.social-post2 {
  position: relative;
}

/* line 1847, ../scss/breakpoints/_base.scss */
.social-post2 ul {
  text-align: center;
}

/* line 1850, ../scss/breakpoints/_base.scss */
.social-post2 li {
  display: inline-block;
  position: relative;
  width: 2.0rem;
  height: 2.0rem;
  line-height: 1.4 !important;
  border-radius: 50%;
  background-color: #000000;
  color: #fff;
  text-align: center;
  margin: 0 0.3rem;
}

/* line 1862, ../scss/breakpoints/_base.scss */
.social-post2 li:after {
  content: " " !important;
}

/* line 1865, ../scss/breakpoints/_base.scss */
body.single-document .social-post li:hover, body.single-document .social-post2 li:hover {
  background-color: #79b2c6;
}

/* line 1868, ../scss/breakpoints/_base.scss */
.social-post li {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #000000;
  color: #fff;
  text-align: center;
  margin-top: 0.7rem;
}

/* line 1878, ../scss/breakpoints/_base.scss */
.social-post li a, .social-post2 li a {
  color: #fff;
}

/* line 1881, ../scss/breakpoints/_base.scss */
.social-post li .fa {
  font: normal normal normal 18px/1 FontAwesome;
  vertical-align: middle;
  padding-top: 7px;
}

/* line 1886, ../scss/breakpoints/_base.scss */
.social-post2 li .fa {
  font: normal normal normal 18px/1 FontAwesome;
  vertical-align: middle;
  padding-top: 7px;
}

/* line 1891, ../scss/breakpoints/_base.scss */
.pub_mag_holder_right a {
  color: #fff;
}

/* line 1894, ../scss/breakpoints/_base.scss */
body.home .index_post, body.post-type-archive-event .index_post, body.post-type-archive-podcast .index_post, body.single-contributor .index_post {
  position: relative;
  margin-bottom: 1.5em;
  display: block;
  padding: 30px;
  /*background-color:$white;*/
  width: 100%;
  height: auto;
  float: none;
  overflow: hidden;
}

/* line 1905, ../scss/breakpoints/_base.scss */
.bgdivimage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background-color: #000;
}

/* line 1922, ../scss/breakpoints/_base.scss */
.index_post.type-post:hover > .bgdivimage {
  background-image: linear-gradient(45deg, #f07985, #712b32) !important;
  background-blend-mode: overlay !important;
}

/* line 1926, ../scss/breakpoints/_base.scss */
.index_post.type-document:hover > .bgdivimage {
  background-color: #79b2c6;
  background-blend-mode: soft-light !important;
}

/* line 1930, ../scss/breakpoints/_base.scss */
.index_post.type-book:hover > .bgdivimage {
  background-color: #d20071;
  background-blend-mode: soft-light !important;
}

/* line 1936, ../scss/breakpoints/_base.scss */
.index_post.type-event:hover > .bgdivimage {
  background-color: #fcc2c1;
  background-blend-mode: soft-light !important;
}

/* line 1941, ../scss/breakpoints/_base.scss */
.index_post.type-podcast:hover > .bgdivimage {
  background-color: #b45620;
  background-blend-mode: soft-light !important;
}

/* line 1946, ../scss/breakpoints/_base.scss */
.docitem {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1em;
  text-align: right;
  width: 40px;
  color: #fff;
  opacity: 0.5;
}

/* line 1957, ../scss/breakpoints/_base.scss */
.index_post .doccode h6 {
  text-align: left;
  font-family: 'AkkuratBold';
}

/* line 1961, ../scss/breakpoints/_base.scss */
body.home .index_post.type-post img {
  display: none;
}

/* line 1964, ../scss/breakpoints/_base.scss */
body.home .index_post.type-post .docitem {
  color: #fff;
}

/* line 1967, ../scss/breakpoints/_base.scss */
.type-event .doccode {
  color: #fcc2c1;
}

/* line 1971, ../scss/breakpoints/_base.scss */
.type-document .doccode {
  color: #79b2c6;
}

/* line 1975, ../scss/breakpoints/_base.scss */
.type-book .doccode {
  color: #d20071;
}

/* line 1978, ../scss/breakpoints/_base.scss */
.type-podcast .doccode {
  color: #b45620;
}

/* line 1981, ../scss/breakpoints/_base.scss */
.type-post .doccode {
  color: #fff;
}

/* line 1984, ../scss/breakpoints/_base.scss */
.doccode {
  position: relative;
  font-family: 'AkkuratBold';
  font-size: 1.2em;
  text-align: left;
  text-transform: uppercase;
  width: auto;
  color: #fff;
}

/* line 1993, ../scss/breakpoints/_base.scss */
.book_overlay {
  background: #ffffff;
  background: -moz-linear-gradient(45deg, #ffffff 0%, #f1959d 100%);
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #ffffff), color-stop(100%, #f1959d));
  background: -webkit-linear-gradient(45deg, #ffffff 0%, #f1959d 100%);
  background: -o-linear-gradient(45deg, #ffffff 0%, #f1959d 100%);
  background: -ms-linear-gradient(45deg, #ffffff 0%, #f1959d 100%);
  background: linear-gradient(45deg, #ffffff 0%, #f1959d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1959d',GradientType=1 );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 0;
}

/* line 2013, ../scss/breakpoints/_base.scss */
.index_post.type-book:hover .book_overlay {
  opacity: 1;
}

/* line 2019, ../scss/breakpoints/_base.scss */
.index_post.type-post {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2024, ../scss/breakpoints/_base.scss */
.index_post.type-post h4, .index_post.type-post p, .index_post.type-post a {
  color: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2030, ../scss/breakpoints/_base.scss */
.index_post a {
  color: #FFF;
}

/* line 2036, ../scss/breakpoints/_base.scss */
.ev_overlay {
  background-color: rgba(33, 181, 200, 0);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2048, ../scss/breakpoints/_base.scss */
.ev_overlay:hover {
  background-color: #21b5c8;
}

/* line 2051, ../scss/breakpoints/_base.scss */
.grayscale {
  -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -o-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
}

/* line 2059, ../scss/breakpoints/_base.scss */
.fvc {
  position: relative;
  width: 100%;
  padding: 0;
  vertical-align: top;
}

/* line 2066, ../scss/breakpoints/_base.scss */
.letter-menu {
  text-align: center;
  display: block;
  width: 100%;
  margin-top: -15px;
  margin-bottom: 40px;
}

/* line 2073, ../scss/breakpoints/_base.scss */
.letter-menu li {
  text-align: center;
  padding: 0 0.5em;
  display: inline-block;
  font-family: 'AkkuratBold';
  font-size: 1.2em;
}

/* line 2080, ../scss/breakpoints/_base.scss */
.slick-slide .fvc {
  position: absolute;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
  top: 37px;
  overflow: hidden;
  left: 0;
  vertical-align: top;
}

/* line 2090, ../scss/breakpoints/_base.scss */
.slick-slide .fvc h4.indexauthor {
  margin-top: 0px !important;
}

/* line 2093, ../scss/breakpoints/_base.scss */
.slick-slide .fvc h4 a {
  color: #fff;
}

/* line 2096, ../scss/breakpoints/_base.scss */
.slick-slide .fvc h4 {
  font-size: 1.3em;
  font-family: 'AkkuratRegular';
  line-height: 1.2;
  color: #fff;
  margin: 0 0 5px;
  text-align: left;
}

/* line 2105, ../scss/breakpoints/_base.scss */
.excerpt {
  position: absolute;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
  bottom: 15px;
  left: 0;
  vertical-align: bottom;
}

/* line 2114, ../scss/breakpoints/_base.scss */
.excerpt p {
  margin-bottom: 0;
}

/* line 2117, ../scss/breakpoints/_base.scss */
a.linkedin {
  display: none !important;
}

/* line 2120, ../scss/breakpoints/_base.scss */
.mag_content blockquote, blockquote.magazine-quote {
  font-family: 'AkkuratBold';
  font-size: 1.5em;
  line-height: 1.3;
  float: left;
  padding: 15px 0 0;
  border-top: solid 3px #79b2c6;
  border-bottom: solid 3px #79b2c6;
  margin: 20px 20px 20px -200px;
  width: 60%;
}

/* line 2131, ../scss/breakpoints/_base.scss */
.mag_content blockquote p:first-child, blockquote.magazine-quote p:first-child {
  font-family: 'AkkuratBold';
  font-size: 1em !important;
}

/* line 2135, ../scss/breakpoints/_base.scss */
.mag_content blockquote.small-quote, .mag_content blockquote.small-quote p:first-child {
  font-family: 'ReplicaLightItalic' !important;
  font-size: 1.0em;
  line-height: 1.2;
  padding: 0px 15px 15px 15px;
  float: none;
  border-top: none;
  border-bottom: none;
  margin: 0px;
  width: 100%;
}

/* line 2146, ../scss/breakpoints/_base.scss */
.mag_content blockquote.small-quote em {
  font-family: 'ReplicaLightItalic' !important;
}

/* line 2149, ../scss/breakpoints/_base.scss */
.pub_description blockquote.small-quote p {
  font-family: 'ReplicaLightItalic' !important;
  font-size: 1em;
  line-height: 1.3;
  padding: 0px 40px 15px 40px;
  float: none;
  border-top: none;
  border-bottom: none;
  margin: 0px;
}

/* line 2159, ../scss/breakpoints/_base.scss */
.pub_description blockquote.small-quote em {
  font-family: 'ReplicaLight';
  font-style: normal;
}

/* line 2163, ../scss/breakpoints/_base.scss */
.pub_description blockquote.small-quote {
  padding: 0;
  float: none;
  border-top: none;
  border-bottom: none;
  margin: 0px;
}

/* line 2170, ../scss/breakpoints/_base.scss */
.mag_content blockquote.small-quote p {
  font-family: 'ReplicaItalic' !important;
}

/* line 2174, ../scss/breakpoints/_base.scss */
body.single-event .selectionShareable a {
  border-bottom: solid thin #000000;
}

/* line 2177, ../scss/breakpoints/_base.scss */
body.single-event .selectionShareable a:hover {
  border-bottom: solid thin #fcc2c1;
  color: #fcc2c1;
}

/* line 2184, ../scss/breakpoints/_base.scss */
.mag_scroll_title {
  display: none;
  font-family: 'AkkuratBold';
  white-space: nowrap;
  overflow: hidden;
}

/* line 2189, ../scss/breakpoints/_base.scss */
.type-event {
  position: absolute;
  top: 0;
  color: #fff;
  text-align: center;
  bottom: 0;
  right: 0;
  left: 0;
}

/* line 2198, ../scss/breakpoints/_base.scss */
.index_image_holder {
  position: relative;
  height: 100%;
}

/* line 2202, ../scss/breakpoints/_base.scss */
iframe .widget.g-background-default {
  background-color: #ffffff !important;
}

/* line 2205, ../scss/breakpoints/_base.scss */
.ev_loc {
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-family: 'AkkuratRegular';
  text-align: left;
  font-size: 0.9em;
}

/* line 2213, ../scss/breakpoints/_base.scss */
h6.single_label {
  text-align: left;
  font-family: 'AkkuratBold';
  font-size: 0.8em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* line 2221, ../scss/breakpoints/_base.scss */
body.single-document .bg {
  background-color: #79b2c6;
  padding: 7px;
}

/* line 2225, ../scss/breakpoints/_base.scss */
body.single-podcast .bg {
  background-color: #b45620;
  padding: 7px;
}

/* line 2229, ../scss/breakpoints/_base.scss */
body.single-book .bg {
  background-color: #d20071;
  padding: 7px;
}

/* line 2233, ../scss/breakpoints/_base.scss */
body.single-chapter .bg, body.single-podcast .bg {
  background-color: #33302e;
  padding: 7px;
}

/* line 2237, ../scss/breakpoints/_base.scss */
body.single-event .bg {
  background-color: #fcc2c1;
  padding: 7px;
}

/* line 2241, ../scss/breakpoints/_base.scss */
h4.indexauthor {
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-family: 'AkkuratRegular';
  text-align: left;
  font-size: 0.9em !important;
  margin-top: 10px !important;
}

/* line 2251, ../scss/breakpoints/_base.scss */
.bgnew {
  background-color: #79b2c6;
  padding: 12px;
}

/* line 2255, ../scss/breakpoints/_base.scss */
.bgsalmon {
  background-color: #000000;
  padding: 12px;
}

/* line 2259, ../scss/breakpoints/_base.scss */
.bgturq {
  background-color: #000000;
  padding: 12px;
}

/* line 2263, ../scss/breakpoints/_base.scss */
.bgorg {
  background-color: #000000;
  padding: 12px;
}

/* line 2267, ../scss/breakpoints/_base.scss */
.bgblk {
  background-color: #000000;
  padding: 12px;
}

/* line 2271, ../scss/breakpoints/_base.scss */
.book_stat2 {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-family: 'AkkuratRegular';
  font-size: 0.7em;
}

/* line 2283, ../scss/breakpoints/_base.scss */
body.single-book .book_stat2 .bgorg {
  background-color: #000000;
  padding: 12px;
}

/* line 2287, ../scss/breakpoints/_base.scss */
body.single-book .book_stat2 {
  top: 11px;
  font-family: 'AkkuratBold';
  color: #fff;
  font-size: 1.1em;
}

/* line 2293, ../scss/breakpoints/_base.scss */
.book_stat {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-family: 'AkkuratRegular';
  text-align: center;
  z-index: 3;
  font-size: 0.9em;
}

/* line 2305, ../scss/breakpoints/_base.scss */
.bgtrans {
  padding: 12px;
  background-color: #d20071;
}

/* line 2309, ../scss/breakpoints/_base.scss */
.index_post.type-document, .index_post.type-document .fvc h4 a, .index_post.type-document .fvc h4,
.index_post.type-book, .index_post.type-book p {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #fff;
}

/* line 2316, ../scss/breakpoints/_base.scss */
.index_post.type-document:hover .fvc h4 a, .index_post.type-document:hover, .index_post.type-document:hover .fvc h4 {
  color: #fff;
}

/* line 2319, ../scss/breakpoints/_base.scss */
.index_post h4 {
  text-align: left;
  font-family: 'AkkuratRegular';
  margin: 0;
  color: #fff;
  font-size: 1.4em;
  line-height: 1.2;
}

/* line 2327, ../scss/breakpoints/_base.scss */
body.home .index_post .fvc h4.indexauthor {
  display: inline-block !important;
  width: auto;
  margin-top: 0px !important;
}

/* line 2332, ../scss/breakpoints/_base.scss */
body.home .index_post .fvc h4.indexauthor:nth-child(2) {
  margin-top: 10px !important;
}

/* line 2333, ../scss/breakpoints/_base.scss */
body.home .index_post .fvc h4.indexauthor:nth-child(2), body.home .index_post .fvc h4.indexauthor:nth-child(3) {
  padding-right: 0.2em;
}

/* line 2336, ../scss/breakpoints/_base.scss */
.index_post h6 {
  font-family: 'AkkuratRegular';
  text-align: center;
}

/* line 2340, ../scss/breakpoints/_base.scss */
.index_post h4.fett {
  font-family: 'AkkuratBold';
  margin-bottom: 0px;
}

/* line 2344, ../scss/breakpoints/_base.scss */
.index_post p {
  font-size: 0.9em;
  line-height: 1.3;
}

/* line 2348, ../scss/breakpoints/_base.scss */
.top_ev_index {
  font-family: 'AkkuratRegular';
  font-size: 1em;
  text-align: center;
  color: #fff;
}

/* line 2354, ../scss/breakpoints/_base.scss */
.ev_code {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-right: 20px;
}

/* line 2359, ../scss/breakpoints/_base.scss */
.slick-slide {
  display: table-cell;
}

/* line 2362, ../scss/breakpoints/_base.scss */
.pub_img_hold .slick-slide {
  background: transparent !important;
  padding: 0 !important;
}

/* line 2366, ../scss/breakpoints/_base.scss */
body.home #content,
body.archive #content,
body.single-series #content {
  margin-top: 0px;
}

/* line 2371, ../scss/breakpoints/_base.scss */
body.post-type-archive-contributor #content,
body.post-type-archive-document #content {
  margin-top: 20px;
}

/* line 2376, ../scss/breakpoints/_base.scss */
body.post-type-archive-document li.menu-item-1449 a, body.single-contributor li.current-menu-parent a {
  border-bottom: solid 3px #000000;
}

/* line 2379, ../scss/breakpoints/_base.scss */
li.current-menu-parent a {
  border-bottom: solid 3px #fff;
}

/* line 2382, ../scss/breakpoints/_base.scss */
body.post-type-archive-document .document {
  position: relative;
}

/* line 2385, ../scss/breakpoints/_base.scss */
table.display {
  margin: 0 auto;
  clear: both;
  width: 100%;
}

/* line 2390, ../scss/breakpoints/_base.scss */
table.display tr:hover td {
  background-color: #79b2c6;
}

/* line 2393, ../scss/breakpoints/_base.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border-color: #000000;
}

/* line 2398, ../scss/breakpoints/_base.scss */
table.display td {
  padding: 6px 10px 5px 10px;
  font-size: 1em;
}

/* line 2402, ../scss/breakpoints/_base.scss */
table.display th, table.display td {
  border: solid 2px #000000;
  vertical-align: top;
}

/* line 2406, ../scss/breakpoints/_base.scss */
td.id, th.id {
  display: none;
}

/* line 2407, ../scss/breakpoints/_base.scss */
thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
}

/* line 2412, ../scss/breakpoints/_base.scss */
table.display thead tr {
  background-color: #79b2c6;
  font-size: 1em;
}

/* line 2416, ../scss/breakpoints/_base.scss */
table.display thead tr th.author, table.display thead tr th.title, table.display thead tr th.id {
  font-size: 0.9em;
}

/* line 2419, ../scss/breakpoints/_base.scss */
table.display thead th {
  padding: 6px 18px 5px 10px;
  font-weight: normal;
  font-size: 0.9em;
  cursor: pointer;
  cursor: hand;
  text-align: left;
  font-family: 'AkkuratBold';
  text-transform: uppercase;
}

/* line 2430, ../scss/breakpoints/_base.scss */
.pub_img_hold {
  margin: 0 0 10px;
}

/* line 2433, ../scss/breakpoints/_base.scss */
.pub_img_hold img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* line 2440, ../scss/breakpoints/_base.scss */
.wp-caption:hover .exicon {
  background-color: #37b097;
}

/* line 2443, ../scss/breakpoints/_base.scss */
.exicon {
  position: absolute;
  z-index: 99;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(55, 176, 151, 0.6);
  color: #fff;
}

/* line 2454, ../scss/breakpoints/_base.scss */
.exicon .fa {
  padding: 10px 0 0 10px;
  font-size: 1.3em;
}

/* line 2458, ../scss/breakpoints/_base.scss */
.image-container [data-featherlight] {
  cursor: pointer;
  cursor: hand;
}

/* line 2462, ../scss/breakpoints/_base.scss */
.exicon i {
  font-family: FontAwesome !important;
}

/* line 2465, ../scss/breakpoints/_base.scss */
#content {
  margin-top: 0px;
  z-index: 0;
}

/* line 2469, ../scss/breakpoints/_base.scss */
body.page .hentry, body.single-post .hentry, body.archive.date .hentry {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
}

/* line 2474, ../scss/breakpoints/_base.scss */
body.page-id-4417 .hentry, body.page-id-2502 .hentry {
  max-width: 1000px;
}

/* line 2477, ../scss/breakpoints/_base.scss */
body.page .hentry p, body.single-post .hentry p, body.archive.date .hentry p {
  margin: 0 0 25px;
  font-size: 1.2em;
  line-height: 1.4;
}

/* line 2482, ../scss/breakpoints/_base.scss */
body.page .hentry ul, body.single-post .hentry ul, body.single-post .hentry ol, body.page-template-archive-news .hentry ol {
  margin: 0 0 20px 0px;
}

/* line 2485, ../scss/breakpoints/_base.scss */
body.page .hentry ul li, body.single-post .hentry ul li, body.page-template-archive-news .hentry ul li {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-left: 50px;
  text-indent: -20px;
}

/* line 2492, ../scss/breakpoints/_base.scss */
body.single-post .hentry ol li, body.page-template-archive-news .hentry ol li {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-left: 0px;
  text-indent: 0px;
  clear: both;
}

/* line 2500, ../scss/breakpoints/_base.scss */
body.single-post .hentry ol li ul li, body.page-template-archive-news .hentry ol li ul li {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 10px;
  list-style: none;
}

/* line 2506, ../scss/breakpoints/_base.scss */
body.single-post .hentry ol li ul, body.page-template-archive-news .hentry ol li ul {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 20px;
  list-style: none;
}

/* line 2512, ../scss/breakpoints/_base.scss */
body.page-id-4417 .hentry ul li {
  margin-bottom: 10px;
  margin-left: 0px;
  text-indent: 0px;
}

/* line 2517, ../scss/breakpoints/_base.scss */
body.page .hentry ul li:before, body.single-post .hentry ul li:before {
  content: '' !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  padding-right: 0.5em;
  font-size: 0.7em;
  vertical-align: middle;
}

/* line 2526, ../scss/breakpoints/_base.scss */
body.page-template-archive-news .hentry img, body.single-post .hentry img {
  margin-left: auto;
  margin-right: auto;
}

/* line 2530, ../scss/breakpoints/_base.scss */
.article-footer p.tags {
  text-transform: capitalize;
}

/* line 2533, ../scss/breakpoints/_base.scss */
table.display .author, table.display .title {
  display: table-cell;
  font-size: 1em;
  font-family: 'AkkuratBold';
}

/* line 2538, ../scss/breakpoints/_base.scss */
.image-container {
  position: relative;
}

/* line 2539, ../scss/breakpoints/_base.scss */
.article-footer p.tags a:before {
  content: "#";
}

/* line 2545, ../scss/breakpoints/_base.scss */
.hentry header {
  padding: 1.5em;
}
/* line 2549, ../scss/breakpoints/_base.scss */
.hentry footer {
  padding: 1.5em 0;
  border-top: solid 3px #000000;
}
/* line 2553, ../scss/breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}

/* end .hentry */
/* line 2560, ../scss/breakpoints/_base.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
/* line 2585, ../scss/breakpoints/_base.scss */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}

/* entry content */
/* line 2594, ../scss/breakpoints/_base.scss */
.entry-content {
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
/* line 2611, ../scss/breakpoints/_base.scss */
.entry-content ol {
  list-style-type: decimal;
}
/* line 2614, ../scss/breakpoints/_base.scss */
.entry-content ol li {
  list-style-type: decimal;
  margin-bottom: 5px;
}
/* line 2619, ../scss/breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  margin-bottom: 1.5em;
}
/* line 2623, ../scss/breakpoints/_base.scss */
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 2632, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 2px solid #000000;
}
/* line 2640, ../scss/breakpoints/_base.scss */
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
/* line 2644, ../scss/breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 2652, ../scss/breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 2659, ../scss/breakpoints/_base.scss */
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  /*width:100%;*/
  height: auto;
}
/* line 2676, ../scss/breakpoints/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
/* line 2685, ../scss/breakpoints/_base.scss */
.entry-content pre {
  background: #000000;
  color: #fafafa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
/* line 2696, ../scss/breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  padding: 0px;
  position: relative;
  /* images inside wp-caption */
}
/* line 2702, ../scss/breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 2708, ../scss/breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 20px;
  text-align: left;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 2742, ../scss/breakpoints/_base.scss */
.tags {
  margin: 0;
}

/* line 2745, ../scss/breakpoints/_base.scss */
.lb-overlay img {
  width: auto !important;
  margin: 0 auto;
  max-height: 150% !important;
  display: block;
}

/* line 2751, ../scss/breakpoints/_base.scss */
.m-all .entry-content img {
  margin: 0 0 1.5em 0;
}

/* line 2754, ../scss/breakpoints/_base.scss */
:target:before {
  content: "";
  display: inline-block;
  height: 85px;
  /* fixed header height*/
  margin: -85px 0 0;
  /* negative fixed header height */
}

/* line 2760, ../scss/breakpoints/_base.scss */
.lb-album {
  position: relative;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 2768, ../scss/breakpoints/_base.scss */
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

/* line 2772, ../scss/breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 2775, ../scss/breakpoints/_base.scss */
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 2784, ../scss/breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #eaedf2;
}
/* line 2793, ../scss/breakpoints/_base.scss */
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #2980b9;
}
/* line 2805, ../scss/breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #2980b9;
  color: #fff;
}
/* line 2811, ../scss/breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #5c6b80;
}
/* line 2815, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #5c6b80;
}

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 2828, ../scss/breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left;
}
/* line 2832, ../scss/breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
Clearfix
******************************************************************/
/* line 2841, ../scss/breakpoints/_base.scss */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/* line 2849, ../scss/breakpoints/_base.scss */
.clearfix {
  display: inline-block;
}

/* start commented backslash hack \*/
/* line 2851, ../scss/breakpoints/_base.scss */
* html .clearfix {
  height: 1%;
}

/* line 2852, ../scss/breakpoints/_base.scss */
.clearfix {
  display: block;
}

/* close commented backslash hack */
/*********************
FOOTER STYLES
*********************/
/* line 2864, ../scss/breakpoints/_base.scss */
#container {
  min-height: 100%;
  /*height: 100%;*/
  overflow-x: hidden;
  margin: 0 auto -155px;
  /* the bottom margin is the negative value of the footer's height */
}

/* line 2870, ../scss/breakpoints/_base.scss */
.push {
  height: 155px;
}

/* line 2873, ../scss/breakpoints/_base.scss */
.footer {
  clear: both;
  padding: 2em 0 2em;
  margin-top: 25px;
  color: #fff;
  height: 155px;
  background-color: #000000;
  font-family: 'AkkuratRegular';
  font-size: 0.9em;
  line-height: 1.4;
}

/* line 2884, ../scss/breakpoints/_base.scss */
.footer p {
  margin: 0;
}

/* line 2887, ../scss/breakpoints/_base.scss */
.footer a {
  color: #fff;
}

/* line 2890, ../scss/breakpoints/_base.scss */
#inner-footer {
  margin: 0 auto;
  width: 100%;
  max-width: 1168px;
  padding: 0 1.5em;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
/* line 2919, ../scss/breakpoints/_base.scss */
.woocommerce-notices-wrapper p {
  display: none;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 29, ../scss/breakpoints/_481up.scss */
  .topnav .ec_cart_price_total {
    display: none;
  }

  /* line 30, ../scss/breakpoints/_481up.scss */
  .tagscont.overlay {
    display: none;
  }

  /* .menu is clearfixed inside mixins.scss */
  /* line 34, ../scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 35, ../scss/breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 36, ../scss/breakpoints/_481up.scss */
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  /* line 37, ../scss/breakpoints/_481up.scss */
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* line 80, ../scss/breakpoints/_481up.scss */
  .rightmenu1 {
    clear: both;
  }

  /* line 81, ../scss/breakpoints/_481up.scss */
  .email_holder {
    display: block;
    margin: 0 auto;
    width: 80%;
    padding: 0;
  }

  /* entry content */
  /* line 88, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 92, ../scss/breakpoints/_481up.scss */
  .entry-content figure.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 97, ../scss/breakpoints/_481up.scss */
  .entry-content figure.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 102, ../scss/breakpoints/_481up.scss */
  .entry-content figure.aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /* line 21, ../scss/breakpoints/_768up.scss */
  .pubarchive_head, .archive_50 {
    height: 300px;
  }

  /* line 24, ../scss/breakpoints/_768up.scss */
  .nav-toggle-mob {
    display: none;
  }

  /* line 27, ../scss/breakpoints/_768up.scss */
  body.post-type-archive-book .pubarchive_head, body.post-type-archive-book .archive_50 {
    height: 400px;
  }

  /* line 30, ../scss/breakpoints/_768up.scss */
  body.single-series .pubarchive_head, body.single-series .archive_50 {
    height: 350px;
  }

  /* line 33, ../scss/breakpoints/_768up.scss */
  body.single-contributor .index_post .fvc {
    top: 20px;
  }

  /* line 36, ../scss/breakpoints/_768up.scss */
  body.single-contributor .index_post.books {
    text-align: center;
    min-height: 360px;
  }

  /* line 40, ../scss/breakpoints/_768up.scss */
  body.single-contributor .pubarchive_head, .archive_50 {
    height: 250px;
  }

  /* line 43, ../scss/breakpoints/_768up.scss */
  body.post-type-archive-book .d-1of4,
  body.single-series .d-1of4 {
    height: 350px;
  }

  /* line 47, ../scss/breakpoints/_768up.scss */
  body.single-contributor .books_push {
    margin-top: 20px;
  }

  /* line 50, ../scss/breakpoints/_768up.scss */
  .m-all img {
    margin: 10px;
  }

  /* line 53, ../scss/breakpoints/_768up.scss */
  .m-all .slick-slide img, .m-all .ec_dynamic_image_height img, body.single-chapter .m-all img, body.single-book .m-all img {
    margin: 0;
  }

  /* line 55, ../scss/breakpoints/_768up.scss */
  .books_push {
    margin-top: 288px;
  }

  /* line 58, ../scss/breakpoints/_768up.scss */
  body.single-series .books_push {
    margin-top: 288px;
    border-top: solid 3px #000000;
    padding-top: 20px;
  }

  /* line 63, ../scss/breakpoints/_768up.scss */
  .seriestext {
    position: relative;
    margin: 230px auto 0;
    text-align: center;
    max-width: 700px;
    color: #fff;
    font-size: 1.0em;
    line-height: 1.1;
  }

  /* line 72, ../scss/breakpoints/_768up.scss */
  .social-post {
    position: fixed;
    left: 20px;
    top: 70px;
    width: 2rem;
    display: none;
  }

  /* line 80, ../scss/breakpoints/_768up.scss */
  body.single-series .labelholder {
    top: 44%;
  }

  /* line 83, ../scss/breakpoints/_768up.scss */
  .outer-col-left-arrow-link:hover .arrow-link-text-overlay, .outer-col-right-arrow-link:hover .arrow-link-text-overlay {
    max-width: 40rem;
  }

  /* line 86, ../scss/breakpoints/_768up.scss */
  .outer-col-left-arrow-link .arrow-link-text-overlay {
    left: 0;
  }

  /* line 89, ../scss/breakpoints/_768up.scss */
  .arrow-link-text-overlay {
    -webkit-transition: max-width .3s ease;
    transition: max-width .3s ease;
  }

  /* line 93, ../scss/breakpoints/_768up.scss */
  .arrow-link-positioner {
    width: 3.4rem;
    margin-left: -1.7rem;
  }

  /* line 97, ../scss/breakpoints/_768up.scss */
  .arrow-link-text-wrapper {
    font-size: 0.9rem;
    line-height: 1.4rem;
    text-transform: uppercase;
  }

  /* line 103, ../scss/breakpoints/_768up.scss */
  .outer-col-right-arrow-link .arrow-link-text-wrapper {
    margin-right: 5.4rem;
  }

  /* line 106, ../scss/breakpoints/_768up.scss */
  .outer-col-right-arrow-link .arrow-link-text-overlay .arrow-link-container {
    float: right;
    margin-right: 3.4rem;
    margin-left: -3.4rem;
    margin-top: -18px;
  }

  /* line 112, ../scss/breakpoints/_768up.scss */
  .arrow-link-text-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: 16px;
    height: 55px;
    z-index: 100;
    color: #fff;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    background-color: #000000;
  }

  /* line 125, ../scss/breakpoints/_768up.scss */
  .outer-col-left-arrow-link .arrow-link-text-wrapper {
    margin-left: 5.4rem;
  }

  /* line 128, ../scss/breakpoints/_768up.scss */
  .news_archive ul {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }

  /* line 133, ../scss/breakpoints/_768up.scss */
  .outer-col-left, .outer-col-right {
    width: 5.4rem;
  }

  /* line 136, ../scss/breakpoints/_768up.scss */
  .outer-col-left-arrow-link .arrow-link-text-overlay .arrow-link-container {
    float: left;
    margin-top: -18px;
  }

  /* line 140, ../scss/breakpoints/_768up.scss */
  .arrow-link-text-positioner {
    max-width: 34.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* line 145, ../scss/breakpoints/_768up.scss */
  .outer-col-left-arrow-link:hover .arrow-link-text-positioner, .outer-col-right-arrow-link:hover .arrow-link-text-positioner {
    opacity: 1;
  }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 152, ../scss/breakpoints/_768up.scss */
  .bgdivimage {
    display: block;
  }

  /* line 155, ../scss/breakpoints/_768up.scss */
  body.home h4.widgettitle {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    clear: none;
    margin-top: 10px;
    margin-bottom: 0;
  }

  /* line 162, ../scss/breakpoints/_768up.scss */
  .magazine_header {
    position: absolute;
    z-index: 1;
    padding: 0 1.5em;
    width: 100%;
    height: 300px;
    margin-top: -66px;
  }

  /* line 170, ../scss/breakpoints/_768up.scss */
  .magtitle_holder {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    width: 66.6666%;
    left: 31.6%;
  }

  /* line 177, ../scss/breakpoints/_768up.scss */
  .magtitle_holder {
    margin-left: auto;
    margin-right: auto;
  }

  /* line 181, ../scss/breakpoints/_768up.scss */
  .mag_col_holder {
    max-width: 930px;
    margin: 260px auto 30px;
    z-index: 0;
  }

  /* line 186, ../scss/breakpoints/_768up.scss */
  .mag_col_left {
    float: left;
    padding-left: 1.5em;
    padding-right: 1.5em;
    width: 33.3333%;
  }

  /* line 192, ../scss/breakpoints/_768up.scss */
  .mag_content {
    float: right;
    width: 66.6666%;
    padding-right: 1.5em;
  }

  /* line 198, ../scss/breakpoints/_768up.scss */
  .magtitle_holderfull {
    max-width: 930px;
    width: 100%;
    margin: 0 auto 20px;
    position: relative;
    height: 300px;
  }

  /* line 205, ../scss/breakpoints/_768up.scss */
  .alignright {
    float: right;
    padding-left: 15px;
  }

  /* line 207, ../scss/breakpoints/_768up.scss */
  .pub_mag_holder_right {
    position: absolute;
    padding-right: 1.6em;
    z-index: 1;
    bottom: 20px;
    left: 0;
    width: 33.33333%;
    color: #fff;
    font-family: 'AkkuratRegular';
    font-size: 1em;
  }

  /* line 219, ../scss/breakpoints/_768up.scss */
  .pub_mag_holder_right h6 {
    text-align: left;
    font-family: 'AkkuratBold';
    font-size: 0.8em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1px;
  }

  /* line 226, ../scss/breakpoints/_768up.scss */
  .pub_mag_holder_right p {
    margin: 0;
  }

  /* line 230, ../scss/breakpoints/_768up.scss */
  .doccode {
    position: absolute;
    z-index: 3;
    top: 15px;
    left: 20px;
    width: 100px;
    color: #fff;
  }

  /* line 238, ../scss/breakpoints/_768up.scss */
  .fvc {
    position: absolute;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
    top: 35px;
    left: 0;
    vertical-align: top;
  }

  /* line 247, ../scss/breakpoints/_768up.scss */
  .wrap {
    width: 100%;
    padding: 0;
  }

  /* line 250, ../scss/breakpoints/_768up.scss */
  .easy-footnotes-wrapper {
    margin: 35px 0 0 0;
  }

  /* line 253, ../scss/breakpoints/_768up.scss */
  .easy-footnotes-wrapper:before {
    content: "Footnotes";
    font-size: 1.1em;
    font-family: 'AkkuratBold';
  }

  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 270, ../scss/breakpoints/_768up.scss */
  .topnav ul.nav {
    text-align: center;
    margin: 0 auto;
    width: auto;
    font-size: 0.9em;
  }

  /* line 276, ../scss/breakpoints/_768up.scss */
  .shop_top_link .ec_cart_price_total {
    display: none;
  }

  /* line 277, ../scss/breakpoints/_768up.scss */
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 279, ../scss/breakpoints/_768up.scss */
  .nav ul {
    background: #000000;
    margin-top: 0;
  }
  /* line 283, ../scss/breakpoints/_768up.scss */
  .nav li {
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  /* line 287, ../scss/breakpoints/_768up.scss */
  .nav li a {
    border-bottom: 0;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* line 294, ../scss/breakpoints/_768up.scss */
  .nav li a:hover, .nav li a:focus {
    color: #fff;
    text-decoration: underline;
  }
  /* line 309, ../scss/breakpoints/_768up.scss */
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }

  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 329, ../scss/breakpoints/_768up.scss */
  .sidebar {
    margin-top: 2.2em;
  }

  /* line 332, ../scss/breakpoints/_768up.scss */
  .contributor_wrapper .int_wrap2, body.post-type-archive-contributor ul.col {
    -moz-column-count: 3;
    -moz-column-gap: 20px;
    -webkit-column-count: 3;
    -webkit-column-gap: 20px;
    column-count: 3;
    column-gap: 20px;
  }

  /* line 341, ../scss/breakpoints/_768up.scss */
  body.home .index_post, body.post-type-archive-event .index_post, body.single-contributor .index_post, body.post-type-archive-podcast .index_post,
  body.tag .index_post, body.search .index_post {
    position: relative;
    margin-bottom: 0px;
    vertical-align: middle;
    display: inline-block;
    padding: 20px;
    width: 33%;
    height: 35vh;
    float: left;
    overflow: hidden;
    border: solid #ffffff 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 357, ../scss/breakpoints/_768up.scss */
  body.home .excerpt {
    display: none;
  }

  /* line 358, ../scss/breakpoints/_768up.scss */
  body.home .index_post.portrait {
    height: 35vh;
  }

  /* line 362, ../scss/breakpoints/_768up.scss */
  body.home .wrap, body.post-type-archive-podcast .wrap {
    padding: 0 15px;
  }

  /* line 363, ../scss/breakpoints/_768up.scss */
  body.post-type-archive-document .wrap, body.post-type-archive-contributor .wrap, body.single-contributor .wrap, body.post-type-archive-book .books_push .wrap {
    padding: 0 30px;
  }

  /* line 364, ../scss/breakpoints/_768up.scss */
  .tag_index {
    display: none;
  }

  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  /* line 375, ../scss/breakpoints/_768up.scss */
  .foot_left {
    display: inline-block;
    width: 39%;
    vertical-align: top;
  }

  /* line 380, ../scss/breakpoints/_768up.scss */
  .mag_content blockquote.small-quote, .mag_content blockquote.small-quote p:first-child {
    font-size: 1.2em;
    line-height: 1.4;
    padding: 0px 30px 15px 30px;
  }

  /* line 385, ../scss/breakpoints/_768up.scss */
  .mag_content figure.alignleft, .mag_content .wp-caption.alignleft, .entry-content [data-featherlight] img.alignleft {
    margin-left: -100px;
    float: left;
    padding-right: 15px;
  }

  /* line 390, ../scss/breakpoints/_768up.scss */
  .archive_50:nth-child(2), .archive_50:nth-child(2) h2, .pubarchive_head .archive_50:nth-child(2) h4 {
    text-align: right !important;
  }

  /* line 393, ../scss/breakpoints/_768up.scss */
  .rel_carousel h6.inline.chevron {
    padding-left: 1.5em;
  }

  /* line 394, ../scss/breakpoints/_768up.scss */
  .foot_left:first-child {
    padding-right: 1.5em;
  }

  /* line 397, ../scss/breakpoints/_768up.scss */
  .foot_left ul {
    margin: 0;
  }
  /* line 399, ../scss/breakpoints/_768up.scss */
  .foot_left ul li {
    font-size: 0.9em;
    line-height: 1.3;
  }

  /* line 404, ../scss/breakpoints/_768up.scss */
  .foot_left:last-child {
    width: 20%;
    text-align: right;
  }

  /* line 409, ../scss/breakpoints/_768up.scss */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }

  /* end .footer-links */
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1030up.scss */
  .wrap {
    width: 100%;
    max-width: 1000px;
    padding: 0;
  }

  /* line 17, ../scss/breakpoints/_1030up.scss */
  body.post-type-archive-event .wrap,
  body.post-type-archive-podcast .wrap,
  body.home .wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 55px 10px;
    margin-top: 20px;
  }

  /* line 25, ../scss/breakpoints/_1030up.scss */
  body.single-contributor .outer-col-left, body.single-contributor .outer-col-right,
  body.single-post .outer-col-left, body.single-post .outer-col-right {
    top: 5.9rem;
  }

  /* line 29, ../scss/breakpoints/_1030up.scss */
  .mag_content p, body.single-podcast .entry-content p {
    font-size: 1.2em;
    line-height: 1.4;
  }

  /* line 33, ../scss/breakpoints/_1030up.scss */
  .mag_col_left {
    float: left;
    padding-left: 0em;
    padding-right: 1.5em;
    width: 25%;
  }

  /* line 39, ../scss/breakpoints/_1030up.scss */
  .pub_mag_holder_right {
    padding-right: 1.5em;
    width: 25%;
  }

  /* line 43, ../scss/breakpoints/_1030up.scss */
  .mag_content {
    width: 75%;
    padding-right: 0em;
  }

  /* line 47, ../scss/breakpoints/_1030up.scss */
  .entry-content {
    padding: 0;
  }

  /* line 50, ../scss/breakpoints/_1030up.scss */
  .ec_product_li {
    width: 25% !important;
  }

  /* line 53, ../scss/breakpoints/_1030up.scss */
  .ec_product_li:nth-child(3n+1) {
    clear: none !important;
  }

  /* line 56, ../scss/breakpoints/_1030up.scss */
  .ec_product_li:nth-child(4n+1) {
    clear: both !important;
  }

  /* line 59, ../scss/breakpoints/_1030up.scss */
  .border-block {
    border-top: solid 3px #000000;
    border-bottom: solid 3px #000000;
  }

  /* line 63, ../scss/breakpoints/_1030up.scss */
  .border-block-top {
    border-top: solid 3px #000000;
  }

  /* line 66, ../scss/breakpoints/_1030up.scss */
  .panel {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    padding: 18px;
    height: 100%;
  }

  /* line 73, ../scss/breakpoints/_1030up.scss */
  .tagscont.overlay {
    display: block;
  }

  /* line 74, ../scss/breakpoints/_1030up.scss */
  .topnav {
    max-width: 680px;
  }

  /* line 76, ../scss/breakpoints/_1030up.scss */
  body.home .excerpt {
    display: block;
  }

  /* line 77, ../scss/breakpoints/_1030up.scss */
  body.home .index_post, body.post-type-archive-event .index_post {
    padding: 30px;
  }

  /* line 80, ../scss/breakpoints/_1030up.scss */
  td.id, th.id {
    display: table-cell;
  }

  /* line 81, ../scss/breakpoints/_1030up.scss */
  .tag_index {
    display: block;
  }

  /* line 82, ../scss/breakpoints/_1030up.scss */
  .tag_index li {
    display: inline-block;
    text-transform: capitalize;
  }

  /* line 83, ../scss/breakpoints/_1030up.scss */
  .tag_index li:before {
    content: "#";
  }

  /* line 84, ../scss/breakpoints/_1030up.scss */
  .tag_index li:after {
    content: ", ";
  }

  /* line 85, ../scss/breakpoints/_1030up.scss */
  .tag_index li:last-child:after {
    content: "";
  }

  /* line 86, ../scss/breakpoints/_1030up.scss */
  .topnav a, #menu-right-menu a {
    font-size: 0.9em;
  }

  /* line 88, ../scss/breakpoints/_1030up.scss */
  .rightmenu2 {
    border-right: solid thin #eccdb9;
  }

  /* line 91, ../scss/breakpoints/_1030up.scss */
  .rightmenu1 {
    display: inline-block;
    float: left;
    height: 100%;
    vertical-align: top;
    margin: 25px 0 0 25px;
    width: 20%;
  }

  /* line 99, ../scss/breakpoints/_1030up.scss */
  .gridcont {
    padding: 0;
  }

  /* line 102, ../scss/breakpoints/_1030up.scss */
  body.home .index_post.type-document,
  body.tag .index_post.type-document,
  body.search .index_post.type-document {
    height: 35vh;
  }

  /* line 107, ../scss/breakpoints/_1030up.scss */
  body.home .index_post.portrait {
    height: 35vh;
  }

  /* line 110, ../scss/breakpoints/_1030up.scss */
  body.single-document #content,
  body.single-event #content {
    margin-top: 0;
    z-index: 1;
  }

  /* line 115, ../scss/breakpoints/_1030up.scss */
  body.single-document .wrap,
  body.single-chapter .wrap,
  body.single-edition .wrap,
  body.single-event .wrap,
  body.single-book .wrap,
  body.single-podcast .wrap,
  body.single-contributor .wrap {
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto;
  }

  /* line 126, ../scss/breakpoints/_1030up.scss */
  .magazine_header {
    padding: 0 0;
  }

  /* line 129, ../scss/breakpoints/_1030up.scss */
  .news_archive ul {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
  }

  /* line 134, ../scss/breakpoints/_1030up.scss */
  .mag_col_left {
    width: 25%;
    padding-right: 30px;
  }

  /* line 137, ../scss/breakpoints/_1030up.scss */
  .arrow-link-text-wrapper {
    font-size: 1em;
    line-height: 1.68rem;
  }

  /* line 141, ../scss/breakpoints/_1030up.scss */
  .d-2of3 .nav-tabs {
    margin: 15px 0 0px;
    padding-bottom: 5px;
  }

  /* line 145, ../scss/breakpoints/_1030up.scss */
  .foot_left:last-child {
    width: 24%;
  }

  /* line 146, ../scss/breakpoints/_1030up.scss */
  .rightmenu1 {
    clear: none;
  }

  /* line 147, ../scss/breakpoints/_1030up.scss */
  .leftmenu {
    margin-left: 35px;
  }

  /* line 150, ../scss/breakpoints/_1030up.scss */
  .magtitle_holder {
    width: 75%;
    left: 25%;
  }

  /* line 154, ../scss/breakpoints/_1030up.scss */
  body.single-series .books_push {
    margin-top: 238px;
  }

  /* line 157, ../scss/breakpoints/_1030up.scss */
  body.single-series .outer-col-left, body.single-series .outer-col-left .outer-col-right {
    top: 323px;
  }

  /* line 160, ../scss/breakpoints/_1030up.scss */
  .foot_left {
    width: 30%;
  }

  /* line 161, ../scss/breakpoints/_1030up.scss */
  .foot_left:nth-child(2) {
    width: 45%;
  }

  /* line 162, ../scss/breakpoints/_1030up.scss */
  .shop_top_link .ec_cart_price_total {
    display: inline-block;
  }

  /* line 163, ../scss/breakpoints/_1030up.scss */
  .email_holder {
    width: 80%;
  }

  /* line 164, ../scss/breakpoints/_1030up.scss */
  p.serif {
    font-size: 1.15em !important;
  }

  /* line 165, ../scss/breakpoints/_1030up.scss */
  img.alignleft {
    float: left;
    margin: 10px;
  }

  /* line 169, ../scss/breakpoints/_1030up.scss */
  .outer-col-right-arrow-link .arrow-link-text-wrapper {
    margin-right: 6.5rem;
  }

  /* line 172, ../scss/breakpoints/_1030up.scss */
  .outer-col-left-arrow-link .arrow-link-positioner.vis {
    margin-left: -1.3rem;
  }

  /* line 175, ../scss/breakpoints/_1030up.scss */
  .outer-col-right-arrow-link .arrow-link-text-overlay {
    right: -9px;
  }

  /* line 178, ../scss/breakpoints/_1030up.scss */
  .outer-col-right .arrow-link-text-overlay .arrow-link-positioner {
    margin-left: 1.3rem;
  }

  /* line 179, ../scss/breakpoints/_1030up.scss */
  .outer-col-right-arrow-link .arrow-link-positioner.vis {
    margin-left: 0.8rem;
  }

  /* line 180, ../scss/breakpoints/_1030up.scss */
  .outer-col-left, .outer-col-right {
    display: block;
    top: 318px;
  }

  /* line 184, ../scss/breakpoints/_1030up.scss */
  .outer-col-left {
    width: 6.5rem;
  }

  /* line 187, ../scss/breakpoints/_1030up.scss */
  .outer-col-right {
    width: 8.5em;
  }

  /* line 188, ../scss/breakpoints/_1030up.scss */
  .outer-col-left-arrow-link .arrow-link-text-wrapper {
    margin-left: 6.5rem;
  }

  /* line 191, ../scss/breakpoints/_1030up.scss */
  .outer-col-left-arrow-link .arrow-link-text-overlay .arrow-link-positioner {
    margin-left: 0.7rem;
  }

  /* line 192, ../scss/breakpoints/_1030up.scss */
  .outer-col-left-arrow-link, .outer-col-right-arrow-link {
    width: 8rem;
    height: 3.5rem;
    margin-top: -3.1rem;
  }

  /* line 197, ../scss/breakpoints/_1030up.scss */
  .arrow-link-positioner {
    width: 2.5rem;
    margin-left: -1.7rem;
  }

  /* line 201, ../scss/breakpoints/_1030up.scss */
  .arrow-link-text-positioner {
    max-width: 33.5rem;
  }

  /* line 204, ../scss/breakpoints/_1030up.scss */
  .nav li a {
    margin: 0 1.4em;
  }

  /* line 207, ../scss/breakpoints/_1030up.scss */
  .outer-grid-wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1240up.scss */
  body.tag .wrap, body.search .wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 55px 10px;
    margin-top: -10px;
  }

  /* line 18, ../scss/breakpoints/_1240up.scss */
  .outer-col-left-arrow-link .arrow-link-text-overlay .arrow-link-positioner {
    margin-left: 1.7rem;
  }

  /* line 21, ../scss/breakpoints/_1240up.scss */
  .leftmenu {
    margin-left: 75px;
  }

  /* line 24, ../scss/breakpoints/_1240up.scss */
  .rel_carousel h6.inline.chevron {
    padding-left: 0em;
  }

  /* line 25, ../scss/breakpoints/_1240up.scss */
  .middlemenu2 {
    width: 165px;
  }

  /* line 28, ../scss/breakpoints/_1240up.scss */
  .rightmenu1 {
    width: 25%;
  }

  /* line 30, ../scss/breakpoints/_1240up.scss */
  body.post-type-archive-document .wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 55px 10px 63px;
    margin-top: 20px;
  }

  /* line 36, ../scss/breakpoints/_1240up.scss */
  body.post-type-archive-contributor ul.col {
    -moz-column-count: 4;
    -moz-column-gap: 20px;
    -webkit-column-count: 4;
    -webkit-column-gap: 20px;
    column-count: 4;
    column-gap: 20px;
    margin: 0 !important;
  }

  /* line 45, ../scss/breakpoints/_1240up.scss */
  table.display .id {
    display: table-cell;
    font-size: 0.8em;
  }

  /* line 50, ../scss/breakpoints/_1240up.scss */
  body.single-series .wrap {
    width: 100%;
    max-width: 1168px;
  }

  /* line 55, ../scss/breakpoints/_1240up.scss */
  body.post-type-archive-contributor .wrap {
    width: 100%;
    max-width: 1068px;
  }

  /* line 59, ../scss/breakpoints/_1240up.scss */
  body.home .index_post,
  body.post-type-archive-event .index_post, body.single-contributor .index_post, body.post-type-archive-podcast .index_post,
  body.tag .index_post, body.search .index_post {
    position: relative;
    margin-bottom: 0px;
    vertical-align: middle;
    display: inline-block;
    padding: 20px;
    width: 25%;
    height: 35vh;
    float: left;
    overflow: hidden;
    border: solid #ffffff 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 76, ../scss/breakpoints/_1240up.scss */
  p.serif {
    font-size: 1.25em !important;
  }

  /* line 77, ../scss/breakpoints/_1240up.scss */
  .index_post.type-event {
    padding: 0 !important;
  }

  /* line 81, ../scss/breakpoints/_1240up.scss */
  .arrow-link-text-wrapper {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  /* line 85, ../scss/breakpoints/_1240up.scss */
  body.home .index_post.type-book,
  body.post-type-archive-event .index_post.type-event.evlg {
    height: 35vh !important;
    width: 25% !important;
  }

  /* line 90, ../scss/breakpoints/_1240up.scss */
  body.home .index_post.type-book,
  body.post-type-archive-event .index_post.type-event.evlg {
    height: 35vh !important;
    width: 25% !important;
  }

  /* line 95, ../scss/breakpoints/_1240up.scss */
  body.search .index_post.type-book,
  body.tag .index_post.type-book {
    height: 35vh !important;
    width: 25% !important;
  }

  /* line 100, ../scss/breakpoints/_1240up.scss */
  .outer-col-left {
    left: -2.5rem;
  }

  /* line 104, ../scss/breakpoints/_1240up.scss */
  .outer-col-left, .outer-col-right {
    top: 19.85rem;
  }

  /* line 107, ../scss/breakpoints/_1240up.scss */
  .outer-col-left, .outer-col-right {
    width: 8rem;
  }

  /* line 110, ../scss/breakpoints/_1240up.scss */
  .outer-col-right-arrow-link .arrow-link-text-wrapper {
    margin-right: 5.5rem;
  }

  /* line 113, ../scss/breakpoints/_1240up.scss */
  .outer-col-left-arrow-link .arrow-link-text-wrapper {
    margin-left: 5.5rem;
  }

  /* line 116, ../scss/breakpoints/_1240up.scss */
  body.single-document .wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* line 121, ../scss/breakpoints/_1240up.scss */
  .arrow-link-positioner {
    width: 2.5rem;
    margin-left: 1.7rem;
  }

  /* line 125, ../scss/breakpoints/_1240up.scss */
  .outer-col-left-arrow-link .arrow-link-positioner.vis {
    margin-left: -0.3rem;
  }

  /* line 128, ../scss/breakpoints/_1240up.scss */
  .outer-col-right-arrow-link .arrow-link-positioner.vis {
    margin-left: 0.3rem;
  }

  /* line 131, ../scss/breakpoints/_1240up.scss */
  .arrow-link-text-positioner {
    max-width: 42rem;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: initial !important;
    color: black !important;
    -webkit-print-color-adjust: exact;
  }

  /* line 26, ../scss/partials/_print.scss */
  .header {
    overflow: hidden;
    padding-bottom: 20px;
  }

  /* line 31, ../scss/partials/_print.scss */
  .head {
    max-height: 220px;
    overflow-y: hidden;
  }

  /* line 36, ../scss/partials/_print.scss */
  .slider-for,
  .slick-initialized,
  .slick-slider {
    display: none;
  }

  /* line 42, ../scss/partials/_print.scss */
  #inner-header.cf {
    display: none;
  }

  /* line 46, ../scss/partials/_print.scss */
  #top.header {
    display: none;
  }

  /* line 50, ../scss/partials/_print.scss */
  div.pub_mag_holder_right {
    float: left;
    max-width: 130px;
    max-height: 220px;
    position: absolute;
    font-size: 11px;
    line-height: normal;
  }

  /* line 60, ../scss/partials/_print.scss */
  .magtitle_holderfull {
    max-height: 220px;
  }

  /* line 64, ../scss/partials/_print.scss */
  .specs {
    font-size: 9px;
    overflow-y: hidden;
  }

  /* line 69, ../scss/partials/_print.scss */
  .specs:nth-of-type(2) {
    display: none;
  }

  /* line 73, ../scss/partials/_print.scss */
  .specs:nth-of-type(3) {
    display: none;
  }

  /* line 79, ../scss/partials/_print.scss */
  div.magtitle_holder {
    max-height: 220x;
    display: inline-block;
    position: relative;
    padding-left: 150px;
  }
  /* line 84, ../scss/partials/_print.scss */
  div.magtitle_holder h2 {
    font-size: 18px;
  }

  /* line 89, ../scss/partials/_print.scss */
  .social-post {
    display: none;
  }

  /* line 93, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    font-size: 9px;
  }

  /* line 98, ../scss/partials/_print.scss */
  li {
    font-size: 12px;
  }

  /* line 102, ../scss/partials/_print.scss */
  li.menu-pop {
    display: none;
  }

  /* line 106, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    display: none;
  }

  /* line 113, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 117, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 126, ../scss/partials/_print.scss */
  .d-1of3 {
    float: left;
    width: 120px;
    position: absolute;
    break-inside: avoid;
  }

  /* line 133, ../scss/partials/_print.scss */
  div.push {
    display: none;
  }

  /* line 138, ../scss/partials/_print.scss */
  .pub_description {
    top: 0;
    font-size: 9px;
    margin-top: 230px;
    padding-left: 150px;
    position: fixed;
    max-width: 700px;
    page-break-inside: avoid;
    padding-bottom: 0px;
    display: inline;
    overflow: hidden;
  }

  /* line 151, ../scss/partials/_print.scss */
  div.d-2of3 img {
    display: none;
    padding: none;
    margin: none;
  }

  /* line 157, ../scss/partials/_print.scss */
  .border-block {
    font-size: 10px;
  }

  /* line 161, ../scss/partials/_print.scss */
  .auth_title a {
    font-size: 27px;
  }

  /* line 165, ../scss/partials/_print.scss */
  div.mag_scroll_title {
    display: none;
  }
  /* line 168, ../scss/partials/_print.scss */
  div.mag_scroll_title p {
    display: none;
  }

  /* line 173, ../scss/partials/_print.scss */
  .fixtype {
    display: none;
  }

  /* line 177, ../scss/partials/_print.scss */
  .footer {
    padding-top: 0px;
    font-size: 6px;
    display: inline-block;
    padding-left: 175px;
    position: relative;
    page-break-inside: avoid;
    max-width: 700px;
    position: fixed;
    bottom: 0;
  }
  /* line 188, ../scss/partials/_print.scss */
  .footer a {
    display: none;
  }
  /* line 192, ../scss/partials/_print.scss */
  .footer li {
    font-size: 5px;
  }

  /* line 197, ../scss/partials/_print.scss */
  div.foot_left li {
    font-size: 6px;
  }

  @page {
    margin: 0.8cm;
  }
  /* line 205, ../scss/partials/_print.scss */
  div.magtitle_holderfull {
    display: initial;
  }

  /* line 209, ../scss/partials/_print.scss */
  .social-post2 {
    display: none;
  }

  /* line 213, ../scss/partials/_print.scss */
  .headerfixed {
    display: none;
    overflow-y: hidden;
  }

  /* line 218, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 223, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 229, ../scss/partials/_print.scss */
  .header,
  .shop_top_link,
  #menu-right-menu,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  .rel_carousel,
  nav ul,
  .menu,
  ul.book_content,
  ul.nav.nav-tabs {
    display: none;
  }
}
