/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
@import url(http://fonts.googleapis.com/css?family=Varela+Round);
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* line 137, ../sass/_normalize.scss */
a {
  color: #273974;
}

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

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

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 161, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 165, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 175, ../sass/_normalize.scss */
h2 {
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  text-transform: uppercase;
  line-height: 1.2em;
  margin: 0 0 1em;
}

/* line 182, ../sass/_normalize.scss */
h3 {
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  text-transform: uppercase;
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 190, ../sass/_normalize.scss */
h4 {
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 196, ../sass/_normalize.scss */
h5 {
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 202, ../sass/_normalize.scss */
h6 {
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 226, ../sass/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 235, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 241, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

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

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

/* Address inconsistent and variable font size in all browsers. */
/* line 272, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

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

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

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

/**
 * Lists
 */
/* line 294, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 303, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 309, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 314, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 334, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  vertical-align: bottom;
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

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

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 376, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 391, ../sass/_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.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 406, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 425, ../sass/_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 436, ../sass/_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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 450, ../sass/_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 464, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 475, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  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 490, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 499, ../sass/_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 505, ../sass/_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 515, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 521, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 529, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 18, ../sass/layouts/_responsive.scss */
.wrap,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1600px;
  padding: 0 2%;
}

/* line 26, ../sass/layouts/_responsive.scss */
header h1 {
  color: #fff;
  margin-top: 0;
  margin: 0;
  font-size: 2em;
  line-height: 2em;
}
/* line 27, ../sass/layouts/_responsive.scss */
header h1 a {
  color: #fff;
  text-decoration: none;
}

/* line 30, ../sass/layouts/_responsive.scss */
h1 {
  font-size: 2em;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  margin: .5em 0;
}

/* line 32, ../sass/layouts/_responsive.scss */
.page-videos .views-row {
  background: #fff;
  margin-bottom: 2vw;
}
/* line 33, ../sass/layouts/_responsive.scss */
.page-videos .views-row .video {
  padding: 4%;
  position: relative;
}

/* Tablet and phone */
@media all and (max-width: 959px) {
  /* line 41, ../sass/layouts/_responsive.scss */
  #navigation {
    background: #fff;
    overflow: hidden;
    margin-bottom: 2vw;
  }
  /* line 42, ../sass/layouts/_responsive.scss */
  #navigation .block-menu {
    width: 100%;
  }
  /* line 43, ../sass/layouts/_responsive.scss */
  #navigation .block-menu h2 {
    text-align: center;
    color: #273974;
    font-size: 1.2em;
    margin: 0;
    padding: .5em 0;
  }
  /* line 45, ../sass/layouts/_responsive.scss */
  #navigation .block-menu .menu {
    display: none;
  }
  /* line 46, ../sass/layouts/_responsive.scss */
  #navigation .block-menu .menu li {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2em;
    padding: .5em 0;
    font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
    font-weight: bold;
  }
  /* line 47, ../sass/layouts/_responsive.scss */
  #navigation .block-menu .menu li a {
    color: #273974;
    text-decoration: none;
  }
  /* line 48, ../sass/layouts/_responsive.scss */
  #navigation .block-menu .menu li a:hover, #navigation .block-menu .menu li a:active {
    color: #000;
  }

  /* line 56, ../sass/layouts/_responsive.scss */
  .one-sidebar .content-full {
    background: transparent;
    padding: 0;
  }
  /* line 57, ../sass/layouts/_responsive.scss */
  .one-sidebar .content-full .single {
    background: #fff;
    padding: 2%;
    margin-bottom: 2vw;
  }
  /* line 58, ../sass/layouts/_responsive.scss */
  .one-sidebar .content-full .column {
    background: #fff;
    padding: 2%;
  }

  /* line 63, ../sass/layouts/_responsive.scss */
  .page-commentaries .content-full,
  .page-articles .content-full {
    position: relative;
  }
  /* line 64, ../sass/layouts/_responsive.scss */
  .page-commentaries .content-full .column,
  .page-articles .content-full .column {
    position: absolute;
    top: 0;
    height: 16vw;
    overflow: hidden;
    width: 96%;
  }
  /* line 65, ../sass/layouts/_responsive.scss */
  .page-commentaries .content-full .single,
  .page-articles .content-full .single {
    position: relative;
    top: 22vw;
  }

  /* line 69, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-cover {
    background: #fff;
    padding: 2vw;
    margin-bottom: 2vw;
  }
  /* line 70, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-cover img {
    width: 100%;
  }
  /* line 71, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-cover .small-button {
    margin: 1em 2vw 0 0;
  }
  /* line 73, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-info {
    background: #fff;
    padding: 2vw;
  }

  /* line 76, ../sass/layouts/_responsive.scss */
  .content-uneven .column {
    background: #fff;
    margin-bottom: 2vw;
  }
  /* line 77, ../sass/layouts/_responsive.scss */
  .content-uneven .column .single {
    padding: 2vw;
  }
}
/* Tablet and full */
@media all and (min-width: 480px) {
  /* line 89, ../sass/layouts/_responsive.scss */
  h1 {
    font-size: 3em;
  }

  /* line 91, ../sass/layouts/_responsive.scss */
  .page-videos .views-row {
    width: 49%;
  }
  /* line 92, ../sass/layouts/_responsive.scss */
  .page-videos .views-row h2 {
    height: 3em;
  }
  /* line 93, ../sass/layouts/_responsive.scss */
  .page-videos .views-row.views-row-odd {
    float: left;
    clear: both;
  }
  /* line 94, ../sass/layouts/_responsive.scss */
  .page-videos .views-row.views-row-even {
    float: right;
  }

  /* line 99, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-cover {
    width: 30%;
    background: #fff;
    float: left;
    padding: 2vw;
  }
  /* line 100, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-cover img {
    width: 100%;
  }
  /* line 101, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-cover .small-button {
    margin: 1em 2vw 0 0;
  }
  /* line 103, ../sass/layouts/_responsive.scss */
  .page-node.node-type-book .book-info {
    width: 60%;
    background: #fff;
    float: right;
    padding: 2vw;
  }
}
/* Tablet only */
@media all and (min-width: 480px) and (max-width: 959px) {
  /* line 114, ../sass/layouts/_responsive.scss */
  header h1 {
    font-size: 3.5em;
    padding: .2em 0;
  }

  /* line 121, ../sass/layouts/_responsive.scss */
  .content-double .column {
    float: left;
    width: 49%;
  }
  /* line 122, ../sass/layouts/_responsive.scss */
  .content-double .column + .column {
    float: right;
    width: 49%;
  }

  /* line 125, ../sass/layouts/_responsive.scss */
  .content-triple .column {
    float: left;
    width: 49%;
    margin-right: 2%;
  }
  /* line 126, ../sass/layouts/_responsive.scss */
  .content-triple .column + .column {
    width: 49%;
    margin-right: 0;
  }
  /* line 127, ../sass/layouts/_responsive.scss */
  .content-triple .column + .column + .column {
    width: 100%;
    margin-right: 0;
  }
  /* line 128, ../sass/layouts/_responsive.scss */
  .content-triple .column + .column + .column > *:nth-child(odd) {
    float: left;
    width: 45%;
  }
  /* line 129, ../sass/layouts/_responsive.scss */
  .content-triple .column + .column + .column > *:nth-child(even) {
    float: right;
    width: 45%;
  }

  /* line 133, ../sass/layouts/_responsive.scss */
  .page-books .views-row {
    width: 49%;
    background: #fff;
    margin-bottom: 2vw;
  }
  /* line 134, ../sass/layouts/_responsive.scss */
  .page-books .views-row.views-row-odd {
    float: left;
    clear: both;
  }
  /* line 135, ../sass/layouts/_responsive.scss */
  .page-books .views-row.views-row-even {
    float: right;
  }
}
/* Full only */
@media all and (min-width: 960px) {
  /* line 145, ../sass/layouts/_responsive.scss */
  header h1 {
    font-size: 4.5em;
    padding: .2em 0;
  }

  /* line 147, ../sass/layouts/_responsive.scss */
  #navigation {
    background: #fff;
    overflow: hidden;
    margin-bottom: 2vw;
  }
  /* line 149, ../sass/layouts/_responsive.scss */
  #navigation .block h2 {
    display: none;
  }
  /* line 151, ../sass/layouts/_responsive.scss */
  #navigation .block .menu li {
    text-transform: uppercase;
    font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
    line-height: 3em;
  }
  /* line 152, ../sass/layouts/_responsive.scss */
  #navigation .block .menu li a {
    text-decoration: none;
    color: #273974;
    display: block;
  }
  /* line 153, ../sass/layouts/_responsive.scss */
  #navigation .block .menu li a:hover, #navigation .block .menu li a:active, #navigation .block .menu li a.is-active-trail {
    background: url("../images/grey-up.png") no-repeat center bottom;
  }

  /* line 161, ../sass/layouts/_responsive.scss */
  .front #navigation .menu li.first a {
    background: url("../images/grey-up.png") no-repeat center bottom;
  }

  /* line 162, ../sass/layouts/_responsive.scss */
  .section-books #navigation .menu a[href='/books'] {
    background: url("../images/grey-up.png") no-repeat center bottom;
  }

  /* line 163, ../sass/layouts/_responsive.scss */
  .section-blog #navigation .menu a[href='/blog'] {
    background: url("../images/grey-up.png") no-repeat center bottom;
  }

  /* line 164, ../sass/layouts/_responsive.scss */
  .section-videos #navigation .menu a[href='/videos'] {
    background: url("../images/grey-up.png") no-repeat center bottom;
  }

  /* line 165, ../sass/layouts/_responsive.scss */
  .section-articles #navigation .menu a[href='/articles'] {
    background: url("../images/grey-up.png") no-repeat center bottom;
  }

  /* line 166, ../sass/layouts/_responsive.scss */
  .section-commentaries #navigation .menu a[href='/commentaries'] {
    background: url("../images/grey-up.png") no-repeat center bottom;
  }

  /* line 169, ../sass/layouts/_responsive.scss */
  .content-uneven .column {
    float: left;
    width: 66%;
    background: #fff;
  }
  /* line 170, ../sass/layouts/_responsive.scss */
  .content-uneven .column .single {
    padding: 2vw;
  }
  /* line 172, ../sass/layouts/_responsive.scss */
  .content-uneven .column + .column {
    float: right;
    width: 32%;
    background: #fff;
  }

  /* line 178, ../sass/layouts/_responsive.scss */
  .content-triple .column {
    float: left;
    width: 32%;
    margin-right: 2%;
  }
  /* line 179, ../sass/layouts/_responsive.scss */
  .content-triple .column + .column {
    width: 32%;
    margin-right: 2%;
  }
  /* line 180, ../sass/layouts/_responsive.scss */
  .content-triple .column + .column + .column {
    width: 32%;
    margin-right: 0;
  }

  /* line 183, ../sass/layouts/_responsive.scss */
  .one-sidebar .content-full {
    background: transparent;
    padding: 0;
  }
  /* line 184, ../sass/layouts/_responsive.scss */
  .one-sidebar .content-full .single {
    float: left;
    background: #fff;
    padding: 2%;
    width: 62%;
  }
  /* line 185, ../sass/layouts/_responsive.scss */
  .one-sidebar .content-full .column {
    float: right;
    width: 28%;
    background: #fff;
    padding: 2%;
  }

  /* line 190, ../sass/layouts/_responsive.scss */
  .page-blog .content-full .view-blog.view-display-id-page {
    float: left;
    width: 66%;
  }
  /* line 191, ../sass/layouts/_responsive.scss */
  .page-blog .content-full .sidebar {
    float: right;
    width: 32%;
    background: transparent;
    padding: 0;
  }

  /* line 195, ../sass/layouts/_responsive.scss */
  .page-books .views-row {
    width: 32%;
    background: #fff;
    margin-right: 2%;
    float: left;
  }
  /* line 196, ../sass/layouts/_responsive.scss */
  .page-books .views-row:nth-child(3n+3) {
    margin-right: 0;
  }
  /* line 197, ../sass/layouts/_responsive.scss */
  .page-books .views-row:nth-child(3n+1) {
    clear: both;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 39, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 45, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 65, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* The slogan (or tagline) of a website. */
/* line 82, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 87, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 92, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 100, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 104, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
  padding: 0;
}
/* line 110, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 116, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 130, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 134, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 145, ../sass/components/_misc.scss */
.page__title {
  margin: .5em 0;
}

/* line 146, ../sass/components/_misc.scss */
.node__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/* line 152, ../sass/components/_misc.scss */
.block__title {
  margin: 0 0 1em;
}

/**
 * Messages.
 */
/* line 157, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 172, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 181, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 191, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 194, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 199, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 204, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 209, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 214, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 226, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 230, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 238, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 245, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 248, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 251, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 266, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  overflow: hidden;
}
/* line 267, ../sass/components/_misc.scss */
.pager li {
  float: left;
  list-style: none;
  margin: 0 1em 0 0;
}
/* line 268, ../sass/components/_misc.scss */
.pager li a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  display: block;
}
/* line 269, ../sass/components/_misc.scss */
.pager li a:hover {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #fff;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  display: block;
}
/* line 271, ../sass/components/_misc.scss */
.pager li.pager-current {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #fff;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 282, ../sass/components/_misc.scss */
.block {
  margin-bottom: 2vw;
  background: #fff;
  padding: 2vw;
  overflow: hidden;
}
/* line 283, ../sass/components/_misc.scss */
.block .block {
  margin: 0;
  background: transparent;
  padding: 0;
}
/* line 284, ../sass/components/_misc.scss */
.block .block > h2 {
  display: none;
}

/**
 * Menus.
 */
/* line 292, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 299, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 306, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 315, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 324, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 336, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 364, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 369, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 375, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 378, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 385, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 395, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 399, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 406, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 412, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 419, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 426, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 432, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 437, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 443, ../sass/components/_misc.scss */
a.button {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}

/* Password confirmation. */
/* line 448, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 454, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 466, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 472, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 476, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 481, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 489, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 494, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 497, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 501, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 507, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 522, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 527, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 533, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 544, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 555, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 564, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 571, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 583, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 586, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 589, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 598, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 607, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 610, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 616, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1420826251');
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 15, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 34, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 54, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 64, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
/* line 28, ../sass/styles.scss */
body {
  background: #ddd;
}

/* line 29, ../sass/styles.scss */
header {
  background: #273974;
}

/* line 31, ../sass/styles.scss */
ul.tabs {
  margin: .5em 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
/* line 32, ../sass/styles.scss */
ul.tabs li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  margin-right: 1em;
}
/* line 33, ../sass/styles.scss */
ul.tabs li a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 34, ../sass/styles.scss */
ul.tabs li a:hover, ul.tabs li a:active, ul.tabs li a.active {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #fff;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}

/* line 42, ../sass/styles.scss */
.page-node .content-full {
  background: #fff;
  padding: .1% 2%;
}

/* line 43, ../sass/styles.scss */
.page-node.node-type-book .content-full {
  background: transparent;
  padding: 0;
}

/* line 44, ../sass/styles.scss */
.content-triple .single {
  background: #fff;
  padding: 2vw;
  margin-bottom: 2vw;
}

/* line 45, ../sass/styles.scss */
.small-button {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 46, ../sass/styles.scss */
.small-button:hover, .small-button:active {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #ddd;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}

/* TYPES */
/* line 52, ../sass/styles.scss */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
/* line 53, ../sass/styles.scss */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 56, ../sass/styles.scss */
.node-type-video.page-node .column {
  padding: 2vw 0;
}
/* line 57, ../sass/styles.scss */
.node-type-video.page-node .column .single.video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
/* line 58, ../sass/styles.scss */
.node-type-video.page-node .column .single.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* PAGES */
/* line 68, ../sass/styles.scss */
.front .content-triple .column .column {
  width: 100%;
  padding: 2vw;
}
/* line 71, ../sass/styles.scss */
.front .programs {
  margin: 0;
  padding: 0;
}
/* line 72, ../sass/styles.scss */
.front .programs .program {
  list-style: none;
  margin: 0;
  padding: 0 0 1em;
  border-top: 1px solid #ddd;
}
/* line 73, ../sass/styles.scss */
.front .programs .program p {
  margin: 0;
}
/* line 77, ../sass/styles.scss */
.front #block-views-books-block-1 .views-row-odd {
  float: left;
  width: 46%;
}
/* line 78, ../sass/styles.scss */
.front #block-views-books-block-1 .views-row-even {
  float: right;
  width: 46%;
}
/* line 79, ../sass/styles.scss */
.front #block-views-books-block-1 .view-footer {
  clear: both;
  padding-top: 1em;
}
/* line 82, ../sass/styles.scss */
.front #block-views-interest-block p {
  margin: .5em 0;
}
/* line 84, ../sass/styles.scss */
.front .rebalancing-cover {
  width: 46.333%;
  float: left;
}
/* line 85, ../sass/styles.scss */
.front .rebalancing-links {
  width: 46.333%;
  float: right;
  margin: 0;
  padding: 0;
}
/* line 86, ../sass/styles.scss */
.front .rebalancing-links li {
  margin: .5em 0;
  padding: 0;
  list-style: none;
}

/* line 91, ../sass/styles.scss */
.page-search #search-form {
  background: #fff;
  padding: 1vw 2vw 2vw;
}
/* line 93, ../sass/styles.scss */
.page-search #search-form .container-inline .form-item {
  display: block;
}
/* line 94, ../sass/styles.scss */
.page-search #search-form .container-inline #edit-keys {
  font-size: 24px;
  padding: 5px;
}
/* line 95, ../sass/styles.scss */
.page-search #search-form .container-inline label, .page-search #search-form .container-inline div {
  display: block;
}
/* line 98, ../sass/styles.scss */
.page-search .search-results {
  padding: 0;
}
/* line 99, ../sass/styles.scss */
.page-search .search-results .search-result {
  background: #fff;
  margin: 2vw 0;
  padding: 2vw;
}

/* VIEWS */
/* line 107, ../sass/styles.scss */
.views-exposed-form label {
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}

/* line 113, ../sass/styles.scss */
.page-articles .item-list h2,
.page-commentaries .item-list h2 {
  margin: 1em 0 0 0;
}
/* line 115, ../sass/styles.scss */
.page-articles ol,
.page-commentaries ol {
  margin: 0;
  padding: 0;
}
/* line 116, ../sass/styles.scss */
.page-articles ol li,
.page-commentaries ol li {
  margin: .5em 0;
  padding: 0;
  list-style: none;
}
/* line 117, ../sass/styles.scss */
.page-articles ol li p,
.page-commentaries ol li p {
  margin: 0;
  display: inline;
}
/* line 118, ../sass/styles.scss */
.page-articles ol li .small-button,
.page-commentaries ol li .small-button {
  display: inline;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 119, ../sass/styles.scss */
.page-articles ol li .small-button:hover,
.page-commentaries ol li .small-button:hover {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 121, ../sass/styles.scss */
.page-articles ol li .edit-link a,
.page-commentaries ol li .edit-link a {
  display: inline;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 122, ../sass/styles.scss */
.page-articles ol li .edit-link a:hover,
.page-commentaries ol li .edit-link a:hover {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}

/* line 129, ../sass/styles.scss */
.page-beaver .view-sculptures {
  width: 100%;
}
/* line 130, ../sass/styles.scss */
.page-beaver .view-sculptures .sculpture {
  float: left;
  margin-right: 2%;
  margin-bottom: 2vw;
  max-width: 600px;
  padding: 2%;
  background: #fff;
}

/* line 138, ../sass/styles.scss */
.page-blog h1 a {
  text-decoration: none;
}
/* line 139, ../sass/styles.scss */
.page-blog h1 a:hover {
  text-decoration: underline;
}
/* line 142, ../sass/styles.scss */
.page-blog .views-row {
  background: #fff;
  padding: 2vw;
  margin-bottom: 2vw;
}
/* line 144, ../sass/styles.scss */
.page-blog .views-row .blog-category a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 145, ../sass/styles.scss */
.page-blog .views-row .blog-category a:hover, .page-blog .views-row .blog-category a:active {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #ddd;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 149, ../sass/styles.scss */
.page-blog .views-row h2 {
  margin: 1em 0 .5em;
  text-transform: none;
  font-size: 2em;
}
/* line 150, ../sass/styles.scss */
.page-blog .views-row h2 a {
  text-decoration: none;
}
/* line 151, ../sass/styles.scss */
.page-blog .views-row h2 a:hover {
  text-decoration: underline;
}

/* line 157, ../sass/styles.scss */
.section-resume .single.page {
  max-width: 700px;
}

/* line 161, ../sass/styles.scss */
#block-views-blog-block-1 .blog-category a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 162, ../sass/styles.scss */
#block-views-blog-block-1 .blog-category a:hover, #block-views-blog-block-1 .blog-category a:active {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #ddd;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 166, ../sass/styles.scss */
#block-views-blog-block-1 .post {
  margin: .5em 0 1em;
}
/* line 167, ../sass/styles.scss */
#block-views-blog-block-1 .post .post-date {
  font-size: 12px;
  text-transform: uppercase;
}
/* line 169, ../sass/styles.scss */
#block-views-blog-block-1 .post .post-title a {
  text-decoration: none;
}
/* line 170, ../sass/styles.scss */
#block-views-blog-block-1 .post .post-title a:hover {
  text-decoration: underline;
}

/* line 177, ../sass/styles.scss */
.page-node.node-type-post .single.post {
  padding: 2vw;
}
/* line 179, ../sass/styles.scss */
.page-node.node-type-post .single.post .blog-category a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 180, ../sass/styles.scss */
.page-node.node-type-post .single.post .blog-category a:hover, .page-node.node-type-post .single.post .blog-category a:active {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #ddd;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 185, ../sass/styles.scss */
.page-node.node-type-post .sidebar {
  background: transparent;
}

/* line 188, ../sass/styles.scss */
.page-stories .view-stories {
  background: #fff;
  padding: 2%;
}

/* line 192, ../sass/styles.scss */
.page-books .view-books .views-row {
  background: #fff;
  margin-bottom: 2vw;
}
/* line 193, ../sass/styles.scss */
.page-books .view-books .views-row .teaser.book {
  padding: 2vw;
}
/* line 194, ../sass/styles.scss */
.page-books .view-books .views-row .teaser.book img {
  width: 100%;
}
/* line 195, ../sass/styles.scss */
.page-books .view-books .views-row .teaser.book .read-more {
  display: inline;
}
/* line 196, ../sass/styles.scss */
.page-books .view-books .views-row .teaser.book .read-more a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin-right: 2vw;
  margin-bottom: .5em;
}
/* line 197, ../sass/styles.scss */
.page-books .view-books .views-row .teaser.book .read-more a:hover, .page-books .view-books .views-row .teaser.book .read-more a:active {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #ddd;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 201, ../sass/styles.scss */
.page-books .view-books .views-row .teaser.book .small-button {
  margin-right: 2vw;
  margin-bottom: .5em;
}

/* line 207, ../sass/styles.scss */
#per-slide-template {
  margin-top: 1em;
  max-width: 200px;
}
/* line 208, ../sass/styles.scss */
#per-slide-template a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin-right: 1em;
}
/* line 209, ../sass/styles.scss */
#per-slide-template a:hover, #per-slide-template a:active, #per-slide-template a.cycle-pager-active {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #ddd;
  background: #273974;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}

/* line 214, ../sass/styles.scss */
.multiblock {
  max-height: 450px;
}
/* line 215, ../sass/styles.scss */
.multiblock .multiblock-block {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
}
/* line 216, ../sass/styles.scss */
.multiblock .multiblock-block #prev-slide {
  position: absolute;
  top: 40%;
  left: 0;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 217, ../sass/styles.scss */
.multiblock .multiblock-block #next-slide {
  position: absolute;
  top: 40%;
  right: 0;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Varela Round", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #273974;
  background: #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}
/* line 220, ../sass/styles.scss */
.multiblock .multiblock-block .inner-slideshow img {
  margin: 10%;
  max-width: 80%;
}
/* line 222, ../sass/styles.scss */
.multiblock .multiblock-block .view-sculptures {
  height: 100%;
}
/* line 223, ../sass/styles.scss */
.multiblock .multiblock-block .view-sculptures .view-content {
  height: 100%;
}
/* line 224, ../sass/styles.scss */
.multiblock .multiblock-block .view-sculptures .view-footer {
  clear: both;
  position: absolute;
  bottom: 0;
  z-index: 400;
  text-align: center;
  width: 100%;
}
/* line 225, ../sass/styles.scss */
.multiblock .multiblock-block .view-sculptures .view-footer * {
  margin: 0;
}

/* Blog */
/* line 234, ../sass/styles.scss */
#block-mailchimp-signup-subscribe {
  position: relative;
}
/* line 235, ../sass/styles.scss */
#block-mailchimp-signup-subscribe #edit-rss {
  position: absolute;
  top: 0;
  right: 20px;
}
/* line 236, ../sass/styles.scss */
#block-mailchimp-signup-subscribe #edit-rss a {
  display: block;
  background: url("/misc/feed.png");
  width: 16px;
  height: 0;
  padding-top: 16px;
  overflow: hidden;
}

/* .expanding-formatter-summary img {display: none;} */
/* line 242, ../sass/styles.scss */
.expanding-formatter.expanded .expanding-formatter-summary {
  display: none;
}

/* line 245, ../sass/styles.scss */
.composite-list {
  border-bottom: 1px solid #000;
}
/* line 246, ../sass/styles.scss */
.composite-list td {
  vertical-align: top;
  border-right: 1px solid #000;
  width: 50%;
  padding-right: 1em;
}
/* line 247, ../sass/styles.scss */
.composite-list td + td {
  border-right: 0;
}
/* line 248, ../sass/styles.scss */
.composite-list td + td .negative-indent {
  padding-left: 1em;
}

/* line 254, ../sass/styles.scss */
.section-blog .post,
.section-blog .expanding-formatter {
  max-width: 600px;
  height: auto !important;
}

/* line 258, ../sass/styles.scss */
.border-top {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid #000;
}

/* line 259, ../sass/styles.scss */
.negative-indent {
  padding-left: 0;
  margin: 0;
  width: 100%;
}
/* line 260, ../sass/styles.scss */
.negative-indent li {
  list-style: none;
  margin: 0 0 0 1em;
  padding: 0;
  text-indent: -1em;
}

/* line 263, ../sass/styles.scss */
.image-right {
  width: 50%;
  float: right;
  margin: 0 0 1em 1em;
}

/* line 264, ../sass/styles.scss */
.image-left {
  width: 50%;
  float: left;
  margin: 0 1em 1em 0;
}

/* line 266, ../sass/styles.scss */
.footnotes {
  font-size: 12px;
}

/* line 268, ../sass/styles.scss */
h2.inline,
h3.inline {
  display: inline;
  text-transform: none;
  font-size: 24px;
}

/* line 271, ../sass/styles.scss */
h2.inline + p,
h3.inline + p {
  display: inline;
}

/* line 275, ../sass/styles.scss */
dl.comic {
  padding-top: 1em;
  border-top: 1px solid #273974;
  margin-top: 1em;
}
/* line 276, ../sass/styles.scss */
dl.comic dt {
  margin: 1em 0;
}
/* line 277, ../sass/styles.scss */
dl.comic dd {
  margin: 1em 0;
  font-style: italic;
  padding-bottom: 1em;
  border-bottom: 1px solid #273974;
  margin-bottom: 1em;
}
