/*
 * SMACSS + SCSS starter v2.0
 * Inspired by SMACSS http://smacss.com
 * Author: @jonathanpath
 * Date: 11 July 2013
 *
 * https://github.com/jonathanpath/SASS-SMACSS
 * See file structure in http://jonathanpath.com/sass+smacss/scss/style.scss
 * Sass Structure inspired by : https://github.com/sutter/POPY-starter-HTML-SCSS
 *
 * Coding rules : https://github.com/necolas/idiomatic-css
 *
 */
/* Tools */
/*

	@include keyframes(slide-down) {
	  0% { opacity: 1; }
	  90% { opacity: 0; }
	}

	.element {
	  width: 100px;
	  height: 100px;
	  background: black;
	  @include animation('slide-down 5s 3');
	}

*/
/* ===========================
   Tools/Helpers
   =========================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* Show hide touch device
-------------------------*/
.touch .show-touch {
  display: block; }
.touch .hide-touch {
  display: none; }

.no-touch .show-touch {
  display: none; }
.no-touch .hide-touch {
  display: block; }

/* =Wordpress alignment
-------------------*/
.alignleft {
  display: inline;
  float: left; }

.alignright {
  display: inline;
  float: right; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.txtleft {
  text-align: left; }

.txtright {
  text-align: right; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v0.10.4
* Docs at http://davidtheclark.github.io/scut
*/
/* Show / hide helpers */
.mobile-only {
  display: none !important; }
  @media only screen and (max-width: 475px) {
    .mobile-only {
      display: block !important; } }

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

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0; }

/* =======================
   Typography / Base
   ======================= */
/*BODY TEXT*/
.t-body, input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="search"],
textarea, .form-select select, body {
  font-family: "minion-pro", Times, serif;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400; }

.t-h1, h1 {
  font-family: "minion-pro", Times, serif;
  font-weight: normal;
  font-size: 70px;
  font-size: 4.375rem; }

.t-h2, h2 {
  font-family: "minion-pro", Times, serif;
  font-weight: normal;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 600;
  margin: 0;
  padding: 0; }
  @media only screen and (max-width: 740px) {
    .t-h2, h2 {
      font-size: 35px;
      font-size: 2.1875rem; } }

.t-h3, h3, .navigation, .pagination {
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  padding: 0;
  text-transform: uppercase; }

.t-tiny {
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500; }

.t-category-title {
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700; }

.t-date, nav li a {
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500; }

.t-small-italic {
  font-family: "minion-pro", Times, serif;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #595959; }

.t-uppercase-light, .back-btn, .donate-link, #searchsubmit {
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase; }
  @media (max-width: 925px) and (min-width: 740px) {
    .t-uppercase-light, .back-btn, .donate-link, #searchsubmit {
      font-size: 75%; } }

strong {
  font-weight: bold; }

/* ==|====================
   Base/Form
   ======================= */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="search"],
textarea {
  padding: .2em;
  border: 1px solid #b2b2b2;
  outline: 0;
  background-color: white; }
  input[type="text"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="date"]::-webkit-input-placeholder,
  input[type="search"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: black; }
  input[type="text"]:-moz-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="password"]:-moz-placeholder,
  input[type="date"]:-moz-placeholder,
  input[type="search"]:-moz-placeholder,
  textarea:-moz-placeholder {
    color: black; }
  input[type="text"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="date"]:-ms-input-placeholder,
  input[type="search"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: black; }

.form-select {
  border: 1px solid #b2b2b2;
  width: 10em;
  overflow: hidden;
  background: white url("data:image/png;base64,R0lGODlhDwAUAIABAAAAAP///yH5BAEAAAEALAAAAAAPABQAAAIXjI+py+0Po5wH2HsXzmw//lHiSJZmUAAAOw==") no-repeat 95% 50%; }
  .form-select select {
    padding: 0.2em;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none; }
    .form-select select:focus {
      outline: none; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: no-repeat;
  outline: 0;
  position: relative;
  font-weight: normal; }

body, html {
  width: 100%;
  height: 100%; }

body {
  overflow-y: scroll;
  color: #191919; }

a {
  color: black;
  text-decoration: none; }
  a:hover {
    color: black; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #7f7f7f;
  margin: 1em 0;
  padding: 0; }

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

p {
  margin: -0.375em 0 1.875em 0;
  padding-top: 0; }

img {
  max-width: 100%;
  height: auto; }

.navigation {
  color: #ffffff; }

.no-margin-padding {
  margin: 0;
  padding: 0; }

.grey, .back-btn {
  color: #595959; }

.white {
  color: white; }

.green {
  color: #33bbb1; }

.uppercase {
  text-transform: uppercase; }

.season-summer-color, .season-summer .slash {
  color: #00ac9d; }

.season-spring-color, .season-spring .slash {
  color: #ff4c25; }

.season-winter-color, .season-winter .slash {
  color: #004f7d; }

.season-autumn-color, .season-autumn .slash {
  color: #aa5100; }

.back-btn {
  margin-top: 4px;
  background-image: url(../img/back-arrow.png);
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 10px; }

.bg-black {
  background-color: #000000; }

.margin-bottom-small {
  margin-bottom: 1.125em; }

.margin-bottom-medium {
  margin-bottom: 2.5625em; }

.margin-bottom-large {
  margin-bottom: 4.0625em; }

.border {
  border: 1px solid #000000; }

.hide-mobile {
  display: block; }
  @media only screen and (max-width: 740px) {
    .hide-mobile {
      display: none; } }

/*Mobile rules*/
@media only screen and (max-width: 475px) {
  img {
    width: 100%; } }
/*My generic classes*/
.clear:after {
  clear: both;
  content: "";
  display: table; }

.left {
  float: left; }

.right {
  float: right; }

.block {
  display: block !important;
  height: auto !important; }

.thick-top-border {
  border-top: 3px solid #000000; }

.border-top {
  border-top: 2px solid #000000; }

.border-dotted-bottom {
  border-bottom: 1px dotted #000000; }

/* Layout */
/*-----------------------------------*\

  $TOAST-GRID

  An insane grid.
  You'd be mad to use it.

  Usage
  =====

  Assuming default values:

  <div class="grid">
    <div class="grid__col grid__col--1-of-2">
      A half-width column.
    </div>
    <div class="grid__col grid__col--1-of-4 grid__col--pull-1-of-4">
      A quarter, pulled left by its own width. You get this, right?
    </div>
  </div>


  Customisation
  =============

  $grid-namespace and $grid-column-namespace
  adjusts the class names for the grid. With
  default values, grid wrappers have a class
  of '.grid' and columns '.grid__col'.

  $col-groups(n) adjusts column divisions.
  For example, $col-groups(12) will produce
  a 12-column grid. $col-groups(3,6,8)
  will produce a 3-, 6-, and 8-column grid.

  $gutter-width is—you guessed it—the gutter
  width. Accepts any unit.

  That's it. Have fun.

\*-----------------------------------*/
.l-grid {
  list-style: none;
  margin-left: -20px; }
  .l-grid > .l-col--1-of-1, .l-grid > .l-col--2-of-2, .l-grid > .l-col--3-of-3, .l-grid > .l-col--4-of-4, .l-grid > .l-col--5-of-5, .l-grid > .l-col--6-of-6, .l-grid > .l-col--8-of-8, .l-grid > .l-col--12-of-12, .l-grid > .l-col--16-of-16 {
    width: 100%; }
  .l-grid > .l-col--1-of-2, .l-grid > .l-col--2-of-4, .l-grid > .l-col--3-of-6, .l-grid > .l-col--4-of-8, .l-grid > .l-col--6-of-12, .l-grid > .l-col--8-of-16 {
    width: 50%; }
  .l-grid > .l-col--1-of-3, .l-grid > .l-col--2-of-6, .l-grid > .l-col--4-of-12 {
    width: 33.33333%; }
  .l-grid > .l-col--2-of-3, .l-grid > .l-col--4-of-6, .l-grid > .l-col--8-of-12 {
    width: 66.66667%; }
  .l-grid > .l-col--1-of-4, .l-grid > .l-col--2-of-8, .l-grid > .l-col--3-of-12, .l-grid > .l-col--4-of-16 {
    width: 25%; }
  .l-grid > .l-col--3-of-4, .l-grid > .l-col--6-of-8, .l-grid > .l-col--9-of-12, .l-grid > .l-col--12-of-16 {
    width: 75%; }
  .l-grid > .l-col--push-1-of-1, .l-grid > .l-col--push-2-of-2, .l-grid > .l-col--push-3-of-3, .l-grid > .l-col--push-4-of-4, .l-grid > .l-col--push-5-of-5, .l-grid > .l-col--push-6-of-6, .l-grid > .l-col--push-8-of-8, .l-grid > .l-col--push-12-of-12, .l-grid > .l-col--push-16-of-16 {
    margin-left: 100%; }
  .l-grid > .l-col--push-1-of-2, .l-grid > .l-col--push-2-of-4, .l-grid > .l-col--push-3-of-6, .l-grid > .l-col--push-4-of-8, .l-grid > .l-col--push-6-of-12, .l-grid > .l-col--push-8-of-16 {
    margin-left: 50%; }
  .l-grid > .l-col--push-1-of-3, .l-grid > .l-col--push-2-of-6, .l-grid > .l-col--push-4-of-12 {
    margin-left: 33.33333%; }
  .l-grid > .l-col--push-2-of-3, .l-grid > .l-col--push-4-of-6, .l-grid > .l-col--push-8-of-12 {
    margin-left: 66.66667%; }
  .l-grid > .l-col--push-1-of-4, .l-grid > .l-col--push-2-of-8, .l-grid > .l-col--push-3-of-12, .l-grid > .l-col--push-4-of-16 {
    margin-left: 25%; }
  .l-grid > .l-col--push-3-of-4, .l-grid > .l-col--push-6-of-8, .l-grid > .l-col--push-9-of-12, .l-grid > .l-col--push-12-of-16 {
    margin-left: 75%; }
  .l-grid > .l-col--pull-1-of-1, .l-grid > .l-col--pull-2-of-2, .l-grid > .l-col--pull-3-of-3, .l-grid > .l-col--pull-4-of-4, .l-grid > .l-col--pull-5-of-5, .l-grid > .l-col--pull-6-of-6, .l-grid > .l-col--pull-8-of-8, .l-grid > .l-col--pull-12-of-12, .l-grid > .l-col--pull-16-of-16 {
    margin-left: -100%; }
  .l-grid > .l-col--pull-1-of-2, .l-grid > .l-col--pull-2-of-4, .l-grid > .l-col--pull-3-of-6, .l-grid > .l-col--pull-4-of-8, .l-grid > .l-col--pull-6-of-12, .l-grid > .l-col--pull-8-of-16 {
    margin-left: -50%; }
  .l-grid > .l-col--pull-1-of-3, .l-grid > .l-col--pull-2-of-6, .l-grid > .l-col--pull-4-of-12 {
    margin-left: -33.33333%; }
  .l-grid > .l-col--pull-2-of-3, .l-grid > .l-col--pull-4-of-6, .l-grid > .l-col--pull-8-of-12 {
    margin-left: -66.66667%; }
  .l-grid > .l-col--pull-1-of-4, .l-grid > .l-col--pull-2-of-8, .l-grid > .l-col--pull-3-of-12, .l-grid > .l-col--pull-4-of-16 {
    margin-left: -25%; }
  .l-grid > .l-col--pull-3-of-4, .l-grid > .l-col--pull-6-of-8, .l-grid > .l-col--pull-9-of-12, .l-grid > .l-col--pull-12-of-16 {
    margin-left: -75%; }
  .l-grid > .l-col--1-of-5 {
    width: 20%; }
  .l-grid > .l-col--push-1-of-5 {
    margin-left: 20%; }
  .l-grid > .l-col--pull-1-of-5 {
    margin-left: -20%; }
  .l-grid > .l-col--2-of-5 {
    width: 40%; }
  .l-grid > .l-col--push-2-of-5 {
    margin-left: 40%; }
  .l-grid > .l-col--pull-2-of-5 {
    margin-left: -40%; }
  .l-grid > .l-col--3-of-5 {
    width: 60%; }
  .l-grid > .l-col--push-3-of-5 {
    margin-left: 60%; }
  .l-grid > .l-col--pull-3-of-5 {
    margin-left: -60%; }
  .l-grid > .l-col--4-of-5 {
    width: 80%; }
  .l-grid > .l-col--push-4-of-5 {
    margin-left: 80%; }
  .l-grid > .l-col--pull-4-of-5 {
    margin-left: -80%; }
  .l-grid > .l-col--1-of-6 {
    width: 16.66667%; }
  .l-grid > .l-col--push-1-of-6 {
    margin-left: 16.66667%; }
  .l-grid > .l-col--pull-1-of-6 {
    margin-left: -16.66667%; }
  .l-grid > .l-col--5-of-6 {
    width: 83.33333%; }
  .l-grid > .l-col--push-5-of-6 {
    margin-left: 83.33333%; }
  .l-grid > .l-col--pull-5-of-6 {
    margin-left: -83.33333%; }
  .l-grid > .l-col--1-of-8 {
    width: 12.5%; }
  .l-grid > .l-col--push-1-of-8 {
    margin-left: 12.5%; }
  .l-grid > .l-col--pull-1-of-8 {
    margin-left: -12.5%; }
  .l-grid > .l-col--3-of-8 {
    width: 37.5%; }
  .l-grid > .l-col--push-3-of-8 {
    margin-left: 37.5%; }
  .l-grid > .l-col--pull-3-of-8 {
    margin-left: -37.5%; }
  .l-grid > .l-col--5-of-8 {
    width: 62.5%; }
  .l-grid > .l-col--push-5-of-8 {
    margin-left: 62.5%; }
  .l-grid > .l-col--pull-5-of-8 {
    margin-left: -62.5%; }
  .l-grid > .l-col--7-of-8 {
    width: 87.5%; }
  .l-grid > .l-col--push-7-of-8 {
    margin-left: 87.5%; }
  .l-grid > .l-col--pull-7-of-8 {
    margin-left: -87.5%; }
  .l-grid > .l-col--1-of-12 {
    width: 8.33333%; }
  .l-grid > .l-col--push-1-of-12 {
    margin-left: 8.33333%; }
  .l-grid > .l-col--pull-1-of-12 {
    margin-left: -8.33333%; }
  .l-grid > .l-col--2-of-12 {
    width: 16.66667%; }
  .l-grid > .l-col--push-2-of-12 {
    margin-left: 16.66667%; }
  .l-grid > .l-col--pull-2-of-12 {
    margin-left: -16.66667%; }
  .l-grid > .l-col--5-of-12 {
    width: 41.66667%; }
  .l-grid > .l-col--push-5-of-12 {
    margin-left: 41.66667%; }
  .l-grid > .l-col--pull-5-of-12 {
    margin-left: -41.66667%; }
  .l-grid > .l-col--7-of-12 {
    width: 58.33333%; }
  .l-grid > .l-col--push-7-of-12 {
    margin-left: 58.33333%; }
  .l-grid > .l-col--pull-7-of-12 {
    margin-left: -58.33333%; }
  .l-grid > .l-col--10-of-12 {
    width: 83.33333%; }
  .l-grid > .l-col--push-10-of-12 {
    margin-left: 83.33333%; }
  .l-grid > .l-col--pull-10-of-12 {
    margin-left: -83.33333%; }
  .l-grid > .l-col--11-of-12 {
    width: 91.66667%; }
  .l-grid > .l-col--push-11-of-12 {
    margin-left: 91.66667%; }
  .l-grid > .l-col--pull-11-of-12 {
    margin-left: -91.66667%; }
  .l-grid > .l-col--1-of-16 {
    width: 6.25%; }
  .l-grid > .l-col--push-1-of-16 {
    margin-left: 6.25%; }
  .l-grid > .l-col--pull-1-of-16 {
    margin-left: -6.25%; }
  .l-grid > .l-col--2-of-16 {
    width: 12.5%; }
  .l-grid > .l-col--push-2-of-16 {
    margin-left: 12.5%; }
  .l-grid > .l-col--pull-2-of-16 {
    margin-left: -12.5%; }
  .l-grid > .l-col--3-of-16 {
    width: 18.75%; }
  .l-grid > .l-col--push-3-of-16 {
    margin-left: 18.75%; }
  .l-grid > .l-col--pull-3-of-16 {
    margin-left: -18.75%; }
  .l-grid > .l-col--5-of-16 {
    width: 31.25%; }
  .l-grid > .l-col--push-5-of-16 {
    margin-left: 31.25%; }
  .l-grid > .l-col--pull-5-of-16 {
    margin-left: -31.25%; }
  .l-grid > .l-col--6-of-16 {
    width: 37.5%; }
  .l-grid > .l-col--push-6-of-16 {
    margin-left: 37.5%; }
  .l-grid > .l-col--pull-6-of-16 {
    margin-left: -37.5%; }
  .l-grid > .l-col--7-of-16 {
    width: 43.75%; }
  .l-grid > .l-col--push-7-of-16 {
    margin-left: 43.75%; }
  .l-grid > .l-col--pull-7-of-16 {
    margin-left: -43.75%; }
  .l-grid > .l-col--9-of-16 {
    width: 56.25%; }
  .l-grid > .l-col--push-9-of-16 {
    margin-left: 56.25%; }
  .l-grid > .l-col--pull-9-of-16 {
    margin-left: -56.25%; }
  .l-grid > .l-col--10-of-16 {
    width: 62.5%; }
  .l-grid > .l-col--push-10-of-16 {
    margin-left: 62.5%; }
  .l-grid > .l-col--pull-10-of-16 {
    margin-left: -62.5%; }
  .l-grid > .l-col--11-of-16 {
    width: 68.75%; }
  .l-grid > .l-col--push-11-of-16 {
    margin-left: 68.75%; }
  .l-grid > .l-col--pull-11-of-16 {
    margin-left: -68.75%; }
  .l-grid > .l-col--13-of-16 {
    width: 81.25%; }
  .l-grid > .l-col--push-13-of-16 {
    margin-left: 81.25%; }
  .l-grid > .l-col--pull-13-of-16 {
    margin-left: -81.25%; }
  .l-grid > .l-col--14-of-16 {
    width: 87.5%; }
  .l-grid > .l-col--push-14-of-16 {
    margin-left: 87.5%; }
  .l-grid > .l-col--pull-14-of-16 {
    margin-left: -87.5%; }
  .l-grid > .l-col--15-of-16 {
    width: 93.75%; }
  .l-grid > .l-col--push-15-of-16 {
    margin-left: 93.75%; }
  .l-grid > .l-col--pull-15-of-16 {
    margin-left: -93.75%; }
  @media (max-width: 475px) {
    .l-grid {
      margin-left: -5px; } }
  @media (max-width: 740px) and (min-width: 475px) {
    .l-grid {
      margin-left: -10px; } }
  .l-grid .l-col {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
    /*
        @media (max-width: $bp-m) {
          padding-left: $gutter-width-m;
          display: block;
          margin-left: 0;
          margin-right: 0;
          width: auto;
        }*/ }
    @media (max-width: 740px) and (min-width: 475px) {
      .l-grid .l-col {
        padding-left: 10px; }
        .l-grid .l-col[class*="l-col--m-"] {
          display: inline-block;
          margin-right: -.24em; }
        .l-grid .l-col.l-col--m-1-of-1 {
          width: 100%; }
        .l-grid .l-col.l-col--m-1-of-2, .l-grid .l-col.l-col--m-2-of-4 {
          width: 50%; }
        .l-grid .l-col.l-col--m-1-of-3 {
          width: 33.33333%; }
        .l-grid .l-col.l-col--m-2-of-3 {
          width: 66.66667%; }
        .l-grid .l-col.l-col--m-1-of-4 {
          width: 25%; }
        .l-grid .l-col.l-col--m-3-of-4 {
          width: 75%; } }
    @media (max-width: 475px) {
      .l-grid .l-col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: auto;
        padding-left: 5px; }
        .l-grid .l-col[class*="l-col--s-"] {
          display: inline-block;
          margin-right: -.24em; }
        .l-grid .l-col.l-col--s-1-of-2, .l-grid .l-col.l-col--s-2-of-4 {
          width: 50%; }
        .l-grid .l-col.l-col--s-1-of-3 {
          width: 33.33333%; }
        .l-grid .l-col.l-col--s-2-of-3 {
          width: 66.66667%; }
        .l-grid .l-col.l-col--s-1-of-4 {
          width: 25%; }
        .l-grid .l-col.l-col--s-3-of-4 {
          width: 75%; } }
  .l-grid .l-col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .l-grid .l-col--d-first {
    float: left; }
  .l-grid .l-col--d-last {
    float: right; }
  .l-grid.l-grid--no-gutter {
    margin-left: 0;
    width: 100%; }
    .l-grid.l-grid--no-gutter > * {
      padding-left: 0; }
    .l-grid.l-grid--no-gutter .l-col--span-all {
      margin-left: 0;
      width: 100%; }
  .l-grid .l-col--ab {
    vertical-align: bottom; }
  .l-grid .l-col--am {
    vertical-align: middle; }

/* ======================
   Layout/Main
   ======================= */
.l-fluid {
  width: 100%;
  max-width: 1088px;
  margin: 0 auto; }

.l-padding-all {
  padding: 20px; }
  @media only screen and (max-width: 475px) {
    .l-padding-all {
      padding: 5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-padding-all {
      padding: 10px; } }

.l-padding {
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (max-width: 475px) {
    .l-padding {
      padding-left: 5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-padding {
      padding-left: 10px; } }
  @media only screen and (max-width: 475px) {
    .l-padding {
      padding-right: 5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-padding {
      padding-right: 10px; } }

.l-padding-half {
  padding-left: 10px;
  padding-right: 10px; }
  @media only screen and (max-width: 475px) {
    .l-padding-half {
      padding-left: 2.5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-padding-half {
      padding-left: 5px; } }
  @media only screen and (max-width: 475px) {
    .l-padding-half {
      padding-right: 2.5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-padding-half {
      padding-right: 5px; } }

.l-padding-b {
  padding-bottom: 20px; }
  @media only screen and (max-width: 475px) {
    .l-padding-b {
      padding-bottom: 5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-padding-b {
      padding-bottom: 10px; } }

.l-padding-t {
  padding-top: 20px; }
  @media only screen and (max-width: 475px) {
    .l-padding-t {
      padding-top: 5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-padding-t {
      padding-top: 10px; } }

.l-margin-b {
  margin-bottom: 20px; }
  @media only screen and (max-width: 475px) {
    .l-margin-b {
      margin-bottom: 5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-margin-b {
      margin-bottom: 10px; } }

.l-margin-t {
  margin-top: 20px; }
  @media only screen and (max-width: 475px) {
    .l-margin-t {
      margin-top: 5px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-margin-t {
      margin-top: 10px; } }

.l-margin-td {
  margin-top: 40px; }
  @media only screen and (max-width: 475px) {
    .l-margin-td {
      margin-top: 10px; } }
  @media only screen and (min-width: 475px) and (max-width: 740px) {
    .l-margin-td {
      margin-top: 20px; } }

.no-height {
  height: 0 !important; }

/* Vendors */
.b-lazy {
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
  max-width: 100%;
  height: auto;
  opacity: 0; }

.b-lazy.b-loaded {
  opacity: 1; }

.image-wrapper {
  background: #7f7f7f;
  width: 100%; }

.ratio_16-9 {
  padding-bottom: 56.25%;
  height: 0; }

/* Modules */
/*+clearfix {*/
.browserhappy-container:after, .column-right BLOCKQUOTE:after, .column-left BLOCKQUOTE:after, .section-title:after, .block:after, HEADER NAV UL:after, .column-right IMG:after, .column-left IMG:after, FOOTER:after, FOOTER .medium-text:after, FOOTER .col1-2:after, .table-row:after, .coloured-block-container:after, .ninja-forms-form INPUT:after, .ninja-forms-form SELECT:after, .ninja-forms-form TEXTAREA:after, .page-template-tpl-laswap-life-php .main-content:after, .polaroid:after, .large-text:after, .blog-link:after, A.trigger:after, .square:after, .white-popup:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0; }

.browserhappy-container, .column-right BLOCKQUOTE, .column-left BLOCKQUOTE, .section-title, .block, HEADER NAV UL, .column-right IMG, .column-left IMG, FOOTER, FOOTER .medium-text, FOOTER .col1-2, .table-row, .coloured-block-container, .ninja-forms-form INPUT, .ninja-forms-form SELECT, .ninja-forms-form TEXTAREA, .page-template-tpl-laswap-life-php .main-content, .polaroid, .large-text, .blog-link, A.trigger, .square, .white-popup {
  display: inline-block; }

.browserhappy-container, .column-right BLOCKQUOTE, .column-left BLOCKQUOTE, .section-title, .block, HEADER NAV UL, .column-right IMG, .column-left IMG, FOOTER, FOOTER .medium-text, FOOTER .col1-2, .table-row, .coloured-block-container, .ninja-forms-form INPUT, .ninja-forms-form SELECT, .ninja-forms-form TEXTAREA, .page-template-tpl-laswap-life-php .main-content, .polaroid, .large-text, .blog-link, A.trigger, .square, .white-popup {
  /*\*/
  display: block;
  /**/
  height: 1px; }

@media only screen and (max-width: 475px) {
  #comments #wp-social-login-connect-options img {
    width: 40px;
    height: 40px; } }
#comments h3#reply-title {
  display: none;
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px; }
  @media (max-width: 925px) and (min-width: 740px) {
    #comments h3#reply-title {
      font-size: 75%; } }
#comments #wp-social-login-connect-with {
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  font-weight: bold; }
  @media (max-width: 925px) and (min-width: 740px) {
    #comments #wp-social-login-connect-with {
      font-size: 75%; } }
#comments #commentform {
  padding-bottom: 30px; }
#comments p {
  margin: 0 0 20px 0; }
#comments .comment-notes {
  font-family: "minion-pro", Times, serif;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #595959; }
#comments label {
  display: block !important;
  float: left;
  color: #ffffff;
  background-color: #000000;
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  width: 30%;
  padding: 3px 0 3px 8px;
  border: 1px solid #000000; }
  @media (max-width: 925px) and (min-width: 740px) {
    #comments label {
      font-size: 75%; } }
#comments input {
  width: 70%;
  padding: 0px 0 0px 8px; }
#comments textarea#comment {
  width: 100%; }
#comments input#submit {
  background-color: #000000;
  width: 30%;
  color: #ffffff;
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #000000;
  text-align: left;
  padding: 3px 0 2px 8px;
  float: right; }
  @media (max-width: 925px) and (min-width: 740px) {
    #comments input#submit {
      font-size: 75%; } }
  @media only screen and (max-width: 475px) {
    #comments input#submit {
      width: 100%; } }
#comments .comment-list {
  border-top: 2px solid #000000;
  padding-top: 5px;
  display: block;
  width: 100%; }
#comments ol.comment-list {
  list-style-type: none;
  padding: 0; }
  #comments ol.comment-list li {
    margin-top: 5px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #000000; }
    #comments ol.comment-list li .comment-author img {
      display: none; }
  #comments ol.comment-list .fn {
    font-family: "futura-pt", Arial;
    font-weight: normal;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal; }
    @media (max-width: 925px) and (min-width: 740px) {
      #comments ol.comment-list .fn {
        font-size: 75%; } }
  #comments ol.comment-list .says {
    display: none; }
  #comments ol.comment-list .comment-meta.commentmetadata {
    font-family: "minion-pro", Times, serif;
    font-weight: normal;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px; }

@media only screen and (max-width: 740px) {
  .header-container {
    background-color: black; }
    .header-container header .logo {
      background-image: url(../img/fathom-logo-white.png);
      background-repeat: no-repeat;
      width: 133px;
      height: 39px; }
    .header-container header .tagline {
      display: none; }
    .header-container header .header-line2 {
      display: none; }
    .header-container header .l-col--1-of-3.logo-container {
      width: 170px; }
    .header-container header .l-col--2-of-3.icons-containers {
      width: 250px;
      position: absolute;
      top: 0;
      right: 0; } }

header li.mobile-menu-container {
  color: white;
  display: none;
  /*menu-icon.png*/ }
  @media screen and (max-width: 740px) {
    header li.mobile-menu-container {
      display: inline-block;
      color: white; } }

header {
  padding-top: 40px; }
  header .logo {
    display: block;
    width: 250px;
    height: 72px;
    background-image: url(../img/fathom-logo-black.png);
    background-repeat: no-repeat; }
  @media screen and (max-width: 740px) {
    header {
      padding-top: 10px;
      padding-bottom: 5px; } }

@media screen and (max-width: 740px) {
  .navigation-container nav {
    padding-top: 20px;
    width: 100%;
    background-color: #000000; } }

nav ul {
  width: 100%;
  text-align: justify;
  overflow: hidden;
  height: 46px; }
  nav ul:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 0px; }
nav li {
  display: inline-block;
  margin-top: 10px; }
  @media screen and (max-width: 475px) {
    nav li {
      margin-top: 5px; } }
  nav li a {
    color: #ffffff;
    text-transform: uppercase; }
    nav li a:hover {
      color: #ffffff;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
      opacity: 0.7;
      -webkit-backface-visibility: hidden; }
    @media (max-width: 1100px) and (min-width: 925px) {
      nav li a {
        font-size: 92%; } }
    @media (max-width: 925px) and (min-width: 740px) {
      nav li a {
        font-size: 82%; } }
    @media screen and (max-width: 475px) {
      nav li a {
        font-size: 82%; } }
@media screen and (max-width: 740px) {
  nav ul {
    height: auto; }
  nav li {
    display: block; } }
nav .donate-menu {
  display: none; }
  @media screen and (max-width: 740px) {
    nav .donate-menu {
      display: block;
      margin-top: -1em; } }

@media screen and (min-width: 925px) {
  .scroll-to-fixed-fixed ul {
    padding-left: 35px; }
    .scroll-to-fixed-fixed ul:before {
      width: 35px;
      content: " ";
      background-image: url(../img/f-logo.png);
      background-repeat: no-repeat;
      position: absolute;
      left: 0px;
      top: 0px;
      height: 46px; } }
@media screen and (max-width: 740px) {
  .scroll-to-fixed-fixed {
    position: absolute !important; } }

.header-line1, .header-line2 {
  height: 30px;
  width: 65%;
  margin-bottom: 15px; }
  @media (max-width: 1100px) and (min-width: 740px) {
    .header-line1, .header-line2 {
      width: 95%; } }
  @media only screen and (max-width: 475px) {
    .header-line1, .header-line2 {
      width: 100%; } }
  @media only screen and (max-width: 740px) {
    .header-line1, .header-line2 {
      width: 100%; } }

.donate-link, .search-container {
  width: 48%; }

@media (max-width: 1100px) and (min-width: 740px) {
  .donate-link {
    width: 40%; } }

@media (max-width: 1100px) and (min-width: 740px) {
  .search-container {
    width: 55%; } }

.donate-link {
  padding: 3px 0 2px 8px;
  display: inline-block; }
  .donate-link span {
    padding-right: 10px;
    background-image: url(../img/white-arrow.png);
    background-repeat: no-repeat;
    background-position: center right; }
  .donate-link:hover {
    color: white;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-backface-visibility: hidden; }

.full-width {
  width: 100%; }

.search-container {
  background-color: #E5E5E5; }

#search-input {
  width: 133px;
  border: 0px solid #ffffff;
  margin: 0px;
  padding: 0px;
  background-color: #E5E5E5;
  height: 23px; }

#searchsubmit {
  float: right;
  width: 77px;
  height: 23px;
  padding: 0;
  margin: 0;
  background-color: #000000;
  color: #ffffff;
  border: 0px;
  background-image: url(../img/white-arrow-search.png);
  background-repeat: no-repeat;
  background-position: center right; }
  #searchsubmit:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-backface-visibility: hidden; }

.tagline {
top: -10px;width: calc(100% - 80px); line-height: 1.2;}

.header-icons li {
  display: inline-block; }
  .header-icons li a {
    width: 30px;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    background-position: center; }
    .header-icons li a:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
      opacity: 0.5;
      -webkit-backface-visibility: hidden; }
  .header-icons li a.twitter {
    background-image: url(../img/twitter.png); }
  .header-icons li a.facebook {
    background-image: url(../img/facebook.png); }
  .header-icons li a.mobile-menu {
    width: 40px;
    background-image: url(../img/menu-icon.png); }
@media only screen and (max-width: 740px) {
  .header-icons {
    margin-right: 20px; }
    .header-icons li a.twitter {
      background-image: url(../img/twitter-white.png); }
    .header-icons li a.facebook {
      background-image: url(../img/facebook-white.png); } }

.breadcrumb-block {
  width: 100%;
  margin-top: 10px;
  padding-bottom: 40px;
  font-family: "futura-pt", Arial;
  font-weight: normal;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #595959; }
  .breadcrumb-block a {
    color: #595959; }
  @media only screen and (max-width: 475px) {
    .breadcrumb-block {
      padding-bottom: 0px; } }
  @media only screen and (max-width: 475px) {
    .breadcrumb-block .breadcrumbs {
      display: none !important; } }

footer {
  padding: 3px 0 100px 0;
  margin-top: 50px;
  border-top: 2px solid #000000; }
  @media screen and (max-width: 475px) {
    footer {
      margin-top: 20px; } }
  footer .bicom-footer-logo {
    background-image: url(../img/bicom-footer-logo.png);
    background-repeat: no-repeat;
    background-position: center right;
    padding-right: 40px;
    font-weight: 700;
    font-family: "Helvetica Neue", "HelveticaNeue-Light", "Helvetica Neue Light",  Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px;
    font-size: 0.8125rem; }
  footer .menu-footer-container {
    margin-left: 40px; }
    @media screen and (max-width: 475px) {
      footer .menu-footer-container {
        margin-left: 10px; } }
  footer li {
    display: inline-block;
    margin: 0 0px 0 0px; }
  footer li a {
    font-family: "futura-pt", Arial;
    font-weight: normal;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase; }
    @media (max-width: 925px) and (min-width: 740px) {
      footer li a {
        font-size: 75%; } }
    footer li a:after {
      content: "\0000a0"; }
    @media screen and (max-width: 475px) {
      footer li a {
        font-size: 11px;
        font-size: 0.6875rem; } }
  footer li:after {
    content: "\0000a0|\0000a0"; }
  footer li:last-child:after {
    content: ""; }
  footer .credit {
    font-family: "Helvetica Neue",  Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 13px;
    font-size: 0.8125rem; }
    @media screen and (max-width: 475px) {
      footer .credit {
        margin-top: 4px;
        float: left;
        display: block; } }

.mobile-primary-navigation-in-footer {
  display: none !important;
  border-top: 2px solid #000000;
  padding-top: 5px;
  margin-top: 10px;
  border-bottom: 1px dotted #000000;
  padding-bottom: 10px;
  margin-bottom: 10px; }
  @media screen and (max-width: 475px) {
    .mobile-primary-navigation-in-footer {
      display: block !important; }
      .mobile-primary-navigation-in-footer li {
        display: inline-block;
        width: 32%; }
        .mobile-primary-navigation-in-footer li a {
          color: #000000;
          text-transform: uppercase;
          margin-left: 10px;
          font-family: "futura-pt", Arial;
          font-weight: normal;
          font-size: 12px;
          font-size: 0.75rem;
          font-weight: 500;
          text-transform: uppercase; }
          .mobile-primary-navigation-in-footer li a:hover {
            color: #000000;
            filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
            opacity: 0.7;
            -webkit-backface-visibility: hidden; } }

/*post block*/
.issue {
  margin-bottom: 20px; }

.issue-number {
  font-weight: normal; }

.post-block {
  margin-bottom: 20px; }
  .post-block:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-backface-visibility: hidden; }
  .post-block .img {
    border-top: 2px solid #000000;
    padding-bottom: 20px;
    border-bottom: 2px solid #000000; }
  .post-block .img {
    width: 100%;
    padding-bottom: 68.5%;
    background-size: contain;
    background-position: top left; }
  .post-block h3 {
    margin-bottom: 10px; }
  .post-block .read-more {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px dotted #000000; }
    .post-block .read-more .t-uppercase-light, .post-block .read-more .back-btn, .post-block .read-more .donate-link, .post-block .read-more #searchsubmit {
      padding-top: 4px; }
    @media only screen and (max-width: 475px) {
      .post-block .read-more {
        position: relative;
        margin-top: 15px; } }
  .post-block .inner-container {
    height: 475px;
    display: block;
    width: 100%; }
    @media only screen and (max-width: 475px) {
      .post-block .inner-container {
        height: auto; } }

.pagination {
  margin-top: 20px;
  text-align: center; }
  .pagination .bt-load-more-posts {
    color: #33bbb1;
    font-weight: bold; }
    .pagination .bt-load-more-posts:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
      opacity: 0.5;
      -webkit-backface-visibility: hidden; }
  .pagination .page-numbers {
    display: none; }

/*Side box*/
.side-box {
  border-top: 2px solid #000000;
  padding-top: 8px;
  width: 100%; }
  .side-box iframe {
    width: 100% !important;
    min-height: 322px; }
  .side-box .options {
    margin-top: -10px; }
    .side-box .options a {
      display: block;
      padding: 13px 0 13px 40px;
      background-repeat: no-repeat;
      background-position: left center; }
      .side-box .options a:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
        opacity: 0.5;
        -webkit-backface-visibility: hidden; }
    .side-box .options .option-comment {
      background-image: url("../img/icons/icon-comment.png"); }
    .side-box .options .option-tweet {
      background-image: url("../img/icons/icon-twitter.png"); }
    .side-box .options .option-facebook {
      background-image: url("../img/icons/icon-facebook.png"); }
    .side-box .options .option-email {
      background-image: url("../img/icons/icon-email.png"); }
    .side-box .options .option-pocket {
      background-image: url("../img/icons/icon-pocket.png"); }
    .side-box .options .option-kindle {
      background-image: url("../img/icons/icon-kindle.png"); }
    .side-box .options .option-print {
      background-image: url("../img/icons/icon-print.png"); }
  .side-box .side-box-title {
    margin-bottom: 21px;
    border-bottom: dotted 1px #000000; }
  .side-box .related-story-block {
    min-height: 20px;
    margin-bottom: 20px;
    display: block;
    margin-top: 24px; }
    .side-box .related-story-block:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
      opacity: 0.8;
      -webkit-backface-visibility: hidden; }
    @media only screen and (max-width: 475px) {
      .side-box .related-story-block .read-more .right {
        float: left;
        display: block;
        width: 100%; } }
    .side-box .related-story-block h3 {
      margin: 0 0 0px 0; }
    @media only screen and (max-width: 475px) {
      .side-box .related-story-block {
        border-top: 0px solid #000000;
        margin-bottom: 40px; } }
    @media only screen and (max-width: 475px) {
      .side-box .related-story-block .border-top {
        border-top: 0px solid #000000; } }
    .side-box .related-story-block .related-text {
      height: 160px;
      border-bottom: 1px dotted #000000;
      width: 53%;
      			/*@media (max-width: $bp-b) and (min-width: $bp-m){
              		height: auto;
              		padding-bottom: 25px;
              		border-bottom: 0px dotted #000000;
          		}*/
    		/*@media only screen and (max-width: $bp-s){
    			border-bottom: 0px dotted #000000;
    			width: 65%;
				float: none;
				display: block;
				height: auto!important;
    		}*/ }
      @media only screen and (max-width: 925px) {
        .side-box .related-story-block .related-text {
          height: auto;
          padding-bottom: 25px;
          border-bottom: 0px dotted #000000; } }
      .side-box .related-story-block .related-text .read-more {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        color: #33bbb1; }
        .side-box .related-story-block .related-text .read-more .t-uppercase-light, .side-box .related-story-block .related-text .read-more .back-btn, .side-box .related-story-block .related-text .read-more .donate-link, .side-box .related-story-block .related-text .read-more #searchsubmit {
          padding-top: 4px; }
        @media only screen and (max-width: 475px) {
          .side-box .related-story-block .related-text .read-more {
            bottom: -25px; } }
    .side-box .related-story-block .related-image {
      width: 42%;
      		/*@media only screen and (max-width: $bp-s){
      		width: 65%;
      		float: none;
      		display: block;
          	}*/ }

.side-box-title.large {
  height: 80px; }

.side-box.options-container h3 {
  margin-bottom: 24px; }

.side-box.advert {
  padding-top: 0px;
  margin-bottom: 44px; }

/*Read more read less*/
.bt-readmore {
  width: 100%;
  display: block;
  border-bottom: dotted 1px #000000;
  margin-bottom: 10px;
  padding-bottom: 15px; }
  .bt-readmore:hover {
    color: #595959;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    -webkit-backface-visibility: hidden; }
  .bt-readmore .show-less {
    display: none; }
  .bt-readmore .show-more {
    display: block; }
  .bt-readmore .more-arrow {
    display: inline-block;
    content: " ";
    width: 12px;
    height: 10px;
    background-image: url(../img/more-arrow.png);
    background-repeat: no-repeat;
    background-position: center right; }
  .bt-readmore .less-arrow {
    display: inline-block;
    content: " ";
    width: 12px;
    height: 10px;
    background-image: url(../img/less-arrow.png);
    background-repeat: no-repeat;
    background-position: center right; }

.bt-readmore.open .show-less {
  display: block; }
.bt-readmore.open .show-more {
  display: none; }

.read-more-content {
  display: none; }

/*single-left-column*/
@media only screen and (max-width: 475px) {
  .single-left-column {
    display: none !important;
    background-color: red; } }
@media (max-width: 740px) and (min-width: 475px) {
  .single-left-column img {
    width: 100%;
    display: block; } }

/*previous issue content*/
/*About us*/
.about-us-container .side-box, .previous-issue-content .side-box {
  border-top: 2px solid #000000;
  padding-top: 8px;
  width: 100%; }
  .about-us-container .side-box .side-box-title, .previous-issue-content .side-box .side-box-title {
    margin-bottom: 10px;
    border-bottom: dotted 0px #000000; }
  .about-us-container .side-box .team-group-title, .previous-issue-content .side-box .team-group-title {
    width: 100%;
    margin-bottom: 40px; }
  .about-us-container .side-box .team-group-container, .previous-issue-content .side-box .team-group-container {
    margin-bottom: 10px;
    border-bottom: dotted 1px #000000; }

/*Contributors*/
.contributors-block {
  padding-bottom: 4px;
  display: block; }
  .contributors-block:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    -webkit-backface-visibility: hidden; }

@media (max-width: 925px) and (min-width: 740px) {
  .contributors .l-col--1-of-6 {
    width: auto; } }

.dotted-border {
  border-bottom: dotted 1px #000000; }

/*Search*/
.search-block {
  border-bottom: dotted 1px #000000;
  padding-bottom: 20px;
  margin-bottom: 20px; }
  .search-block .t-h3, .search-block h3, .search-block .navigation, .search-block .pagination {
    margin-bottom: 10px;
    margin-top: 10px; }
  .search-block .search-read-more {
    margin-top: 15px; }
  .search-block:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: 0.6;
    -webkit-backface-visibility: hidden; }

/*single.php*/
.single-title {
  padding-top: 8px; }
  .single-title h3 {
    margin-bottom: 0px; }

.the-title h2 {
  margin-bottom: 40px; }
  @media only screen and (max-width: 740px) {
    .the-title h2 {
      margin-bottom: 20px; } }

.top-image img {
  max-width: 100%;
  height: auto; }

@media only screen and (max-width: 475px) {
  .top-image.border-top {
    border-top: 0px solid #000000; } }

.show-mobile {
  display: none; }
  @media only screen and (max-width: 475px) {
    .show-mobile {
      display: block !important; } }

@media only screen and (max-width: 475px) {
  .post-block .read-more .right {
    display: block;
    float: left;
    width: 100%; } }

#bicomDonationVis label, #bicomDonationVis input {
  margin-bottom: 10px; }
#bicomDonationVis label {
  width: 50%;
  float: left; }

#bicomDonationVis input, #bicomDonation input {
  float: left;
  width: 50%;
  margin-top: 5px; }

#bicomDonationVis input[type='submit'], #bicomDonation input[type='submit'] {
  margin-top: 10px;
  float: right;
  width: 50%; }

/*	@media only screen and (min-width : 1200px) {
		right:auto;
		left:50%;
		margin-left:600px;
	}

	@media only screen and (max-width : 1060px) {

		display: none;
	}
	        @media screen and (max-width:$bp-s)
            {
                height:300px;
            }


@media screen and (max-width: 800px) {

    .site-credit {
        display: block;
        width: 100%;
    }

}*/
.main-text-content div:has(> img) {
  border: 1px solid #ff0000; }

.right-column .right-column-container {
  width: 82%;
  float: right; }
  @media (max-width: 925px) and (min-width: 740px) {
    .right-column .right-column-container {
      width: 100%; } }
  @media (max-width: 740px) {
    .right-column .right-column-container {
      display: none; } }

.right-column .side-box {
  margin-bottom: 44px; }
  .right-column .side-box a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-backface-visibility: hidden; }
.right-column .side-box h3 {
  padding-bottom: 43px;
  border-bottom: 1px dotted #000000;
  margin-bottom: 12px; }
.right-column .side-box .video iframe {
  width: 100%;
  height: 218px; }
.right-column .archive-container {
  padding-bottom: 20px;
  border-bottom: 1px dotted #000000;
  margin-bottom: 12px; }
.right-column .archive-image {
  width: 35%;
  height: auto; }
.right-column .archive-text {
  width: 60%; }
.right-column .uppercase {
  margin-top: -3px; }
.right-column .israel-eye {
  margin-bottom: 10px; }
  .right-column .israel-eye .t-small-italic {
    font-size: 14px; }

/*Sign up to Newsletter*/
.signup-newsletter input.newsletter-email {
  width: 67%;
  color: #000000;
  padding: 4px; }
.signup-newsletter input.newsletter-button {
  width: 30%;
  color: #ffffff;
  background-color: #000000;
  border: 2px solid #000000;
  padding: 4px; }

/*Sidebar*/
.popular-posts li {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border-bottom: dotted 1px #000000;
  padding-bottom: 15px; }
.popular-posts img {
  float: left;
  display: block;
  width: 35%; }
.popular-posts a {
  display: block;
  float: right;
  width: 60%; }

.selected-archive-block {
  display: block; }

@media print {
  .print-hide {
    border: 1px solid #ff0000;
    display: none !important; }

  .top-image {
    border-top: 0px solid #ffffff; }

  .top-image span {
    display: block;
    width: 50%; } }
/* lists & repeated elememts */
/* Pages */

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