/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
/*
 * Normalization
 */
@import url(../bower_components/unslider/dist/css/unslider.css);
@import url(../bower_components/unslider/dist/css/unslider-dots.css);
:root {
  text-size-adjust: 100%; }

audio:not([controls]) {
  display: none; }

details {
  display: block; }

input[type="number"] {
  width: auto; }

input[type="search"] {
  -webkit-appearance: textfield; }
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

main {
  display: block; }

summary {
  display: block; }

pre {
  overflow: auto; }

progress {
  display: inline-block; }

small {
  font-size: 75%; }

template {
  display: none; }

textarea {
  overflow: auto; }

[hidden] {
  display: none; }

[unselectable] {
  user-select: none; }

/*
 * Universal inheritance
 */
*,
::after,
::before {
  box-sizing: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: inherit;
  vertical-align: inherit; }

/*
 * Opinionated defaults
 */
*,
*::before,
*::after {
  border-style: solid;
  border-width: 0; }

* {
  margin: 0;
  padding: 0; }

:root {
  box-sizing: border-box;
  cursor: default;
  font-family: sans-serif;
  line-height: 1.5em;
  text-rendering: optimizeLegibility;
  vertical-align: top; }

* {
  cursor: inherit; }

a,
button,
input,
select,
textarea {
  cursor: initial; }

button,
input,
select,
textarea {
  background: transparent; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; }

input {
  min-height: 1.5em; }

nav ol,
nav ul {
  list-style: none; }

select {
  -moz-appearance: none;
  -webkit-appearance: none; }
  select::-ms-expand {
    display: none; }
  select::-ms-value {
    color: currentColor; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

textarea {
  resize: vertical; }

::selection {
  background-color: #B3D4FC;
  text-shadow: none; }

@media screen {
  [hidden~="screen"] {
    display: inherit; }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    clip: rect(0 0 0 0) !important;
    position: absolute !important; } }

/* -----------------------------------------------

Andy.SCSS: Open-Source Collection of Useful SASS Mixins Library.

URL: http://gillesbertaux.com/andy

By: Gilles Bertaux | http://gillesbertaux.com | @gillesbertaux

The purpose of Andy is to gather useful mixins and avoid endless research or heavy framework use. Feel free to fork it on Github and add your own mixins: https://github.com/gillesbertaux/andy

Mixins available:
  - Background Gradient
  - Background Size
  - Borders
  - Border Corners
  - Box Sizing
  - Center Block
  - Centering Block: Horizontal, Vertical, Both
  - Clearfix
  - Div Outline
  - Font Face
  - Hardware Acceleration
  - Hover
  - Image Retina
  - Line-Height
  - Media Queries
  - Opacity
  - Opacity Black
  - Opacity White
  - Position
  - Radius
  - Scale
  - Shadows
  - Size
  - Text Shadow
  - TranslateX
  - TranslateY
  - Transitions

 ----------------------------------------------- */
/* BACKGROUND GRADIENTS */
/* BACKGROUND SIZE */
/* BORDER */
/* BORDER CORNERS */
/* BOX SIZING */
/* CENTER BLOCK */
/* CENTERING BLOCKS ELEMENTS, HORIZONTAL, VERTICAL, BOTH */
/* CLEARFIX */
/* DIV OUTLINE */
/* FONT FACES */
/* FONT SIZE */
/* HARDWARE ACCELERATION */
/* HOVER */
/* IMAGE RETINA */
/* LINE HEIGHT */
/* MEDIA QUERIES */
/* OPACITY */
/* BLACK / WHITE OPACITY */
/* POSITION */
/* RADIUS */
/* SCALE */
/* SHADOWS */
/* SIZE */
/* TEXT SHADOW */
/* TRANSLATE X */
/* TRANSLATE Y */
/* TRANSITION SCALEDOWN */
@keyframes scaleDown {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes scaleDown {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

/* TRANSITION SCALE UP HOVER */
@keyframes scaleUp {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes scaleUp {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

/* TRANSITION FADEIN */
@keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }

/* TRANSITION SLIDEINDOWN */
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 1; } }

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 1; } }

/* TRANSITION SLIDEINUP */
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 1; } }

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 1; } }

/* TRANSITION SLIDEINRIGHT */
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 1; } }

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 1; } }

/* TRANSITION SLIDEINLEFT */
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 1; } }

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; }
  75% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 1; } }

.materialize-red.lighten-5 {
  background-color: #fdeaeb !important; }

.materialize-red-text.text-lighten-5 {
  color: #fdeaeb !important; }

.materialize-red.lighten-4 {
  background-color: #f8c1c3 !important; }

.materialize-red-text.text-lighten-4 {
  color: #f8c1c3 !important; }

.materialize-red.lighten-3 {
  background-color: #f3989b !important; }

.materialize-red-text.text-lighten-3 {
  color: #f3989b !important; }

.materialize-red.lighten-2 {
  background-color: #ee6e73 !important; }

.materialize-red-text.text-lighten-2 {
  color: #ee6e73 !important; }

.materialize-red.lighten-1 {
  background-color: #ea454b !important; }

.materialize-red-text.text-lighten-1 {
  color: #ea454b !important; }

.materialize-red {
  background-color: #e51c23 !important; }

.materialize-red-text {
  color: #e51c23 !important; }

.materialize-red.darken-1 {
  background-color: #d0181e !important; }

.materialize-red-text.text-darken-1 {
  color: #d0181e !important; }

.materialize-red.darken-2 {
  background-color: #b9151b !important; }

.materialize-red-text.text-darken-2 {
  color: #b9151b !important; }

.materialize-red.darken-3 {
  background-color: #a21318 !important; }

.materialize-red-text.text-darken-3 {
  color: #a21318 !important; }

.materialize-red.darken-4 {
  background-color: #8b1014 !important; }

.materialize-red-text.text-darken-4 {
  color: #8b1014 !important; }

.red.lighten-5 {
  background-color: #FFEBEE !important; }

.red-text.text-lighten-5 {
  color: #FFEBEE !important; }

.red.lighten-4 {
  background-color: #FFCDD2 !important; }

.red-text.text-lighten-4 {
  color: #FFCDD2 !important; }

.red.lighten-3 {
  background-color: #EF9A9A !important; }

.red-text.text-lighten-3 {
  color: #EF9A9A !important; }

.red.lighten-2 {
  background-color: #E57373 !important; }

.red-text.text-lighten-2 {
  color: #E57373 !important; }

.red.lighten-1 {
  background-color: #EF5350 !important; }

.red-text.text-lighten-1 {
  color: #EF5350 !important; }

.red {
  background-color: #F44336 !important; }

.red-text {
  color: #F44336 !important; }

.red.darken-1 {
  background-color: #E53935 !important; }

.red-text.text-darken-1 {
  color: #E53935 !important; }

.red.darken-2 {
  background-color: #D32F2F !important; }

.red-text.text-darken-2 {
  color: #D32F2F !important; }

.red.darken-3 {
  background-color: #C62828 !important; }

.red-text.text-darken-3 {
  color: #C62828 !important; }

.red.darken-4 {
  background-color: #B71C1C !important; }

.red-text.text-darken-4 {
  color: #B71C1C !important; }

.red.accent-1 {
  background-color: #FF8A80 !important; }

.red-text.text-accent-1 {
  color: #FF8A80 !important; }

.red.accent-2 {
  background-color: #FF5252 !important; }

.red-text.text-accent-2 {
  color: #FF5252 !important; }

.red.accent-3 {
  background-color: #FF1744 !important; }

.red-text.text-accent-3 {
  color: #FF1744 !important; }

.red.accent-4 {
  background-color: #D50000 !important; }

.red-text.text-accent-4 {
  color: #D50000 !important; }

.pink.lighten-5 {
  background-color: #fce4ec !important; }

.pink-text.text-lighten-5 {
  color: #fce4ec !important; }

.pink.lighten-4 {
  background-color: #f8bbd0 !important; }

.pink-text.text-lighten-4 {
  color: #f8bbd0 !important; }

.pink.lighten-3 {
  background-color: #f48fb1 !important; }

.pink-text.text-lighten-3 {
  color: #f48fb1 !important; }

.pink.lighten-2 {
  background-color: #f06292 !important; }

.pink-text.text-lighten-2 {
  color: #f06292 !important; }

.pink.lighten-1 {
  background-color: #ec407a !important; }

.pink-text.text-lighten-1 {
  color: #ec407a !important; }

.pink {
  background-color: #e91e63 !important; }

.pink-text {
  color: #e91e63 !important; }

.pink.darken-1 {
  background-color: #d81b60 !important; }

.pink-text.text-darken-1 {
  color: #d81b60 !important; }

.pink.darken-2 {
  background-color: #c2185b !important; }

.pink-text.text-darken-2 {
  color: #c2185b !important; }

.pink.darken-3 {
  background-color: #ad1457 !important; }

.pink-text.text-darken-3 {
  color: #ad1457 !important; }

.pink.darken-4 {
  background-color: #880e4f !important; }

.pink-text.text-darken-4 {
  color: #880e4f !important; }

.pink.accent-1 {
  background-color: #ff80ab !important; }

.pink-text.text-accent-1 {
  color: #ff80ab !important; }

.pink.accent-2 {
  background-color: #ff4081 !important; }

.pink-text.text-accent-2 {
  color: #ff4081 !important; }

.pink.accent-3 {
  background-color: #f50057 !important; }

.pink-text.text-accent-3 {
  color: #f50057 !important; }

.pink.accent-4 {
  background-color: #c51162 !important; }

.pink-text.text-accent-4 {
  color: #c51162 !important; }

.purple.lighten-5 {
  background-color: #f3e5f5 !important; }

.purple-text.text-lighten-5 {
  color: #f3e5f5 !important; }

.purple.lighten-4 {
  background-color: #e1bee7 !important; }

.purple-text.text-lighten-4 {
  color: #e1bee7 !important; }

.purple.lighten-3 {
  background-color: #ce93d8 !important; }

.purple-text.text-lighten-3 {
  color: #ce93d8 !important; }

.purple.lighten-2 {
  background-color: #ba68c8 !important; }

.purple-text.text-lighten-2 {
  color: #ba68c8 !important; }

.purple.lighten-1 {
  background-color: #ab47bc !important; }

.purple-text.text-lighten-1 {
  color: #ab47bc !important; }

.purple {
  background-color: #9c27b0 !important; }

.purple-text {
  color: #9c27b0 !important; }

.purple.darken-1 {
  background-color: #8e24aa !important; }

.purple-text.text-darken-1 {
  color: #8e24aa !important; }

.purple.darken-2 {
  background-color: #7b1fa2 !important; }

.purple-text.text-darken-2 {
  color: #7b1fa2 !important; }

.purple.darken-3 {
  background-color: #6a1b9a !important; }

.purple-text.text-darken-3 {
  color: #6a1b9a !important; }

.purple.darken-4 {
  background-color: #4a148c !important; }

.purple-text.text-darken-4 {
  color: #4a148c !important; }

.purple.accent-1 {
  background-color: #ea80fc !important; }

.purple-text.text-accent-1 {
  color: #ea80fc !important; }

.purple.accent-2 {
  background-color: #e040fb !important; }

.purple-text.text-accent-2 {
  color: #e040fb !important; }

.purple.accent-3 {
  background-color: #d500f9 !important; }

.purple-text.text-accent-3 {
  color: #d500f9 !important; }

.purple.accent-4 {
  background-color: #aa00ff !important; }

.purple-text.text-accent-4 {
  color: #aa00ff !important; }

.deep-purple.lighten-5 {
  background-color: #ede7f6 !important; }

.deep-purple-text.text-lighten-5 {
  color: #ede7f6 !important; }

.deep-purple.lighten-4 {
  background-color: #d1c4e9 !important; }

.deep-purple-text.text-lighten-4 {
  color: #d1c4e9 !important; }

.deep-purple.lighten-3 {
  background-color: #b39ddb !important; }

.deep-purple-text.text-lighten-3 {
  color: #b39ddb !important; }

.deep-purple.lighten-2 {
  background-color: #9575cd !important; }

.deep-purple-text.text-lighten-2 {
  color: #9575cd !important; }

.deep-purple.lighten-1 {
  background-color: #7e57c2 !important; }

.deep-purple-text.text-lighten-1 {
  color: #7e57c2 !important; }

.deep-purple {
  background-color: #673ab7 !important; }

.deep-purple-text {
  color: #673ab7 !important; }

.deep-purple.darken-1 {
  background-color: #5e35b1 !important; }

.deep-purple-text.text-darken-1 {
  color: #5e35b1 !important; }

.deep-purple.darken-2 {
  background-color: #512da8 !important; }

.deep-purple-text.text-darken-2 {
  color: #512da8 !important; }

.deep-purple.darken-3 {
  background-color: #4527a0 !important; }

.deep-purple-text.text-darken-3 {
  color: #4527a0 !important; }

.deep-purple.darken-4 {
  background-color: #311b92 !important; }

.deep-purple-text.text-darken-4 {
  color: #311b92 !important; }

.deep-purple.accent-1 {
  background-color: #b388ff !important; }

.deep-purple-text.text-accent-1 {
  color: #b388ff !important; }

.deep-purple.accent-2 {
  background-color: #7c4dff !important; }

.deep-purple-text.text-accent-2 {
  color: #7c4dff !important; }

.deep-purple.accent-3 {
  background-color: #651fff !important; }

.deep-purple-text.text-accent-3 {
  color: #651fff !important; }

.deep-purple.accent-4 {
  background-color: #6200ea !important; }

.deep-purple-text.text-accent-4 {
  color: #6200ea !important; }

.indigo.lighten-5 {
  background-color: #e8eaf6 !important; }

.indigo-text.text-lighten-5 {
  color: #e8eaf6 !important; }

.indigo.lighten-4 {
  background-color: #c5cae9 !important; }

.indigo-text.text-lighten-4 {
  color: #c5cae9 !important; }

.indigo.lighten-3 {
  background-color: #9fa8da !important; }

.indigo-text.text-lighten-3 {
  color: #9fa8da !important; }

.indigo.lighten-2 {
  background-color: #7986cb !important; }

.indigo-text.text-lighten-2 {
  color: #7986cb !important; }

.indigo.lighten-1 {
  background-color: #5c6bc0 !important; }

.indigo-text.text-lighten-1 {
  color: #5c6bc0 !important; }

.indigo {
  background-color: #3f51b5 !important; }

.indigo-text {
  color: #3f51b5 !important; }

.indigo.darken-1 {
  background-color: #3949ab !important; }

.indigo-text.text-darken-1 {
  color: #3949ab !important; }

.indigo.darken-2 {
  background-color: #303f9f !important; }

.indigo-text.text-darken-2 {
  color: #303f9f !important; }

.indigo.darken-3 {
  background-color: #283593 !important; }

.indigo-text.text-darken-3 {
  color: #283593 !important; }

.indigo.darken-4 {
  background-color: #1a237e !important; }

.indigo-text.text-darken-4 {
  color: #1a237e !important; }

.indigo.accent-1 {
  background-color: #8c9eff !important; }

.indigo-text.text-accent-1 {
  color: #8c9eff !important; }

.indigo.accent-2 {
  background-color: #536dfe !important; }

.indigo-text.text-accent-2 {
  color: #536dfe !important; }

.indigo.accent-3 {
  background-color: #3d5afe !important; }

.indigo-text.text-accent-3 {
  color: #3d5afe !important; }

.indigo.accent-4 {
  background-color: #304ffe !important; }

.indigo-text.text-accent-4 {
  color: #304ffe !important; }

.blue.lighten-5 {
  background-color: #E3F2FD !important; }

.blue-text.text-lighten-5 {
  color: #E3F2FD !important; }

.blue.lighten-4 {
  background-color: #BBDEFB !important; }

.blue-text.text-lighten-4 {
  color: #BBDEFB !important; }

.blue.lighten-3 {
  background-color: #90CAF9 !important; }

.blue-text.text-lighten-3 {
  color: #90CAF9 !important; }

.blue.lighten-2 {
  background-color: #64B5F6 !important; }

.blue-text.text-lighten-2 {
  color: #64B5F6 !important; }

.blue.lighten-1 {
  background-color: #42A5F5 !important; }

.blue-text.text-lighten-1 {
  color: #42A5F5 !important; }

.blue {
  background-color: #2196F3 !important; }

.blue-text {
  color: #2196F3 !important; }

.blue.darken-1 {
  background-color: #1E88E5 !important; }

.blue-text.text-darken-1 {
  color: #1E88E5 !important; }

.blue.darken-2 {
  background-color: #1976D2 !important; }

.blue-text.text-darken-2 {
  color: #1976D2 !important; }

.blue.darken-3 {
  background-color: #1565C0 !important; }

.blue-text.text-darken-3 {
  color: #1565C0 !important; }

.blue.darken-4 {
  background-color: #0D47A1 !important; }

.blue-text.text-darken-4 {
  color: #0D47A1 !important; }

.blue.accent-1 {
  background-color: #82B1FF !important; }

.blue-text.text-accent-1 {
  color: #82B1FF !important; }

.blue.accent-2 {
  background-color: #448AFF !important; }

.blue-text.text-accent-2 {
  color: #448AFF !important; }

.blue.accent-3 {
  background-color: #2979FF !important; }

.blue-text.text-accent-3 {
  color: #2979FF !important; }

.blue.accent-4 {
  background-color: #2962FF !important; }

.blue-text.text-accent-4 {
  color: #2962FF !important; }

.light-blue.lighten-5 {
  background-color: #e1f5fe !important; }

.light-blue-text.text-lighten-5 {
  color: #e1f5fe !important; }

.light-blue.lighten-4 {
  background-color: #b3e5fc !important; }

.light-blue-text.text-lighten-4 {
  color: #b3e5fc !important; }

.light-blue.lighten-3 {
  background-color: #81d4fa !important; }

.light-blue-text.text-lighten-3 {
  color: #81d4fa !important; }

.light-blue.lighten-2 {
  background-color: #4fc3f7 !important; }

.light-blue-text.text-lighten-2 {
  color: #4fc3f7 !important; }

.light-blue.lighten-1 {
  background-color: #29b6f6 !important; }

.light-blue-text.text-lighten-1 {
  color: #29b6f6 !important; }

.light-blue {
  background-color: #03a9f4 !important; }

.light-blue-text {
  color: #03a9f4 !important; }

.light-blue.darken-1 {
  background-color: #039be5 !important; }

.light-blue-text.text-darken-1 {
  color: #039be5 !important; }

.light-blue.darken-2 {
  background-color: #0288d1 !important; }

.light-blue-text.text-darken-2 {
  color: #0288d1 !important; }

.light-blue.darken-3 {
  background-color: #0277bd !important; }

.light-blue-text.text-darken-3 {
  color: #0277bd !important; }

.light-blue.darken-4 {
  background-color: #01579b !important; }

.light-blue-text.text-darken-4 {
  color: #01579b !important; }

.light-blue.accent-1 {
  background-color: #80d8ff !important; }

.light-blue-text.text-accent-1 {
  color: #80d8ff !important; }

.light-blue.accent-2 {
  background-color: #40c4ff !important; }

.light-blue-text.text-accent-2 {
  color: #40c4ff !important; }

.light-blue.accent-3 {
  background-color: #00b0ff !important; }

.light-blue-text.text-accent-3 {
  color: #00b0ff !important; }

.light-blue.accent-4 {
  background-color: #0091ea !important; }

.light-blue-text.text-accent-4 {
  color: #0091ea !important; }

.cyan.lighten-5 {
  background-color: #e0f7fa !important; }

.cyan-text.text-lighten-5 {
  color: #e0f7fa !important; }

.cyan.lighten-4 {
  background-color: #b2ebf2 !important; }

.cyan-text.text-lighten-4 {
  color: #b2ebf2 !important; }

.cyan.lighten-3 {
  background-color: #80deea !important; }

.cyan-text.text-lighten-3 {
  color: #80deea !important; }

.cyan.lighten-2 {
  background-color: #4dd0e1 !important; }

.cyan-text.text-lighten-2 {
  color: #4dd0e1 !important; }

.cyan.lighten-1 {
  background-color: #26c6da !important; }

.cyan-text.text-lighten-1 {
  color: #26c6da !important; }

.cyan {
  background-color: #00bcd4 !important; }

.cyan-text {
  color: #00bcd4 !important; }

.cyan.darken-1 {
  background-color: #00acc1 !important; }

.cyan-text.text-darken-1 {
  color: #00acc1 !important; }

.cyan.darken-2 {
  background-color: #0097a7 !important; }

.cyan-text.text-darken-2 {
  color: #0097a7 !important; }

.cyan.darken-3 {
  background-color: #00838f !important; }

.cyan-text.text-darken-3 {
  color: #00838f !important; }

.cyan.darken-4 {
  background-color: #006064 !important; }

.cyan-text.text-darken-4 {
  color: #006064 !important; }

.cyan.accent-1 {
  background-color: #84ffff !important; }

.cyan-text.text-accent-1 {
  color: #84ffff !important; }

.cyan.accent-2 {
  background-color: #18ffff !important; }

.cyan-text.text-accent-2 {
  color: #18ffff !important; }

.cyan.accent-3 {
  background-color: #00e5ff !important; }

.cyan-text.text-accent-3 {
  color: #00e5ff !important; }

.cyan.accent-4 {
  background-color: #00b8d4 !important; }

.cyan-text.text-accent-4 {
  color: #00b8d4 !important; }

.teal.lighten-5 {
  background-color: #e0f2f1 !important; }

.teal-text.text-lighten-5 {
  color: #e0f2f1 !important; }

.teal.lighten-4 {
  background-color: #b2dfdb !important; }

.teal-text.text-lighten-4 {
  color: #b2dfdb !important; }

.teal.lighten-3 {
  background-color: #80cbc4 !important; }

.teal-text.text-lighten-3 {
  color: #80cbc4 !important; }

.teal.lighten-2 {
  background-color: #4db6ac !important; }

.teal-text.text-lighten-2 {
  color: #4db6ac !important; }

.teal.lighten-1 {
  background-color: #26a69a !important; }

.teal-text.text-lighten-1 {
  color: #26a69a !important; }

.teal {
  background-color: #009688 !important; }

.teal-text {
  color: #009688 !important; }

.teal.darken-1 {
  background-color: #00897b !important; }

.teal-text.text-darken-1 {
  color: #00897b !important; }

.teal.darken-2 {
  background-color: #00796b !important; }

.teal-text.text-darken-2 {
  color: #00796b !important; }

.teal.darken-3 {
  background-color: #00695c !important; }

.teal-text.text-darken-3 {
  color: #00695c !important; }

.teal.darken-4 {
  background-color: #004d40 !important; }

.teal-text.text-darken-4 {
  color: #004d40 !important; }

.teal.accent-1 {
  background-color: #a7ffeb !important; }

.teal-text.text-accent-1 {
  color: #a7ffeb !important; }

.teal.accent-2 {
  background-color: #64ffda !important; }

.teal-text.text-accent-2 {
  color: #64ffda !important; }

.teal.accent-3 {
  background-color: #1de9b6 !important; }

.teal-text.text-accent-3 {
  color: #1de9b6 !important; }

.teal.accent-4 {
  background-color: #00bfa5 !important; }

.teal-text.text-accent-4 {
  color: #00bfa5 !important; }

.green.lighten-5 {
  background-color: #E8F5E9 !important; }

.green-text.text-lighten-5 {
  color: #E8F5E9 !important; }

.green.lighten-4 {
  background-color: #C8E6C9 !important; }

.green-text.text-lighten-4 {
  color: #C8E6C9 !important; }

.green.lighten-3 {
  background-color: #A5D6A7 !important; }

.green-text.text-lighten-3 {
  color: #A5D6A7 !important; }

.green.lighten-2 {
  background-color: #81C784 !important; }

.green-text.text-lighten-2 {
  color: #81C784 !important; }

.green.lighten-1 {
  background-color: #66BB6A !important; }

.green-text.text-lighten-1 {
  color: #66BB6A !important; }

.green {
  background-color: #4CAF50 !important; }

.green-text {
  color: #4CAF50 !important; }

.green.darken-1 {
  background-color: #43A047 !important; }

.green-text.text-darken-1 {
  color: #43A047 !important; }

.green.darken-2 {
  background-color: #388E3C !important; }

.green-text.text-darken-2 {
  color: #388E3C !important; }

.green.darken-3 {
  background-color: #2E7D32 !important; }

.green-text.text-darken-3 {
  color: #2E7D32 !important; }

.green.darken-4 {
  background-color: #1B5E20 !important; }

.green-text.text-darken-4 {
  color: #1B5E20 !important; }

.green.accent-1 {
  background-color: #B9F6CA !important; }

.green-text.text-accent-1 {
  color: #B9F6CA !important; }

.green.accent-2 {
  background-color: #69F0AE !important; }

.green-text.text-accent-2 {
  color: #69F0AE !important; }

.green.accent-3 {
  background-color: #00E676 !important; }

.green-text.text-accent-3 {
  color: #00E676 !important; }

.green.accent-4 {
  background-color: #00C853 !important; }

.green-text.text-accent-4 {
  color: #00C853 !important; }

.light-green.lighten-5 {
  background-color: #f1f8e9 !important; }

.light-green-text.text-lighten-5 {
  color: #f1f8e9 !important; }

.light-green.lighten-4 {
  background-color: #dcedc8 !important; }

.light-green-text.text-lighten-4 {
  color: #dcedc8 !important; }

.light-green.lighten-3 {
  background-color: #c5e1a5 !important; }

.light-green-text.text-lighten-3 {
  color: #c5e1a5 !important; }

.light-green.lighten-2 {
  background-color: #aed581 !important; }

.light-green-text.text-lighten-2 {
  color: #aed581 !important; }

.light-green.lighten-1 {
  background-color: #9ccc65 !important; }

.light-green-text.text-lighten-1 {
  color: #9ccc65 !important; }

.light-green {
  background-color: #8bc34a !important; }

.light-green-text {
  color: #8bc34a !important; }

.light-green.darken-1 {
  background-color: #7cb342 !important; }

.light-green-text.text-darken-1 {
  color: #7cb342 !important; }

.light-green.darken-2 {
  background-color: #689f38 !important; }

.light-green-text.text-darken-2 {
  color: #689f38 !important; }

.light-green.darken-3 {
  background-color: #558b2f !important; }

.light-green-text.text-darken-3 {
  color: #558b2f !important; }

.light-green.darken-4 {
  background-color: #33691e !important; }

.light-green-text.text-darken-4 {
  color: #33691e !important; }

.light-green.accent-1 {
  background-color: #ccff90 !important; }

.light-green-text.text-accent-1 {
  color: #ccff90 !important; }

.light-green.accent-2 {
  background-color: #b2ff59 !important; }

.light-green-text.text-accent-2 {
  color: #b2ff59 !important; }

.light-green.accent-3 {
  background-color: #76ff03 !important; }

.light-green-text.text-accent-3 {
  color: #76ff03 !important; }

.light-green.accent-4 {
  background-color: #64dd17 !important; }

.light-green-text.text-accent-4 {
  color: #64dd17 !important; }

.lime.lighten-5 {
  background-color: #f9fbe7 !important; }

.lime-text.text-lighten-5 {
  color: #f9fbe7 !important; }

.lime.lighten-4 {
  background-color: #f0f4c3 !important; }

.lime-text.text-lighten-4 {
  color: #f0f4c3 !important; }

.lime.lighten-3 {
  background-color: #e6ee9c !important; }

.lime-text.text-lighten-3 {
  color: #e6ee9c !important; }

.lime.lighten-2 {
  background-color: #dce775 !important; }

.lime-text.text-lighten-2 {
  color: #dce775 !important; }

.lime.lighten-1 {
  background-color: #d4e157 !important; }

.lime-text.text-lighten-1 {
  color: #d4e157 !important; }

.lime {
  background-color: #cddc39 !important; }

.lime-text {
  color: #cddc39 !important; }

.lime.darken-1 {
  background-color: #c0ca33 !important; }

.lime-text.text-darken-1 {
  color: #c0ca33 !important; }

.lime.darken-2 {
  background-color: #afb42b !important; }

.lime-text.text-darken-2 {
  color: #afb42b !important; }

.lime.darken-3 {
  background-color: #9e9d24 !important; }

.lime-text.text-darken-3 {
  color: #9e9d24 !important; }

.lime.darken-4 {
  background-color: #827717 !important; }

.lime-text.text-darken-4 {
  color: #827717 !important; }

.lime.accent-1 {
  background-color: #f4ff81 !important; }

.lime-text.text-accent-1 {
  color: #f4ff81 !important; }

.lime.accent-2 {
  background-color: #eeff41 !important; }

.lime-text.text-accent-2 {
  color: #eeff41 !important; }

.lime.accent-3 {
  background-color: #c6ff00 !important; }

.lime-text.text-accent-3 {
  color: #c6ff00 !important; }

.lime.accent-4 {
  background-color: #aeea00 !important; }

.lime-text.text-accent-4 {
  color: #aeea00 !important; }

.yellow.lighten-5 {
  background-color: #fffde7 !important; }

.yellow-text.text-lighten-5 {
  color: #fffde7 !important; }

.yellow.lighten-4 {
  background-color: #fff9c4 !important; }

.yellow-text.text-lighten-4 {
  color: #fff9c4 !important; }

.yellow.lighten-3 {
  background-color: #fff59d !important; }

.yellow-text.text-lighten-3 {
  color: #fff59d !important; }

.yellow.lighten-2 {
  background-color: #fff176 !important; }

.yellow-text.text-lighten-2 {
  color: #fff176 !important; }

.yellow.lighten-1 {
  background-color: #ffee58 !important; }

.yellow-text.text-lighten-1 {
  color: #ffee58 !important; }

.yellow {
  background-color: #ffeb3b !important; }

.yellow-text {
  color: #ffeb3b !important; }

.yellow.darken-1 {
  background-color: #fdd835 !important; }

.yellow-text.text-darken-1 {
  color: #fdd835 !important; }

.yellow.darken-2 {
  background-color: #fbc02d !important; }

.yellow-text.text-darken-2 {
  color: #fbc02d !important; }

.yellow.darken-3 {
  background-color: #f9a825 !important; }

.yellow-text.text-darken-3 {
  color: #f9a825 !important; }

.yellow.darken-4 {
  background-color: #f57f17 !important; }

.yellow-text.text-darken-4 {
  color: #f57f17 !important; }

.yellow.accent-1 {
  background-color: #ffff8d !important; }

.yellow-text.text-accent-1 {
  color: #ffff8d !important; }

.yellow.accent-2 {
  background-color: #ffff00 !important; }

.yellow-text.text-accent-2 {
  color: #ffff00 !important; }

.yellow.accent-3 {
  background-color: #ffea00 !important; }

.yellow-text.text-accent-3 {
  color: #ffea00 !important; }

.yellow.accent-4 {
  background-color: #ffd600 !important; }

.yellow-text.text-accent-4 {
  color: #ffd600 !important; }

.amber.lighten-5 {
  background-color: #fff8e1 !important; }

.amber-text.text-lighten-5 {
  color: #fff8e1 !important; }

.amber.lighten-4 {
  background-color: #ffecb3 !important; }

.amber-text.text-lighten-4 {
  color: #ffecb3 !important; }

.amber.lighten-3 {
  background-color: #ffe082 !important; }

.amber-text.text-lighten-3 {
  color: #ffe082 !important; }

.amber.lighten-2 {
  background-color: #ffd54f !important; }

.amber-text.text-lighten-2 {
  color: #ffd54f !important; }

.amber.lighten-1 {
  background-color: #ffca28 !important; }

.amber-text.text-lighten-1 {
  color: #ffca28 !important; }

.amber {
  background-color: #ffc107 !important; }

.amber-text {
  color: #ffc107 !important; }

.amber.darken-1 {
  background-color: #ffb300 !important; }

.amber-text.text-darken-1 {
  color: #ffb300 !important; }

.amber.darken-2 {
  background-color: #ffa000 !important; }

.amber-text.text-darken-2 {
  color: #ffa000 !important; }

.amber.darken-3 {
  background-color: #ff8f00 !important; }

.amber-text.text-darken-3 {
  color: #ff8f00 !important; }

.amber.darken-4 {
  background-color: #ff6f00 !important; }

.amber-text.text-darken-4 {
  color: #ff6f00 !important; }

.amber.accent-1 {
  background-color: #ffe57f !important; }

.amber-text.text-accent-1 {
  color: #ffe57f !important; }

.amber.accent-2 {
  background-color: #ffd740 !important; }

.amber-text.text-accent-2 {
  color: #ffd740 !important; }

.amber.accent-3 {
  background-color: #ffc400 !important; }

.amber-text.text-accent-3 {
  color: #ffc400 !important; }

.amber.accent-4 {
  background-color: #ffab00 !important; }

.amber-text.text-accent-4 {
  color: #ffab00 !important; }

.orange.lighten-5 {
  background-color: #fff3e0 !important; }

.orange-text.text-lighten-5 {
  color: #fff3e0 !important; }

.orange.lighten-4 {
  background-color: #ffe0b2 !important; }

.orange-text.text-lighten-4 {
  color: #ffe0b2 !important; }

.orange.lighten-3 {
  background-color: #ffcc80 !important; }

.orange-text.text-lighten-3 {
  color: #ffcc80 !important; }

.orange.lighten-2 {
  background-color: #ffb74d !important; }

.orange-text.text-lighten-2 {
  color: #ffb74d !important; }

.orange.lighten-1 {
  background-color: #ffa726 !important; }

.orange-text.text-lighten-1 {
  color: #ffa726 !important; }

.orange {
  background-color: #ff9800 !important; }

.orange-text {
  color: #ff9800 !important; }

.orange.darken-1 {
  background-color: #fb8c00 !important; }

.orange-text.text-darken-1 {
  color: #fb8c00 !important; }

.orange.darken-2 {
  background-color: #f57c00 !important; }

.orange-text.text-darken-2 {
  color: #f57c00 !important; }

.orange.darken-3 {
  background-color: #ef6c00 !important; }

.orange-text.text-darken-3 {
  color: #ef6c00 !important; }

.orange.darken-4 {
  background-color: #e65100 !important; }

.orange-text.text-darken-4 {
  color: #e65100 !important; }

.orange.accent-1 {
  background-color: #ffd180 !important; }

.orange-text.text-accent-1 {
  color: #ffd180 !important; }

.orange.accent-2 {
  background-color: #ffab40 !important; }

.orange-text.text-accent-2 {
  color: #ffab40 !important; }

.orange.accent-3 {
  background-color: #ff9100 !important; }

.orange-text.text-accent-3 {
  color: #ff9100 !important; }

.orange.accent-4 {
  background-color: #ff6d00 !important; }

.orange-text.text-accent-4 {
  color: #ff6d00 !important; }

.deep-orange.lighten-5 {
  background-color: #fbe9e7 !important; }

.deep-orange-text.text-lighten-5 {
  color: #fbe9e7 !important; }

.deep-orange.lighten-4 {
  background-color: #ffccbc !important; }

.deep-orange-text.text-lighten-4 {
  color: #ffccbc !important; }

.deep-orange.lighten-3 {
  background-color: #ffab91 !important; }

.deep-orange-text.text-lighten-3 {
  color: #ffab91 !important; }

.deep-orange.lighten-2 {
  background-color: #ff8a65 !important; }

.deep-orange-text.text-lighten-2 {
  color: #ff8a65 !important; }

.deep-orange.lighten-1 {
  background-color: #ff7043 !important; }

.deep-orange-text.text-lighten-1 {
  color: #ff7043 !important; }

.deep-orange {
  background-color: #ff5722 !important; }

.deep-orange-text {
  color: #ff5722 !important; }

.deep-orange.darken-1 {
  background-color: #f4511e !important; }

.deep-orange-text.text-darken-1 {
  color: #f4511e !important; }

.deep-orange.darken-2 {
  background-color: #e64a19 !important; }

.deep-orange-text.text-darken-2 {
  color: #e64a19 !important; }

.deep-orange.darken-3 {
  background-color: #d84315 !important; }

.deep-orange-text.text-darken-3 {
  color: #d84315 !important; }

.deep-orange.darken-4 {
  background-color: #bf360c !important; }

.deep-orange-text.text-darken-4 {
  color: #bf360c !important; }

.deep-orange.accent-1 {
  background-color: #ff9e80 !important; }

.deep-orange-text.text-accent-1 {
  color: #ff9e80 !important; }

.deep-orange.accent-2 {
  background-color: #ff6e40 !important; }

.deep-orange-text.text-accent-2 {
  color: #ff6e40 !important; }

.deep-orange.accent-3 {
  background-color: #ff3d00 !important; }

.deep-orange-text.text-accent-3 {
  color: #ff3d00 !important; }

.deep-orange.accent-4 {
  background-color: #dd2c00 !important; }

.deep-orange-text.text-accent-4 {
  color: #dd2c00 !important; }

.brown.lighten-5 {
  background-color: #efebe9 !important; }

.brown-text.text-lighten-5 {
  color: #efebe9 !important; }

.brown.lighten-4 {
  background-color: #d7ccc8 !important; }

.brown-text.text-lighten-4 {
  color: #d7ccc8 !important; }

.brown.lighten-3 {
  background-color: #bcaaa4 !important; }

.brown-text.text-lighten-3 {
  color: #bcaaa4 !important; }

.brown.lighten-2 {
  background-color: #a1887f !important; }

.brown-text.text-lighten-2 {
  color: #a1887f !important; }

.brown.lighten-1 {
  background-color: #8d6e63 !important; }

.brown-text.text-lighten-1 {
  color: #8d6e63 !important; }

.brown {
  background-color: #795548 !important; }

.brown-text {
  color: #795548 !important; }

.brown.darken-1 {
  background-color: #6d4c41 !important; }

.brown-text.text-darken-1 {
  color: #6d4c41 !important; }

.brown.darken-2 {
  background-color: #5d4037 !important; }

.brown-text.text-darken-2 {
  color: #5d4037 !important; }

.brown.darken-3 {
  background-color: #4e342e !important; }

.brown-text.text-darken-3 {
  color: #4e342e !important; }

.brown.darken-4 {
  background-color: #3e2723 !important; }

.brown-text.text-darken-4 {
  color: #3e2723 !important; }

.blue-grey.lighten-5 {
  background-color: #eceff1 !important; }

.blue-grey-text.text-lighten-5 {
  color: #eceff1 !important; }

.blue-grey.lighten-4 {
  background-color: #cfd8dc !important; }

.blue-grey-text.text-lighten-4 {
  color: #cfd8dc !important; }

.blue-grey.lighten-3 {
  background-color: #b0bec5 !important; }

.blue-grey-text.text-lighten-3 {
  color: #b0bec5 !important; }

.blue-grey.lighten-2 {
  background-color: #90a4ae !important; }

.blue-grey-text.text-lighten-2 {
  color: #90a4ae !important; }

.blue-grey.lighten-1 {
  background-color: #78909c !important; }

.blue-grey-text.text-lighten-1 {
  color: #78909c !important; }

.blue-grey {
  background-color: #607d8b !important; }

.blue-grey-text {
  color: #607d8b !important; }

.blue-grey.darken-1 {
  background-color: #546e7a !important; }

.blue-grey-text.text-darken-1 {
  color: #546e7a !important; }

.blue-grey.darken-2 {
  background-color: #455a64 !important; }

.blue-grey-text.text-darken-2 {
  color: #455a64 !important; }

.blue-grey.darken-3 {
  background-color: #37474f !important; }

.blue-grey-text.text-darken-3 {
  color: #37474f !important; }

.blue-grey.darken-4 {
  background-color: #263238 !important; }

.blue-grey-text.text-darken-4 {
  color: #263238 !important; }

.grey.lighten-5 {
  background-color: #fafafa !important; }

.grey-text.text-lighten-5 {
  color: #fafafa !important; }

.grey.lighten-4 {
  background-color: #f5f5f5 !important; }

.grey-text.text-lighten-4 {
  color: #f5f5f5 !important; }

.grey.lighten-3 {
  background-color: #eeeeee !important; }

.grey-text.text-lighten-3 {
  color: #eeeeee !important; }

.grey.lighten-2 {
  background-color: #e0e0e0 !important; }

.grey-text.text-lighten-2 {
  color: #e0e0e0 !important; }

.grey.lighten-1 {
  background-color: #bdbdbd !important; }

.grey-text.text-lighten-1 {
  color: #bdbdbd !important; }

.grey {
  background-color: #9e9e9e !important; }

.grey-text {
  color: #9e9e9e !important; }

.grey.darken-1 {
  background-color: #757575 !important; }

.grey-text.text-darken-1 {
  color: #757575 !important; }

.grey.darken-2 {
  background-color: #616161 !important; }

.grey-text.text-darken-2 {
  color: #616161 !important; }

.grey.darken-3 {
  background-color: #424242 !important; }

.grey-text.text-darken-3 {
  color: #424242 !important; }

.grey.darken-4 {
  background-color: #212121 !important; }

.grey-text.text-darken-4 {
  color: #212121 !important; }

.shades.black {
  background-color: #000000 !important; }

.shades-text.text-black {
  color: #000000 !important; }

.shades.white {
  background-color: #FFFFFF !important; }

.shades-text.text-white {
  color: #FFFFFF !important; }

.shades.transparent {
  background-color: transparent !important; }

.shades-text.text-transparent {
  color: transparent !important; }

.black {
  background-color: #000000 !important; }

.black-text {
  color: #000000 !important; }

.white {
  background-color: #FFFFFF !important; }

.white-text {
  color: #FFFFFF !important; }

.transparent {
  background-color: transparent !important; }

.transparent-text {
  color: transparent !important; }

/*** Colors ***/
/*** Badges ***/
/*** Buttons ***/
/*** Cards ***/
/*** Collapsible ***/
/*** Chips ***/
/*** Date Picker ***/
/*** Dropdown ***/
/*** Fonts ***/
/*** Forms ***/
/*** Global ***/
/*** Navbar ***/
/*** SideNav ***/
/*** Photo Slider ***/
/*** Spinners | Loaders ***/
/*** Tabs ***/
/*** Tables ***/
/*** Toasts ***/
/*** Typography ***/
/*** Collections ***/
/* Progress Bar */
html {
  box-sizing: border-box; }

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

.valign-wrapper {
  display: flex;
  align-items: center; }
  .valign-wrapper .valign {
    display: block; }

.clearfix {
  clear: both; }

.z-depth-0 {
  box-shadow: none !important; }

.z-depth-1, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }

.z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }

.z-depth-2 {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }

.z-depth-3 {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }

.z-depth-4, .modal {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); }

.z-depth-5 {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); }

.hoverable, article.item.slider-item img, .gallery .thumb img, .single-article article.post-content.feature.essay .featuredImage img, .single-article article.post-content.feature.essay figure.alignleft img, .single-article article.post-content.feature.essay img.alignleft img, .single-short-takes article.post-content.feature.essay .featuredImage img, .single-short-takes article.post-content.feature.essay figure.alignleft img, .single-short-takes article.post-content.feature.essay img.alignleft img, .single-article article.post-content.feature.essay figure.alignright img, .single-article article.post-content.feature.essay img.alignright img, .single-short-takes article.post-content.feature.essay figure.alignright img, .single-short-takes article.post-content.feature.essay img.alignright img, .book-list .book-list-item img, section.singular-av article div.post-content .featuredImage img, section.singular-av article div.post-content figure.alignleft img, section.singular-av article div.post-content img.alignleft img {
  transition: box-shadow 0.25s;
  box-shadow: 0; }

.hoverable:hover, article.item.slider-item img:hover, .gallery .thumb img:hover, .single-article article.post-content.feature.essay .featuredImage img:hover, .single-article article.post-content.feature.essay figure.alignleft img:hover, .single-article article.post-content.feature.essay img.alignleft img:hover, .single-short-takes article.post-content.feature.essay .featuredImage img:hover, .single-short-takes article.post-content.feature.essay figure.alignleft img:hover, .single-short-takes article.post-content.feature.essay img.alignleft img:hover, .single-article article.post-content.feature.essay figure.alignright img:hover, .single-article article.post-content.feature.essay img.alignright img:hover, .single-short-takes article.post-content.feature.essay figure.alignright img:hover, .single-short-takes article.post-content.feature.essay img.alignright img:hover, .book-list .book-list-item img:hover, section.singular-av article div.post-content .featuredImage img:hover, section.singular-av article div.post-content figure.alignleft img:hover, section.singular-av article div.post-content img.alignleft img:hover {
  transition: box-shadow 0.25s;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }

.divider {
  height: 1px;
  overflow: hidden;
  background-color: #e0e0e0; }

img.responsive-img,
video.responsive-video {
  max-width: 100%;
  height: auto; }

.pagination li {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 2px;
  text-align: center; }
  .pagination li a {
    color: #444; }
  .pagination li.active a {
    color: #fff; }
  .pagination li.active {
    background-color: #9B3434; }
  .pagination li.disabled a {
    cursor: default;
    color: #999; }
  .pagination li i {
    font-size: 2.2rem;
    vertical-align: middle; }

.pagination li.pages ul li {
  display: inline-block;
  float: none; }

@media only screen and (max-width: 992px) {
  .pagination {
    width: 100%; }
    .pagination li.prev,
    .pagination li.next {
      width: 10%; }
    .pagination li.pages {
      width: 80%;
      overflow: hidden;
      white-space: nowrap; } }

.breadcrumb {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7); }
  .breadcrumb i,
  .breadcrumb [class^="mdi-"], .breadcrumb [class*="mdi-"],
  .breadcrumb i.material-icons {
    display: inline-block;
    float: left;
    font-size: 24px; }
  .breadcrumb:before {
    content: '\E5CC';
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
    display: inline-block;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 25px;
    margin: 0 10px 0 8px;
    -webkit-font-smoothing: antialiased; }
  .breadcrumb:first-child:before {
    display: none; }
  .breadcrumb:last-child {
    color: #fff; }

.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px; }

.parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; }
  .parallax img {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transform: translateX(-50%); }

.pin-top, .pin-bottom {
  position: relative; }

.pinned {
  position: fixed !important; }

/*********************
  Transition Classes
**********************/
ul.staggered-list li {
  opacity: 0; }

.fade-in {
  opacity: 0;
  transform-origin: 0 50%; }

/*********************
  Media Query Classes
**********************/
@media only screen and (max-width: 600px) {
  .hide-on-small-only, .hide-on-small-and-down {
    display: none !important; } }

@media only screen and (max-width: 992px) {
  .hide-on-med-and-down {
    display: none !important; } }

@media only screen and (min-width: 601px) {
  .hide-on-med-and-up {
    display: none !important; } }

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .hide-on-med-only {
    display: none !important; } }

@media only screen and (min-width: 993px) {
  .hide-on-large-only {
    display: none !important; } }

@media only screen and (min-width: 993px) {
  .show-on-large {
    display: initial !important; } }

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .show-on-medium {
    display: initial !important; } }

@media only screen and (max-width: 600px) {
  .show-on-small {
    display: initial !important; } }

@media only screen and (min-width: 601px) {
  .show-on-medium-and-up {
    display: initial !important; } }

@media only screen and (max-width: 992px) {
  .show-on-medium-and-down {
    display: initial !important; } }

@media only screen and (max-width: 600px) {
  .center-on-small-only {
    text-align: center; } }

table, th, td {
  border: none; }

table {
  width: 100%;
  display: table; }
  table.bordered > thead > tr,
  table.bordered > tbody > tr {
    border-bottom: 1px solid #d0d0d0; }
  table.striped > tbody > tr:nth-child(odd) {
    background-color: #f2f2f2; }
  table.striped > tbody > tr > td {
    border-radius: 0px; }
  table.highlight > tbody > tr {
    transition: background-color 0.25s ease; }
    table.highlight > tbody > tr:hover {
      background-color: #f2f2f2; }
  table.centered thead tr th, table.centered tbody tr td {
    text-align: center; }

thead {
  border-bottom: 1px solid #d0d0d0; }

td, th {
  padding: 15px 5px;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  border-radius: 2px; }

@media only screen and (max-width: 992px) {
  table.responsive-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    position: relative;
    /* sort out borders */ }
    table.responsive-table th,
    table.responsive-table td {
      margin: 0;
      vertical-align: top; }
    table.responsive-table th {
      text-align: left; }
    table.responsive-table thead {
      display: block;
      float: left; }
      table.responsive-table thead tr {
        display: block;
        padding: 0 10px 0 0; }
        table.responsive-table thead tr th::before {
          content: "\00a0"; }
    table.responsive-table tbody {
      display: block;
      width: auto;
      position: relative;
      overflow-x: auto;
      white-space: nowrap; }
      table.responsive-table tbody tr {
        display: inline-block;
        vertical-align: top; }
    table.responsive-table th {
      display: block;
      text-align: right; }
    table.responsive-table td {
      display: block;
      min-height: 1.25em;
      text-align: left; }
    table.responsive-table tr {
      padding: 0 10px; }
    table.responsive-table thead {
      border: 0;
      border-right: 1px solid #d0d0d0; }
    table.responsive-table.bordered th {
      border-bottom: 0;
      border-left: 0; }
    table.responsive-table.bordered td {
      border-left: 0;
      border-right: 0;
      border-bottom: 0; }
    table.responsive-table.bordered tr {
      border: 0; }
    table.responsive-table.bordered tbody tr {
      border-right: 1px solid #d0d0d0; } }

.collection {
  margin: 0.5rem 0 1rem 0;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  position: relative; }
  .collection .collection-item {
    background-color: #fff;
    line-height: 1.5rem;
    padding: 10px 20px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0; }
    .collection .collection-item.avatar {
      min-height: 84px;
      padding-left: 72px;
      position: relative; }
      .collection .collection-item.avatar .circle {
        position: absolute;
        width: 42px;
        height: 42px;
        overflow: hidden;
        left: 15px;
        display: inline-block;
        vertical-align: middle; }
      .collection .collection-item.avatar i.circle {
        font-size: 18px;
        line-height: 42px;
        color: #fff;
        background-color: #999;
        text-align: center; }
      .collection .collection-item.avatar .title {
        font-size: 16px; }
      .collection .collection-item.avatar p {
        margin: 0; }
      .collection .collection-item.avatar .secondary-content {
        position: absolute;
        top: 16px;
        right: 16px; }
    .collection .collection-item:last-child {
      border-bottom: none; }
    .collection .collection-item.active {
      background-color: #9B3434;
      color: #f9eeee; }
      .collection .collection-item.active .secondary-content {
        color: #fff; }
  .collection a.collection-item {
    display: block;
    transition: .25s;
    color: #9B3434; }
    .collection a.collection-item:not(.active):hover {
      background-color: #ddd; }
  .collection.with-header .collection-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 20px; }
  .collection.with-header .collection-item {
    padding-left: 30px; }
  .collection.with-header .collection-item.avatar {
    padding-left: 72px; }

.secondary-content {
  float: right;
  color: #9B3434; }

.collapsible .collection {
  margin: 0;
  border: none; }

span.badge {
  min-width: 3rem;
  padding: 0 6px;
  text-align: center;
  font-size: 1rem;
  line-height: inherit;
  color: #757575;
  position: absolute;
  right: 15px;
  box-sizing: border-box; }
  span.badge.new {
    font-weight: 300;
    font-size: 0.8rem;
    color: #fff;
    background-color: #9B3434;
    border-radius: 2px; }
  span.badge.new:after {
    content: " new"; }

nav ul a span.badge {
  position: static;
  margin-left: 4px;
  line-height: 0; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  .video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: #e6b5b5;
  border-radius: 2px;
  margin: 0.5rem 0 1rem 0;
  overflow: hidden; }
  .progress .determinate {
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #9B3434;
    transition: width 0.3s linear; }
  .progress .indeterminate {
    background-color: #9B3434; }
    .progress .indeterminate:before {
      content: '';
      position: absolute;
      background-color: inherit;
      top: 0;
      left: 0;
      bottom: 0;
      will-change: left, right;
      animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
    .progress .indeterminate:after {
      content: '';
      position: absolute;
      background-color: inherit;
      top: 0;
      left: 0;
      bottom: 0;
      will-change: left, right;
      animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
      animation-delay: 1.15s; }

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }

/*******************
  Utility Classes
*******************/
.hide {
  display: none !important; }

.left-align {
  text-align: left; }

.right-align {
  text-align: right; }

.center, .center-align {
  text-align: center; }

.no-select, input[type=range], input[type=range] + .thumb {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.circle {
  border-radius: 50%; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.truncate {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

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

.card-panel {
  transition: box-shadow 0.25s;
  padding: 20px;
  margin: 0.5rem 0 1rem 0;
  border-radius: 2px;
  background-color: #fff; }

.card {
  position: relative;
  margin: 0.5rem 0 1rem 0;
  background-color: #fff;
  transition: box-shadow 0.25s;
  border-radius: 2px; }
  .card .card-title {
    font-size: 24px;
    font-weight: 300; }
    .card .card-title.activator {
      cursor: pointer; }
  .card.small, .card.medium, .card.large {
    position: relative; }
    .card.small .card-image, .card.medium .card-image, .card.large .card-image {
      max-height: 60%;
      overflow: hidden; }
    .card.small .card-content, .card.medium .card-content, .card.large .card-content {
      max-height: 40%;
      overflow: hidden; }
    .card.small .card-action, .card.medium .card-action, .card.large .card-action {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      background-color: inherit; }
  .card.small {
    height: 300px; }
  .card.medium {
    height: 400px; }
  .card.large {
    height: 500px; }
  .card .card-image {
    position: relative; }
    .card .card-image img {
      display: block;
      border-radius: 2px 2px 0 0;
      position: relative;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%; }
    .card .card-image .card-title {
      color: #fff;
      position: absolute;
      bottom: 0;
      left: 0;
      padding: 20px; }
  .card .card-content {
    padding: 20px;
    border-radius: 0 0 2px 2px; }
    .card .card-content p {
      margin: 0;
      color: inherit; }
    .card .card-content .card-title {
      line-height: 48px; }
  .card .card-action {
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    padding: 20px; }
    .card .card-action a:not(.btn):not(.btn-large):not(.btn-floating) {
      color: #ffab40;
      margin-right: 20px;
      transition: color 0.3s ease;
      text-transform: uppercase; }
      .card .card-action a:not(.btn):not(.btn-large):not(.btn-floating):hover {
        color: #ffd8a6; }
  .card .card-reveal {
    padding: 20px;
    position: absolute;
    background-color: #fff;
    width: 100%;
    overflow-y: auto;
    top: 100%;
    height: 100%;
    z-index: 1;
    display: none; }
    .card .card-reveal .card-title {
      cursor: pointer;
      display: block; }

#toast-container {
  display: block;
  position: fixed;
  z-index: 10000; }
  @media only screen and (max-width: 600px) {
    #toast-container {
      min-width: 100%;
      bottom: 0%; } }
  @media only screen and (min-width: 601px) and (max-width: 992px) {
    #toast-container {
      left: 5%;
      bottom: 7%; } }
  @media only screen and (min-width: 993px) {
    #toast-container {
      top: 10%;
      right: 7%; } }

.toast {
  border-radius: 2px;
  top: 0;
  width: auto;
  clear: both;
  margin-top: 10px;
  position: relative;
  max-width: 100%;
  height: auto;
  min-height: 48px;
  line-height: 1.5em;
  word-break: break-all;
  background-color: #323232;
  padding: 10px 25px;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .toast .btn, .toast .btn-large, .toast .btn-flat {
    margin: 0;
    margin-left: 3rem; }
  .toast.rounded {
    border-radius: 24px; }
  @media only screen and (max-width: 600px) {
    .toast {
      width: 100%;
      border-radius: 0; } }
  @media only screen and (min-width: 601px) and (max-width: 992px) {
    .toast {
      float: left; } }
  @media only screen and (min-width: 993px) {
    .toast {
      float: right; } }

.material-tooltip {
  padding: 10px 8px;
  font-size: 1rem;
  z-index: 2000;
  background-color: transparent;
  border-radius: 2px;
  color: #fff;
  min-height: 36px;
  line-height: 120%;
  opacity: 0;
  display: none;
  position: absolute;
  text-align: center;
  max-width: calc(100% - 4px);
  overflow: hidden;
  left: 0;
  top: 0;
  will-change: top, left; }

.backdrop {
  position: absolute;
  opacity: 0;
  display: none;
  height: 7px;
  width: 14px;
  border-radius: 0 0 14px 14px;
  background-color: #323232;
  z-index: -1;
  transform-origin: 50% 10%;
  will-change: transform, opacity; }

.btn, .btn-large, .btn-flat {
  border: none;
  border-radius: 2px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  outline: 0;
  padding: 0 2rem;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent; }

.btn.disabled, .disabled.btn-large, .btn-floating.disabled, .btn-large.disabled, .btn:disabled, .btn-large:disabled, .btn-large:disabled, .btn-floating:disabled {
  background-color: #DFDFDF !important;
  box-shadow: none;
  color: #9F9F9F !important;
  cursor: default; }
  .btn.disabled *, .disabled.btn-large *, .btn-floating.disabled *, .btn-large.disabled *, .btn:disabled *, .btn-large:disabled *, .btn-large:disabled *, .btn-floating:disabled * {
    pointer-events: none; }
  .btn.disabled:hover, .disabled.btn-large:hover, .btn-floating.disabled:hover, .btn-large.disabled:hover, .btn:disabled:hover, .btn-large:disabled:hover, .btn-large:disabled:hover, .btn-floating:disabled:hover {
    background-color: #DFDFDF;
    color: #9F9F9F; }

.btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
  font-size: 1.3rem;
  line-height: inherit; }

.btn, .btn-large {
  text-decoration: none;
  color: #fff;
  background-color: #9B3434;
  text-align: center;
  letter-spacing: .5px;
  transition: .2s ease-out;
  cursor: pointer; }
  .btn:hover, .btn-large:hover {
    background-color: #ae3a3a; }

.btn-floating {
  display: inline-block;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 37px;
  height: 37px;
  line-height: 37px;
  padding: 0;
  background-color: #9B3434;
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
  vertical-align: middle; }
  .btn-floating i {
    width: inherit;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    line-height: 37px; }
  .btn-floating:before {
    border-radius: 0; }
  .btn-floating.btn-large {
    width: 55.5px;
    height: 55.5px; }
    .btn-floating.btn-large i {
      line-height: 55.5px; }

button.btn-floating {
  border: none; }

.fixed-action-btn {
  position: fixed;
  right: 23px;
  bottom: 23px;
  padding-top: 15px;
  margin-bottom: 0;
  z-index: 998; }
  .fixed-action-btn.active ul {
    visibility: visible; }
  .fixed-action-btn.horizontal {
    padding: 0 0 0 15px; }
    .fixed-action-btn.horizontal ul {
      text-align: right;
      right: 64px;
      top: 50%;
      transform: translateY(-50%);
      height: 100%;
      left: initial;
      width: 500px;
      /*width 100% only goes to width of button container */ }
      .fixed-action-btn.horizontal ul li {
        display: inline-block;
        margin: 15px 15px 0 0; }
  .fixed-action-btn ul {
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    bottom: 64px;
    margin: 0;
    visibility: hidden; }
    .fixed-action-btn ul li {
      margin-bottom: 15px; }
    .fixed-action-btn ul a.btn-floating {
      opacity: 0; }

.btn-flat {
  box-shadow: none;
  background-color: transparent;
  color: #343434;
  cursor: pointer; }
  .btn-flat.disabled {
    color: #b3b3b3;
    cursor: default; }

.btn-large {
  height: 54px;
  line-height: 56px; }
  .btn-large i {
    font-size: 1.6rem; }

.btn-block {
  display: block; }

.dropdown-content {
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  max-height: 650px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  z-index: 999;
  will-change: width, height; }
  .dropdown-content li {
    clear: both;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    min-height: 50px;
    line-height: 1.5rem;
    width: 100%;
    text-align: left;
    text-transform: none; }
    .dropdown-content li:hover, .dropdown-content li.active, .dropdown-content li.selected {
      background-color: #eee; }
    .dropdown-content li.active.selected {
      background-color: #e1e1e1; }
    .dropdown-content li.divider {
      min-height: 0;
      height: 1px; }
    .dropdown-content li > a, .dropdown-content li > span {
      font-size: 16px;
      color: #9B3434;
      display: block;
      line-height: 22px;
      padding: 14px 16px; }
    .dropdown-content li > span > label {
      top: 1px;
      left: 3px;
      height: 18px; }
    .dropdown-content li > a > i {
      height: inherit;
      line-height: inherit; }

/*!
 * Waves v0.6.0
 * http://fian.my.id/Waves
 *
 * Copyright 2014 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE
 */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  will-change: opacity, transform;
  transition: all 0.3s ease-out; }
  .waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.7s ease-out;
    transition-property: transform, opacity;
    transform: scale(0);
    pointer-events: none; }
  .waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45); }
  .waves-effect.waves-red .waves-ripple {
    background-color: rgba(244, 67, 54, 0.7); }
  .waves-effect.waves-yellow .waves-ripple {
    background-color: rgba(255, 235, 59, 0.7); }
  .waves-effect.waves-orange .waves-ripple {
    background-color: rgba(255, 152, 0, 0.7); }
  .waves-effect.waves-purple .waves-ripple {
    background-color: rgba(156, 39, 176, 0.7); }
  .waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7); }
  .waves-effect.waves-teal .waves-ripple {
    background-color: rgba(0, 150, 136, 0.7); }
  .waves-effect input[type="button"], .waves-effect input[type="reset"], .waves-effect input[type="submit"] {
    border: 0;
    font-style: normal;
    font-size: inherit;
    text-transform: inherit;
    background: none; }

.waves-notransition {
  transition: none !important; }

.waves-circle {
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom; }
  .waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1; }

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none; }

.waves-block {
  display: block; }

/* Firefox Bug: link not triggered */
a.waves-effect .waves-ripple {
  z-index: -1; }

.modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fafafa;
  padding: 0;
  max-height: 70%;
  width: 55%;
  margin: auto;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top, opacity; }
  @media only screen and (max-width: 992px) {
    .modal {
      width: 80%; } }
  .modal h1, .modal h2, .modal h3, .modal h4 {
    margin-top: 0; }
  .modal .modal-content {
    padding: 24px; }
  .modal .modal-close {
    cursor: pointer; }
  .modal .modal-footer {
    border-radius: 0 0 2px 2px;
    background-color: #fafafa;
    padding: 4px 6px;
    height: 56px;
    width: 100%; }
    .modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-flat {
      float: right;
      margin: 6px 0; }

.lean-overlay {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 0;
  bottom: 0;
  right: 0;
  height: 125%;
  width: 100%;
  background: #000;
  display: none;
  will-change: opacity; }

.modal.modal-fixed-footer {
  padding: 0;
  height: 70%; }
  .modal.modal-fixed-footer .modal-content {
    position: absolute;
    height: calc(100% - 56px);
    max-height: 100%;
    width: 100%;
    overflow-y: auto; }
  .modal.modal-fixed-footer .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0; }

.modal.bottom-sheet {
  top: auto;
  bottom: -100%;
  margin: 0;
  width: 100%;
  max-height: 45%;
  border-radius: 0;
  will-change: bottom, opacity; }

.collapsible {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin: 0.5rem 0 1rem 0; }

.collapsible-header {
  display: block;
  cursor: pointer;
  min-height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  background-color: #fff;
  border-bottom: 1px solid #ddd; }
  .collapsible-header i {
    width: 2rem;
    font-size: 1.6rem;
    line-height: 3rem;
    display: block;
    float: left;
    text-align: center;
    margin-right: 1rem; }

.collapsible-body {
  display: none;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box; }
  .collapsible-body p {
    margin: 0;
    padding: 2rem; }

.side-nav .collapsible {
  border: none;
  box-shadow: none; }
  .side-nav .collapsible li {
    padding: 0; }

.side-nav .collapsible-header {
  background-color: transparent;
  border: none;
  line-height: inherit;
  height: inherit;
  margin: 0 1rem; }
  .side-nav .collapsible-header i {
    line-height: inherit; }

.side-nav .collapsible-body {
  border: 0;
  background-color: #fff; }
  .side-nav .collapsible-body li a {
    margin: 0 1rem 0 2rem; }

.collapsible.popout {
  border: none;
  box-shadow: none; }
  .collapsible.popout > li {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin: 0 24px;
    transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .collapsible.popout > li.active {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    margin: 16px 0; }

.chip {
  display: inline-block;
  height: 32px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  line-height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  background-color: #e4e4e4; }
  .chip img {
    float: left;
    margin: 0 8px 0 -12px;
    height: 32px;
    width: 32px;
    border-radius: 50%; }
  .chip i.material-icons {
    cursor: pointer;
    float: right;
    font-size: 16px;
    line-height: 32px;
    padding-left: 8px; }

.materialboxed {
  display: block;
  cursor: zoom-in;
  position: relative;
  transition: opacity 0.4s; }
  .materialboxed:hover {
    will-change: left, top, width, height; }
    .materialboxed:hover:not(.active) {
      opacity: .8; }

.materialboxed.active {
  cursor: zoom-out; }

#materialbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  will-change: opacity; }

.materialbox-caption {
  position: fixed;
  display: none;
  color: #fff;
  line-height: 50px;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0% 15%;
  height: 50px;
  z-index: 1000;
  -webkit-font-smoothing: antialiased; }

/* Remove Focus Boxes */
select:focus {
  outline: 1px solid #efd0d0; }

button:focus {
  outline: none;
  background-color: #aa3939; }

label {
  font-size: 0.8rem;
  color: #9e9e9e; }

/***************************
   Text Inputs + Textarea
****************************/
::-webkit-input-placeholder {
  color: #d1d1d1; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #d1d1d1; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #d1d1d1; }

:-ms-input-placeholder {
  color: #d1d1d1; }

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
textarea.materialize-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 1rem;
  margin: 0 0 15px 0;
  padding: 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: all 0.3s; }
  input[type=text]:disabled,
  input[type=text][readonly="readonly"],
  input[type=password]:disabled,
  input[type=password][readonly="readonly"],
  input[type=email]:disabled,
  input[type=email][readonly="readonly"],
  input[type=url]:disabled,
  input[type=url][readonly="readonly"],
  input[type=time]:disabled,
  input[type=time][readonly="readonly"],
  input[type=date]:disabled,
  input[type=date][readonly="readonly"],
  input[type=datetime-local]:disabled,
  input[type=datetime-local][readonly="readonly"],
  input[type=tel]:disabled,
  input[type=tel][readonly="readonly"],
  input[type=number]:disabled,
  input[type=number][readonly="readonly"],
  input[type=search]:disabled,
  input[type=search][readonly="readonly"],
  textarea.materialize-textarea:disabled, textarea.materialize-textarea[readonly="readonly"] {
    color: rgba(0, 0, 0, 0.26);
    border-bottom: 1px dotted rgba(0, 0, 0, 0.26); }
  input[type=text]:disabled + label,
  input[type=text][readonly="readonly"] + label,
  input[type=password]:disabled + label,
  input[type=password][readonly="readonly"] + label,
  input[type=email]:disabled + label,
  input[type=email][readonly="readonly"] + label,
  input[type=url]:disabled + label,
  input[type=url][readonly="readonly"] + label,
  input[type=time]:disabled + label,
  input[type=time][readonly="readonly"] + label,
  input[type=date]:disabled + label,
  input[type=date][readonly="readonly"] + label,
  input[type=datetime-local]:disabled + label,
  input[type=datetime-local][readonly="readonly"] + label,
  input[type=tel]:disabled + label,
  input[type=tel][readonly="readonly"] + label,
  input[type=number]:disabled + label,
  input[type=number][readonly="readonly"] + label,
  input[type=search]:disabled + label,
  input[type=search][readonly="readonly"] + label,
  textarea.materialize-textarea:disabled + label, textarea.materialize-textarea[readonly="readonly"] + label {
    color: rgba(0, 0, 0, 0.26); }
  input[type=text]:focus:not([readonly]),
  input[type=password]:focus:not([readonly]),
  input[type=email]:focus:not([readonly]),
  input[type=url]:focus:not([readonly]),
  input[type=time]:focus:not([readonly]),
  input[type=date]:focus:not([readonly]),
  input[type=datetime-local]:focus:not([readonly]),
  input[type=tel]:focus:not([readonly]),
  input[type=number]:focus:not([readonly]),
  input[type=search]:focus:not([readonly]),
  textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #9B3434;
    box-shadow: 0 1px 0 0 #9B3434; }
  input[type=text]:focus:not([readonly]) + label,
  input[type=password]:focus:not([readonly]) + label,
  input[type=email]:focus:not([readonly]) + label,
  input[type=url]:focus:not([readonly]) + label,
  input[type=time]:focus:not([readonly]) + label,
  input[type=date]:focus:not([readonly]) + label,
  input[type=datetime-local]:focus:not([readonly]) + label,
  input[type=tel]:focus:not([readonly]) + label,
  input[type=number]:focus:not([readonly]) + label,
  input[type=search]:focus:not([readonly]) + label,
  textarea.materialize-textarea:focus:not([readonly]) + label {
    color: #9B3434; }
  input[type=text].valid,
  input[type=text]:focus.valid,
  input[type=password].valid,
  input[type=password]:focus.valid,
  input[type=email].valid,
  input[type=email]:focus.valid,
  input[type=url].valid,
  input[type=url]:focus.valid,
  input[type=time].valid,
  input[type=time]:focus.valid,
  input[type=date].valid,
  input[type=date]:focus.valid,
  input[type=datetime-local].valid,
  input[type=datetime-local]:focus.valid,
  input[type=tel].valid,
  input[type=tel]:focus.valid,
  input[type=number].valid,
  input[type=number]:focus.valid,
  input[type=search].valid,
  input[type=search]:focus.valid,
  textarea.materialize-textarea.valid,
  textarea.materialize-textarea:focus.valid {
    border-bottom: 1px solid #4CAF50;
    box-shadow: 0 1px 0 0 #4CAF50; }
  input[type=text].valid + label:after,
  input[type=text]:focus.valid + label:after,
  input[type=password].valid + label:after,
  input[type=password]:focus.valid + label:after,
  input[type=email].valid + label:after,
  input[type=email]:focus.valid + label:after,
  input[type=url].valid + label:after,
  input[type=url]:focus.valid + label:after,
  input[type=time].valid + label:after,
  input[type=time]:focus.valid + label:after,
  input[type=date].valid + label:after,
  input[type=date]:focus.valid + label:after,
  input[type=datetime-local].valid + label:after,
  input[type=datetime-local]:focus.valid + label:after,
  input[type=tel].valid + label:after,
  input[type=tel]:focus.valid + label:after,
  input[type=number].valid + label:after,
  input[type=number]:focus.valid + label:after,
  input[type=search].valid + label:after,
  input[type=search]:focus.valid + label:after,
  textarea.materialize-textarea.valid + label:after,
  textarea.materialize-textarea:focus.valid + label:after {
    content: attr(data-success);
    color: #4CAF50;
    opacity: 1; }
  input[type=text].invalid,
  input[type=text]:focus.invalid,
  input[type=password].invalid,
  input[type=password]:focus.invalid,
  input[type=email].invalid,
  input[type=email]:focus.invalid,
  input[type=url].invalid,
  input[type=url]:focus.invalid,
  input[type=time].invalid,
  input[type=time]:focus.invalid,
  input[type=date].invalid,
  input[type=date]:focus.invalid,
  input[type=datetime-local].invalid,
  input[type=datetime-local]:focus.invalid,
  input[type=tel].invalid,
  input[type=tel]:focus.invalid,
  input[type=number].invalid,
  input[type=number]:focus.invalid,
  input[type=search].invalid,
  input[type=search]:focus.invalid,
  textarea.materialize-textarea.invalid,
  textarea.materialize-textarea:focus.invalid {
    border-bottom: 1px solid #F44336;
    box-shadow: 0 1px 0 0 #F44336; }
  input[type=text].invalid + label:after,
  input[type=text]:focus.invalid + label:after,
  input[type=password].invalid + label:after,
  input[type=password]:focus.invalid + label:after,
  input[type=email].invalid + label:after,
  input[type=email]:focus.invalid + label:after,
  input[type=url].invalid + label:after,
  input[type=url]:focus.invalid + label:after,
  input[type=time].invalid + label:after,
  input[type=time]:focus.invalid + label:after,
  input[type=date].invalid + label:after,
  input[type=date]:focus.invalid + label:after,
  input[type=datetime-local].invalid + label:after,
  input[type=datetime-local]:focus.invalid + label:after,
  input[type=tel].invalid + label:after,
  input[type=tel]:focus.invalid + label:after,
  input[type=number].invalid + label:after,
  input[type=number]:focus.invalid + label:after,
  input[type=search].invalid + label:after,
  input[type=search]:focus.invalid + label:after,
  textarea.materialize-textarea.invalid + label:after,
  textarea.materialize-textarea:focus.invalid + label:after {
    content: attr(data-error);
    color: #F44336;
    opacity: 1; }
  input[type=text] + label:after,
  input[type=password] + label:after,
  input[type=email] + label:after,
  input[type=url] + label:after,
  input[type=time] + label:after,
  input[type=date] + label:after,
  input[type=datetime-local] + label:after,
  input[type=tel] + label:after,
  input[type=number] + label:after,
  input[type=search] + label:after,
  textarea.materialize-textarea + label:after {
    display: block;
    content: "";
    position: absolute;
    top: 65px;
    opacity: 0;
    transition: 0.2s opacity ease-out, 0.2s color ease-out; }

.input-field {
  position: relative;
  margin-top: 1rem; }
  .input-field label {
    color: #9e9e9e;
    position: absolute;
    top: 0.8rem;
    left: 0.75rem;
    font-size: 1rem;
    cursor: text;
    transition: .2s ease-out; }
  .input-field label.active {
    font-size: 0.8rem;
    transform: translateY(-140%); }
  .input-field .prefix {
    position: absolute;
    width: 3rem;
    font-size: 2rem;
    transition: color 0.2s; }
    .input-field .prefix.active {
      color: #9B3434; }
  .input-field .prefix ~ input,
  .input-field .prefix ~ textarea {
    margin-left: 3rem;
    width: 92%;
    width: calc(100% - 3rem); }
  .input-field .prefix ~ textarea {
    padding-top: .8rem; }
  .input-field .prefix ~ label {
    margin-left: 3rem; }
  @media only screen and (max-width: 992px) {
    .input-field .prefix ~ input {
      width: 86%;
      width: calc(100% - 3rem); } }
  @media only screen and (max-width: 600px) {
    .input-field .prefix ~ input {
      width: 80%;
      width: calc(100% - 3rem); } }

.input-field input[type=search] {
  display: block;
  line-height: inherit;
  padding-left: 4rem;
  width: calc(100% - 4rem); }
  .input-field input[type=search]:focus {
    background-color: #fff;
    border: 0;
    box-shadow: none;
    color: #444; }
    .input-field input[type=search]:focus + label i,
    .input-field input[type=search]:focus ~ .mdi-navigation-close,
    .input-field input[type=search]:focus ~ .material-icons {
      color: #444; }
  .input-field input[type=search] + label {
    left: 1rem; }
  .input-field input[type=search] ~ .mdi-navigation-close,
  .input-field input[type=search] ~ .material-icons {
    position: absolute;
    top: 0;
    right: 1rem;
    color: transparent;
    cursor: pointer;
    font-size: 2rem;
    transition: .3s color; }

textarea {
  width: 100%;
  height: 3rem;
  background-color: transparent; }
  textarea.materialize-textarea {
    overflow-y: hidden;
    /* prevents scroll bar flash */
    padding: 1.6rem 0;
    /* prevents text jump on Enter keypress */
    resize: none;
    min-height: 3rem; }

.hiddendiv {
  display: none;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* future version of deprecated 'word-wrap' */
  padding-top: 1.2rem;
  /* prevents text jump on Enter keypress */ }

/***************
  Radio Buttons
***************/
/* Remove default Radio Buttons */
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
  visibility: hidden; }

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  transition: .28s ease;
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  user-select: none; }

[type="radio"] + label:before,
[type="radio"] + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 16px;
  height: 16px;
  z-index: 0;
  transition: .28s ease; }

/* Unchecked styles */
[type="radio"]:not(:checked) + label:before {
  border-radius: 50%;
  border: 2px solid #5a5a5a; }

[type="radio"]:not(:checked) + label:after {
  border-radius: 50%;
  border: 2px solid #5a5a5a;
  z-index: -1;
  transform: scale(0); }

/* Checked styles */
[type="radio"]:checked + label:before {
  border-radius: 50%;
  border: 2px solid transparent; }

[type="radio"]:checked + label:after {
  border-radius: 50%;
  border: 2px solid #9B3434;
  background-color: #9B3434;
  z-index: 0;
  transform: scale(1.02); }

/* Radio With gap */
[type="radio"].with-gap:checked + label:before {
  border-radius: 50%;
  border: 2px solid #9B3434; }

[type="radio"].with-gap:checked + label:after {
  border-radius: 50%;
  border: 2px solid #9B3434;
  background-color: #9B3434;
  z-index: 0;
  transform: scale(0.5); }

/* Disabled Radio With gap */
[type="radio"].with-gap:disabled:checked + label:before {
  border: 2px solid rgba(0, 0, 0, 0.26); }

[type="radio"].with-gap:disabled:checked + label:after {
  border: none;
  background-color: rgba(0, 0, 0, 0.26); }

/* Disabled style */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.26); }

[type="radio"]:disabled + label {
  color: rgba(0, 0, 0, 0.26); }

[type="radio"]:disabled:not(:checked) + label:before {
  border-color: rgba(0, 0, 0, 0.26); }

[type="radio"]:disabled:checked + label:after {
  background-color: rgba(0, 0, 0, 0.26);
  border-color: #BDBDBD; }

/***************
   Checkboxes
***************/
/* CUSTOM CSS CHECKBOXES */
form p {
  margin-bottom: 10px;
  text-align: left; }

form p:last-child {
  margin-bottom: 0; }

/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  visibility: hidden; }

[type="checkbox"] {
  /* checkbox aspect */ }
  [type="checkbox"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */ }
  [type="checkbox"] + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid #5a5a5a;
    border-radius: 1px;
    margin-top: 2px;
    transition: .2s; }
  [type="checkbox"]:not(:checked):disabled + label:before {
    border: none;
    background-color: rgba(0, 0, 0, 0.26); }

[type="checkbox"]:checked + label:before {
  top: -4px;
  left: -3px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #9B3434;
  border-bottom: 2px solid #9B3434;
  transform: rotate(40deg);
  backface-visibility: hidden;
  transform-origin: 100% 100%; }

[type="checkbox"]:checked:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.26);
  border-bottom: 2px solid rgba(0, 0, 0, 0.26); }

/* Indeterminate checkbox */
[type="checkbox"]:indeterminate + label:before {
  left: -10px;
  top: -11px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid #9B3434;
  border-bottom: none;
  transform: rotate(90deg);
  backface-visibility: hidden;
  transform-origin: 100% 100%; }

[type="checkbox"]:indeterminate:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.26);
  background-color: transparent; }

[type="checkbox"].filled-in + label:after {
  border-radius: 2px; }

[type="checkbox"].filled-in + label:before,
[type="checkbox"].filled-in + label:after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  z-index: 1; }

[type="checkbox"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0; }

[type="checkbox"].filled-in:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in:checked + label:after {
  top: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid #9B3434;
  background-color: #9B3434;
  z-index: 0; }

[type="checkbox"].filled-in:disabled:not(:checked) + label:before {
  background-color: transparent;
  border: 2px solid transparent; }

[type="checkbox"].filled-in:disabled:not(:checked) + label:after {
  border-color: transparent;
  background-color: #BDBDBD; }

[type="checkbox"].filled-in:disabled:checked + label:before {
  background-color: transparent; }

[type="checkbox"].filled-in:disabled:checked + label:after {
  background-color: #BDBDBD;
  border-color: #BDBDBD; }

/***************
     Switch
***************/
.switch,
.switch * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none; }

.switch label {
  cursor: pointer; }

.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0; }

.switch label input[type=checkbox]:checked + .lever {
  background-color: #bd9292; }

.switch label input[type=checkbox]:checked + .lever:after {
  background-color: #9B3434; }

.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 40px;
  height: 15px;
  background-color: #818181;
  border-radius: 15px;
  margin-right: 10px;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0 16px; }

.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #F1F1F1;
  border-radius: 21px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
  left: -5px;
  top: -3px;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease; }

input[type=checkbox]:checked:not(:disabled) ~ .lever:active:after {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(155, 52, 52, 0.1); }

input[type=checkbox]:not(:disabled) ~ .lever:active:after {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08); }

.switch label input[type=checkbox]:checked + .lever:after {
  left: 24px; }

.switch input[type=checkbox][disabled] + .lever {
  cursor: default; }

.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: #BDBDBD; }

/***************
  Select Field
***************/
.select-label {
  position: absolute; }

.select-wrapper {
  position: relative; }
  .select-wrapper input.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    outline: none;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 15px 0;
    padding: 0;
    display: block; }
  .select-wrapper span.caret {
    color: initial;
    position: absolute;
    right: 0;
    top: 16px;
    font-size: 10px; }
    .select-wrapper span.caret.disabled {
      color: rgba(0, 0, 0, 0.26); }
  .select-wrapper + label {
    position: absolute;
    top: -14px;
    font-size: 0.8rem; }

select {
  display: none; }

select.browser-default {
  display: block; }

select:disabled {
  color: rgba(0, 0, 0, 0.3); }

.select-wrapper input.select-dropdown:disabled {
  color: rgba(0, 0, 0, 0.3);
  cursor: default;
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -ms-user-select: none;
  /* IE10+ */
  border-bottom: 1px solid rgba(0, 0, 0, 0.3); }

.select-wrapper i {
  color: rgba(0, 0, 0, 0.3); }

.select-dropdown li.disabled,
.select-dropdown li.disabled > span,
.select-dropdown li.optgroup {
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent; }

.select-dropdown li img {
  height: 40px;
  width: 40px;
  margin: 5px 15px;
  float: right; }

.select-dropdown li.optgroup {
  border-top: 1px solid #eee; }
  .select-dropdown li.optgroup.selected > span {
    color: rgba(0, 0, 0, 0.7); }
  .select-dropdown li.optgroup > span {
    color: rgba(0, 0, 0, 0.4); }
  .select-dropdown li.optgroup ~ li:not(.optgroup) {
    padding-left: 1rem; }

/*********************
      File Input
**********************/
.file-field {
  position: relative; }
  .file-field .file-path-wrapper {
    overflow: hidden;
    padding-left: 10px; }
  .file-field input.file-path {
    width: 100%; }
  .file-field .btn, .file-field .btn-large {
    float: left;
    height: 3rem;
    line-height: 3rem; }
  .file-field span {
    cursor: pointer; }
  .file-field input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0); }

/***************
      Range
***************/
.range-field {
  position: relative; }

input[type=range], input[type=range] + .thumb {
  cursor: pointer; }

input[type=range] {
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  margin: 15px 0px;
  padding: 0; }

input[type=range] + .thumb {
  position: absolute;
  border: none;
  height: 0;
  width: 0;
  border-radius: 50%;
  background-color: #9B3434;
  top: 10px;
  margin-left: -6px;
  transform-origin: 50% 50%;
  transform: rotate(-45deg); }
  input[type=range] + .thumb .value {
    display: block;
    width: 30px;
    text-align: center;
    color: #9B3434;
    font-size: 0;
    transform: rotate(45deg); }
  input[type=range] + .thumb.active {
    border-radius: 50% 50% 50% 0; }
    input[type=range] + .thumb.active .value {
      color: #fff;
      margin-left: -1px;
      margin-top: 8px;
      font-size: 10px; }

input[type=range]:focus {
  outline: none; }

input[type=range] {
  -webkit-appearance: none; }

input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  background: #c2c0c2;
  border: none; }

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #9B3434;
  transform-origin: 50% 50%;
  margin: -5px 0 0 0;
  transition: .3s; }

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc; }

input[type=range] {
  /* fix for FF unable to apply focus style bug  */
  border: 1px solid white;
  /*required for proper track sizing in FF*/ }

input[type=range]::-moz-range-track {
  height: 3px;
  background: #ddd;
  border: none; }

input[type=range]::-moz-range-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #9B3434;
  margin-top: -5px; }

/*hide the outline behind the border*/
input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px; }

input[type=range]:focus::-moz-range-track {
  background: #ccc; }

input[type=range]::-ms-track {
  height: 3px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent; }

input[type=range]::-ms-fill-lower {
  background: #777; }

input[type=range]::-ms-fill-upper {
  background: #ddd; }

input[type=range]::-ms-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #9B3434; }

input[type=range]:focus::-ms-fill-lower {
  background: #888; }

input[type=range]:focus::-ms-fill-upper {
  background: #ccc; }

/***************************
   Text Inputs + Textarea
****************************/
select {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  height: 3rem; }

/*
    @license
    Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
    This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
    The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
    The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
    Code distributed by Google as part of the polymer project is also
    subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
 */
/**************************/
/* STYLES FOR THE SPINNER */
/**************************/
/*
 * Constants:
 *      STROKEWIDTH = 3px
 *      ARCSIZE     = 270 degrees (amount of circle the arc takes up)
 *      ARCTIME     = 1333ms (time it takes to expand and contract arc)
 *      ARCSTARTROT = 216 degrees (how much the start location of the arc
 *                                should rotate each time, 216 gives us a
 *                                5 pointed star shape (it's 360/5 * 3).
 *                                For a 7 pointed star, we might do
 *                                360/7 * 3 = 154.286)
 *      CONTAINERWIDTH = 28px
 *      SHRINK_TIME = 400ms
 */
.preloader-wrapper {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px; }
  .preloader-wrapper.small {
    width: 36px;
    height: 36px; }
  .preloader-wrapper.big {
    width: 64px;
    height: 64px; }
  .preloader-wrapper.active {
    /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
    -webkit-animation: container-rotate 1568ms linear infinite;
    animation: container-rotate 1568ms linear infinite; }

@-webkit-keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes container-rotate {
  to {
    transform: rotate(360deg); } }

.spinner-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-color: #9B3434; }

.spinner-blue,
.spinner-blue-only {
  border-color: #4285f4; }

.spinner-red,
.spinner-red-only {
  border-color: #db4437; }

.spinner-yellow,
.spinner-yellow-only {
  border-color: #f4b400; }

.spinner-green,
.spinner-green-only {
  border-color: #0f9d58; }

/**
 * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
 *
 * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
 * guarantee that the animation will start _exactly_ after that value. So we avoid using
 * animation-delay and instead set custom keyframes for each color (as redundant as it
 * seems).
 *
 * We write out each animation in full (instead of separating animation-name,
 * animation-duration, etc.) because under the polyfill, Safari does not recognize those
 * specific properties properly, treats them as -webkit-animation, and overrides the
 * other animation rules. See https://github.com/Polymer/platform/issues/53.
 */
.active .spinner-layer.spinner-blue {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-red {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-yellow {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-green {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer,
.active .spinner-layer.spinner-blue-only,
.active .spinner-layer.spinner-red-only,
.active .spinner-layer.spinner-yellow-only,
.active .spinner-layer.spinner-green-only {
  /* durations: 4 * ARCTIME */
  opacity: 1;
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg); }
  /* 0.5 * ARCSIZE */
  25% {
    -webkit-transform: rotate(270deg); }
  /* 1   * ARCSIZE */
  37.5% {
    -webkit-transform: rotate(405deg); }
  /* 1.5 * ARCSIZE */
  50% {
    -webkit-transform: rotate(540deg); }
  /* 2   * ARCSIZE */
  62.5% {
    -webkit-transform: rotate(675deg); }
  /* 2.5 * ARCSIZE */
  75% {
    -webkit-transform: rotate(810deg); }
  /* 3   * ARCSIZE */
  87.5% {
    -webkit-transform: rotate(945deg); }
  /* 3.5 * ARCSIZE */
  to {
    -webkit-transform: rotate(1080deg); }
  /* 4   * ARCSIZE */ }

@keyframes fill-unfill-rotate {
  12.5% {
    transform: rotate(135deg); }
  /* 0.5 * ARCSIZE */
  25% {
    transform: rotate(270deg); }
  /* 1   * ARCSIZE */
  37.5% {
    transform: rotate(405deg); }
  /* 1.5 * ARCSIZE */
  50% {
    transform: rotate(540deg); }
  /* 2   * ARCSIZE */
  62.5% {
    transform: rotate(675deg); }
  /* 2.5 * ARCSIZE */
  75% {
    transform: rotate(810deg); }
  /* 3   * ARCSIZE */
  87.5% {
    transform: rotate(945deg); }
  /* 3.5 * ARCSIZE */
  to {
    transform: rotate(1080deg); }
  /* 4   * ARCSIZE */ }

@-webkit-keyframes blue-fade-in-out {
  from {
    opacity: 1; }
  25% {
    opacity: 1; }
  26% {
    opacity: 0; }
  89% {
    opacity: 0; }
  90% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@keyframes blue-fade-in-out {
  from {
    opacity: 1; }
  25% {
    opacity: 1; }
  26% {
    opacity: 0; }
  89% {
    opacity: 0; }
  90% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@-webkit-keyframes red-fade-in-out {
  from {
    opacity: 0; }
  15% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  51% {
    opacity: 0; } }

@keyframes red-fade-in-out {
  from {
    opacity: 0; }
  15% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  51% {
    opacity: 0; } }

@-webkit-keyframes yellow-fade-in-out {
  from {
    opacity: 0; }
  40% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  76% {
    opacity: 0; } }

@keyframes yellow-fade-in-out {
  from {
    opacity: 0; }
  40% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  76% {
    opacity: 0; } }

@-webkit-keyframes green-fade-in-out {
  from {
    opacity: 0; }
  65% {
    opacity: 0; }
  75% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes green-fade-in-out {
  from {
    opacity: 0; }
  65% {
    opacity: 0; }
  75% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/**
 * Patch the gap that appear between the two adjacent div.circle-clipper while the
 * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
 */
.gap-patch {
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  overflow: hidden;
  border-color: inherit; }

.gap-patch .circle {
  width: 1000%;
  left: -450%; }

.circle-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit; }
  .circle-clipper .circle {
    width: 200%;
    height: 100%;
    border-width: 3px;
    /* STROKEWIDTH */
    border-style: solid;
    border-color: inherit;
    border-bottom-color: transparent !important;
    border-radius: 50%;
    -webkit-animation: none;
    animation: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; }
  .circle-clipper.left .circle {
    left: 0;
    border-right-color: transparent !important;
    -webkit-transform: rotate(129deg);
    transform: rotate(129deg); }
  .circle-clipper.right .circle {
    left: -100%;
    border-left-color: transparent !important;
    -webkit-transform: rotate(-129deg);
    transform: rotate(-129deg); }

.active .circle-clipper.left .circle {
  /* duration: ARCTIME */
  -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .circle-clipper.right .circle {
  /* duration: ARCTIME */
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg); } }

@keyframes left-spin {
  from {
    transform: rotate(130deg); }
  50% {
    transform: rotate(-5deg); }
  to {
    transform: rotate(130deg); } }

@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg); } }

@keyframes right-spin {
  from {
    transform: rotate(-130deg); }
  50% {
    transform: rotate(5deg); }
  to {
    transform: rotate(-130deg); } }

#spinnerContainer.cooldown {
  /* duration: SHRINK_TIME */
  -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); }

@-webkit-keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/**
 * The picker input element.
 */
.picker__input {
  cursor: default; }

/**
 * When the picker is opened, the input element is "activated".
 */
.picker__input.picker__input--active {
  border-color: #0089ec; }

/**
 * The holder is the only "scrollable" top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%; }

/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  -webkit-transition: background 0.15s ease-out, top 0s 0.15s;
  -moz-transition: background 0.15s ease-out, top 0s 0.15s;
  transition: background 0.15s ease-out, top 0s 0.15s;
  -webkit-backface-visibility: hidden; }

/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  width: 300px;
  max-height: 350px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

@media (min-height: 28.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%; } }

@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%; } }

/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%; }

@media (min-height: 28.875em) {
  .picker__wrap {
    display: block; } }

/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #ffffff;
  display: table-cell;
  vertical-align: middle; }

@media (min-height: 28.875em) {
  .picker__box {
    display: block;
    border: 1px solid #777777;
    border-top-color: #898989;
    border-bottom-width: 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); } }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  top: 0;
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  -webkit-transition: background 0.15s ease-out;
  -moz-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out; }

.picker--opened .picker__frame {
  top: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1; }

@media (min-height: 35.875em) {
  .picker--opened .picker__frame {
    top: 10%;
    bottom: 20%auto; } }

/**
 * For `large` screens, transform into an inline picker.
 */
/* ==========================================================================
   CUSTOM MATERIALIZE STYLES
   ========================================================================== */
.picker__input.picker__input--active {
  border-color: #E3F2FD; }

.picker__frame {
  margin: 0 auto;
  max-width: 325px; }

@media (min-height: 38.875em) {
  .picker--opened .picker__frame {
    top: 10%;
    bottom: auto; } }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  height: 2em;
  padding: 0;
  margin-left: .25em;
  margin-right: .25em; }

.picker__select--month.browser-default {
  display: inline;
  background-color: #FFFFFF;
  width: 40%; }

.picker__select--year.browser-default {
  display: inline;
  background-color: #FFFFFF;
  width: 25%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: rgba(0, 0, 0, 0.05); }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: 0.5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em; }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 1rem;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

.picker__table th, .picker__table td {
  text-align: center; }

.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

/**
 * The days on the calendar
 */
.picker__day--today {
  position: relative;
  color: #595959;
  letter-spacing: -.3;
  padding: .75rem 0;
  font-weight: 400;
  border: 1px solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaaaaa; }

.picker__day--infocus:hover {
  cursor: pointer;
  color: #000;
  font-weight: 500; }

.picker__day--outfocus {
  display: none;
  padding: .75rem 0;
  color: #fff; }

.picker__day--outfocus:hover {
  cursor: pointer;
  color: #dddddd;
  font-weight: 500; }

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  border-radius: 50%;
  transform: scale(0.75);
  background: #0089ec;
  color: #ffffff; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: rgba(0, 0, 0, 0.05);
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa; }

/* ==========================================================================
   CUSTOM MATERIALIZE STYLES
   ========================================================================== */
.picker__box {
  border-radius: 2px;
  overflow: hidden; }

.picker__date-display {
  text-align: center;
  background-color: #9B3434;
  color: #fff;
  padding-bottom: 15px;
  font-weight: 300; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #d6abab; }

.picker__weekday-display {
  background-color: #802b2b;
  padding: 10px;
  font-weight: 200;
  letter-spacing: .5;
  font-size: 1rem;
  margin-bottom: 15px; }

.picker__month-display {
  text-transform: uppercase;
  font-size: 2rem; }

.picker__day-display {
  font-size: 4.5rem;
  font-weight: 400; }

.picker__year-display {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.4); }

.picker__box {
  padding: 0; }

.picker__calendar-container {
  padding: 0 1rem; }
  .picker__calendar-container thead {
    border: none; }

.picker__table {
  margin-top: 0;
  margin-bottom: .5em; }

.picker__day--infocus {
  color: #595959;
  letter-spacing: -.3;
  padding: .75rem 0;
  font-weight: 400;
  border: 1px solid transparent; }

.picker__day.picker__day--today {
  color: #9B3434; }

.picker__day.picker__day--today.picker__day--selected {
  color: #fff; }

.picker__weekday {
  font-size: .9rem; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  border-radius: 50%;
  transform: scale(0.9);
  background-color: #9B3434;
  color: #ffffff; }
  .picker__day--selected.picker__day--outfocus,
  .picker__day--selected:hover.picker__day--outfocus,
  .picker--focused .picker__day--selected.picker__day--outfocus {
    background-color: #d6abab; }

.picker__footer {
  text-align: right;
  padding: 5px 10px; }

.picker__close, .picker__today {
  font-size: 1.1rem;
  padding: 0 1rem;
  color: #9B3434; }

.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #676767;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #676767; }

button.picker__today:focus, button.picker__clear:focus, button.picker__close:focus {
  background-color: #d6abab; }

/* ==========================================================================
   $BASE-TIME-PICKER
   ========================================================================== */
/**
 * The list of times.
 */
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0; }

/**
 * The times on the clock.
 */
.picker__list-item {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin-bottom: -1px;
  position: relative;
  background: #ffffff;
  padding: 0.75em 1.25em; }

@media (min-height: 46.75em) {
  .picker__list-item {
    padding: 0.5em 1em; } }

/* Hovered time */
.picker__list-item:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-color: #0089ec;
  z-index: 10; }

/* Highlighted and hovered/focused time */
.picker__list-item--highlighted {
  border-color: #0089ec;
  z-index: 10; }

.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

/* Selected and hovered/focused time */
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected {
  background: #0089ec;
  color: #ffffff;
  z-index: 10; }

/* Disabled time */
.picker__list-item--disabled,
.picker__list-item--disabled:hover,
.picker--focused .picker__list-item--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
  border-color: #dddddd;
  z-index: auto; }

/**
 * The clear button
 */
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: none;
  border: 0;
  font-weight: 500;
  font-size: .67em;
  text-align: center;
  text-transform: uppercase;
  color: #666; }

.picker--time .picker__button--clear:hover,
.picker--time .picker__button--clear:focus {
  color: #000000;
  background: #b1dcfb;
  background: #ee2200;
  border-color: #ee2200;
  cursor: pointer;
  color: #ffffff;
  outline: none; }

.picker--time .picker__button--clear:before {
  top: -0.25em;
  color: #666;
  font-size: 1.25em;
  font-weight: bold; }

.picker--time .picker__button--clear:hover:before,
.picker--time .picker__button--clear:focus:before {
  color: #ffffff; }

/* ==========================================================================
   $DEFAULT-TIME-PICKER
   ========================================================================== */
/**
 * The frame the bounds the time picker.
 */
.picker--time .picker__frame {
  min-width: 256px;
  max-width: 320px; }

/**
 * The picker box.
 */
.picker--time .picker__box {
  font-size: 1em;
  background: #f2f2f2;
  padding: 0; }

@media (min-height: 40.125em) {
  .picker--time .picker__box {
    margin-bottom: 5em; } }

.container:after, div.bookshelf section.shelf div.shelf-items:after, header#main-navigation nav[role="main"]:after {
  content: "";
  display: table;
  clear: both;
  border-spacing: 0; }

.parent:before,
.parent-mobile:before,
.parent-tablet:before,
.parent-ipad-landscape:before,
.parent-ad-desktop:before,
.parent:after, .parent-mobile:after, .parent-tablet:after, .parent-ipad-landscape:after, .parent-ad-desktop:after {
  content: "";
  display: table;
  border-spacing: 0; }

.parent:after, .parent-mobile:after, .parent-tablet:after, .parent-ipad-landscape:after, .parent-ad-desktop:after {
  clear: both; }

.parent, .parent-mobile, .parent-tablet, .parent-ipad-landscape, .parent-ad-desktop {
  zoom: 1; }

.gridle-debug .push-1on5, .push-1on5.gridle-debug, .gridle-debug .push-0, .push-0.gridle-debug, .gridle-debug .push-1, .push-1.gridle-debug, .gridle-debug .push-2, .push-2.gridle-debug, .gridle-debug .push-3, .push-3.gridle-debug, .gridle-debug .push-4, .push-4.gridle-debug, .gridle-debug .push-5, .push-5.gridle-debug, .gridle-debug .push-6, .push-6.gridle-debug, .gridle-debug .push-7, .push-7.gridle-debug, .gridle-debug .push-8, .push-8.gridle-debug, .gridle-debug .push-9, .push-9.gridle-debug, .gridle-debug .push-10, .push-10.gridle-debug, .gridle-debug .push-11, .push-11.gridle-debug, .gridle-debug .push-12, .push-12.gridle-debug, .gridle-debug .push-mobile-1on5, .push-mobile-1on5.gridle-debug, .gridle-debug .push-mobile-0, .push-mobile-0.gridle-debug, .gridle-debug .push-mobile-1, .push-mobile-1.gridle-debug, .gridle-debug .push-mobile-2, .push-mobile-2.gridle-debug, .gridle-debug .push-mobile-3, .push-mobile-3.gridle-debug, .gridle-debug .push-mobile-4, .push-mobile-4.gridle-debug, .gridle-debug .push-mobile-5, .push-mobile-5.gridle-debug, .gridle-debug .push-mobile-6, .push-mobile-6.gridle-debug, .gridle-debug .push-mobile-7, .push-mobile-7.gridle-debug, .gridle-debug .push-mobile-8, .push-mobile-8.gridle-debug, .gridle-debug .push-mobile-9, .push-mobile-9.gridle-debug, .gridle-debug .push-mobile-10, .push-mobile-10.gridle-debug, .gridle-debug .push-mobile-11, .push-mobile-11.gridle-debug, .gridle-debug .push-mobile-12, .push-mobile-12.gridle-debug, .gridle-debug .push-tablet-1on5, .push-tablet-1on5.gridle-debug, .gridle-debug .push-tablet-0, .push-tablet-0.gridle-debug, .gridle-debug .push-tablet-1, .push-tablet-1.gridle-debug, .gridle-debug .push-tablet-2, .push-tablet-2.gridle-debug, .gridle-debug .push-tablet-3, .push-tablet-3.gridle-debug, .gridle-debug .push-tablet-4, .push-tablet-4.gridle-debug, .gridle-debug .push-tablet-5, .push-tablet-5.gridle-debug, .gridle-debug .push-tablet-6, .push-tablet-6.gridle-debug, .gridle-debug .push-tablet-7, .push-tablet-7.gridle-debug, .gridle-debug .push-tablet-8, .push-tablet-8.gridle-debug, .gridle-debug .push-tablet-9, .push-tablet-9.gridle-debug, .gridle-debug .push-tablet-10, .push-tablet-10.gridle-debug, .gridle-debug .push-tablet-11, .push-tablet-11.gridle-debug, .gridle-debug .push-tablet-12, .push-tablet-12.gridle-debug, .gridle-debug .push-ipad-landscape-1on5, .push-ipad-landscape-1on5.gridle-debug, .gridle-debug .push-ipad-landscape-0, .push-ipad-landscape-0.gridle-debug, .gridle-debug .push-ipad-landscape-1, .push-ipad-landscape-1.gridle-debug, .gridle-debug .push-ipad-landscape-2, .push-ipad-landscape-2.gridle-debug, .gridle-debug .push-ipad-landscape-3, .push-ipad-landscape-3.gridle-debug, .gridle-debug .push-ipad-landscape-4, .push-ipad-landscape-4.gridle-debug, .gridle-debug .push-ipad-landscape-5, .push-ipad-landscape-5.gridle-debug, .gridle-debug .push-ipad-landscape-6, .push-ipad-landscape-6.gridle-debug, .gridle-debug .push-ipad-landscape-7, .push-ipad-landscape-7.gridle-debug, .gridle-debug .push-ipad-landscape-8, .push-ipad-landscape-8.gridle-debug, .gridle-debug .push-ipad-landscape-9, .push-ipad-landscape-9.gridle-debug, .gridle-debug .push-ipad-landscape-10, .push-ipad-landscape-10.gridle-debug, .gridle-debug .push-ipad-landscape-11, .push-ipad-landscape-11.gridle-debug, .gridle-debug .push-ipad-landscape-12, .push-ipad-landscape-12.gridle-debug, .gridle-debug .push-ad-desktop-1on5, .push-ad-desktop-1on5.gridle-debug, .gridle-debug .push-ad-desktop-0, .push-ad-desktop-0.gridle-debug, .gridle-debug .push-ad-desktop-1, .push-ad-desktop-1.gridle-debug, .gridle-debug .push-ad-desktop-2, .push-ad-desktop-2.gridle-debug, .gridle-debug .push-ad-desktop-3, .push-ad-desktop-3.gridle-debug, .gridle-debug .push-ad-desktop-4, .push-ad-desktop-4.gridle-debug, .gridle-debug .push-ad-desktop-5, .push-ad-desktop-5.gridle-debug, .gridle-debug .push-ad-desktop-6, .push-ad-desktop-6.gridle-debug, .gridle-debug .push-ad-desktop-7, .push-ad-desktop-7.gridle-debug, .gridle-debug .push-ad-desktop-8, .push-ad-desktop-8.gridle-debug, .gridle-debug .push-ad-desktop-9, .push-ad-desktop-9.gridle-debug, .gridle-debug .push-ad-desktop-10, .push-ad-desktop-10.gridle-debug, .gridle-debug .push-ad-desktop-11, .push-ad-desktop-11.gridle-debug, .gridle-debug .push-ad-desktop-12, .push-ad-desktop-12.gridle-debug, .gridle-debug .pull-1on5, .pull-1on5.gridle-debug, .gridle-debug .pull-0, .pull-0.gridle-debug, .gridle-debug .pull-1, .pull-1.gridle-debug, .gridle-debug .pull-2, .pull-2.gridle-debug, .gridle-debug .pull-3, .pull-3.gridle-debug, .gridle-debug .pull-4, .pull-4.gridle-debug, .gridle-debug .pull-5, .pull-5.gridle-debug, .gridle-debug .pull-6, .pull-6.gridle-debug, .gridle-debug .pull-7, .pull-7.gridle-debug, .gridle-debug .pull-8, .pull-8.gridle-debug, .gridle-debug .pull-9, .pull-9.gridle-debug, .gridle-debug .pull-10, .pull-10.gridle-debug, .gridle-debug .pull-11, .pull-11.gridle-debug, .gridle-debug .pull-12, .pull-12.gridle-debug, .gridle-debug .pull-mobile-1on5, .pull-mobile-1on5.gridle-debug, .gridle-debug .pull-mobile-0, .pull-mobile-0.gridle-debug, .gridle-debug .pull-mobile-1, .pull-mobile-1.gridle-debug, .gridle-debug .pull-mobile-2, .pull-mobile-2.gridle-debug, .gridle-debug .pull-mobile-3, .pull-mobile-3.gridle-debug, .gridle-debug .pull-mobile-4, .pull-mobile-4.gridle-debug, .gridle-debug .pull-mobile-5, .pull-mobile-5.gridle-debug, .gridle-debug .pull-mobile-6, .pull-mobile-6.gridle-debug, .gridle-debug .pull-mobile-7, .pull-mobile-7.gridle-debug, .gridle-debug .pull-mobile-8, .pull-mobile-8.gridle-debug, .gridle-debug .pull-mobile-9, .pull-mobile-9.gridle-debug, .gridle-debug .pull-mobile-10, .pull-mobile-10.gridle-debug, .gridle-debug .pull-mobile-11, .pull-mobile-11.gridle-debug, .gridle-debug .pull-mobile-12, .pull-mobile-12.gridle-debug, .gridle-debug .pull-tablet-1on5, .pull-tablet-1on5.gridle-debug, .gridle-debug .pull-tablet-0, .pull-tablet-0.gridle-debug, .gridle-debug .pull-tablet-1, .pull-tablet-1.gridle-debug, .gridle-debug .pull-tablet-2, .pull-tablet-2.gridle-debug, .gridle-debug .pull-tablet-3, .pull-tablet-3.gridle-debug, .gridle-debug .pull-tablet-4, .pull-tablet-4.gridle-debug, .gridle-debug .pull-tablet-5, .pull-tablet-5.gridle-debug, .gridle-debug .pull-tablet-6, .pull-tablet-6.gridle-debug, .gridle-debug .pull-tablet-7, .pull-tablet-7.gridle-debug, .gridle-debug .pull-tablet-8, .pull-tablet-8.gridle-debug, .gridle-debug .pull-tablet-9, .pull-tablet-9.gridle-debug, .gridle-debug .pull-tablet-10, .pull-tablet-10.gridle-debug, .gridle-debug .pull-tablet-11, .pull-tablet-11.gridle-debug, .gridle-debug .pull-tablet-12, .pull-tablet-12.gridle-debug, .gridle-debug .pull-ipad-landscape-1on5, .pull-ipad-landscape-1on5.gridle-debug, .gridle-debug .pull-ipad-landscape-0, .pull-ipad-landscape-0.gridle-debug, .gridle-debug .pull-ipad-landscape-1, .pull-ipad-landscape-1.gridle-debug, .gridle-debug .pull-ipad-landscape-2, .pull-ipad-landscape-2.gridle-debug, .gridle-debug .pull-ipad-landscape-3, .pull-ipad-landscape-3.gridle-debug, .gridle-debug .pull-ipad-landscape-4, .pull-ipad-landscape-4.gridle-debug, .gridle-debug .pull-ipad-landscape-5, .pull-ipad-landscape-5.gridle-debug, .gridle-debug .pull-ipad-landscape-6, .pull-ipad-landscape-6.gridle-debug, .gridle-debug .pull-ipad-landscape-7, .pull-ipad-landscape-7.gridle-debug, .gridle-debug .pull-ipad-landscape-8, .pull-ipad-landscape-8.gridle-debug, .gridle-debug .pull-ipad-landscape-9, .pull-ipad-landscape-9.gridle-debug, .gridle-debug .pull-ipad-landscape-10, .pull-ipad-landscape-10.gridle-debug, .gridle-debug .pull-ipad-landscape-11, .pull-ipad-landscape-11.gridle-debug, .gridle-debug .pull-ipad-landscape-12, .pull-ipad-landscape-12.gridle-debug, .gridle-debug .pull-ad-desktop-1on5, .pull-ad-desktop-1on5.gridle-debug, .gridle-debug .pull-ad-desktop-0, .pull-ad-desktop-0.gridle-debug, .gridle-debug .pull-ad-desktop-1, .pull-ad-desktop-1.gridle-debug, .gridle-debug .pull-ad-desktop-2, .pull-ad-desktop-2.gridle-debug, .gridle-debug .pull-ad-desktop-3, .pull-ad-desktop-3.gridle-debug, .gridle-debug .pull-ad-desktop-4, .pull-ad-desktop-4.gridle-debug, .gridle-debug .pull-ad-desktop-5, .pull-ad-desktop-5.gridle-debug, .gridle-debug .pull-ad-desktop-6, .pull-ad-desktop-6.gridle-debug, .gridle-debug .pull-ad-desktop-7, .pull-ad-desktop-7.gridle-debug, .gridle-debug .pull-ad-desktop-8, .pull-ad-desktop-8.gridle-debug, .gridle-debug .pull-ad-desktop-9, .pull-ad-desktop-9.gridle-debug, .gridle-debug .pull-ad-desktop-10, .pull-ad-desktop-10.gridle-debug, .gridle-debug .pull-ad-desktop-11, .pull-ad-desktop-11.gridle-debug, .gridle-debug .pull-ad-desktop-12, .pull-ad-desktop-12.gridle-debug {
  background-size: 50px 90%;
  background-position: 0 50%;
  background-repeat: repeat-x; }

.push-1on5, .push-0, .push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-mobile-1on5, .push-mobile-0, .push-mobile-1, .push-mobile-2, .push-mobile-3, .push-mobile-4, .push-mobile-5, .push-mobile-6, .push-mobile-7, .push-mobile-8, .push-mobile-9, .push-mobile-10, .push-mobile-11, .push-mobile-12, .push-tablet-1on5, .push-tablet-0, .push-tablet-1, .push-tablet-2, .push-tablet-3, .push-tablet-4, .push-tablet-5, .push-tablet-6, .push-tablet-7, .push-tablet-8, .push-tablet-9, .push-tablet-10, .push-tablet-11, .push-tablet-12, .push-ipad-landscape-1on5, .push-ipad-landscape-0, .push-ipad-landscape-1, .push-ipad-landscape-2, .push-ipad-landscape-3, .push-ipad-landscape-4, .push-ipad-landscape-5, .push-ipad-landscape-6, .push-ipad-landscape-7, .push-ipad-landscape-8, .push-ipad-landscape-9, .push-ipad-landscape-10, .push-ipad-landscape-11, .push-ipad-landscape-12, .push-ad-desktop-1on5, .push-ad-desktop-0, .push-ad-desktop-1, .push-ad-desktop-2, .push-ad-desktop-3, .push-ad-desktop-4, .push-ad-desktop-5, .push-ad-desktop-6, .push-ad-desktop-7, .push-ad-desktop-8, .push-ad-desktop-9, .push-ad-desktop-10, .push-ad-desktop-11, .push-ad-desktop-12, .pull-1on5, .pull-0, .pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-mobile-1on5, .pull-mobile-0, .pull-mobile-1, .pull-mobile-2, .pull-mobile-3, .pull-mobile-4, .pull-mobile-5, .pull-mobile-6, .pull-mobile-7, .pull-mobile-8, .pull-mobile-9, .pull-mobile-10, .pull-mobile-11, .pull-mobile-12, .pull-tablet-1on5, .pull-tablet-0, .pull-tablet-1, .pull-tablet-2, .pull-tablet-3, .pull-tablet-4, .pull-tablet-5, .pull-tablet-6, .pull-tablet-7, .pull-tablet-8, .pull-tablet-9, .pull-tablet-10, .pull-tablet-11, .pull-tablet-12, .pull-ipad-landscape-1on5, .pull-ipad-landscape-0, .pull-ipad-landscape-1, .pull-ipad-landscape-2, .pull-ipad-landscape-3, .pull-ipad-landscape-4, .pull-ipad-landscape-5, .pull-ipad-landscape-6, .pull-ipad-landscape-7, .pull-ipad-landscape-8, .pull-ipad-landscape-9, .pull-ipad-landscape-10, .pull-ipad-landscape-11, .pull-ipad-landscape-12, .pull-ad-desktop-1on5, .pull-ad-desktop-0, .pull-ad-desktop-1, .pull-ad-desktop-2, .pull-ad-desktop-3, .pull-ad-desktop-4, .pull-ad-desktop-5, .pull-ad-desktop-6, .pull-ad-desktop-7, .pull-ad-desktop-8, .pull-ad-desktop-9, .pull-ad-desktop-10, .pull-ad-desktop-11, .pull-ad-desktop-12 {
  position: relative; }

.container, div.bookshelf section.shelf div.shelf-items, header#main-navigation nav[role="main"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.parent, .parent-mobile, .parent-tablet, .parent-ipad-landscape, .parent-ad-desktop {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.gridle-debug .container, .gridle-debug div.bookshelf section.shelf div.shelf-items, div.bookshelf section.shelf .gridle-debug div.shelf-items, .container.gridle-debug, div.bookshelf section.shelf div.gridle-debug.shelf-items, .gridle-debug header#main-navigation nav[role="main"], header#main-navigation nav[role="main"].gridle-debug {
  background-color: #f5f5f5; }

.gridle-debug .grid-1on5, .grid-1on5.gridle-debug, .gridle-debug .grid-0, .grid-0.gridle-debug, .gridle-debug .grid-1, .grid-1.gridle-debug, .gridle-debug .grid-2, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.top-row .gridle-debug li, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row .gridle-debug li, .grid-2.gridle-debug, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.gridle-debug, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.gridle-debug, .gridle-debug .grid-3, .gridle-debug div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items .gridle-debug div.item, .grid-3.gridle-debug, div.bookshelf section.shelf div.shelf-items div.gridle-debug.item, .gridle-debug .grid-4, .gridle-debug html.mobile .single-article article.post-content.feature.essay .featuredImage, html.mobile .single-article article.post-content.feature.essay .gridle-debug .featuredImage, .gridle-debug html.mobile .single-article article.post-content.feature.essay figure.alignleft, html.mobile .single-article article.post-content.feature.essay .gridle-debug figure.alignleft, .gridle-debug html.mobile .single-article article.post-content.feature.essay img.alignleft, html.mobile .single-article article.post-content.feature.essay .gridle-debug img.alignleft, .gridle-debug html.mobile .single-short-takes article.post-content.feature.essay .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay .gridle-debug .featuredImage, .gridle-debug html.mobile .single-short-takes article.post-content.feature.essay figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignleft, .gridle-debug html.mobile .single-short-takes article.post-content.feature.essay img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .gridle-debug img.alignleft, .gridle-debug .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay .gridle-debug .featuredImage, .gridle-debug .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay .gridle-debug figure.alignleft, .gridle-debug .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay .gridle-debug img.alignleft, .gridle-debug .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay .gridle-debug .featuredImage, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignleft, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignleft, .gridle-debug html.mobile .single-article article.post-content.feature.essay figure.alignright, html.mobile .single-article article.post-content.feature.essay .gridle-debug figure.alignright, .gridle-debug html.mobile .single-article article.post-content.feature.essay img.alignright, html.mobile .single-article article.post-content.feature.essay .gridle-debug img.alignright, .gridle-debug html.mobile .single-short-takes article.post-content.feature.essay figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignright, .gridle-debug html.mobile .single-short-takes article.post-content.feature.essay img.alignright, html.mobile .single-short-takes article.post-content.feature.essay .gridle-debug img.alignright, .gridle-debug .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay .gridle-debug figure.alignright, .gridle-debug .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay .gridle-debug img.alignright, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignright, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignright, .gridle-debug html.mobile div.bookshelf section.shelf div.shelf-items div.item, html.mobile div.bookshelf section.shelf div.shelf-items .gridle-debug div.item, .gridle-debug html.mobile section.singular-av article div.post-content .featuredImage, html.mobile section.singular-av article div.post-content .gridle-debug .featuredImage, .gridle-debug html.mobile section.singular-av article div.post-content figure.alignleft, html.mobile section.singular-av article div.post-content .gridle-debug figure.alignleft, .gridle-debug html.mobile section.singular-av article div.post-content img.alignleft, html.mobile section.singular-av article div.post-content .gridle-debug img.alignleft, .gridle-debug section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content .gridle-debug .featuredImage, .gridle-debug section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content .gridle-debug figure.alignleft, .gridle-debug section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content .gridle-debug img.alignleft, .grid-4.gridle-debug, html.mobile .single-article article.post-content.feature.essay .gridle-debug.featuredImage, html.mobile .single-article article.post-content.feature.essay figure.gridle-debug.alignleft, html.mobile .single-article article.post-content.feature.essay img.gridle-debug.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage, html.mobile .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft, html.mobile .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft, .single-article article.post-content.feature.essay .gridle-debug.featuredImage, .single-article article.post-content.feature.essay figure.gridle-debug.alignleft, .single-article article.post-content.feature.essay img.gridle-debug.alignleft, .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft, html.mobile .single-article article.post-content.feature.essay figure.gridle-debug.alignright, html.mobile .single-article article.post-content.feature.essay img.gridle-debug.alignright, html.mobile .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright, html.mobile .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright, .single-article article.post-content.feature.essay figure.gridle-debug.alignright, .single-article article.post-content.feature.essay img.gridle-debug.alignright, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright, html.mobile div.bookshelf section.shelf div.shelf-items div.gridle-debug.item, html.mobile section.singular-av article div.post-content .gridle-debug.featuredImage, html.mobile section.singular-av article div.post-content figure.gridle-debug.alignleft, html.mobile section.singular-av article div.post-content img.gridle-debug.alignleft, section.singular-av article div.post-content .gridle-debug.featuredImage, section.singular-av article div.post-content figure.gridle-debug.alignleft, section.singular-av article div.post-content img.gridle-debug.alignleft, .gridle-debug .grid-5, .grid-5.gridle-debug, .gridle-debug .grid-6, .grid-6.gridle-debug, .gridle-debug .grid-7, .grid-7.gridle-debug, .gridle-debug .grid-8, .grid-8.gridle-debug, .gridle-debug .grid-9, .grid-9.gridle-debug, .gridle-debug .grid-10, .grid-10.gridle-debug, .gridle-debug .grid-11, .grid-11.gridle-debug, .gridle-debug .grid-12, .grid-12.gridle-debug, .gridle-debug .grid-mobile-1on5, .grid-mobile-1on5.gridle-debug, .gridle-debug .grid-mobile-0, .grid-mobile-0.gridle-debug, .gridle-debug .grid-mobile-1, .grid-mobile-1.gridle-debug, .gridle-debug .grid-mobile-2, .grid-mobile-2.gridle-debug, .gridle-debug .grid-mobile-3, .grid-mobile-3.gridle-debug, .gridle-debug .grid-mobile-4, .grid-mobile-4.gridle-debug, .gridle-debug .grid-mobile-5, .grid-mobile-5.gridle-debug, .gridle-debug .grid-mobile-6, .grid-mobile-6.gridle-debug, .gridle-debug .grid-mobile-7, .grid-mobile-7.gridle-debug, .gridle-debug .grid-mobile-8, .grid-mobile-8.gridle-debug, .gridle-debug .grid-mobile-9, .grid-mobile-9.gridle-debug, .gridle-debug .grid-mobile-10, .grid-mobile-10.gridle-debug, .gridle-debug .grid-mobile-11, .grid-mobile-11.gridle-debug, .gridle-debug .grid-mobile-12, .grid-mobile-12.gridle-debug, .gridle-debug .grid-tablet-1on5, .grid-tablet-1on5.gridle-debug, .gridle-debug .grid-tablet-0, .grid-tablet-0.gridle-debug, .gridle-debug .grid-tablet-1, .grid-tablet-1.gridle-debug, .gridle-debug .grid-tablet-2, .grid-tablet-2.gridle-debug, .gridle-debug .grid-tablet-3, .grid-tablet-3.gridle-debug, .gridle-debug .grid-tablet-4, .grid-tablet-4.gridle-debug, .gridle-debug .grid-tablet-5, .grid-tablet-5.gridle-debug, .gridle-debug .grid-tablet-6, .grid-tablet-6.gridle-debug, .gridle-debug .grid-tablet-7, .grid-tablet-7.gridle-debug, .gridle-debug .grid-tablet-8, .grid-tablet-8.gridle-debug, .gridle-debug .grid-tablet-9, .grid-tablet-9.gridle-debug, .gridle-debug .grid-tablet-10, .grid-tablet-10.gridle-debug, .gridle-debug .grid-tablet-11, .grid-tablet-11.gridle-debug, .gridle-debug .grid-tablet-12, .grid-tablet-12.gridle-debug, .gridle-debug .grid-ipad-landscape-1on5, .grid-ipad-landscape-1on5.gridle-debug, .gridle-debug .grid-ipad-landscape-0, .grid-ipad-landscape-0.gridle-debug, .gridle-debug .grid-ipad-landscape-1, .grid-ipad-landscape-1.gridle-debug, .gridle-debug .grid-ipad-landscape-2, .grid-ipad-landscape-2.gridle-debug, .gridle-debug .grid-ipad-landscape-3, .grid-ipad-landscape-3.gridle-debug, .gridle-debug .grid-ipad-landscape-4, .grid-ipad-landscape-4.gridle-debug, .gridle-debug .grid-ipad-landscape-5, .grid-ipad-landscape-5.gridle-debug, .gridle-debug .grid-ipad-landscape-6, .grid-ipad-landscape-6.gridle-debug, .gridle-debug .grid-ipad-landscape-7, .grid-ipad-landscape-7.gridle-debug, .gridle-debug .grid-ipad-landscape-8, .grid-ipad-landscape-8.gridle-debug, .gridle-debug .grid-ipad-landscape-9, .grid-ipad-landscape-9.gridle-debug, .gridle-debug .grid-ipad-landscape-10, .grid-ipad-landscape-10.gridle-debug, .gridle-debug .grid-ipad-landscape-11, .grid-ipad-landscape-11.gridle-debug, .gridle-debug .grid-ipad-landscape-12, .grid-ipad-landscape-12.gridle-debug, .gridle-debug .grid-ad-desktop-1on5, .grid-ad-desktop-1on5.gridle-debug, .gridle-debug .grid-ad-desktop-0, .grid-ad-desktop-0.gridle-debug, .gridle-debug .grid-ad-desktop-1, .grid-ad-desktop-1.gridle-debug, .gridle-debug .grid-ad-desktop-2, .grid-ad-desktop-2.gridle-debug, .gridle-debug .grid-ad-desktop-3, .grid-ad-desktop-3.gridle-debug, .gridle-debug .grid-ad-desktop-4, .grid-ad-desktop-4.gridle-debug, .gridle-debug .grid-ad-desktop-5, .grid-ad-desktop-5.gridle-debug, .gridle-debug .grid-ad-desktop-6, .grid-ad-desktop-6.gridle-debug, .gridle-debug .grid-ad-desktop-7, .grid-ad-desktop-7.gridle-debug, .gridle-debug .grid-ad-desktop-8, .grid-ad-desktop-8.gridle-debug, .gridle-debug .grid-ad-desktop-9, .grid-ad-desktop-9.gridle-debug, .gridle-debug .grid-ad-desktop-10, .grid-ad-desktop-10.gridle-debug, .gridle-debug .grid-ad-desktop-11, .grid-ad-desktop-11.gridle-debug, .gridle-debug .grid-ad-desktop-12, .grid-ad-desktop-12.gridle-debug {
  background-color: #daeff5; }
  .gridle-debug .grid-1on5:before,
  .grid-1on5.gridle-debug:before,
  .gridle-debug .grid-0:before,
  .grid-0.gridle-debug:before,
  .gridle-debug .grid-1:before,
  .grid-1.gridle-debug:before,
  .gridle-debug .grid-2:before,
  .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.top-row li:before,
  header#main-navigation nav[role='sub'] div.sub-section ul.top-row .gridle-debug li:before, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li:before,
  header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row .gridle-debug li:before, .grid-2.gridle-debug:before,
  header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.gridle-debug:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.gridle-debug:before, .gridle-debug .grid-3:before,
  .gridle-debug div.bookshelf section.shelf div.shelf-items div.item:before,
  div.bookshelf section.shelf div.shelf-items .gridle-debug div.item:before, .grid-3.gridle-debug:before,
  div.bookshelf section.shelf div.shelf-items div.gridle-debug.item:before, .gridle-debug .grid-4:before,
  .gridle-debug .single-article article.post-content.feature.essay .featuredImage:before,
  .single-article article.post-content.feature.essay .gridle-debug .featuredImage:before, .gridle-debug .single-article article.post-content.feature.essay figure.alignleft:before,
  .single-article article.post-content.feature.essay .gridle-debug figure.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay img.alignleft:before,
  .single-article article.post-content.feature.essay .gridle-debug img.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay .featuredImage:before,
  .single-short-takes article.post-content.feature.essay .gridle-debug .featuredImage:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignleft:before,
  .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignleft:before,
  .single-short-takes article.post-content.feature.essay .gridle-debug img.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay figure.alignright:before,
  .single-article article.post-content.feature.essay .gridle-debug figure.alignright:before, .gridle-debug .single-article article.post-content.feature.essay img.alignright:before,
  .single-article article.post-content.feature.essay .gridle-debug img.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignright:before,
  .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignright:before,
  .single-short-takes article.post-content.feature.essay .gridle-debug img.alignright:before, .gridle-debug section.singular-av article div.post-content .featuredImage:before,
  section.singular-av article div.post-content .gridle-debug .featuredImage:before, .gridle-debug section.singular-av article div.post-content figure.alignleft:before,
  section.singular-av article div.post-content .gridle-debug figure.alignleft:before, .gridle-debug section.singular-av article div.post-content img.alignleft:before,
  section.singular-av article div.post-content .gridle-debug img.alignleft:before, .grid-4.gridle-debug:before,
  .single-article article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-article article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-article article.post-content.feature.essay img.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright:before, section.singular-av article div.post-content .gridle-debug.featuredImage:before, section.singular-av article div.post-content figure.gridle-debug.alignleft:before, section.singular-av article div.post-content img.gridle-debug.alignleft:before, .gridle-debug .grid-5:before,
  .grid-5.gridle-debug:before,
  .gridle-debug .grid-6:before,
  .grid-6.gridle-debug:before,
  .gridle-debug .grid-7:before,
  .grid-7.gridle-debug:before,
  .gridle-debug .grid-8:before,
  .grid-8.gridle-debug:before,
  .gridle-debug .grid-9:before,
  .grid-9.gridle-debug:before,
  .gridle-debug .grid-10:before,
  .grid-10.gridle-debug:before,
  .gridle-debug .grid-11:before,
  .grid-11.gridle-debug:before,
  .gridle-debug .grid-12:before,
  .grid-12.gridle-debug:before,
  .gridle-debug .grid-mobile-1on5:before,
  .grid-mobile-1on5.gridle-debug:before,
  .gridle-debug .grid-mobile-0:before,
  .grid-mobile-0.gridle-debug:before,
  .gridle-debug .grid-mobile-1:before,
  .grid-mobile-1.gridle-debug:before,
  .gridle-debug .grid-mobile-2:before,
  .grid-mobile-2.gridle-debug:before,
  .gridle-debug .grid-mobile-3:before,
  .grid-mobile-3.gridle-debug:before,
  .gridle-debug .grid-mobile-4:before,
  .grid-mobile-4.gridle-debug:before,
  .gridle-debug .grid-mobile-5:before,
  .grid-mobile-5.gridle-debug:before,
  .gridle-debug .grid-mobile-6:before,
  .grid-mobile-6.gridle-debug:before,
  .gridle-debug .grid-mobile-7:before,
  .grid-mobile-7.gridle-debug:before,
  .gridle-debug .grid-mobile-8:before,
  .grid-mobile-8.gridle-debug:before,
  .gridle-debug .grid-mobile-9:before,
  .grid-mobile-9.gridle-debug:before,
  .gridle-debug .grid-mobile-10:before,
  .grid-mobile-10.gridle-debug:before,
  .gridle-debug .grid-mobile-11:before,
  .grid-mobile-11.gridle-debug:before,
  .gridle-debug .grid-mobile-12:before,
  .grid-mobile-12.gridle-debug:before,
  .gridle-debug .grid-tablet-1on5:before,
  .grid-tablet-1on5.gridle-debug:before,
  .gridle-debug .grid-tablet-0:before,
  .grid-tablet-0.gridle-debug:before,
  .gridle-debug .grid-tablet-1:before,
  .grid-tablet-1.gridle-debug:before,
  .gridle-debug .grid-tablet-2:before,
  .grid-tablet-2.gridle-debug:before,
  .gridle-debug .grid-tablet-3:before,
  .grid-tablet-3.gridle-debug:before,
  .gridle-debug .grid-tablet-4:before,
  .grid-tablet-4.gridle-debug:before,
  .gridle-debug .grid-tablet-5:before,
  .grid-tablet-5.gridle-debug:before,
  .gridle-debug .grid-tablet-6:before,
  .grid-tablet-6.gridle-debug:before,
  .gridle-debug .grid-tablet-7:before,
  .grid-tablet-7.gridle-debug:before,
  .gridle-debug .grid-tablet-8:before,
  .grid-tablet-8.gridle-debug:before,
  .gridle-debug .grid-tablet-9:before,
  .grid-tablet-9.gridle-debug:before,
  .gridle-debug .grid-tablet-10:before,
  .grid-tablet-10.gridle-debug:before,
  .gridle-debug .grid-tablet-11:before,
  .grid-tablet-11.gridle-debug:before,
  .gridle-debug .grid-tablet-12:before,
  .grid-tablet-12.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-1on5:before,
  .grid-ipad-landscape-1on5.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-0:before,
  .grid-ipad-landscape-0.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-1:before,
  .grid-ipad-landscape-1.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-2:before,
  .grid-ipad-landscape-2.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-3:before,
  .grid-ipad-landscape-3.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-4:before,
  .grid-ipad-landscape-4.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-5:before,
  .grid-ipad-landscape-5.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-6:before,
  .grid-ipad-landscape-6.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-7:before,
  .grid-ipad-landscape-7.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-8:before,
  .grid-ipad-landscape-8.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-9:before,
  .grid-ipad-landscape-9.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-10:before,
  .grid-ipad-landscape-10.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-11:before,
  .grid-ipad-landscape-11.gridle-debug:before,
  .gridle-debug .grid-ipad-landscape-12:before,
  .grid-ipad-landscape-12.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-1on5:before,
  .grid-ad-desktop-1on5.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-0:before,
  .grid-ad-desktop-0.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-1:before,
  .grid-ad-desktop-1.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-2:before,
  .grid-ad-desktop-2.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-3:before,
  .grid-ad-desktop-3.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-4:before,
  .grid-ad-desktop-4.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-5:before,
  .grid-ad-desktop-5.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-6:before,
  .grid-ad-desktop-6.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-7:before,
  .grid-ad-desktop-7.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-8:before,
  .grid-ad-desktop-8.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-9:before,
  .grid-ad-desktop-9.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-10:before,
  .grid-ad-desktop-10.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-11:before,
  .grid-ad-desktop-11.gridle-debug:before,
  .gridle-debug .grid-ad-desktop-12:before,
  .grid-ad-desktop-12.gridle-debug:before,
  .gridle-debug .grid-1on5:after, .grid-1on5.gridle-debug:after, .gridle-debug .grid-0:after, .grid-0.gridle-debug:after, .gridle-debug .grid-1:after, .grid-1.gridle-debug:after, .gridle-debug .grid-2:after, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.top-row li:after, header#main-navigation nav[role='sub'] div.sub-section ul.top-row .gridle-debug li:after, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li:after, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row .gridle-debug li:after, .grid-2.gridle-debug:after, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.gridle-debug:after, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.gridle-debug:after, .gridle-debug .grid-3:after, .gridle-debug div.bookshelf section.shelf div.shelf-items div.item:after, div.bookshelf section.shelf div.shelf-items .gridle-debug div.item:after, .grid-3.gridle-debug:after, div.bookshelf section.shelf div.shelf-items div.gridle-debug.item:after, .gridle-debug .grid-4:after, .gridle-debug .single-article article.post-content.feature.essay .featuredImage:after, .single-article article.post-content.feature.essay .gridle-debug .featuredImage:after, .gridle-debug .single-article article.post-content.feature.essay figure.alignleft:after, .single-article article.post-content.feature.essay .gridle-debug figure.alignleft:after, .gridle-debug .single-article article.post-content.feature.essay img.alignleft:after, .single-article article.post-content.feature.essay .gridle-debug img.alignleft:after, .gridle-debug .single-short-takes article.post-content.feature.essay .featuredImage:after, .single-short-takes article.post-content.feature.essay .gridle-debug .featuredImage:after, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignleft:after, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignleft:after, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignleft:after, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignleft:after, .gridle-debug .single-article article.post-content.feature.essay figure.alignright:after, .single-article article.post-content.feature.essay .gridle-debug figure.alignright:after, .gridle-debug .single-article article.post-content.feature.essay img.alignright:after, .single-article article.post-content.feature.essay .gridle-debug img.alignright:after, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignright:after, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignright:after, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignright:after, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignright:after, .gridle-debug section.singular-av article div.post-content .featuredImage:after, section.singular-av article div.post-content .gridle-debug .featuredImage:after, .gridle-debug section.singular-av article div.post-content figure.alignleft:after, section.singular-av article div.post-content .gridle-debug figure.alignleft:after, .gridle-debug section.singular-av article div.post-content img.alignleft:after, section.singular-av article div.post-content .gridle-debug img.alignleft:after, .grid-4.gridle-debug:after, .single-article article.post-content.feature.essay .gridle-debug.featuredImage:after, .single-article article.post-content.feature.essay figure.gridle-debug.alignleft:after, .single-article article.post-content.feature.essay img.gridle-debug.alignleft:after, .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage:after, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft:after, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft:after, .single-article article.post-content.feature.essay figure.gridle-debug.alignright:after, .single-article article.post-content.feature.essay img.gridle-debug.alignright:after, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright:after, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright:after, section.singular-av article div.post-content .gridle-debug.featuredImage:after, section.singular-av article div.post-content figure.gridle-debug.alignleft:after, section.singular-av article div.post-content img.gridle-debug.alignleft:after, .gridle-debug .grid-5:after, .grid-5.gridle-debug:after, .gridle-debug .grid-6:after, .grid-6.gridle-debug:after, .gridle-debug .grid-7:after, .grid-7.gridle-debug:after, .gridle-debug .grid-8:after, .grid-8.gridle-debug:after, .gridle-debug .grid-9:after, .grid-9.gridle-debug:after, .gridle-debug .grid-10:after, .grid-10.gridle-debug:after, .gridle-debug .grid-11:after, .grid-11.gridle-debug:after, .gridle-debug .grid-12:after, .grid-12.gridle-debug:after, .gridle-debug .grid-mobile-1on5:after, .grid-mobile-1on5.gridle-debug:after, .gridle-debug .grid-mobile-0:after, .grid-mobile-0.gridle-debug:after, .gridle-debug .grid-mobile-1:after, .grid-mobile-1.gridle-debug:after, .gridle-debug .grid-mobile-2:after, .grid-mobile-2.gridle-debug:after, .gridle-debug .grid-mobile-3:after, .grid-mobile-3.gridle-debug:after, .gridle-debug .grid-mobile-4:after, .grid-mobile-4.gridle-debug:after, .gridle-debug .grid-mobile-5:after, .grid-mobile-5.gridle-debug:after, .gridle-debug .grid-mobile-6:after, .grid-mobile-6.gridle-debug:after, .gridle-debug .grid-mobile-7:after, .grid-mobile-7.gridle-debug:after, .gridle-debug .grid-mobile-8:after, .grid-mobile-8.gridle-debug:after, .gridle-debug .grid-mobile-9:after, .grid-mobile-9.gridle-debug:after, .gridle-debug .grid-mobile-10:after, .grid-mobile-10.gridle-debug:after, .gridle-debug .grid-mobile-11:after, .grid-mobile-11.gridle-debug:after, .gridle-debug .grid-mobile-12:after, .grid-mobile-12.gridle-debug:after, .gridle-debug .grid-tablet-1on5:after, .grid-tablet-1on5.gridle-debug:after, .gridle-debug .grid-tablet-0:after, .grid-tablet-0.gridle-debug:after, .gridle-debug .grid-tablet-1:after, .grid-tablet-1.gridle-debug:after, .gridle-debug .grid-tablet-2:after, .grid-tablet-2.gridle-debug:after, .gridle-debug .grid-tablet-3:after, .grid-tablet-3.gridle-debug:after, .gridle-debug .grid-tablet-4:after, .grid-tablet-4.gridle-debug:after, .gridle-debug .grid-tablet-5:after, .grid-tablet-5.gridle-debug:after, .gridle-debug .grid-tablet-6:after, .grid-tablet-6.gridle-debug:after, .gridle-debug .grid-tablet-7:after, .grid-tablet-7.gridle-debug:after, .gridle-debug .grid-tablet-8:after, .grid-tablet-8.gridle-debug:after, .gridle-debug .grid-tablet-9:after, .grid-tablet-9.gridle-debug:after, .gridle-debug .grid-tablet-10:after, .grid-tablet-10.gridle-debug:after, .gridle-debug .grid-tablet-11:after, .grid-tablet-11.gridle-debug:after, .gridle-debug .grid-tablet-12:after, .grid-tablet-12.gridle-debug:after, .gridle-debug .grid-ipad-landscape-1on5:after, .grid-ipad-landscape-1on5.gridle-debug:after, .gridle-debug .grid-ipad-landscape-0:after, .grid-ipad-landscape-0.gridle-debug:after, .gridle-debug .grid-ipad-landscape-1:after, .grid-ipad-landscape-1.gridle-debug:after, .gridle-debug .grid-ipad-landscape-2:after, .grid-ipad-landscape-2.gridle-debug:after, .gridle-debug .grid-ipad-landscape-3:after, .grid-ipad-landscape-3.gridle-debug:after, .gridle-debug .grid-ipad-landscape-4:after, .grid-ipad-landscape-4.gridle-debug:after, .gridle-debug .grid-ipad-landscape-5:after, .grid-ipad-landscape-5.gridle-debug:after, .gridle-debug .grid-ipad-landscape-6:after, .grid-ipad-landscape-6.gridle-debug:after, .gridle-debug .grid-ipad-landscape-7:after, .grid-ipad-landscape-7.gridle-debug:after, .gridle-debug .grid-ipad-landscape-8:after, .grid-ipad-landscape-8.gridle-debug:after, .gridle-debug .grid-ipad-landscape-9:after, .grid-ipad-landscape-9.gridle-debug:after, .gridle-debug .grid-ipad-landscape-10:after, .grid-ipad-landscape-10.gridle-debug:after, .gridle-debug .grid-ipad-landscape-11:after, .grid-ipad-landscape-11.gridle-debug:after, .gridle-debug .grid-ipad-landscape-12:after, .grid-ipad-landscape-12.gridle-debug:after, .gridle-debug .grid-ad-desktop-1on5:after, .grid-ad-desktop-1on5.gridle-debug:after, .gridle-debug .grid-ad-desktop-0:after, .grid-ad-desktop-0.gridle-debug:after, .gridle-debug .grid-ad-desktop-1:after, .grid-ad-desktop-1.gridle-debug:after, .gridle-debug .grid-ad-desktop-2:after, .grid-ad-desktop-2.gridle-debug:after, .gridle-debug .grid-ad-desktop-3:after, .grid-ad-desktop-3.gridle-debug:after, .gridle-debug .grid-ad-desktop-4:after, .grid-ad-desktop-4.gridle-debug:after, .gridle-debug .grid-ad-desktop-5:after, .grid-ad-desktop-5.gridle-debug:after, .gridle-debug .grid-ad-desktop-6:after, .grid-ad-desktop-6.gridle-debug:after, .gridle-debug .grid-ad-desktop-7:after, .grid-ad-desktop-7.gridle-debug:after, .gridle-debug .grid-ad-desktop-8:after, .grid-ad-desktop-8.gridle-debug:after, .gridle-debug .grid-ad-desktop-9:after, .grid-ad-desktop-9.gridle-debug:after, .gridle-debug .grid-ad-desktop-10:after, .grid-ad-desktop-10.gridle-debug:after, .gridle-debug .grid-ad-desktop-11:after, .grid-ad-desktop-11.gridle-debug:after, .gridle-debug .grid-ad-desktop-12:after, .grid-ad-desktop-12.gridle-debug:after {
    content: "";
    display: block;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowRkEzNzVFNTg1NjgxMUUyOUI4RjhEMzg4QzM4QjZFOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowRkEzNzVFNjg1NjgxMUUyOUI4RjhEMzg4QzM4QjZFOCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjBGQTM3NUUzODU2ODExRTI5QjhGOEQzODhDMzhCNkU4IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjBGQTM3NUU0ODU2ODExRTI5QjhGOEQzODhDMzhCNkU4Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8++5+BhQAAAA9JREFUeNpiYGBgkAIIMAAAHwAbZIBtGgAAAABJRU5ErkJggg==);
    margin: 10px 0;
    padding: 5px 0;
    text-align: center;
    color: white;
    font-size: 11px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block !important; }

.grid-1on5, .grid-0, .grid-1, .grid-2, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, .grid-3, div.bookshelf section.shelf div.shelf-items div.item, .grid-4, html.mobile .single-article article.post-content.feature.essay .featuredImage, html.mobile .single-article article.post-content.feature.essay figure.alignleft, html.mobile .single-article article.post-content.feature.essay img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft, html.mobile .single-article article.post-content.feature.essay figure.alignright, html.mobile .single-article article.post-content.feature.essay img.alignright, html.mobile .single-short-takes article.post-content.feature.essay figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright, html.mobile div.bookshelf section.shelf div.shelf-items div.item, html.mobile section.singular-av article div.post-content .featuredImage, html.mobile section.singular-av article div.post-content figure.alignleft, html.mobile section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12, .grid-mobile-1on5, .grid-mobile-0, .grid-mobile-1, .grid-mobile-2, .grid-mobile-3, .grid-mobile-4, .grid-mobile-5, .grid-mobile-6, .grid-mobile-7, .grid-mobile-8, .grid-mobile-9, .grid-mobile-10, .grid-mobile-11, .grid-mobile-12, .grid-tablet-1on5, .grid-tablet-0, .grid-tablet-1, .grid-tablet-2, .grid-tablet-3, .grid-tablet-4, .grid-tablet-5, .grid-tablet-6, .grid-tablet-7, .grid-tablet-8, .grid-tablet-9, .grid-tablet-10, .grid-tablet-11, .grid-tablet-12, .grid-ipad-landscape-1on5, .grid-ipad-landscape-0, .grid-ipad-landscape-1, .grid-ipad-landscape-2, .grid-ipad-landscape-3, .grid-ipad-landscape-4, .grid-ipad-landscape-5, .grid-ipad-landscape-6, .grid-ipad-landscape-7, .grid-ipad-landscape-8, .grid-ipad-landscape-9, .grid-ipad-landscape-10, .grid-ipad-landscape-11, .grid-ipad-landscape-12, .grid-ad-desktop-1on5, .grid-ad-desktop-0, .grid-ad-desktop-1, .grid-ad-desktop-2, .grid-ad-desktop-3, .grid-ad-desktop-4, .grid-ad-desktop-5, .grid-ad-desktop-6, .grid-ad-desktop-7, .grid-ad-desktop-8, .grid-ad-desktop-9, .grid-ad-desktop-10, .grid-ad-desktop-11, .grid-ad-desktop-12 {
  display: inline-block;
  min-height: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.gridle-debug .prefix-1on5, .prefix-1on5.gridle-debug, .gridle-debug .prefix-0, .prefix-0.gridle-debug, .gridle-debug .prefix-1, .prefix-1.gridle-debug, .gridle-debug .prefix-2, .prefix-2.gridle-debug, .gridle-debug .prefix-3, .prefix-3.gridle-debug, .gridle-debug .prefix-4, .prefix-4.gridle-debug, .gridle-debug .prefix-5, .prefix-5.gridle-debug, .gridle-debug .prefix-6, .prefix-6.gridle-debug, .gridle-debug .prefix-7, .prefix-7.gridle-debug, .gridle-debug .prefix-8, .prefix-8.gridle-debug, .gridle-debug .prefix-9, .prefix-9.gridle-debug, .gridle-debug .prefix-10, .prefix-10.gridle-debug, .gridle-debug .prefix-11, .prefix-11.gridle-debug, .gridle-debug .prefix-12, .prefix-12.gridle-debug, .gridle-debug .prefix-mobile-1on5, .prefix-mobile-1on5.gridle-debug, .gridle-debug .prefix-mobile-0, .prefix-mobile-0.gridle-debug, .gridle-debug .prefix-mobile-1, .prefix-mobile-1.gridle-debug, .gridle-debug .prefix-mobile-2, .prefix-mobile-2.gridle-debug, .gridle-debug .prefix-mobile-3, .prefix-mobile-3.gridle-debug, .gridle-debug .prefix-mobile-4, .prefix-mobile-4.gridle-debug, .gridle-debug .prefix-mobile-5, .prefix-mobile-5.gridle-debug, .gridle-debug .prefix-mobile-6, .prefix-mobile-6.gridle-debug, .gridle-debug .prefix-mobile-7, .prefix-mobile-7.gridle-debug, .gridle-debug .prefix-mobile-8, .prefix-mobile-8.gridle-debug, .gridle-debug .prefix-mobile-9, .prefix-mobile-9.gridle-debug, .gridle-debug .prefix-mobile-10, .prefix-mobile-10.gridle-debug, .gridle-debug .prefix-mobile-11, .prefix-mobile-11.gridle-debug, .gridle-debug .prefix-mobile-12, .prefix-mobile-12.gridle-debug, .gridle-debug .prefix-tablet-1on5, .prefix-tablet-1on5.gridle-debug, .gridle-debug .prefix-tablet-0, .prefix-tablet-0.gridle-debug, .gridle-debug .prefix-tablet-1, .prefix-tablet-1.gridle-debug, .gridle-debug .prefix-tablet-2, .prefix-tablet-2.gridle-debug, .gridle-debug .prefix-tablet-3, .prefix-tablet-3.gridle-debug, .gridle-debug .prefix-tablet-4, .prefix-tablet-4.gridle-debug, .gridle-debug .prefix-tablet-5, .prefix-tablet-5.gridle-debug, .gridle-debug .prefix-tablet-6, .prefix-tablet-6.gridle-debug, .gridle-debug .prefix-tablet-7, .prefix-tablet-7.gridle-debug, .gridle-debug .prefix-tablet-8, .prefix-tablet-8.gridle-debug, .gridle-debug .prefix-tablet-9, .prefix-tablet-9.gridle-debug, .gridle-debug .prefix-tablet-10, .prefix-tablet-10.gridle-debug, .gridle-debug .prefix-tablet-11, .prefix-tablet-11.gridle-debug, .gridle-debug .prefix-tablet-12, .prefix-tablet-12.gridle-debug, .gridle-debug .prefix-ipad-landscape-1on5, .prefix-ipad-landscape-1on5.gridle-debug, .gridle-debug .prefix-ipad-landscape-0, .prefix-ipad-landscape-0.gridle-debug, .gridle-debug .prefix-ipad-landscape-1, .prefix-ipad-landscape-1.gridle-debug, .gridle-debug .prefix-ipad-landscape-2, .prefix-ipad-landscape-2.gridle-debug, .gridle-debug .prefix-ipad-landscape-3, .prefix-ipad-landscape-3.gridle-debug, .gridle-debug .prefix-ipad-landscape-4, .prefix-ipad-landscape-4.gridle-debug, .gridle-debug .prefix-ipad-landscape-5, .prefix-ipad-landscape-5.gridle-debug, .gridle-debug .prefix-ipad-landscape-6, .prefix-ipad-landscape-6.gridle-debug, .gridle-debug .prefix-ipad-landscape-7, .prefix-ipad-landscape-7.gridle-debug, .gridle-debug .prefix-ipad-landscape-8, .prefix-ipad-landscape-8.gridle-debug, .gridle-debug .prefix-ipad-landscape-9, .prefix-ipad-landscape-9.gridle-debug, .gridle-debug .prefix-ipad-landscape-10, .prefix-ipad-landscape-10.gridle-debug, .gridle-debug .prefix-ipad-landscape-11, .prefix-ipad-landscape-11.gridle-debug, .gridle-debug .prefix-ipad-landscape-12, .prefix-ipad-landscape-12.gridle-debug, .gridle-debug .prefix-ad-desktop-1on5, .prefix-ad-desktop-1on5.gridle-debug, .gridle-debug .prefix-ad-desktop-0, .prefix-ad-desktop-0.gridle-debug, .gridle-debug .prefix-ad-desktop-1, .prefix-ad-desktop-1.gridle-debug, .gridle-debug .prefix-ad-desktop-2, .prefix-ad-desktop-2.gridle-debug, .gridle-debug .prefix-ad-desktop-3, .prefix-ad-desktop-3.gridle-debug, .gridle-debug .prefix-ad-desktop-4, .prefix-ad-desktop-4.gridle-debug, .gridle-debug .prefix-ad-desktop-5, .prefix-ad-desktop-5.gridle-debug, .gridle-debug .prefix-ad-desktop-6, .prefix-ad-desktop-6.gridle-debug, .gridle-debug .prefix-ad-desktop-7, .prefix-ad-desktop-7.gridle-debug, .gridle-debug .prefix-ad-desktop-8, .prefix-ad-desktop-8.gridle-debug, .gridle-debug .prefix-ad-desktop-9, .prefix-ad-desktop-9.gridle-debug, .gridle-debug .prefix-ad-desktop-10, .prefix-ad-desktop-10.gridle-debug, .gridle-debug .prefix-ad-desktop-11, .prefix-ad-desktop-11.gridle-debug, .gridle-debug .prefix-ad-desktop-12, .prefix-ad-desktop-12.gridle-debug {
  background-color: #dae7e9 !important; }

.gridle-debug .suffix-1on5, .suffix-1on5.gridle-debug, .gridle-debug .suffix-0, .suffix-0.gridle-debug, .gridle-debug .suffix-1, .suffix-1.gridle-debug, .gridle-debug .suffix-2, .suffix-2.gridle-debug, .gridle-debug .suffix-3, .suffix-3.gridle-debug, .gridle-debug .suffix-4, .suffix-4.gridle-debug, .gridle-debug .suffix-5, .suffix-5.gridle-debug, .gridle-debug .suffix-6, .suffix-6.gridle-debug, .gridle-debug .suffix-7, .suffix-7.gridle-debug, .gridle-debug .suffix-8, .suffix-8.gridle-debug, .gridle-debug .suffix-9, .suffix-9.gridle-debug, .gridle-debug .suffix-10, .suffix-10.gridle-debug, .gridle-debug .suffix-11, .suffix-11.gridle-debug, .gridle-debug .suffix-12, .suffix-12.gridle-debug, .gridle-debug .suffix-mobile-1on5, .suffix-mobile-1on5.gridle-debug, .gridle-debug .suffix-mobile-0, .suffix-mobile-0.gridle-debug, .gridle-debug .suffix-mobile-1, .suffix-mobile-1.gridle-debug, .gridle-debug .suffix-mobile-2, .suffix-mobile-2.gridle-debug, .gridle-debug .suffix-mobile-3, .suffix-mobile-3.gridle-debug, .gridle-debug .suffix-mobile-4, .suffix-mobile-4.gridle-debug, .gridle-debug .suffix-mobile-5, .suffix-mobile-5.gridle-debug, .gridle-debug .suffix-mobile-6, .suffix-mobile-6.gridle-debug, .gridle-debug .suffix-mobile-7, .suffix-mobile-7.gridle-debug, .gridle-debug .suffix-mobile-8, .suffix-mobile-8.gridle-debug, .gridle-debug .suffix-mobile-9, .suffix-mobile-9.gridle-debug, .gridle-debug .suffix-mobile-10, .suffix-mobile-10.gridle-debug, .gridle-debug .suffix-mobile-11, .suffix-mobile-11.gridle-debug, .gridle-debug .suffix-mobile-12, .suffix-mobile-12.gridle-debug, .gridle-debug .suffix-tablet-1on5, .suffix-tablet-1on5.gridle-debug, .gridle-debug .suffix-tablet-0, .suffix-tablet-0.gridle-debug, .gridle-debug .suffix-tablet-1, .suffix-tablet-1.gridle-debug, .gridle-debug .suffix-tablet-2, .suffix-tablet-2.gridle-debug, .gridle-debug .suffix-tablet-3, .suffix-tablet-3.gridle-debug, .gridle-debug .suffix-tablet-4, .suffix-tablet-4.gridle-debug, .gridle-debug .suffix-tablet-5, .suffix-tablet-5.gridle-debug, .gridle-debug .suffix-tablet-6, .suffix-tablet-6.gridle-debug, .gridle-debug .suffix-tablet-7, .suffix-tablet-7.gridle-debug, .gridle-debug .suffix-tablet-8, .suffix-tablet-8.gridle-debug, .gridle-debug .suffix-tablet-9, .suffix-tablet-9.gridle-debug, .gridle-debug .suffix-tablet-10, .suffix-tablet-10.gridle-debug, .gridle-debug .suffix-tablet-11, .suffix-tablet-11.gridle-debug, .gridle-debug .suffix-tablet-12, .suffix-tablet-12.gridle-debug, .gridle-debug .suffix-ipad-landscape-1on5, .suffix-ipad-landscape-1on5.gridle-debug, .gridle-debug .suffix-ipad-landscape-0, .suffix-ipad-landscape-0.gridle-debug, .gridle-debug .suffix-ipad-landscape-1, .suffix-ipad-landscape-1.gridle-debug, .gridle-debug .suffix-ipad-landscape-2, .suffix-ipad-landscape-2.gridle-debug, .gridle-debug .suffix-ipad-landscape-3, .suffix-ipad-landscape-3.gridle-debug, .gridle-debug .suffix-ipad-landscape-4, .suffix-ipad-landscape-4.gridle-debug, .gridle-debug .suffix-ipad-landscape-5, .suffix-ipad-landscape-5.gridle-debug, .gridle-debug .suffix-ipad-landscape-6, .suffix-ipad-landscape-6.gridle-debug, .gridle-debug .suffix-ipad-landscape-7, .suffix-ipad-landscape-7.gridle-debug, .gridle-debug .suffix-ipad-landscape-8, .suffix-ipad-landscape-8.gridle-debug, .gridle-debug .suffix-ipad-landscape-9, .suffix-ipad-landscape-9.gridle-debug, .gridle-debug .suffix-ipad-landscape-10, .suffix-ipad-landscape-10.gridle-debug, .gridle-debug .suffix-ipad-landscape-11, .suffix-ipad-landscape-11.gridle-debug, .gridle-debug .suffix-ipad-landscape-12, .suffix-ipad-landscape-12.gridle-debug, .gridle-debug .suffix-ad-desktop-1on5, .suffix-ad-desktop-1on5.gridle-debug, .gridle-debug .suffix-ad-desktop-0, .suffix-ad-desktop-0.gridle-debug, .gridle-debug .suffix-ad-desktop-1, .suffix-ad-desktop-1.gridle-debug, .gridle-debug .suffix-ad-desktop-2, .suffix-ad-desktop-2.gridle-debug, .gridle-debug .suffix-ad-desktop-3, .suffix-ad-desktop-3.gridle-debug, .gridle-debug .suffix-ad-desktop-4, .suffix-ad-desktop-4.gridle-debug, .gridle-debug .suffix-ad-desktop-5, .suffix-ad-desktop-5.gridle-debug, .gridle-debug .suffix-ad-desktop-6, .suffix-ad-desktop-6.gridle-debug, .gridle-debug .suffix-ad-desktop-7, .suffix-ad-desktop-7.gridle-debug, .gridle-debug .suffix-ad-desktop-8, .suffix-ad-desktop-8.gridle-debug, .gridle-debug .suffix-ad-desktop-9, .suffix-ad-desktop-9.gridle-debug, .gridle-debug .suffix-ad-desktop-10, .suffix-ad-desktop-10.gridle-debug, .gridle-debug .suffix-ad-desktop-11, .suffix-ad-desktop-11.gridle-debug, .gridle-debug .suffix-ad-desktop-12, .suffix-ad-desktop-12.gridle-debug {
  background-color: #dae7e9 !important; }

/**
 * Str replace
 *
 * @param {string}  $string    String that you want to replace
 * @param {string}  $substr    String that is to be replaced by `$newsubstr`
 * @param {string}  $newsubstr String that replaces `$substr`
 * @param {number*} $all       Flag for replaceing all (1+) or not (0)
 * @return {string}
 */
/**
 * Map set
 *
 * @param 	Map 	$map 		The map to use
 * @param 	String 	$key 		The key to update
 * @param 	Mixed 	$value 		The new value
 * @return 	Map 			The new map
 */
/**
 * Get the column width in percent for the global or a specific context
 *
 * @param 	int 		$columns 					The number of columns to calculate
 * @param 	int 		$context : $gridle-columns-count 	 	The context to use
 * @return 	percentage 							The width in percent
 */
/**
 *  Get a state map
 *
 * @param 	string 		$name 		The name of the state to get
 * @return 	map 				A state map object
 */
/**
 * Check if a state exist :
 *
 * @param 	string 		$name 		The name of the state to check
 * @return 	Boolean 			true is exist
 */
/**
 * Get the media queries variables :
 *
 * @param 	int 		$index 	 	The media query indes
 * @param 	String 		$var 		The media query variable name
 * @return 	String|int 			The variable value
 */
/**
 * Get a variable
 *
 * @param 	String 		$varName 				The variable name
 * @param  	String 		$stateMap-or-stateName 	 	The state name or a map state value
 * @return 	Mixed 							The finded value
 */
/**
 * Set a variable in a state
 * @param 	Mixed $stateName-or-stateIndex 	The state name of state index
 * @param  	String $var                    		Variable name to assign
 * @param  	Mixed $newValue          		The new value to assign
 * @return 	List                         			The states list (full)
 */
/**
 * Generate a column
 *
 * @param 	String 		$name 			The column name (often count)
 * @param 	int 		$columns 		The column count that the column will take
 * @param 	int 		$context 		The context on witch the with will be calculed
 * @param 	Boolean 	$generateClasses 	Set if the column has to be generated in css
 */
/**
 * Generate classname
 *
 * @param 	List 		$parrern 	The pattern to use to generate classname
 * @param 	String 		$state 		The state
 * @param 	int 		$count 		The column count
 */
/**
 * Get the media query for a particular state, or with, etc...
 *
 * @param 	Mixed 		$state-or-min-width 		The state name of the min with
 * @param 	Mixed 		$max-width 			The max width if first param is a min width
 * @return 	String 						The media query string without the @media
 */
/**
 * Get states count
 * 
 * @return 	int 	The number of states defined
 */
/**
 * Setup
 */
/**
 *  Register a clear each class
 */
/**
 * Register a special class
 */
/**
 * Register default states
 */
/**
 * Register default mobile first states :
 */
/**
 * Set the debug device (not used for now)
 * 
 * @param 	String 		$state 		The state to update
 * @para m 	String 		$device 	The device to use (iphone, etc...)
 */
/**
 * Parent clear each
 */
/**
 * Vertical align :
 */
/**
 * Show inline
 *
 * @param 	String 		$state 		The state name
 */
/**
 * Generate a custom class for all the states
 *
 * @param 	list 	$pattern 		The name pattern of the class
 * @param 	list 	$statesNames 		The states names to generate
 */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: device-width; } }

#gridle-settings {
  content: '{ \\"version\\" : \\"1.3.40\\", \\"states\\" : { \\"retina\\":{ \\"query\\" : \\"(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx)\\", \\"classes\\" : false, \\"name\\" : \\"retina\\", \\"_gridle\\" : true }, \\"tv\\":{ \\"query\\" : \\"only tv\\", \\"classes\\" : false, \\"name\\" : \\"tv\\", \\"_gridle\\" : true }, \\"print\\":{ \\"query\\" : \\"only print\\", \\"classes\\" : false, \\"name\\" : \\"print\\", \\"_gridle\\" : true }, \\"portrait\\":{ \\"query\\" : \\"only screen and (orientation: portrait)\\", \\"classes\\" : false, \\"name\\" : \\"portrait\\", \\"_gridle\\" : true }, \\"landscape\\":{ \\"query\\" : \\"only screen and (orientation: landscape)\\", \\"classes\\" : false, \\"name\\" : \\"landscape\\", \\"_gridle\\" : true }, \\"default\\":{ \\"name\\" : \\"default\\", \\"min-width\\" : null, \\"max-width\\" : null, \\"query\\" : null, \\"classes\\" : true, \\"context\\" : \\"12\\", \\"gutter-width\\" : \\"20px\\", \\"direction\\" : \\"ltr\\", \\"name-multiplicator\\" : \\"1\\", \\"debug\\" : true, \\"debug-show-class-names\\" : true, \\"ie7-support\\" : false, \\"html-states-classes\\" : false, \\"generate-push-classes\\" : true, \\"generate-pull-classes\\" : true, \\"generate-prefix-classes\\" : true, \\"generate-suffix-classes\\" : true, \\"generate-helpers-classes\\" : true, \\"_gridle\\" : true }, \\"mobile\\":{ \\"name\\" : \\"mobile\\", \\"min-width\\" : null, \\"max-width\\" : \\"480px\\", \\"query\\" : \\"screen and (max-width: 480px)\\", \\"classes\\" : true, \\"context\\" : \\"12\\", \\"gutter-width\\" : \\"20px\\", \\"direction\\" : \\"ltr\\", \\"name-multiplicator\\" : \\"1\\", \\"debug\\" : true, \\"debug-show-class-names\\" : true, \\"ie7-support\\" : false, \\"html-states-classes\\" : false, \\"generate-push-classes\\" : true, \\"generate-pull-classes\\" : true, \\"generate-prefix-classes\\" : true, \\"generate-suffix-classes\\" : true, \\"generate-helpers-classes\\" : true, \\"_gridle\\" : true }, \\"tablet\\":{ \\"name\\" : \\"tablet\\", \\"min-width\\" : \\"481px\\", \\"max-width\\" : \\"1024px\\", \\"query\\" : \\"screen and (min-width: 481px) and (max-width: 1024px)\\", \\"classes\\" : true, \\"context\\" : \\"12\\", \\"gutter-width\\" : \\"20px\\", \\"direction\\" : \\"ltr\\", \\"name-multiplicator\\" : \\"1\\", \\"debug\\" : true, \\"debug-show-class-names\\" : true, \\"ie7-support\\" : false, \\"html-states-classes\\" : false, \\"generate-push-classes\\" : true, \\"generate-pull-classes\\" : true, \\"generate-prefix-classes\\" : true, \\"generate-suffix-classes\\" : true, \\"generate-helpers-classes\\" : true, \\"_gridle\\" : true }, \\"ipad-landscape\\":{ \\"name\\" : \\"ipad-landscape\\", \\"min-width\\" : null, \\"max-width\\" : null, \\"query\\" : \\"only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)\\", \\"classes\\" : true, \\"context\\" : \\"12\\", \\"gutter-width\\" : \\"0\\", \\"direction\\" : \\"ltr\\", \\"name-multiplicator\\" : \\"1\\", \\"debug\\" : true, \\"debug-show-class-names\\" : true, \\"ie7-support\\" : false, \\"html-states-classes\\" : false, \\"generate-push-classes\\" : true, \\"generate-pull-classes\\" : true, \\"generate-prefix-classes\\" : true, \\"generate-suffix-classes\\" : true, \\"generate-helpers-classes\\" : true, \\"_gridle\\" : true }, \\"ad-desktop\\":{ \\"name\\" : \\"ad-desktop\\", \\"min-width\\" : \\"1280px\\", \\"max-width\\" : null, \\"query\\" : \\"screen and (min-width: 1280px)\\", \\"classes\\" : true, \\"context\\" : \\"12\\", \\"gutter-width\\" : \\"20px\\", \\"direction\\" : \\"ltr\\", \\"name-multiplicator\\" : \\"1\\", \\"debug\\" : true, \\"debug-show-class-names\\" : true, \\"ie7-support\\" : false, \\"html-states-classes\\" : false, \\"generate-push-classes\\" : true, \\"generate-pull-classes\\" : true, \\"generate-prefix-classes\\" : true, \\"generate-suffix-classes\\" : true, \\"generate-helpers-classes\\" : true, \\"_gridle\\" : true }} }'; }

.grid-1on5, .grid-0, .grid-1, .grid-2, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, .grid-3, div.bookshelf section.shelf div.shelf-items div.item, .grid-4, html.mobile .single-article article.post-content.feature.essay .featuredImage, html.mobile .single-article article.post-content.feature.essay figure.alignleft, html.mobile .single-article article.post-content.feature.essay img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft, html.mobile .single-article article.post-content.feature.essay figure.alignright, html.mobile .single-article article.post-content.feature.essay img.alignright, html.mobile .single-short-takes article.post-content.feature.essay figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright, html.mobile div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items div.item, html.mobile section.singular-av article div.post-content .featuredImage, html.mobile section.singular-av article div.post-content figure.alignleft, html.mobile section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft, .grid-5, .grid-6, .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright, section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12, .grid-mobile-1on5, .grid-mobile-0, .grid-mobile-1, .grid-mobile-2, .grid-mobile-3, .grid-mobile-4, .grid-mobile-5, .grid-mobile-6, .grid-mobile-7, .grid-mobile-8, .grid-mobile-9, .grid-mobile-10, .grid-mobile-11, .grid-mobile-12, .grid-tablet-1on5, .grid-tablet-0, .grid-tablet-1, .grid-tablet-2, .grid-tablet-3, .grid-tablet-4, .grid-tablet-5, .grid-tablet-6, .grid-tablet-7, .grid-tablet-8, .grid-tablet-9, .grid-tablet-10, .grid-tablet-11, .grid-tablet-12, .grid-ipad-landscape-1on5, .grid-ipad-landscape-0, .grid-ipad-landscape-1, .grid-ipad-landscape-2, .grid-ipad-landscape-3, .grid-ipad-landscape-4, .grid-ipad-landscape-5, .grid-ipad-landscape-6, .grid-ipad-landscape-7, .grid-ipad-landscape-8, .grid-ipad-landscape-9, .grid-ipad-landscape-10, .grid-ipad-landscape-11, .grid-ipad-landscape-12, .grid-ad-desktop-1on5, .grid-ad-desktop-0, .grid-ad-desktop-1, .grid-ad-desktop-2, .grid-ad-desktop-3, .grid-ad-desktop-4, .grid-ad-desktop-5, .grid-ad-desktop-6, .grid-ad-desktop-7, .grid-ad-desktop-8, .grid-ad-desktop-9, .grid-ad-desktop-10, .grid-ad-desktop-11, .grid-ad-desktop-12 {
  float: left;
  direction: ltr;
  padding-left: 10px;
  padding-right: 10px; }
  html.default .grid-1on5, html.default .grid-0, html.default .grid-1, html.default .grid-2, html.default header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.top-row html.default li, html.default header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row html.default li, html.default .grid-3, html.default div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html.default div.item, html.default .grid-4, html.default .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html.default .featuredImage, html.default .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html.default figure.alignleft, html.default .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html.default img.alignleft, html.default .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html.default .featuredImage, html.default .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html.default figure.alignleft, html.default .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html.default img.alignleft, html.default .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html.default figure.alignright, html.default .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html.default img.alignright, html.default .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html.default figure.alignright, html.default .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html.default img.alignright, html.default div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html.default div.item, html.default section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html.default .featuredImage, html.default section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html.default figure.alignleft, html.default section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html.default img.alignleft, html.default .grid-5, html.default .grid-6, html.default .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html.default .featuredImage, html.default .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html.default figure.alignleft, html.default .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html.default img.alignleft, html.default .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html.default .featuredImage, html.default .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html.default figure.alignleft, html.default .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html.default img.alignleft, html.default .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html.default figure.alignright, html.default .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html.default img.alignright, html.default .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html.default figure.alignright, html.default .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html.default img.alignright, html.default section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html.default .featuredImage, html.default section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html.default figure.alignleft, html.default section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html.default img.alignleft, html.default .grid-7, html.default .grid-8, html.default .grid-9, html.default .grid-10, html.default .grid-11, html.default .grid-12, html.default .grid-mobile-1on5, html.default .grid-mobile-0, html.default .grid-mobile-1, html.default .grid-mobile-2, html.default .grid-mobile-3, html.default .grid-mobile-4, html.default .grid-mobile-5, html.default .grid-mobile-6, html.default .grid-mobile-7, html.default .grid-mobile-8, html.default .grid-mobile-9, html.default .grid-mobile-10, html.default .grid-mobile-11, html.default .grid-mobile-12, html.default .grid-tablet-1on5, html.default .grid-tablet-0, html.default .grid-tablet-1, html.default .grid-tablet-2, html.default .grid-tablet-3, html.default .grid-tablet-4, html.default .grid-tablet-5, html.default .grid-tablet-6, html.default .grid-tablet-7, html.default .grid-tablet-8, html.default .grid-tablet-9, html.default .grid-tablet-10, html.default .grid-tablet-11, html.default .grid-tablet-12, html.default .grid-ipad-landscape-1on5, html.default .grid-ipad-landscape-0, html.default .grid-ipad-landscape-1, html.default .grid-ipad-landscape-2, html.default .grid-ipad-landscape-3, html.default .grid-ipad-landscape-4, html.default .grid-ipad-landscape-5, html.default .grid-ipad-landscape-6, html.default .grid-ipad-landscape-7, html.default .grid-ipad-landscape-8, html.default .grid-ipad-landscape-9, html.default .grid-ipad-landscape-10, html.default .grid-ipad-landscape-11, html.default .grid-ipad-landscape-12, html.default .grid-ad-desktop-1on5, html.default .grid-ad-desktop-0, html.default .grid-ad-desktop-1, html.default .grid-ad-desktop-2, html.default .grid-ad-desktop-3, html.default .grid-ad-desktop-4, html.default .grid-ad-desktop-5, html.default .grid-ad-desktop-6, html.default .grid-ad-desktop-7, html.default .grid-ad-desktop-8, html.default .grid-ad-desktop-9, html.default .grid-ad-desktop-10, html.default .grid-ad-desktop-11, html.default .grid-ad-desktop-12 {
    float: left;
    direction: ltr;
    padding-left: 10px;
    padding-right: 10px; }
  html.ipad-landscape .grid-1on5, html.ipad-landscape .grid-0, html.ipad-landscape .grid-1, html.ipad-landscape .grid-2, html.ipad-landscape header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.top-row html.ipad-landscape li, html.ipad-landscape header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row html.ipad-landscape li, html.ipad-landscape .grid-3, html.ipad-landscape div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html.ipad-landscape div.item, html.ipad-landscape .grid-4, html.ipad-landscape .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html.ipad-landscape .featuredImage, html.ipad-landscape .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html.ipad-landscape figure.alignleft, html.ipad-landscape .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html.ipad-landscape img.alignleft, html.ipad-landscape .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html.ipad-landscape .featuredImage, html.ipad-landscape .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html.ipad-landscape figure.alignleft, html.ipad-landscape .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html.ipad-landscape img.alignleft, html.ipad-landscape .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html.ipad-landscape figure.alignright, html.ipad-landscape .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html.ipad-landscape img.alignright, html.ipad-landscape .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html.ipad-landscape figure.alignright, html.ipad-landscape .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html.ipad-landscape img.alignright, html.ipad-landscape div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html.ipad-landscape div.item, html.ipad-landscape section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html.ipad-landscape .featuredImage, html.ipad-landscape section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html.ipad-landscape figure.alignleft, html.ipad-landscape section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html.ipad-landscape img.alignleft, html.ipad-landscape .grid-5, html.ipad-landscape .grid-6, html.ipad-landscape .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html.ipad-landscape .featuredImage, html.ipad-landscape .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html.ipad-landscape figure.alignleft, html.ipad-landscape .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html.ipad-landscape img.alignleft, html.ipad-landscape .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html.ipad-landscape .featuredImage, html.ipad-landscape .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html.ipad-landscape figure.alignleft, html.ipad-landscape .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html.ipad-landscape img.alignleft, html.ipad-landscape .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html.ipad-landscape figure.alignright, html.ipad-landscape .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html.ipad-landscape img.alignright, html.ipad-landscape .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html.ipad-landscape figure.alignright, html.ipad-landscape .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html.ipad-landscape img.alignright, html.ipad-landscape section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html.ipad-landscape .featuredImage, html.ipad-landscape section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html.ipad-landscape figure.alignleft, html.ipad-landscape section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html.ipad-landscape img.alignleft, html.ipad-landscape .grid-7, html.ipad-landscape .grid-8, html.ipad-landscape .grid-9, html.ipad-landscape .grid-10, html.ipad-landscape .grid-11, html.ipad-landscape .grid-12, html.ipad-landscape .grid-mobile-1on5, html.ipad-landscape .grid-mobile-0, html.ipad-landscape .grid-mobile-1, html.ipad-landscape .grid-mobile-2, html.ipad-landscape .grid-mobile-3, html.ipad-landscape .grid-mobile-4, html.ipad-landscape .grid-mobile-5, html.ipad-landscape .grid-mobile-6, html.ipad-landscape .grid-mobile-7, html.ipad-landscape .grid-mobile-8, html.ipad-landscape .grid-mobile-9, html.ipad-landscape .grid-mobile-10, html.ipad-landscape .grid-mobile-11, html.ipad-landscape .grid-mobile-12, html.ipad-landscape .grid-tablet-1on5, html.ipad-landscape .grid-tablet-0, html.ipad-landscape .grid-tablet-1, html.ipad-landscape .grid-tablet-2, html.ipad-landscape .grid-tablet-3, html.ipad-landscape .grid-tablet-4, html.ipad-landscape .grid-tablet-5, html.ipad-landscape .grid-tablet-6, html.ipad-landscape .grid-tablet-7, html.ipad-landscape .grid-tablet-8, html.ipad-landscape .grid-tablet-9, html.ipad-landscape .grid-tablet-10, html.ipad-landscape .grid-tablet-11, html.ipad-landscape .grid-tablet-12, html.ipad-landscape .grid-ipad-landscape-1on5, html.ipad-landscape .grid-ipad-landscape-0, html.ipad-landscape .grid-ipad-landscape-1, html.ipad-landscape .grid-ipad-landscape-2, html.ipad-landscape .grid-ipad-landscape-3, html.ipad-landscape .grid-ipad-landscape-4, html.ipad-landscape .grid-ipad-landscape-5, html.ipad-landscape .grid-ipad-landscape-6, html.ipad-landscape .grid-ipad-landscape-7, html.ipad-landscape .grid-ipad-landscape-8, html.ipad-landscape .grid-ipad-landscape-9, html.ipad-landscape .grid-ipad-landscape-10, html.ipad-landscape .grid-ipad-landscape-11, html.ipad-landscape .grid-ipad-landscape-12, html.ipad-landscape .grid-ad-desktop-1on5, html.ipad-landscape .grid-ad-desktop-0, html.ipad-landscape .grid-ad-desktop-1, html.ipad-landscape .grid-ad-desktop-2, html.ipad-landscape .grid-ad-desktop-3, html.ipad-landscape .grid-ad-desktop-4, html.ipad-landscape .grid-ad-desktop-5, html.ipad-landscape .grid-ad-desktop-6, html.ipad-landscape .grid-ad-desktop-7, html.ipad-landscape .grid-ad-desktop-8, html.ipad-landscape .grid-ad-desktop-9, html.ipad-landscape .grid-ad-desktop-10, html.ipad-landscape .grid-ad-desktop-11, html.ipad-landscape .grid-ad-desktop-12 {
    padding-left: 0;
    padding-right: 0; }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .grid-1on5, .grid-0, .grid-1, .grid-2, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, .grid-3, div.bookshelf section.shelf div.shelf-items div.item, .grid-4, html.mobile .single-article article.post-content.feature.essay .featuredImage, html.mobile .single-article article.post-content.feature.essay figure.alignleft, html.mobile .single-article article.post-content.feature.essay img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft, html.mobile .single-article article.post-content.feature.essay figure.alignright, html.mobile .single-article article.post-content.feature.essay img.alignright, html.mobile .single-short-takes article.post-content.feature.essay figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright, html.mobile div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items div.item, html.mobile section.singular-av article div.post-content .featuredImage, html.mobile section.singular-av article div.post-content figure.alignleft, html.mobile section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft, .grid-5, .grid-6, .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright, section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12, .grid-mobile-1on5, .grid-mobile-0, .grid-mobile-1, .grid-mobile-2, .grid-mobile-3, .grid-mobile-4, .grid-mobile-5, .grid-mobile-6, .grid-mobile-7, .grid-mobile-8, .grid-mobile-9, .grid-mobile-10, .grid-mobile-11, .grid-mobile-12, .grid-tablet-1on5, .grid-tablet-0, .grid-tablet-1, .grid-tablet-2, .grid-tablet-3, .grid-tablet-4, .grid-tablet-5, .grid-tablet-6, .grid-tablet-7, .grid-tablet-8, .grid-tablet-9, .grid-tablet-10, .grid-tablet-11, .grid-tablet-12, .grid-ipad-landscape-1on5, .grid-ipad-landscape-0, .grid-ipad-landscape-1, .grid-ipad-landscape-2, .grid-ipad-landscape-3, .grid-ipad-landscape-4, .grid-ipad-landscape-5, .grid-ipad-landscape-6, .grid-ipad-landscape-7, .grid-ipad-landscape-8, .grid-ipad-landscape-9, .grid-ipad-landscape-10, .grid-ipad-landscape-11, .grid-ipad-landscape-12, .grid-ad-desktop-1on5, .grid-ad-desktop-0, .grid-ad-desktop-1, .grid-ad-desktop-2, .grid-ad-desktop-3, .grid-ad-desktop-4, .grid-ad-desktop-5, .grid-ad-desktop-6, .grid-ad-desktop-7, .grid-ad-desktop-8, .grid-ad-desktop-9, .grid-ad-desktop-10, .grid-ad-desktop-11, .grid-ad-desktop-12 {
      padding-left: 0;
      padding-right: 0; } }

.gridle-debug .push-1on5, .push-1on5.gridle-debug, .gridle-debug .push-0, .push-0.gridle-debug, .gridle-debug .push-1, .push-1.gridle-debug, .gridle-debug .push-2, .push-2.gridle-debug, .gridle-debug .push-3, .push-3.gridle-debug, .gridle-debug .push-4, .push-4.gridle-debug, .gridle-debug .push-5, .push-5.gridle-debug, .gridle-debug .push-6, .push-6.gridle-debug, .gridle-debug .push-7, .push-7.gridle-debug, .gridle-debug .push-8, .push-8.gridle-debug, .gridle-debug .push-9, .push-9.gridle-debug, .gridle-debug .push-10, .push-10.gridle-debug, .gridle-debug .push-11, .push-11.gridle-debug, .gridle-debug .push-12, .push-12.gridle-debug, .gridle-debug .push-mobile-1on5, .push-mobile-1on5.gridle-debug, .gridle-debug .push-mobile-0, .push-mobile-0.gridle-debug, .gridle-debug .push-mobile-1, .push-mobile-1.gridle-debug, .gridle-debug .push-mobile-2, .push-mobile-2.gridle-debug, .gridle-debug .push-mobile-3, .push-mobile-3.gridle-debug, .gridle-debug .push-mobile-4, .push-mobile-4.gridle-debug, .gridle-debug .push-mobile-5, .push-mobile-5.gridle-debug, .gridle-debug .push-mobile-6, .push-mobile-6.gridle-debug, .gridle-debug .push-mobile-7, .push-mobile-7.gridle-debug, .gridle-debug .push-mobile-8, .push-mobile-8.gridle-debug, .gridle-debug .push-mobile-9, .push-mobile-9.gridle-debug, .gridle-debug .push-mobile-10, .push-mobile-10.gridle-debug, .gridle-debug .push-mobile-11, .push-mobile-11.gridle-debug, .gridle-debug .push-mobile-12, .push-mobile-12.gridle-debug, .gridle-debug .push-tablet-1on5, .push-tablet-1on5.gridle-debug, .gridle-debug .push-tablet-0, .push-tablet-0.gridle-debug, .gridle-debug .push-tablet-1, .push-tablet-1.gridle-debug, .gridle-debug .push-tablet-2, .push-tablet-2.gridle-debug, .gridle-debug .push-tablet-3, .push-tablet-3.gridle-debug, .gridle-debug .push-tablet-4, .push-tablet-4.gridle-debug, .gridle-debug .push-tablet-5, .push-tablet-5.gridle-debug, .gridle-debug .push-tablet-6, .push-tablet-6.gridle-debug, .gridle-debug .push-tablet-7, .push-tablet-7.gridle-debug, .gridle-debug .push-tablet-8, .push-tablet-8.gridle-debug, .gridle-debug .push-tablet-9, .push-tablet-9.gridle-debug, .gridle-debug .push-tablet-10, .push-tablet-10.gridle-debug, .gridle-debug .push-tablet-11, .push-tablet-11.gridle-debug, .gridle-debug .push-tablet-12, .push-tablet-12.gridle-debug, .gridle-debug .push-ipad-landscape-1on5, .push-ipad-landscape-1on5.gridle-debug, .gridle-debug .push-ipad-landscape-0, .push-ipad-landscape-0.gridle-debug, .gridle-debug .push-ipad-landscape-1, .push-ipad-landscape-1.gridle-debug, .gridle-debug .push-ipad-landscape-2, .push-ipad-landscape-2.gridle-debug, .gridle-debug .push-ipad-landscape-3, .push-ipad-landscape-3.gridle-debug, .gridle-debug .push-ipad-landscape-4, .push-ipad-landscape-4.gridle-debug, .gridle-debug .push-ipad-landscape-5, .push-ipad-landscape-5.gridle-debug, .gridle-debug .push-ipad-landscape-6, .push-ipad-landscape-6.gridle-debug, .gridle-debug .push-ipad-landscape-7, .push-ipad-landscape-7.gridle-debug, .gridle-debug .push-ipad-landscape-8, .push-ipad-landscape-8.gridle-debug, .gridle-debug .push-ipad-landscape-9, .push-ipad-landscape-9.gridle-debug, .gridle-debug .push-ipad-landscape-10, .push-ipad-landscape-10.gridle-debug, .gridle-debug .push-ipad-landscape-11, .push-ipad-landscape-11.gridle-debug, .gridle-debug .push-ipad-landscape-12, .push-ipad-landscape-12.gridle-debug, .gridle-debug .push-ad-desktop-1on5, .push-ad-desktop-1on5.gridle-debug, .gridle-debug .push-ad-desktop-0, .push-ad-desktop-0.gridle-debug, .gridle-debug .push-ad-desktop-1, .push-ad-desktop-1.gridle-debug, .gridle-debug .push-ad-desktop-2, .push-ad-desktop-2.gridle-debug, .gridle-debug .push-ad-desktop-3, .push-ad-desktop-3.gridle-debug, .gridle-debug .push-ad-desktop-4, .push-ad-desktop-4.gridle-debug, .gridle-debug .push-ad-desktop-5, .push-ad-desktop-5.gridle-debug, .gridle-debug .push-ad-desktop-6, .push-ad-desktop-6.gridle-debug, .gridle-debug .push-ad-desktop-7, .push-ad-desktop-7.gridle-debug, .gridle-debug .push-ad-desktop-8, .push-ad-desktop-8.gridle-debug, .gridle-debug .push-ad-desktop-9, .push-ad-desktop-9.gridle-debug, .gridle-debug .push-ad-desktop-10, .push-ad-desktop-10.gridle-debug, .gridle-debug .push-ad-desktop-11, .push-ad-desktop-11.gridle-debug, .gridle-debug .push-ad-desktop-12, .push-ad-desktop-12.gridle-debug {
  background-color: #f4efdf !important; }

.gridle-debug .pull-1on5, .pull-1on5.gridle-debug, .gridle-debug .pull-0, .pull-0.gridle-debug, .gridle-debug .pull-1, .pull-1.gridle-debug, .gridle-debug .pull-2, .pull-2.gridle-debug, .gridle-debug .pull-3, .pull-3.gridle-debug, .gridle-debug .pull-4, .pull-4.gridle-debug, .gridle-debug .pull-5, .pull-5.gridle-debug, .gridle-debug .pull-6, .pull-6.gridle-debug, .gridle-debug .pull-7, .pull-7.gridle-debug, .gridle-debug .pull-8, .pull-8.gridle-debug, .gridle-debug .pull-9, .pull-9.gridle-debug, .gridle-debug .pull-10, .pull-10.gridle-debug, .gridle-debug .pull-11, .pull-11.gridle-debug, .gridle-debug .pull-12, .pull-12.gridle-debug, .gridle-debug .pull-mobile-1on5, .pull-mobile-1on5.gridle-debug, .gridle-debug .pull-mobile-0, .pull-mobile-0.gridle-debug, .gridle-debug .pull-mobile-1, .pull-mobile-1.gridle-debug, .gridle-debug .pull-mobile-2, .pull-mobile-2.gridle-debug, .gridle-debug .pull-mobile-3, .pull-mobile-3.gridle-debug, .gridle-debug .pull-mobile-4, .pull-mobile-4.gridle-debug, .gridle-debug .pull-mobile-5, .pull-mobile-5.gridle-debug, .gridle-debug .pull-mobile-6, .pull-mobile-6.gridle-debug, .gridle-debug .pull-mobile-7, .pull-mobile-7.gridle-debug, .gridle-debug .pull-mobile-8, .pull-mobile-8.gridle-debug, .gridle-debug .pull-mobile-9, .pull-mobile-9.gridle-debug, .gridle-debug .pull-mobile-10, .pull-mobile-10.gridle-debug, .gridle-debug .pull-mobile-11, .pull-mobile-11.gridle-debug, .gridle-debug .pull-mobile-12, .pull-mobile-12.gridle-debug, .gridle-debug .pull-tablet-1on5, .pull-tablet-1on5.gridle-debug, .gridle-debug .pull-tablet-0, .pull-tablet-0.gridle-debug, .gridle-debug .pull-tablet-1, .pull-tablet-1.gridle-debug, .gridle-debug .pull-tablet-2, .pull-tablet-2.gridle-debug, .gridle-debug .pull-tablet-3, .pull-tablet-3.gridle-debug, .gridle-debug .pull-tablet-4, .pull-tablet-4.gridle-debug, .gridle-debug .pull-tablet-5, .pull-tablet-5.gridle-debug, .gridle-debug .pull-tablet-6, .pull-tablet-6.gridle-debug, .gridle-debug .pull-tablet-7, .pull-tablet-7.gridle-debug, .gridle-debug .pull-tablet-8, .pull-tablet-8.gridle-debug, .gridle-debug .pull-tablet-9, .pull-tablet-9.gridle-debug, .gridle-debug .pull-tablet-10, .pull-tablet-10.gridle-debug, .gridle-debug .pull-tablet-11, .pull-tablet-11.gridle-debug, .gridle-debug .pull-tablet-12, .pull-tablet-12.gridle-debug, .gridle-debug .pull-ipad-landscape-1on5, .pull-ipad-landscape-1on5.gridle-debug, .gridle-debug .pull-ipad-landscape-0, .pull-ipad-landscape-0.gridle-debug, .gridle-debug .pull-ipad-landscape-1, .pull-ipad-landscape-1.gridle-debug, .gridle-debug .pull-ipad-landscape-2, .pull-ipad-landscape-2.gridle-debug, .gridle-debug .pull-ipad-landscape-3, .pull-ipad-landscape-3.gridle-debug, .gridle-debug .pull-ipad-landscape-4, .pull-ipad-landscape-4.gridle-debug, .gridle-debug .pull-ipad-landscape-5, .pull-ipad-landscape-5.gridle-debug, .gridle-debug .pull-ipad-landscape-6, .pull-ipad-landscape-6.gridle-debug, .gridle-debug .pull-ipad-landscape-7, .pull-ipad-landscape-7.gridle-debug, .gridle-debug .pull-ipad-landscape-8, .pull-ipad-landscape-8.gridle-debug, .gridle-debug .pull-ipad-landscape-9, .pull-ipad-landscape-9.gridle-debug, .gridle-debug .pull-ipad-landscape-10, .pull-ipad-landscape-10.gridle-debug, .gridle-debug .pull-ipad-landscape-11, .pull-ipad-landscape-11.gridle-debug, .gridle-debug .pull-ipad-landscape-12, .pull-ipad-landscape-12.gridle-debug, .gridle-debug .pull-ad-desktop-1on5, .pull-ad-desktop-1on5.gridle-debug, .gridle-debug .pull-ad-desktop-0, .pull-ad-desktop-0.gridle-debug, .gridle-debug .pull-ad-desktop-1, .pull-ad-desktop-1.gridle-debug, .gridle-debug .pull-ad-desktop-2, .pull-ad-desktop-2.gridle-debug, .gridle-debug .pull-ad-desktop-3, .pull-ad-desktop-3.gridle-debug, .gridle-debug .pull-ad-desktop-4, .pull-ad-desktop-4.gridle-debug, .gridle-debug .pull-ad-desktop-5, .pull-ad-desktop-5.gridle-debug, .gridle-debug .pull-ad-desktop-6, .pull-ad-desktop-6.gridle-debug, .gridle-debug .pull-ad-desktop-7, .pull-ad-desktop-7.gridle-debug, .gridle-debug .pull-ad-desktop-8, .pull-ad-desktop-8.gridle-debug, .gridle-debug .pull-ad-desktop-9, .pull-ad-desktop-9.gridle-debug, .gridle-debug .pull-ad-desktop-10, .pull-ad-desktop-10.gridle-debug, .gridle-debug .pull-ad-desktop-11, .pull-ad-desktop-11.gridle-debug, .gridle-debug .pull-ad-desktop-12, .pull-ad-desktop-12.gridle-debug {
  background-color: #cfe4d5 !important; }

html.default {
  /**
	 * Visible, hide, etc...
	 */
  /**
	 * Clear each class :
	 */ }
  html.default .grid-1on5 {
    width: 20%; }
    .gridle-debug html.default .grid-1on5:before, html.default .grid-1on5.gridle-debug:before {
      content: "grid-default-1"; }
    .gridle-debug html.default .grid-1on5.parent:before, html.default .grid-1on5.gridle-debug.parent:before {
      content: "grid-parent-default-1"; }
  html.default .push-1on5 {
    left: 20%; }
    .gridle-debug html.default .push-1on5:after, html.default .push-1on5.gridle-debug:after {
      content: "push-default-1"; }
  html.default .pull-1on5 {
    right: 20%; }
    .gridle-debug html.default .pull-1on5:after, html.default .pull-1on5.gridle-debug:after {
      content: "pull-default-1"; }
  html.default .prefix-1on5 {
    margin-left: 20%; }
    .gridle-debug html.default .prefix-1on5:after, html.default .prefix-1on5.gridle-debug:after {
      content: "prefix-default-1"; }
  html.default .suffix-1on5 {
    margin-right: 20%; }
    .gridle-debug html.default .suffix-1on5:after, html.default .suffix-1on5.gridle-debug:after {
      content: "suffix-default-1"; }
  html.default .grid-0 {
    width: 0%; }
    .gridle-debug html.default .grid-0:before, html.default .grid-0.gridle-debug:before {
      content: "grid-default-0"; }
    .gridle-debug html.default .grid-0.parent:before, html.default .grid-0.gridle-debug.parent:before {
      content: "grid-parent-default-0"; }
  html.default .push-0 {
    left: 0%; }
    .gridle-debug html.default .push-0:after, html.default .push-0.gridle-debug:after {
      content: "push-default-0"; }
  html.default .pull-0 {
    right: 0%; }
    .gridle-debug html.default .pull-0:after, html.default .pull-0.gridle-debug:after {
      content: "pull-default-0"; }
  html.default .prefix-0 {
    margin-left: 0%; }
    .gridle-debug html.default .prefix-0:after, html.default .prefix-0.gridle-debug:after {
      content: "prefix-default-0"; }
  html.default .suffix-0 {
    margin-right: 0%; }
    .gridle-debug html.default .suffix-0:after, html.default .suffix-0.gridle-debug:after {
      content: "suffix-default-0"; }
  html.default .grid-1 {
    width: 8.33333%; }
    .gridle-debug html.default .grid-1:before, html.default .grid-1.gridle-debug:before {
      content: "grid-default-1"; }
    .gridle-debug html.default .grid-1.parent:before, html.default .grid-1.gridle-debug.parent:before {
      content: "grid-parent-default-1"; }
  html.default .push-1 {
    left: 8.33333%; }
    .gridle-debug html.default .push-1:after, html.default .push-1.gridle-debug:after {
      content: "push-default-1"; }
  html.default .pull-1 {
    right: 8.33333%; }
    .gridle-debug html.default .pull-1:after, html.default .pull-1.gridle-debug:after {
      content: "pull-default-1"; }
  html.default .prefix-1 {
    margin-left: 8.33333%; }
    .gridle-debug html.default .prefix-1:after, html.default .prefix-1.gridle-debug:after {
      content: "prefix-default-1"; }
  html.default .suffix-1 {
    margin-right: 8.33333%; }
    .gridle-debug html.default .suffix-1:after, html.default .suffix-1.gridle-debug:after {
      content: "suffix-default-1"; }
  html.default .grid-2, html.default header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.top-row html.default li, html.default header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row html.default li {
    width: 16.66667%; }
    .gridle-debug html.default .grid-2:before, .gridle-debug html.default header#main-navigation nav[role='sub'] div.sub-section ul.top-row li:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row .gridle-debug html.default li:before, .gridle-debug html.default header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row .gridle-debug html.default li:before, html.default .grid-2.gridle-debug:before, html.default header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.gridle-debug:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row html.default li.gridle-debug:before, html.default header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.gridle-debug:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row html.default li.gridle-debug:before {
      content: "grid-default-2"; }
    .gridle-debug html.default .grid-2.parent:before, .gridle-debug html.default header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row .gridle-debug html.default li.parent:before, .gridle-debug html.default header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row .gridle-debug html.default li.parent:before, html.default .grid-2.gridle-debug.parent:before, html.default header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.gridle-debug.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row html.default li.gridle-debug.parent:before, html.default header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.gridle-debug.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row html.default li.gridle-debug.parent:before {
      content: "grid-parent-default-2"; }
  html.default .push-2 {
    left: 16.66667%; }
    .gridle-debug html.default .push-2:after, html.default .push-2.gridle-debug:after {
      content: "push-default-2"; }
  html.default .pull-2 {
    right: 16.66667%; }
    .gridle-debug html.default .pull-2:after, html.default .pull-2.gridle-debug:after {
      content: "pull-default-2"; }
  html.default .prefix-2 {
    margin-left: 16.66667%; }
    .gridle-debug html.default .prefix-2:after, html.default .prefix-2.gridle-debug:after {
      content: "prefix-default-2"; }
  html.default .suffix-2 {
    margin-right: 16.66667%; }
    .gridle-debug html.default .suffix-2:after, html.default .suffix-2.gridle-debug:after {
      content: "suffix-default-2"; }
  html.default .grid-3, html.default div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html.default div.item {
    width: 25%; }
    .gridle-debug html.default .grid-3:before, .gridle-debug html.default div.bookshelf section.shelf div.shelf-items div.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug html.default div.item:before, html.default .grid-3.gridle-debug:before, html.default div.bookshelf section.shelf div.shelf-items div.gridle-debug.item:before, div.bookshelf section.shelf div.shelf-items html.default div.gridle-debug.item:before {
      content: "grid-default-3"; }
    .gridle-debug html.default .grid-3.parent:before, .gridle-debug html.default div.bookshelf section.shelf div.shelf-items div.parent.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug html.default div.parent.item:before, html.default .grid-3.gridle-debug.parent:before, html.default div.bookshelf section.shelf div.shelf-items div.gridle-debug.parent.item:before, div.bookshelf section.shelf div.shelf-items html.default div.gridle-debug.parent.item:before {
      content: "grid-parent-default-3"; }
  html.default .push-3 {
    left: 25%; }
    .gridle-debug html.default .push-3:after, html.default .push-3.gridle-debug:after {
      content: "push-default-3"; }
  html.default .pull-3 {
    right: 25%; }
    .gridle-debug html.default .pull-3:after, html.default .pull-3.gridle-debug:after {
      content: "pull-default-3"; }
  html.default .prefix-3 {
    margin-left: 25%; }
    .gridle-debug html.default .prefix-3:after, html.default .prefix-3.gridle-debug:after {
      content: "prefix-default-3"; }
  html.default .suffix-3 {
    margin-right: 25%; }
    .gridle-debug html.default .suffix-3:after, html.default .suffix-3.gridle-debug:after {
      content: "suffix-default-3"; }
  html.default .grid-4, html.default .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html.default .featuredImage, html.default .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html.default figure.alignleft, html.default .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html.default img.alignleft, html.default .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html.default .featuredImage, html.default .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html.default figure.alignleft, html.default .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html.default img.alignleft, html.default .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html.default figure.alignright, html.default .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html.default img.alignright, html.default .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html.default figure.alignright, html.default .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html.default img.alignright, html.default div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html.default div.item, html.default section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html.default .featuredImage, html.default section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html.default figure.alignleft, html.default section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html.default img.alignleft {
    width: 33.33333%; }
    .gridle-debug html.default .grid-4:before, .gridle-debug html.default .single-article article.post-content.feature.essay .featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug html.default .featuredImage:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay .featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default .featuredImage:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.alignright:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.alignright:before, .gridle-debug html.default div.bookshelf section.shelf div.shelf-items div.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug html.default div.item:before, .gridle-debug html.default section.singular-av article div.post-content .featuredImage:before, section.singular-av article div.post-content .gridle-debug html.default .featuredImage:before, .gridle-debug html.default section.singular-av article div.post-content figure.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default figure.alignleft:before, .gridle-debug html.default section.singular-av article div.post-content img.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default img.alignleft:before, html.default .grid-4.gridle-debug:before, html.default .single-article article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-article article.post-content.feature.essay html.default .gridle-debug.featuredImage:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.alignleft:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.alignleft:before, html.default .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-short-takes article.post-content.feature.essay html.default .gridle-debug.featuredImage:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.alignleft:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.alignleft:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.alignright:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.alignright:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.alignright:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.alignright:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.alignright:before, html.default div.bookshelf section.shelf div.shelf-items div.gridle-debug.item:before, div.bookshelf section.shelf div.shelf-items html.default div.gridle-debug.item:before, html.default section.singular-av article div.post-content .gridle-debug.featuredImage:before, section.singular-av article div.post-content html.default .gridle-debug.featuredImage:before, html.default section.singular-av article div.post-content figure.gridle-debug.alignleft:before, section.singular-av article div.post-content html.default figure.gridle-debug.alignleft:before, html.default section.singular-av article div.post-content img.gridle-debug.alignleft:before, section.singular-av article div.post-content html.default img.gridle-debug.alignleft:before {
      content: "grid-default-4"; }
    .gridle-debug html.default .grid-4.parent:before, .gridle-debug html.default .single-article article.post-content.feature.essay .parent.featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug html.default .parent.featuredImage:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.parent.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.parent.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay .parent.featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default .parent.featuredImage:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.parent.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.parent.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.parent.alignright:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.parent.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.parent.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.parent.alignright:before, .gridle-debug html.default div.bookshelf section.shelf div.shelf-items div.parent.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug html.default div.parent.item:before, .gridle-debug html.default section.singular-av article div.post-content .parent.featuredImage:before, section.singular-av article div.post-content .gridle-debug html.default .parent.featuredImage:before, .gridle-debug html.default section.singular-av article div.post-content figure.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default figure.parent.alignleft:before, .gridle-debug html.default section.singular-av article div.post-content img.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default img.parent.alignleft:before, html.default .grid-4.gridle-debug.parent:before, html.default .single-article article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-article article.post-content.feature.essay html.default .gridle-debug.parent.featuredImage:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.parent.alignleft:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.parent.alignleft:before, html.default .single-short-takes article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-short-takes article.post-content.feature.essay html.default .gridle-debug.parent.featuredImage:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.parent.alignleft:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.parent.alignleft:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.parent.alignright:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.parent.alignright:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.parent.alignright:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.parent.alignright:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.parent.alignright:before, html.default div.bookshelf section.shelf div.shelf-items div.gridle-debug.parent.item:before, div.bookshelf section.shelf div.shelf-items html.default div.gridle-debug.parent.item:before, html.default section.singular-av article div.post-content .gridle-debug.parent.featuredImage:before, section.singular-av article div.post-content html.default .gridle-debug.parent.featuredImage:before, html.default section.singular-av article div.post-content figure.gridle-debug.parent.alignleft:before, section.singular-av article div.post-content html.default figure.gridle-debug.parent.alignleft:before, html.default section.singular-av article div.post-content img.gridle-debug.parent.alignleft:before, section.singular-av article div.post-content html.default img.gridle-debug.parent.alignleft:before {
      content: "grid-parent-default-4"; }
  html.default .push-4 {
    left: 33.33333%; }
    .gridle-debug html.default .push-4:after, html.default .push-4.gridle-debug:after {
      content: "push-default-4"; }
  html.default .pull-4 {
    right: 33.33333%; }
    .gridle-debug html.default .pull-4:after, html.default .pull-4.gridle-debug:after {
      content: "pull-default-4"; }
  html.default .prefix-4 {
    margin-left: 33.33333%; }
    .gridle-debug html.default .prefix-4:after, html.default .prefix-4.gridle-debug:after {
      content: "prefix-default-4"; }
  html.default .suffix-4 {
    margin-right: 33.33333%; }
    .gridle-debug html.default .suffix-4:after, html.default .suffix-4.gridle-debug:after {
      content: "suffix-default-4"; }
  html.default .grid-5 {
    width: 41.66667%; }
    .gridle-debug html.default .grid-5:before, html.default .grid-5.gridle-debug:before {
      content: "grid-default-5"; }
    .gridle-debug html.default .grid-5.parent:before, html.default .grid-5.gridle-debug.parent:before {
      content: "grid-parent-default-5"; }
  html.default .push-5 {
    left: 41.66667%; }
    .gridle-debug html.default .push-5:after, html.default .push-5.gridle-debug:after {
      content: "push-default-5"; }
  html.default .pull-5 {
    right: 41.66667%; }
    .gridle-debug html.default .pull-5:after, html.default .pull-5.gridle-debug:after {
      content: "pull-default-5"; }
  html.default .prefix-5 {
    margin-left: 41.66667%; }
    .gridle-debug html.default .prefix-5:after, html.default .prefix-5.gridle-debug:after {
      content: "prefix-default-5"; }
  html.default .suffix-5 {
    margin-right: 41.66667%; }
    .gridle-debug html.default .suffix-5:after, html.default .suffix-5.gridle-debug:after {
      content: "suffix-default-5"; }
  html.default .grid-6, html.default .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html.default .featuredImage, html.default .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html.default figure.alignleft, html.default .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html.default img.alignleft, html.default .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html.default .featuredImage, html.default .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html.default figure.alignleft, html.default .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html.default img.alignleft, html.default .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html.default figure.alignright, html.default .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html.default img.alignright, html.default .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html.default figure.alignright, html.default .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html.default img.alignright, html.default section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html.default .featuredImage, html.default section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html.default figure.alignleft, html.default section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html.default img.alignleft {
    width: 50%; }
    .gridle-debug html.default .grid-6:before, .gridle-debug html.default .single-article article.post-content.feature.essay .featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug html.default .featuredImage:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay .featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default .featuredImage:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.alignright:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.alignright:before, .gridle-debug html.default section.singular-av article div.post-content .featuredImage:before, section.singular-av article div.post-content .gridle-debug html.default .featuredImage:before, .gridle-debug html.default section.singular-av article div.post-content figure.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default figure.alignleft:before, .gridle-debug html.default section.singular-av article div.post-content img.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default img.alignleft:before, html.default .grid-6.gridle-debug:before, html.default .single-article article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-article article.post-content.feature.essay html.default .gridle-debug.featuredImage:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.alignleft:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.alignleft:before, html.default .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-short-takes article.post-content.feature.essay html.default .gridle-debug.featuredImage:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.alignleft:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.alignleft:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.alignright:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.alignright:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.alignright:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.alignright:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.alignright:before, html.default section.singular-av article div.post-content .gridle-debug.featuredImage:before, section.singular-av article div.post-content html.default .gridle-debug.featuredImage:before, html.default section.singular-av article div.post-content figure.gridle-debug.alignleft:before, section.singular-av article div.post-content html.default figure.gridle-debug.alignleft:before, html.default section.singular-av article div.post-content img.gridle-debug.alignleft:before, section.singular-av article div.post-content html.default img.gridle-debug.alignleft:before {
      content: "grid-default-6"; }
    .gridle-debug html.default .grid-6.parent:before, .gridle-debug html.default .single-article article.post-content.feature.essay .parent.featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug html.default .parent.featuredImage:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.parent.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.parent.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay .parent.featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default .parent.featuredImage:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.parent.alignleft:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.parent.alignleft:before, .gridle-debug html.default .single-article article.post-content.feature.essay figure.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default figure.parent.alignright:before, .gridle-debug html.default .single-article article.post-content.feature.essay img.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug html.default img.parent.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay figure.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default figure.parent.alignright:before, .gridle-debug html.default .single-short-takes article.post-content.feature.essay img.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug html.default img.parent.alignright:before, .gridle-debug html.default section.singular-av article div.post-content .parent.featuredImage:before, section.singular-av article div.post-content .gridle-debug html.default .parent.featuredImage:before, .gridle-debug html.default section.singular-av article div.post-content figure.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default figure.parent.alignleft:before, .gridle-debug html.default section.singular-av article div.post-content img.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug html.default img.parent.alignleft:before, html.default .grid-6.gridle-debug.parent:before, html.default .single-article article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-article article.post-content.feature.essay html.default .gridle-debug.parent.featuredImage:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.parent.alignleft:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.parent.alignleft:before, html.default .single-short-takes article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-short-takes article.post-content.feature.essay html.default .gridle-debug.parent.featuredImage:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.parent.alignleft:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.parent.alignleft:before, html.default .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-article article.post-content.feature.essay html.default figure.gridle-debug.parent.alignright:before, html.default .single-article article.post-content.feature.essay img.gridle-debug.parent.alignright:before, .single-article article.post-content.feature.essay html.default img.gridle-debug.parent.alignright:before, html.default .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay html.default figure.gridle-debug.parent.alignright:before, html.default .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay html.default img.gridle-debug.parent.alignright:before, html.default section.singular-av article div.post-content .gridle-debug.parent.featuredImage:before, section.singular-av article div.post-content html.default .gridle-debug.parent.featuredImage:before, html.default section.singular-av article div.post-content figure.gridle-debug.parent.alignleft:before, section.singular-av article div.post-content html.default figure.gridle-debug.parent.alignleft:before, html.default section.singular-av article div.post-content img.gridle-debug.parent.alignleft:before, section.singular-av article div.post-content html.default img.gridle-debug.parent.alignleft:before {
      content: "grid-parent-default-6"; }
  html.default .push-6 {
    left: 50%; }
    .gridle-debug html.default .push-6:after, html.default .push-6.gridle-debug:after {
      content: "push-default-6"; }
  html.default .pull-6 {
    right: 50%; }
    .gridle-debug html.default .pull-6:after, html.default .pull-6.gridle-debug:after {
      content: "pull-default-6"; }
  html.default .prefix-6 {
    margin-left: 50%; }
    .gridle-debug html.default .prefix-6:after, html.default .prefix-6.gridle-debug:after {
      content: "prefix-default-6"; }
  html.default .suffix-6 {
    margin-right: 50%; }
    .gridle-debug html.default .suffix-6:after, html.default .suffix-6.gridle-debug:after {
      content: "suffix-default-6"; }
  html.default .grid-7 {
    width: 58.33333%; }
    .gridle-debug html.default .grid-7:before, html.default .grid-7.gridle-debug:before {
      content: "grid-default-7"; }
    .gridle-debug html.default .grid-7.parent:before, html.default .grid-7.gridle-debug.parent:before {
      content: "grid-parent-default-7"; }
  html.default .push-7 {
    left: 58.33333%; }
    .gridle-debug html.default .push-7:after, html.default .push-7.gridle-debug:after {
      content: "push-default-7"; }
  html.default .pull-7 {
    right: 58.33333%; }
    .gridle-debug html.default .pull-7:after, html.default .pull-7.gridle-debug:after {
      content: "pull-default-7"; }
  html.default .prefix-7 {
    margin-left: 58.33333%; }
    .gridle-debug html.default .prefix-7:after, html.default .prefix-7.gridle-debug:after {
      content: "prefix-default-7"; }
  html.default .suffix-7 {
    margin-right: 58.33333%; }
    .gridle-debug html.default .suffix-7:after, html.default .suffix-7.gridle-debug:after {
      content: "suffix-default-7"; }
  html.default .grid-8 {
    width: 66.66667%; }
    .gridle-debug html.default .grid-8:before, html.default .grid-8.gridle-debug:before {
      content: "grid-default-8"; }
    .gridle-debug html.default .grid-8.parent:before, html.default .grid-8.gridle-debug.parent:before {
      content: "grid-parent-default-8"; }
  html.default .push-8 {
    left: 66.66667%; }
    .gridle-debug html.default .push-8:after, html.default .push-8.gridle-debug:after {
      content: "push-default-8"; }
  html.default .pull-8 {
    right: 66.66667%; }
    .gridle-debug html.default .pull-8:after, html.default .pull-8.gridle-debug:after {
      content: "pull-default-8"; }
  html.default .prefix-8 {
    margin-left: 66.66667%; }
    .gridle-debug html.default .prefix-8:after, html.default .prefix-8.gridle-debug:after {
      content: "prefix-default-8"; }
  html.default .suffix-8 {
    margin-right: 66.66667%; }
    .gridle-debug html.default .suffix-8:after, html.default .suffix-8.gridle-debug:after {
      content: "suffix-default-8"; }
  html.default .grid-9 {
    width: 75%; }
    .gridle-debug html.default .grid-9:before, html.default .grid-9.gridle-debug:before {
      content: "grid-default-9"; }
    .gridle-debug html.default .grid-9.parent:before, html.default .grid-9.gridle-debug.parent:before {
      content: "grid-parent-default-9"; }
  html.default .push-9 {
    left: 75%; }
    .gridle-debug html.default .push-9:after, html.default .push-9.gridle-debug:after {
      content: "push-default-9"; }
  html.default .pull-9 {
    right: 75%; }
    .gridle-debug html.default .pull-9:after, html.default .pull-9.gridle-debug:after {
      content: "pull-default-9"; }
  html.default .prefix-9 {
    margin-left: 75%; }
    .gridle-debug html.default .prefix-9:after, html.default .prefix-9.gridle-debug:after {
      content: "prefix-default-9"; }
  html.default .suffix-9 {
    margin-right: 75%; }
    .gridle-debug html.default .suffix-9:after, html.default .suffix-9.gridle-debug:after {
      content: "suffix-default-9"; }
  html.default .grid-10 {
    width: 83.33333%; }
    .gridle-debug html.default .grid-10:before, html.default .grid-10.gridle-debug:before {
      content: "grid-default-10"; }
    .gridle-debug html.default .grid-10.parent:before, html.default .grid-10.gridle-debug.parent:before {
      content: "grid-parent-default-10"; }
  html.default .push-10 {
    left: 83.33333%; }
    .gridle-debug html.default .push-10:after, html.default .push-10.gridle-debug:after {
      content: "push-default-10"; }
  html.default .pull-10 {
    right: 83.33333%; }
    .gridle-debug html.default .pull-10:after, html.default .pull-10.gridle-debug:after {
      content: "pull-default-10"; }
  html.default .prefix-10 {
    margin-left: 83.33333%; }
    .gridle-debug html.default .prefix-10:after, html.default .prefix-10.gridle-debug:after {
      content: "prefix-default-10"; }
  html.default .suffix-10 {
    margin-right: 83.33333%; }
    .gridle-debug html.default .suffix-10:after, html.default .suffix-10.gridle-debug:after {
      content: "suffix-default-10"; }
  html.default .grid-11 {
    width: 91.66667%; }
    .gridle-debug html.default .grid-11:before, html.default .grid-11.gridle-debug:before {
      content: "grid-default-11"; }
    .gridle-debug html.default .grid-11.parent:before, html.default .grid-11.gridle-debug.parent:before {
      content: "grid-parent-default-11"; }
  html.default .push-11 {
    left: 91.66667%; }
    .gridle-debug html.default .push-11:after, html.default .push-11.gridle-debug:after {
      content: "push-default-11"; }
  html.default .pull-11 {
    right: 91.66667%; }
    .gridle-debug html.default .pull-11:after, html.default .pull-11.gridle-debug:after {
      content: "pull-default-11"; }
  html.default .prefix-11 {
    margin-left: 91.66667%; }
    .gridle-debug html.default .prefix-11:after, html.default .prefix-11.gridle-debug:after {
      content: "prefix-default-11"; }
  html.default .suffix-11 {
    margin-right: 91.66667%; }
    .gridle-debug html.default .suffix-11:after, html.default .suffix-11.gridle-debug:after {
      content: "suffix-default-11"; }
  html.default .grid-12 {
    width: 100%; }
    .gridle-debug html.default .grid-12:before, html.default .grid-12.gridle-debug:before {
      content: "grid-default-12"; }
    .gridle-debug html.default .grid-12.parent:before, html.default .grid-12.gridle-debug.parent:before {
      content: "grid-parent-default-12"; }
  html.default .push-12 {
    left: 100%; }
    .gridle-debug html.default .push-12:after, html.default .push-12.gridle-debug:after {
      content: "push-default-12"; }
  html.default .pull-12 {
    right: 100%; }
    .gridle-debug html.default .pull-12:after, html.default .pull-12.gridle-debug:after {
      content: "pull-default-12"; }
  html.default .prefix-12 {
    margin-left: 100%; }
    .gridle-debug html.default .prefix-12:after, html.default .prefix-12.gridle-debug:after {
      content: "prefix-default-12"; }
  html.default .suffix-12 {
    margin-right: 100%; }
    .gridle-debug html.default .suffix-12:after, html.default .suffix-12.gridle-debug:after {
      content: "suffix-default-12"; }
  html.default .float-left {
    float: left; }
    html.default html.default .float-left {
      float: left; }
  html.default .float-right {
    float: right; }
    html.default html.default .float-right {
      float: right; }
  html.default .clear {
    clear: both; }
    html.default html.default .clear {
      clear: both; }
  html.default .clear-left {
    clear: left; }
    html.default html.default .clear-left {
      clear: left; }
  html.default .clear-right {
    clear: right; }
    html.default html.default .clear-right {
      clear: right; }
  html.default .no-gutter,
  html.default .no-margin {
    padding-left: 0;
    padding-right: 0; }
    html.default html.default .no-gutter,
    html.default html.default .no-margin {
      padding-left: 0;
      padding-right: 0; }
  html.default .no-gutter-left,
  html.default .no-margin-left {
    padding-left: 0; }
    html.default html.default .no-gutter-left,
    html.default html.default .no-margin-left {
      padding-left: 0; }
  html.default .no-gutter-right,
  html.default .no-margin-right {
    padding-right: 0; }
    html.default html.default .no-gutter-right,
    html.default html.default .no-margin-right {
      padding-right: 0; }
  html.default .no-gutter-top,
  html.default .no-margin-top {
    padding-top: 0; }
    html.default html.default .no-gutter-top,
    html.default html.default .no-margin-top {
      padding-top: 0; }
  html.default .no-gutter-bottom,
  html.default .no-margin-bottom {
    padding-bottom: 0; }
    html.default html.default .no-gutter-bottom,
    html.default html.default .no-margin-bottom {
      padding-bottom: 0; }
  html.default .gutter,
  html.default .margins {
    padding-left: 10px;
    padding-right: 10px; }
    html.default html.default .gutter,
    html.default html.default .margins {
      padding-left: 10px;
      padding-right: 10px; }
  html.default .gutter-left,
  html.default .margin-left {
    padding-left: 10px; }
    html.default html.default .gutter-left,
    html.default html.default .margin-left {
      padding-left: 10px; }
  html.default .gutter-right,
  html.default .margin-right {
    padding-right: 10px; }
    html.default html.default .gutter-right,
    html.default html.default .margin-right {
      padding-right: 10px; }
  html.default .gutter-top,
  html.default .margin-top {
    padding-top: 10px; }
    html.default html.default .gutter-top,
    html.default html.default .margin-top {
      padding-top: 10px; }
  html.default .gutter-bottom,
  html.default .margin-bottom {
    padding-bottom: 10px; }
    html.default html.default .gutter-bottom,
    html.default html.default .margin-bottom {
      padding-bottom: 10px; }
  html.default .auto-height {
    height: inherit; }
  html.default .centered {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  html.default .parent {
    padding-left: 0;
    padding-right: 0; }
    html.default html.default .parent {
      padding-left: 0;
      padding-right: 0; }
  html.default .vertical-align-middle {
    font-size: 0;
    clear: both; }
    html.default .vertical-align-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  html.default .vertical-align-top {
    font-size: 0;
    clear: both; }
    html.default .vertical-align-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  html.default .vertical-align-bottom {
    font-size: 0;
    clear: both; }
    html.default .vertical-align-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  html.default .hide {
    display: none; }
  html.default .not-visible {
    visibility: hidden; }
  html.default .show {
    display: block; }
  html.default .show-inline {
    display: inline-block; }
  html.default .visible {
    visibility: visible; }
  html.default .clear-each-2 > *:nth-child(2n+1) {
    clear: left; }
  html.default .clear-each-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug html.default .debug-color-1, html.default .debug-color-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug html.default .debug-color-2, html.default .debug-color-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug html.default .debug-color-3, html.default .debug-color-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug html.default .debug-color-4, html.default .debug-color-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug html.default .debug-color-5, html.default .debug-color-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug html.default .debug-color-6, html.default .debug-color-6.gridle-debug {
    background-color: #b2d8ee; }

.grid-1on5 {
  width: 20%; }
  .gridle-debug .grid-1on5:before, .grid-1on5.gridle-debug:before {
    content: "grid-default-1"; }
  .gridle-debug .grid-1on5.parent:before, .grid-1on5.gridle-debug.parent:before {
    content: "grid-parent-default-1"; }

.push-1on5 {
  left: 20%; }
  .gridle-debug .push-1on5:after, .push-1on5.gridle-debug:after {
    content: "push-default-1"; }

.pull-1on5 {
  right: 20%; }
  .gridle-debug .pull-1on5:after, .pull-1on5.gridle-debug:after {
    content: "pull-default-1"; }

.prefix-1on5 {
  margin-left: 20%; }
  .gridle-debug .prefix-1on5:after, .prefix-1on5.gridle-debug:after {
    content: "prefix-default-1"; }

.suffix-1on5 {
  margin-right: 20%; }
  .gridle-debug .suffix-1on5:after, .suffix-1on5.gridle-debug:after {
    content: "suffix-default-1"; }

.grid-0 {
  width: 0%; }
  .gridle-debug .grid-0:before, .grid-0.gridle-debug:before {
    content: "grid-default-0"; }
  .gridle-debug .grid-0.parent:before, .grid-0.gridle-debug.parent:before {
    content: "grid-parent-default-0"; }

.push-0 {
  left: 0%; }
  .gridle-debug .push-0:after, .push-0.gridle-debug:after {
    content: "push-default-0"; }

.pull-0 {
  right: 0%; }
  .gridle-debug .pull-0:after, .pull-0.gridle-debug:after {
    content: "pull-default-0"; }

.prefix-0 {
  margin-left: 0%; }
  .gridle-debug .prefix-0:after, .prefix-0.gridle-debug:after {
    content: "prefix-default-0"; }

.suffix-0 {
  margin-right: 0%; }
  .gridle-debug .suffix-0:after, .suffix-0.gridle-debug:after {
    content: "suffix-default-0"; }

.grid-1 {
  width: 8.33333%; }
  .gridle-debug .grid-1:before, .grid-1.gridle-debug:before {
    content: "grid-default-1"; }
  .gridle-debug .grid-1.parent:before, .grid-1.gridle-debug.parent:before {
    content: "grid-parent-default-1"; }

.push-1 {
  left: 8.33333%; }
  .gridle-debug .push-1:after, .push-1.gridle-debug:after {
    content: "push-default-1"; }

.pull-1 {
  right: 8.33333%; }
  .gridle-debug .pull-1:after, .pull-1.gridle-debug:after {
    content: "pull-default-1"; }

.prefix-1 {
  margin-left: 8.33333%; }
  .gridle-debug .prefix-1:after, .prefix-1.gridle-debug:after {
    content: "prefix-default-1"; }

.suffix-1 {
  margin-right: 8.33333%; }
  .gridle-debug .suffix-1:after, .suffix-1.gridle-debug:after {
    content: "suffix-default-1"; }

.grid-2, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li {
  width: 16.66667%; }
  .gridle-debug .grid-2:before, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.top-row li:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row .gridle-debug li:before, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row .gridle-debug li:before, .grid-2.gridle-debug:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.gridle-debug:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.gridle-debug:before {
    content: "grid-default-2"; }
  .gridle-debug .grid-2.parent:before, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row .gridle-debug li.parent:before, .gridle-debug header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row .gridle-debug li.parent:before, .grid-2.gridle-debug.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.top-row li.gridle-debug.parent:before, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li.gridle-debug.parent:before {
    content: "grid-parent-default-2"; }

.push-2 {
  left: 16.66667%; }
  .gridle-debug .push-2:after, .push-2.gridle-debug:after {
    content: "push-default-2"; }

.pull-2 {
  right: 16.66667%; }
  .gridle-debug .pull-2:after, .pull-2.gridle-debug:after {
    content: "pull-default-2"; }

.prefix-2 {
  margin-left: 16.66667%; }
  .gridle-debug .prefix-2:after, .prefix-2.gridle-debug:after {
    content: "prefix-default-2"; }

.suffix-2 {
  margin-right: 16.66667%; }
  .gridle-debug .suffix-2:after, .suffix-2.gridle-debug:after {
    content: "suffix-default-2"; }

.grid-3, div.bookshelf section.shelf div.shelf-items div.item {
  width: 25%; }
  .gridle-debug .grid-3:before, .gridle-debug div.bookshelf section.shelf div.shelf-items div.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug div.item:before, .grid-3.gridle-debug:before, div.bookshelf section.shelf div.shelf-items div.gridle-debug.item:before {
    content: "grid-default-3"; }
  .gridle-debug .grid-3.parent:before, .gridle-debug div.bookshelf section.shelf div.shelf-items div.parent.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug div.parent.item:before, .grid-3.gridle-debug.parent:before, div.bookshelf section.shelf div.shelf-items div.gridle-debug.parent.item:before {
    content: "grid-parent-default-3"; }

.push-3 {
  left: 25%; }
  .gridle-debug .push-3:after, .push-3.gridle-debug:after {
    content: "push-default-3"; }

.pull-3 {
  right: 25%; }
  .gridle-debug .pull-3:after, .pull-3.gridle-debug:after {
    content: "pull-default-3"; }

.prefix-3 {
  margin-left: 25%; }
  .gridle-debug .prefix-3:after, .prefix-3.gridle-debug:after {
    content: "prefix-default-3"; }

.suffix-3 {
  margin-right: 25%; }
  .gridle-debug .suffix-3:after, .suffix-3.gridle-debug:after {
    content: "suffix-default-3"; }

.grid-4, html.mobile .single-article article.post-content.feature.essay .featuredImage, html.mobile .single-article article.post-content.feature.essay figure.alignleft, html.mobile .single-article article.post-content.feature.essay img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft, html.mobile .single-article article.post-content.feature.essay figure.alignright, html.mobile .single-article article.post-content.feature.essay img.alignright, html.mobile .single-short-takes article.post-content.feature.essay figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright, html.mobile div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items div.item, html.mobile section.singular-av article div.post-content .featuredImage, html.mobile section.singular-av article div.post-content figure.alignleft, html.mobile section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft {
  width: 33.33333%; }
  .gridle-debug .grid-4:before, .gridle-debug .single-article article.post-content.feature.essay .featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug .featuredImage:before, .gridle-debug .single-article article.post-content.feature.essay figure.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug figure.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay img.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug img.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay .featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug .featuredImage:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay figure.alignright:before, .single-article article.post-content.feature.essay .gridle-debug figure.alignright:before, .gridle-debug .single-article article.post-content.feature.essay img.alignright:before, .single-article article.post-content.feature.essay .gridle-debug img.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignright:before, .gridle-debug div.bookshelf section.shelf div.shelf-items div.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug div.item:before, .gridle-debug section.singular-av article div.post-content .featuredImage:before, section.singular-av article div.post-content .gridle-debug .featuredImage:before, .gridle-debug section.singular-av article div.post-content figure.alignleft:before, section.singular-av article div.post-content .gridle-debug figure.alignleft:before, .gridle-debug section.singular-av article div.post-content img.alignleft:before, section.singular-av article div.post-content .gridle-debug img.alignleft:before, .grid-4.gridle-debug:before, .single-article article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-article article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-article article.post-content.feature.essay img.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright:before, div.bookshelf section.shelf div.shelf-items div.gridle-debug.item:before, section.singular-av article div.post-content .gridle-debug.featuredImage:before, section.singular-av article div.post-content figure.gridle-debug.alignleft:before, section.singular-av article div.post-content img.gridle-debug.alignleft:before {
    content: "grid-default-4"; }
  .gridle-debug .grid-4.parent:before, .gridle-debug .single-article article.post-content.feature.essay .parent.featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug .parent.featuredImage:before, .gridle-debug .single-article article.post-content.feature.essay figure.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug figure.parent.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay img.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug img.parent.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay .parent.featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug .parent.featuredImage:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.parent.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.parent.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay figure.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug figure.parent.alignright:before, .gridle-debug .single-article article.post-content.feature.essay img.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug img.parent.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.parent.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.parent.alignright:before, .gridle-debug div.bookshelf section.shelf div.shelf-items div.parent.item:before, div.bookshelf section.shelf div.shelf-items .gridle-debug div.parent.item:before, .gridle-debug section.singular-av article div.post-content .parent.featuredImage:before, section.singular-av article div.post-content .gridle-debug .parent.featuredImage:before, .gridle-debug section.singular-av article div.post-content figure.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug figure.parent.alignleft:before, .gridle-debug section.singular-av article div.post-content img.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug img.parent.alignleft:before, .grid-4.gridle-debug.parent:before, .single-article article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-article article.post-content.feature.essay img.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignright:before, div.bookshelf section.shelf div.shelf-items div.gridle-debug.parent.item:before, section.singular-av article div.post-content .gridle-debug.parent.featuredImage:before, section.singular-av article div.post-content figure.gridle-debug.parent.alignleft:before, section.singular-av article div.post-content img.gridle-debug.parent.alignleft:before {
    content: "grid-parent-default-4"; }

.push-4 {
  left: 33.33333%; }
  .gridle-debug .push-4:after, .push-4.gridle-debug:after {
    content: "push-default-4"; }

.pull-4 {
  right: 33.33333%; }
  .gridle-debug .pull-4:after, .pull-4.gridle-debug:after {
    content: "pull-default-4"; }

.prefix-4 {
  margin-left: 33.33333%; }
  .gridle-debug .prefix-4:after, .prefix-4.gridle-debug:after {
    content: "prefix-default-4"; }

.suffix-4 {
  margin-right: 33.33333%; }
  .gridle-debug .suffix-4:after, .suffix-4.gridle-debug:after {
    content: "suffix-default-4"; }

.grid-5 {
  width: 41.66667%; }
  .gridle-debug .grid-5:before, .grid-5.gridle-debug:before {
    content: "grid-default-5"; }
  .gridle-debug .grid-5.parent:before, .grid-5.gridle-debug.parent:before {
    content: "grid-parent-default-5"; }

.push-5 {
  left: 41.66667%; }
  .gridle-debug .push-5:after, .push-5.gridle-debug:after {
    content: "push-default-5"; }

.pull-5 {
  right: 41.66667%; }
  .gridle-debug .pull-5:after, .pull-5.gridle-debug:after {
    content: "pull-default-5"; }

.prefix-5 {
  margin-left: 41.66667%; }
  .gridle-debug .prefix-5:after, .prefix-5.gridle-debug:after {
    content: "prefix-default-5"; }

.suffix-5 {
  margin-right: 41.66667%; }
  .gridle-debug .suffix-5:after, .suffix-5.gridle-debug:after {
    content: "suffix-default-5"; }

.grid-6, .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright, section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft {
  width: 50%; }
  .gridle-debug .grid-6:before, .gridle-debug .single-article article.post-content.feature.essay .featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug .featuredImage:before, .gridle-debug .single-article article.post-content.feature.essay figure.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug figure.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay img.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug img.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay .featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug .featuredImage:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay figure.alignright:before, .single-article article.post-content.feature.essay .gridle-debug figure.alignright:before, .gridle-debug .single-article article.post-content.feature.essay img.alignright:before, .single-article article.post-content.feature.essay .gridle-debug img.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.alignright:before, .gridle-debug section.singular-av article div.post-content .featuredImage:before, section.singular-av article div.post-content .gridle-debug .featuredImage:before, .gridle-debug section.singular-av article div.post-content figure.alignleft:before, section.singular-av article div.post-content .gridle-debug figure.alignleft:before, .gridle-debug section.singular-av article div.post-content img.alignleft:before, section.singular-av article div.post-content .gridle-debug img.alignleft:before, .grid-6.gridle-debug:before, .single-article article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-article article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug.featuredImage:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignleft:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignleft:before, .single-article article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-article article.post-content.feature.essay img.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.alignright:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.alignright:before, section.singular-av article div.post-content .gridle-debug.featuredImage:before, section.singular-av article div.post-content figure.gridle-debug.alignleft:before, section.singular-av article div.post-content img.gridle-debug.alignleft:before {
    content: "grid-default-6"; }
  .gridle-debug .grid-6.parent:before, .gridle-debug .single-article article.post-content.feature.essay .parent.featuredImage:before, .single-article article.post-content.feature.essay .gridle-debug .parent.featuredImage:before, .gridle-debug .single-article article.post-content.feature.essay figure.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug figure.parent.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay img.parent.alignleft:before, .single-article article.post-content.feature.essay .gridle-debug img.parent.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay .parent.featuredImage:before, .single-short-takes article.post-content.feature.essay .gridle-debug .parent.featuredImage:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.parent.alignleft:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.parent.alignleft:before, .gridle-debug .single-article article.post-content.feature.essay figure.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug figure.parent.alignright:before, .gridle-debug .single-article article.post-content.feature.essay img.parent.alignright:before, .single-article article.post-content.feature.essay .gridle-debug img.parent.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay figure.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug figure.parent.alignright:before, .gridle-debug .single-short-takes article.post-content.feature.essay img.parent.alignright:before, .single-short-takes article.post-content.feature.essay .gridle-debug img.parent.alignright:before, .gridle-debug section.singular-av article div.post-content .parent.featuredImage:before, section.singular-av article div.post-content .gridle-debug .parent.featuredImage:before, .gridle-debug section.singular-av article div.post-content figure.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug figure.parent.alignleft:before, .gridle-debug section.singular-av article div.post-content img.parent.alignleft:before, section.singular-av article div.post-content .gridle-debug img.parent.alignleft:before, .grid-6.gridle-debug.parent:before, .single-article article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay .gridle-debug.parent.featuredImage:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignleft:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignleft:before, .single-article article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-article article.post-content.feature.essay img.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay figure.gridle-debug.parent.alignright:before, .single-short-takes article.post-content.feature.essay img.gridle-debug.parent.alignright:before, section.singular-av article div.post-content .gridle-debug.parent.featuredImage:before, section.singular-av article div.post-content figure.gridle-debug.parent.alignleft:before, section.singular-av article div.post-content img.gridle-debug.parent.alignleft:before {
    content: "grid-parent-default-6"; }

.push-6 {
  left: 50%; }
  .gridle-debug .push-6:after, .push-6.gridle-debug:after {
    content: "push-default-6"; }

.pull-6 {
  right: 50%; }
  .gridle-debug .pull-6:after, .pull-6.gridle-debug:after {
    content: "pull-default-6"; }

.prefix-6 {
  margin-left: 50%; }
  .gridle-debug .prefix-6:after, .prefix-6.gridle-debug:after {
    content: "prefix-default-6"; }

.suffix-6 {
  margin-right: 50%; }
  .gridle-debug .suffix-6:after, .suffix-6.gridle-debug:after {
    content: "suffix-default-6"; }

.grid-7 {
  width: 58.33333%; }
  .gridle-debug .grid-7:before, .grid-7.gridle-debug:before {
    content: "grid-default-7"; }
  .gridle-debug .grid-7.parent:before, .grid-7.gridle-debug.parent:before {
    content: "grid-parent-default-7"; }

.push-7 {
  left: 58.33333%; }
  .gridle-debug .push-7:after, .push-7.gridle-debug:after {
    content: "push-default-7"; }

.pull-7 {
  right: 58.33333%; }
  .gridle-debug .pull-7:after, .pull-7.gridle-debug:after {
    content: "pull-default-7"; }

.prefix-7 {
  margin-left: 58.33333%; }
  .gridle-debug .prefix-7:after, .prefix-7.gridle-debug:after {
    content: "prefix-default-7"; }

.suffix-7 {
  margin-right: 58.33333%; }
  .gridle-debug .suffix-7:after, .suffix-7.gridle-debug:after {
    content: "suffix-default-7"; }

.grid-8 {
  width: 66.66667%; }
  .gridle-debug .grid-8:before, .grid-8.gridle-debug:before {
    content: "grid-default-8"; }
  .gridle-debug .grid-8.parent:before, .grid-8.gridle-debug.parent:before {
    content: "grid-parent-default-8"; }

.push-8 {
  left: 66.66667%; }
  .gridle-debug .push-8:after, .push-8.gridle-debug:after {
    content: "push-default-8"; }

.pull-8 {
  right: 66.66667%; }
  .gridle-debug .pull-8:after, .pull-8.gridle-debug:after {
    content: "pull-default-8"; }

.prefix-8 {
  margin-left: 66.66667%; }
  .gridle-debug .prefix-8:after, .prefix-8.gridle-debug:after {
    content: "prefix-default-8"; }

.suffix-8 {
  margin-right: 66.66667%; }
  .gridle-debug .suffix-8:after, .suffix-8.gridle-debug:after {
    content: "suffix-default-8"; }

.grid-9 {
  width: 75%; }
  .gridle-debug .grid-9:before, .grid-9.gridle-debug:before {
    content: "grid-default-9"; }
  .gridle-debug .grid-9.parent:before, .grid-9.gridle-debug.parent:before {
    content: "grid-parent-default-9"; }

.push-9 {
  left: 75%; }
  .gridle-debug .push-9:after, .push-9.gridle-debug:after {
    content: "push-default-9"; }

.pull-9 {
  right: 75%; }
  .gridle-debug .pull-9:after, .pull-9.gridle-debug:after {
    content: "pull-default-9"; }

.prefix-9 {
  margin-left: 75%; }
  .gridle-debug .prefix-9:after, .prefix-9.gridle-debug:after {
    content: "prefix-default-9"; }

.suffix-9 {
  margin-right: 75%; }
  .gridle-debug .suffix-9:after, .suffix-9.gridle-debug:after {
    content: "suffix-default-9"; }

.grid-10 {
  width: 83.33333%; }
  .gridle-debug .grid-10:before, .grid-10.gridle-debug:before {
    content: "grid-default-10"; }
  .gridle-debug .grid-10.parent:before, .grid-10.gridle-debug.parent:before {
    content: "grid-parent-default-10"; }

.push-10 {
  left: 83.33333%; }
  .gridle-debug .push-10:after, .push-10.gridle-debug:after {
    content: "push-default-10"; }

.pull-10 {
  right: 83.33333%; }
  .gridle-debug .pull-10:after, .pull-10.gridle-debug:after {
    content: "pull-default-10"; }

.prefix-10 {
  margin-left: 83.33333%; }
  .gridle-debug .prefix-10:after, .prefix-10.gridle-debug:after {
    content: "prefix-default-10"; }

.suffix-10 {
  margin-right: 83.33333%; }
  .gridle-debug .suffix-10:after, .suffix-10.gridle-debug:after {
    content: "suffix-default-10"; }

.grid-11 {
  width: 91.66667%; }
  .gridle-debug .grid-11:before, .grid-11.gridle-debug:before {
    content: "grid-default-11"; }
  .gridle-debug .grid-11.parent:before, .grid-11.gridle-debug.parent:before {
    content: "grid-parent-default-11"; }

.push-11 {
  left: 91.66667%; }
  .gridle-debug .push-11:after, .push-11.gridle-debug:after {
    content: "push-default-11"; }

.pull-11 {
  right: 91.66667%; }
  .gridle-debug .pull-11:after, .pull-11.gridle-debug:after {
    content: "pull-default-11"; }

.prefix-11 {
  margin-left: 91.66667%; }
  .gridle-debug .prefix-11:after, .prefix-11.gridle-debug:after {
    content: "prefix-default-11"; }

.suffix-11 {
  margin-right: 91.66667%; }
  .gridle-debug .suffix-11:after, .suffix-11.gridle-debug:after {
    content: "suffix-default-11"; }

.grid-12 {
  width: 100%; }
  .gridle-debug .grid-12:before, .grid-12.gridle-debug:before {
    content: "grid-default-12"; }
  .gridle-debug .grid-12.parent:before, .grid-12.gridle-debug.parent:before {
    content: "grid-parent-default-12"; }

.push-12 {
  left: 100%; }
  .gridle-debug .push-12:after, .push-12.gridle-debug:after {
    content: "push-default-12"; }

.pull-12 {
  right: 100%; }
  .gridle-debug .pull-12:after, .pull-12.gridle-debug:after {
    content: "pull-default-12"; }

.prefix-12 {
  margin-left: 100%; }
  .gridle-debug .prefix-12:after, .prefix-12.gridle-debug:after {
    content: "prefix-default-12"; }

.suffix-12 {
  margin-right: 100%; }
  .gridle-debug .suffix-12:after, .suffix-12.gridle-debug:after {
    content: "suffix-default-12"; }

.float-left {
  float: left; }
  html.default .float-left {
    float: left; }

.float-right {
  float: right; }
  html.default .float-right {
    float: right; }

.clear {
  clear: both; }
  html.default .clear {
    clear: both; }

.clear-left {
  clear: left; }
  html.default .clear-left {
    clear: left; }

.clear-right {
  clear: right; }
  html.default .clear-right {
    clear: right; }

.no-gutter,
.no-margin {
  padding-left: 0;
  padding-right: 0; }
  html.default .no-gutter,
  html.default .no-margin {
    padding-left: 0;
    padding-right: 0; }

.no-gutter-left,
.no-margin-left {
  padding-left: 0; }
  html.default .no-gutter-left,
  html.default .no-margin-left {
    padding-left: 0; }

.no-gutter-right,
.no-margin-right {
  padding-right: 0; }
  html.default .no-gutter-right,
  html.default .no-margin-right {
    padding-right: 0; }

.no-gutter-top,
.no-margin-top {
  padding-top: 0; }
  html.default .no-gutter-top,
  html.default .no-margin-top {
    padding-top: 0; }

.no-gutter-bottom,
.no-margin-bottom {
  padding-bottom: 0; }
  html.default .no-gutter-bottom,
  html.default .no-margin-bottom {
    padding-bottom: 0; }

.gutter,
.margins {
  padding-left: 10px;
  padding-right: 10px; }
  html.default .gutter,
  html.default .margins {
    padding-left: 10px;
    padding-right: 10px; }

.gutter-left,
.margin-left {
  padding-left: 10px; }
  html.default .gutter-left,
  html.default .margin-left {
    padding-left: 10px; }

.gutter-right,
.margin-right {
  padding-right: 10px; }
  html.default .gutter-right,
  html.default .margin-right {
    padding-right: 10px; }

.gutter-top,
.margin-top {
  padding-top: 10px; }
  html.default .gutter-top,
  html.default .margin-top {
    padding-top: 10px; }

.gutter-bottom,
.margin-bottom {
  padding-bottom: 10px; }
  html.default .gutter-bottom,
  html.default .margin-bottom {
    padding-bottom: 10px; }

.auto-height {
  height: inherit; }

.centered {
  display: block !important;
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  clear: both !important; }

.parent {
  padding-left: 0;
  padding-right: 0; }
  html.default .parent {
    padding-left: 0;
    padding-right: 0; }

.vertical-align-middle {
  font-size: 0;
  clear: both; }
  .vertical-align-middle > * {
    display: inline-block;
    float: none !important;
    vertical-align: middle;
    font-size: 1rem; }

.vertical-align-top {
  font-size: 0;
  clear: both; }
  .vertical-align-top > * {
    display: inline-block;
    float: none !important;
    vertical-align: top;
    font-size: 1rem; }

.vertical-align-bottom {
  font-size: 0;
  clear: both; }
  .vertical-align-bottom > * {
    display: inline-block;
    float: none !important;
    vertical-align: bottom;
    font-size: 1rem; }

/**
	 * Visible, hide, etc...
	 */
.hide {
  display: none; }

.not-visible {
  visibility: hidden; }

.show {
  display: block; }

.show-inline {
  display: inline-block; }

.visible {
  visibility: visible; }

/**
	 * Clear each class :
	 */
.clear-each-2 > *:nth-child(2n+1) {
  clear: left; }

.clear-each-12 > *:nth-child(12n+1) {
  clear: both; }

.gridle-debug .debug-color-1, .debug-color-1.gridle-debug {
  background-color: #edeeb2; }

.gridle-debug .debug-color-2, .debug-color-2.gridle-debug {
  background-color: #fae4a7; }

.gridle-debug .debug-color-3, .debug-color-3.gridle-debug {
  background-color: #f5eacc; }

.gridle-debug .debug-color-4, .debug-color-4.gridle-debug {
  background-color: #eebdb2; }

.gridle-debug .debug-color-5, .debug-color-5.gridle-debug {
  background-color: #d4b2ee; }

.gridle-debug .debug-color-6, .debug-color-6.gridle-debug {
  background-color: #b2d8ee; }

html.mobile {
  /**
	 * Visible, hide, etc...
	 */
  /**
	 * Clear each class :
	 */ }
  html.mobile .grid-mobile-1on5 {
    width: 20%; }
    .gridle-debug html.mobile .grid-mobile-1on5:before, html.mobile .grid-mobile-1on5.gridle-debug:before {
      content: "grid-mobile-1" !important; }
    .gridle-debug html.mobile .grid-mobile-1on5.parent:before, html.mobile .grid-mobile-1on5.gridle-debug.parent:before {
      content: "grid-parent-mobile-1" !important; }
  html.mobile .push-mobile-1on5 {
    left: 20%; }
    .gridle-debug html.mobile .push-mobile-1on5:after, html.mobile .push-mobile-1on5.gridle-debug:after {
      content: "push-mobile-1" !important; }
  html.mobile .pull-mobile-1on5 {
    right: 20%; }
    .gridle-debug html.mobile .pull-mobile-1on5:after, html.mobile .pull-mobile-1on5.gridle-debug:after {
      content: "pull-mobile-1" !important; }
  html.mobile .prefix-mobile-1on5 {
    margin-left: 20%; }
    .gridle-debug html.mobile .prefix-mobile-1on5:after, html.mobile .prefix-mobile-1on5.gridle-debug:after {
      content: "prefix-mobile-1" !important; }
  html.mobile .suffix-mobile-1on5 {
    margin-right: 20%; }
    .gridle-debug html.mobile .suffix-mobile-1on5:after, html.mobile .suffix-mobile-1on5.gridle-debug:after {
      content: "suffix-mobile-1" !important; }
  html.mobile .grid-mobile-0 {
    width: 0%; }
    .gridle-debug html.mobile .grid-mobile-0:before, html.mobile .grid-mobile-0.gridle-debug:before {
      content: "grid-mobile-0" !important; }
    .gridle-debug html.mobile .grid-mobile-0.parent:before, html.mobile .grid-mobile-0.gridle-debug.parent:before {
      content: "grid-parent-mobile-0" !important; }
  html.mobile .push-mobile-0 {
    left: 0%; }
    .gridle-debug html.mobile .push-mobile-0:after, html.mobile .push-mobile-0.gridle-debug:after {
      content: "push-mobile-0" !important; }
  html.mobile .pull-mobile-0 {
    right: 0%; }
    .gridle-debug html.mobile .pull-mobile-0:after, html.mobile .pull-mobile-0.gridle-debug:after {
      content: "pull-mobile-0" !important; }
  html.mobile .prefix-mobile-0 {
    margin-left: 0%; }
    .gridle-debug html.mobile .prefix-mobile-0:after, html.mobile .prefix-mobile-0.gridle-debug:after {
      content: "prefix-mobile-0" !important; }
  html.mobile .suffix-mobile-0 {
    margin-right: 0%; }
    .gridle-debug html.mobile .suffix-mobile-0:after, html.mobile .suffix-mobile-0.gridle-debug:after {
      content: "suffix-mobile-0" !important; }
  html.mobile .grid-mobile-1 {
    width: 8.33333%; }
    .gridle-debug html.mobile .grid-mobile-1:before, html.mobile .grid-mobile-1.gridle-debug:before {
      content: "grid-mobile-1" !important; }
    .gridle-debug html.mobile .grid-mobile-1.parent:before, html.mobile .grid-mobile-1.gridle-debug.parent:before {
      content: "grid-parent-mobile-1" !important; }
  html.mobile .push-mobile-1 {
    left: 8.33333%; }
    .gridle-debug html.mobile .push-mobile-1:after, html.mobile .push-mobile-1.gridle-debug:after {
      content: "push-mobile-1" !important; }
  html.mobile .pull-mobile-1 {
    right: 8.33333%; }
    .gridle-debug html.mobile .pull-mobile-1:after, html.mobile .pull-mobile-1.gridle-debug:after {
      content: "pull-mobile-1" !important; }
  html.mobile .prefix-mobile-1 {
    margin-left: 8.33333%; }
    .gridle-debug html.mobile .prefix-mobile-1:after, html.mobile .prefix-mobile-1.gridle-debug:after {
      content: "prefix-mobile-1" !important; }
  html.mobile .suffix-mobile-1 {
    margin-right: 8.33333%; }
    .gridle-debug html.mobile .suffix-mobile-1:after, html.mobile .suffix-mobile-1.gridle-debug:after {
      content: "suffix-mobile-1" !important; }
  html.mobile .grid-mobile-2 {
    width: 16.66667%; }
    .gridle-debug html.mobile .grid-mobile-2:before, html.mobile .grid-mobile-2.gridle-debug:before {
      content: "grid-mobile-2" !important; }
    .gridle-debug html.mobile .grid-mobile-2.parent:before, html.mobile .grid-mobile-2.gridle-debug.parent:before {
      content: "grid-parent-mobile-2" !important; }
  html.mobile .push-mobile-2 {
    left: 16.66667%; }
    .gridle-debug html.mobile .push-mobile-2:after, html.mobile .push-mobile-2.gridle-debug:after {
      content: "push-mobile-2" !important; }
  html.mobile .pull-mobile-2 {
    right: 16.66667%; }
    .gridle-debug html.mobile .pull-mobile-2:after, html.mobile .pull-mobile-2.gridle-debug:after {
      content: "pull-mobile-2" !important; }
  html.mobile .prefix-mobile-2 {
    margin-left: 16.66667%; }
    .gridle-debug html.mobile .prefix-mobile-2:after, html.mobile .prefix-mobile-2.gridle-debug:after {
      content: "prefix-mobile-2" !important; }
  html.mobile .suffix-mobile-2 {
    margin-right: 16.66667%; }
    .gridle-debug html.mobile .suffix-mobile-2:after, html.mobile .suffix-mobile-2.gridle-debug:after {
      content: "suffix-mobile-2" !important; }
  html.mobile .grid-mobile-3 {
    width: 25%; }
    .gridle-debug html.mobile .grid-mobile-3:before, html.mobile .grid-mobile-3.gridle-debug:before {
      content: "grid-mobile-3" !important; }
    .gridle-debug html.mobile .grid-mobile-3.parent:before, html.mobile .grid-mobile-3.gridle-debug.parent:before {
      content: "grid-parent-mobile-3" !important; }
  html.mobile .push-mobile-3 {
    left: 25%; }
    .gridle-debug html.mobile .push-mobile-3:after, html.mobile .push-mobile-3.gridle-debug:after {
      content: "push-mobile-3" !important; }
  html.mobile .pull-mobile-3 {
    right: 25%; }
    .gridle-debug html.mobile .pull-mobile-3:after, html.mobile .pull-mobile-3.gridle-debug:after {
      content: "pull-mobile-3" !important; }
  html.mobile .prefix-mobile-3 {
    margin-left: 25%; }
    .gridle-debug html.mobile .prefix-mobile-3:after, html.mobile .prefix-mobile-3.gridle-debug:after {
      content: "prefix-mobile-3" !important; }
  html.mobile .suffix-mobile-3 {
    margin-right: 25%; }
    .gridle-debug html.mobile .suffix-mobile-3:after, html.mobile .suffix-mobile-3.gridle-debug:after {
      content: "suffix-mobile-3" !important; }
  html.mobile .grid-mobile-4 {
    width: 33.33333%; }
    .gridle-debug html.mobile .grid-mobile-4:before, html.mobile .grid-mobile-4.gridle-debug:before {
      content: "grid-mobile-4" !important; }
    .gridle-debug html.mobile .grid-mobile-4.parent:before, html.mobile .grid-mobile-4.gridle-debug.parent:before {
      content: "grid-parent-mobile-4" !important; }
  html.mobile .push-mobile-4 {
    left: 33.33333%; }
    .gridle-debug html.mobile .push-mobile-4:after, html.mobile .push-mobile-4.gridle-debug:after {
      content: "push-mobile-4" !important; }
  html.mobile .pull-mobile-4 {
    right: 33.33333%; }
    .gridle-debug html.mobile .pull-mobile-4:after, html.mobile .pull-mobile-4.gridle-debug:after {
      content: "pull-mobile-4" !important; }
  html.mobile .prefix-mobile-4 {
    margin-left: 33.33333%; }
    .gridle-debug html.mobile .prefix-mobile-4:after, html.mobile .prefix-mobile-4.gridle-debug:after {
      content: "prefix-mobile-4" !important; }
  html.mobile .suffix-mobile-4 {
    margin-right: 33.33333%; }
    .gridle-debug html.mobile .suffix-mobile-4:after, html.mobile .suffix-mobile-4.gridle-debug:after {
      content: "suffix-mobile-4" !important; }
  html.mobile .grid-mobile-5 {
    width: 41.66667%; }
    .gridle-debug html.mobile .grid-mobile-5:before, html.mobile .grid-mobile-5.gridle-debug:before {
      content: "grid-mobile-5" !important; }
    .gridle-debug html.mobile .grid-mobile-5.parent:before, html.mobile .grid-mobile-5.gridle-debug.parent:before {
      content: "grid-parent-mobile-5" !important; }
  html.mobile .push-mobile-5 {
    left: 41.66667%; }
    .gridle-debug html.mobile .push-mobile-5:after, html.mobile .push-mobile-5.gridle-debug:after {
      content: "push-mobile-5" !important; }
  html.mobile .pull-mobile-5 {
    right: 41.66667%; }
    .gridle-debug html.mobile .pull-mobile-5:after, html.mobile .pull-mobile-5.gridle-debug:after {
      content: "pull-mobile-5" !important; }
  html.mobile .prefix-mobile-5 {
    margin-left: 41.66667%; }
    .gridle-debug html.mobile .prefix-mobile-5:after, html.mobile .prefix-mobile-5.gridle-debug:after {
      content: "prefix-mobile-5" !important; }
  html.mobile .suffix-mobile-5 {
    margin-right: 41.66667%; }
    .gridle-debug html.mobile .suffix-mobile-5:after, html.mobile .suffix-mobile-5.gridle-debug:after {
      content: "suffix-mobile-5" !important; }
  html.mobile .grid-mobile-6 {
    width: 50%; }
    .gridle-debug html.mobile .grid-mobile-6:before, html.mobile .grid-mobile-6.gridle-debug:before {
      content: "grid-mobile-6" !important; }
    .gridle-debug html.mobile .grid-mobile-6.parent:before, html.mobile .grid-mobile-6.gridle-debug.parent:before {
      content: "grid-parent-mobile-6" !important; }
  html.mobile .push-mobile-6 {
    left: 50%; }
    .gridle-debug html.mobile .push-mobile-6:after, html.mobile .push-mobile-6.gridle-debug:after {
      content: "push-mobile-6" !important; }
  html.mobile .pull-mobile-6 {
    right: 50%; }
    .gridle-debug html.mobile .pull-mobile-6:after, html.mobile .pull-mobile-6.gridle-debug:after {
      content: "pull-mobile-6" !important; }
  html.mobile .prefix-mobile-6 {
    margin-left: 50%; }
    .gridle-debug html.mobile .prefix-mobile-6:after, html.mobile .prefix-mobile-6.gridle-debug:after {
      content: "prefix-mobile-6" !important; }
  html.mobile .suffix-mobile-6 {
    margin-right: 50%; }
    .gridle-debug html.mobile .suffix-mobile-6:after, html.mobile .suffix-mobile-6.gridle-debug:after {
      content: "suffix-mobile-6" !important; }
  html.mobile .grid-mobile-7 {
    width: 58.33333%; }
    .gridle-debug html.mobile .grid-mobile-7:before, html.mobile .grid-mobile-7.gridle-debug:before {
      content: "grid-mobile-7" !important; }
    .gridle-debug html.mobile .grid-mobile-7.parent:before, html.mobile .grid-mobile-7.gridle-debug.parent:before {
      content: "grid-parent-mobile-7" !important; }
  html.mobile .push-mobile-7 {
    left: 58.33333%; }
    .gridle-debug html.mobile .push-mobile-7:after, html.mobile .push-mobile-7.gridle-debug:after {
      content: "push-mobile-7" !important; }
  html.mobile .pull-mobile-7 {
    right: 58.33333%; }
    .gridle-debug html.mobile .pull-mobile-7:after, html.mobile .pull-mobile-7.gridle-debug:after {
      content: "pull-mobile-7" !important; }
  html.mobile .prefix-mobile-7 {
    margin-left: 58.33333%; }
    .gridle-debug html.mobile .prefix-mobile-7:after, html.mobile .prefix-mobile-7.gridle-debug:after {
      content: "prefix-mobile-7" !important; }
  html.mobile .suffix-mobile-7 {
    margin-right: 58.33333%; }
    .gridle-debug html.mobile .suffix-mobile-7:after, html.mobile .suffix-mobile-7.gridle-debug:after {
      content: "suffix-mobile-7" !important; }
  html.mobile .grid-mobile-8 {
    width: 66.66667%; }
    .gridle-debug html.mobile .grid-mobile-8:before, html.mobile .grid-mobile-8.gridle-debug:before {
      content: "grid-mobile-8" !important; }
    .gridle-debug html.mobile .grid-mobile-8.parent:before, html.mobile .grid-mobile-8.gridle-debug.parent:before {
      content: "grid-parent-mobile-8" !important; }
  html.mobile .push-mobile-8 {
    left: 66.66667%; }
    .gridle-debug html.mobile .push-mobile-8:after, html.mobile .push-mobile-8.gridle-debug:after {
      content: "push-mobile-8" !important; }
  html.mobile .pull-mobile-8 {
    right: 66.66667%; }
    .gridle-debug html.mobile .pull-mobile-8:after, html.mobile .pull-mobile-8.gridle-debug:after {
      content: "pull-mobile-8" !important; }
  html.mobile .prefix-mobile-8 {
    margin-left: 66.66667%; }
    .gridle-debug html.mobile .prefix-mobile-8:after, html.mobile .prefix-mobile-8.gridle-debug:after {
      content: "prefix-mobile-8" !important; }
  html.mobile .suffix-mobile-8 {
    margin-right: 66.66667%; }
    .gridle-debug html.mobile .suffix-mobile-8:after, html.mobile .suffix-mobile-8.gridle-debug:after {
      content: "suffix-mobile-8" !important; }
  html.mobile .grid-mobile-9 {
    width: 75%; }
    .gridle-debug html.mobile .grid-mobile-9:before, html.mobile .grid-mobile-9.gridle-debug:before {
      content: "grid-mobile-9" !important; }
    .gridle-debug html.mobile .grid-mobile-9.parent:before, html.mobile .grid-mobile-9.gridle-debug.parent:before {
      content: "grid-parent-mobile-9" !important; }
  html.mobile .push-mobile-9 {
    left: 75%; }
    .gridle-debug html.mobile .push-mobile-9:after, html.mobile .push-mobile-9.gridle-debug:after {
      content: "push-mobile-9" !important; }
  html.mobile .pull-mobile-9 {
    right: 75%; }
    .gridle-debug html.mobile .pull-mobile-9:after, html.mobile .pull-mobile-9.gridle-debug:after {
      content: "pull-mobile-9" !important; }
  html.mobile .prefix-mobile-9 {
    margin-left: 75%; }
    .gridle-debug html.mobile .prefix-mobile-9:after, html.mobile .prefix-mobile-9.gridle-debug:after {
      content: "prefix-mobile-9" !important; }
  html.mobile .suffix-mobile-9 {
    margin-right: 75%; }
    .gridle-debug html.mobile .suffix-mobile-9:after, html.mobile .suffix-mobile-9.gridle-debug:after {
      content: "suffix-mobile-9" !important; }
  html.mobile .grid-mobile-10 {
    width: 83.33333%; }
    .gridle-debug html.mobile .grid-mobile-10:before, html.mobile .grid-mobile-10.gridle-debug:before {
      content: "grid-mobile-10" !important; }
    .gridle-debug html.mobile .grid-mobile-10.parent:before, html.mobile .grid-mobile-10.gridle-debug.parent:before {
      content: "grid-parent-mobile-10" !important; }
  html.mobile .push-mobile-10 {
    left: 83.33333%; }
    .gridle-debug html.mobile .push-mobile-10:after, html.mobile .push-mobile-10.gridle-debug:after {
      content: "push-mobile-10" !important; }
  html.mobile .pull-mobile-10 {
    right: 83.33333%; }
    .gridle-debug html.mobile .pull-mobile-10:after, html.mobile .pull-mobile-10.gridle-debug:after {
      content: "pull-mobile-10" !important; }
  html.mobile .prefix-mobile-10 {
    margin-left: 83.33333%; }
    .gridle-debug html.mobile .prefix-mobile-10:after, html.mobile .prefix-mobile-10.gridle-debug:after {
      content: "prefix-mobile-10" !important; }
  html.mobile .suffix-mobile-10 {
    margin-right: 83.33333%; }
    .gridle-debug html.mobile .suffix-mobile-10:after, html.mobile .suffix-mobile-10.gridle-debug:after {
      content: "suffix-mobile-10" !important; }
  html.mobile .grid-mobile-11 {
    width: 91.66667%; }
    .gridle-debug html.mobile .grid-mobile-11:before, html.mobile .grid-mobile-11.gridle-debug:before {
      content: "grid-mobile-11" !important; }
    .gridle-debug html.mobile .grid-mobile-11.parent:before, html.mobile .grid-mobile-11.gridle-debug.parent:before {
      content: "grid-parent-mobile-11" !important; }
  html.mobile .push-mobile-11 {
    left: 91.66667%; }
    .gridle-debug html.mobile .push-mobile-11:after, html.mobile .push-mobile-11.gridle-debug:after {
      content: "push-mobile-11" !important; }
  html.mobile .pull-mobile-11 {
    right: 91.66667%; }
    .gridle-debug html.mobile .pull-mobile-11:after, html.mobile .pull-mobile-11.gridle-debug:after {
      content: "pull-mobile-11" !important; }
  html.mobile .prefix-mobile-11 {
    margin-left: 91.66667%; }
    .gridle-debug html.mobile .prefix-mobile-11:after, html.mobile .prefix-mobile-11.gridle-debug:after {
      content: "prefix-mobile-11" !important; }
  html.mobile .suffix-mobile-11 {
    margin-right: 91.66667%; }
    .gridle-debug html.mobile .suffix-mobile-11:after, html.mobile .suffix-mobile-11.gridle-debug:after {
      content: "suffix-mobile-11" !important; }
  html.mobile .grid-mobile-12 {
    width: 100%; }
    .gridle-debug html.mobile .grid-mobile-12:before, html.mobile .grid-mobile-12.gridle-debug:before {
      content: "grid-mobile-12" !important; }
    .gridle-debug html.mobile .grid-mobile-12.parent:before, html.mobile .grid-mobile-12.gridle-debug.parent:before {
      content: "grid-parent-mobile-12" !important; }
  html.mobile .push-mobile-12 {
    left: 100%; }
    .gridle-debug html.mobile .push-mobile-12:after, html.mobile .push-mobile-12.gridle-debug:after {
      content: "push-mobile-12" !important; }
  html.mobile .pull-mobile-12 {
    right: 100%; }
    .gridle-debug html.mobile .pull-mobile-12:after, html.mobile .pull-mobile-12.gridle-debug:after {
      content: "pull-mobile-12" !important; }
  html.mobile .prefix-mobile-12 {
    margin-left: 100%; }
    .gridle-debug html.mobile .prefix-mobile-12:after, html.mobile .prefix-mobile-12.gridle-debug:after {
      content: "prefix-mobile-12" !important; }
  html.mobile .suffix-mobile-12 {
    margin-right: 100%; }
    .gridle-debug html.mobile .suffix-mobile-12:after, html.mobile .suffix-mobile-12.gridle-debug:after {
      content: "suffix-mobile-12" !important; }
  html.mobile .float-mobile-left {
    float: left; }
    html.default html.mobile .float-mobile-left {
      float: left; }
  html.mobile .float-mobile-right {
    float: right; }
    html.default html.mobile .float-mobile-right {
      float: right; }
  html.mobile .clear-mobile {
    clear: both; }
    html.default html.mobile .clear-mobile {
      clear: both; }
  html.mobile .clear-mobile-left {
    clear: left; }
    html.default html.mobile .clear-mobile-left {
      clear: left; }
  html.mobile .clear-mobile-right {
    clear: right; }
    html.default html.mobile .clear-mobile-right {
      clear: right; }
  html.mobile .no-gutter-mobile,
  html.mobile .no-margin-mobile {
    padding-left: 0;
    padding-right: 0; }
    html.default html.mobile .no-gutter-mobile,
    html.default html.mobile .no-margin-mobile {
      padding-left: 0;
      padding-right: 0; }
  html.mobile .no-gutter-mobile-left,
  html.mobile .no-margin-mobile-left {
    padding-left: 0; }
    html.default html.mobile .no-gutter-mobile-left,
    html.default html.mobile .no-margin-mobile-left {
      padding-left: 0; }
  html.mobile .no-gutter-mobile-right,
  html.mobile .no-margin-mobile-right {
    padding-right: 0; }
    html.default html.mobile .no-gutter-mobile-right,
    html.default html.mobile .no-margin-mobile-right {
      padding-right: 0; }
  html.mobile .no-gutter-mobile-top,
  html.mobile .no-margin-mobile-top {
    padding-top: 0; }
    html.default html.mobile .no-gutter-mobile-top,
    html.default html.mobile .no-margin-mobile-top {
      padding-top: 0; }
  html.mobile .no-gutter-mobile-bottom,
  html.mobile .no-margin-mobile-bottom {
    padding-bottom: 0; }
    html.default html.mobile .no-gutter-mobile-bottom,
    html.default html.mobile .no-margin-mobile-bottom {
      padding-bottom: 0; }
  html.mobile .gutter-mobile,
  html.mobile .margins-mobile {
    padding-left: 10px;
    padding-right: 10px; }
    html.default html.mobile .gutter-mobile,
    html.default html.mobile .margins-mobile {
      padding-left: 10px;
      padding-right: 10px; }
  html.mobile .gutter-mobile-left,
  html.mobile .margin-mobile-left {
    padding-left: 10px; }
    html.default html.mobile .gutter-mobile-left,
    html.default html.mobile .margin-mobile-left {
      padding-left: 10px; }
  html.mobile .gutter-mobile-right,
  html.mobile .margin-mobile-right {
    padding-right: 10px; }
    html.default html.mobile .gutter-mobile-right,
    html.default html.mobile .margin-mobile-right {
      padding-right: 10px; }
  html.mobile .gutter-mobile-top,
  html.mobile .margin-mobile-top {
    padding-top: 10px; }
    html.default html.mobile .gutter-mobile-top,
    html.default html.mobile .margin-mobile-top {
      padding-top: 10px; }
  html.mobile .gutter-mobile-bottom,
  html.mobile .margin-mobile-bottom {
    padding-bottom: 10px; }
    html.default html.mobile .gutter-mobile-bottom,
    html.default html.mobile .margin-mobile-bottom {
      padding-bottom: 10px; }
  html.mobile .auto-height-mobile {
    height: inherit; }
  html.mobile .centered-mobile {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  html.mobile .parent-mobile {
    padding-left: 0;
    padding-right: 0; }
    html.default html.mobile .parent-mobile {
      padding-left: 0;
      padding-right: 0; }
  html.mobile .vertical-align-mobile-middle {
    font-size: 0;
    clear: both; }
    html.mobile .vertical-align-mobile-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  html.mobile .vertical-align-mobile-top {
    font-size: 0;
    clear: both; }
    html.mobile .vertical-align-mobile-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  html.mobile .vertical-align-mobile-bottom {
    font-size: 0;
    clear: both; }
    html.mobile .vertical-align-mobile-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  html.mobile .hide-mobile {
    display: none; }
  html.mobile .not-visible-mobile {
    visibility: hidden; }
  html.mobile .show-mobile {
    display: block; }
  html.mobile .show-inline-mobile {
    display: inline-block; }
  html.mobile .visible-mobile {
    visibility: visible; }
  html.mobile .clear-each-mobile-2 > *:nth-child(2n+1) {
    clear: left; }
  html.mobile .clear-each-mobile-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug html.mobile .debug-color-mobile-1, html.mobile .debug-color-mobile-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug html.mobile .debug-color-mobile-2, html.mobile .debug-color-mobile-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug html.mobile .debug-color-mobile-3, html.mobile .debug-color-mobile-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug html.mobile .debug-color-mobile-4, html.mobile .debug-color-mobile-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug html.mobile .debug-color-mobile-5, html.mobile .debug-color-mobile-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug html.mobile .debug-color-mobile-6, html.mobile .debug-color-mobile-6.gridle-debug {
    background-color: #b2d8ee; }

@media screen and (max-width: 480px) {
  .grid-mobile-1on5 {
    width: 20%; }
    .gridle-debug .grid-mobile-1on5:before, .grid-mobile-1on5.gridle-debug:before {
      content: "grid-mobile-1" !important; }
    .gridle-debug .grid-mobile-1on5.parent:before, .grid-mobile-1on5.gridle-debug.parent:before {
      content: "grid-parent-mobile-1" !important; }
  .push-mobile-1on5 {
    left: 20%; }
    .gridle-debug .push-mobile-1on5:after, .push-mobile-1on5.gridle-debug:after {
      content: "push-mobile-1" !important; }
  .pull-mobile-1on5 {
    right: 20%; }
    .gridle-debug .pull-mobile-1on5:after, .pull-mobile-1on5.gridle-debug:after {
      content: "pull-mobile-1" !important; }
  .prefix-mobile-1on5 {
    margin-left: 20%; }
    .gridle-debug .prefix-mobile-1on5:after, .prefix-mobile-1on5.gridle-debug:after {
      content: "prefix-mobile-1" !important; }
  .suffix-mobile-1on5 {
    margin-right: 20%; }
    .gridle-debug .suffix-mobile-1on5:after, .suffix-mobile-1on5.gridle-debug:after {
      content: "suffix-mobile-1" !important; }
  .grid-mobile-0 {
    width: 0%; }
    .gridle-debug .grid-mobile-0:before, .grid-mobile-0.gridle-debug:before {
      content: "grid-mobile-0" !important; }
    .gridle-debug .grid-mobile-0.parent:before, .grid-mobile-0.gridle-debug.parent:before {
      content: "grid-parent-mobile-0" !important; }
  .push-mobile-0 {
    left: 0%; }
    .gridle-debug .push-mobile-0:after, .push-mobile-0.gridle-debug:after {
      content: "push-mobile-0" !important; }
  .pull-mobile-0 {
    right: 0%; }
    .gridle-debug .pull-mobile-0:after, .pull-mobile-0.gridle-debug:after {
      content: "pull-mobile-0" !important; }
  .prefix-mobile-0 {
    margin-left: 0%; }
    .gridle-debug .prefix-mobile-0:after, .prefix-mobile-0.gridle-debug:after {
      content: "prefix-mobile-0" !important; }
  .suffix-mobile-0 {
    margin-right: 0%; }
    .gridle-debug .suffix-mobile-0:after, .suffix-mobile-0.gridle-debug:after {
      content: "suffix-mobile-0" !important; }
  .grid-mobile-1 {
    width: 8.33333%; }
    .gridle-debug .grid-mobile-1:before, .grid-mobile-1.gridle-debug:before {
      content: "grid-mobile-1" !important; }
    .gridle-debug .grid-mobile-1.parent:before, .grid-mobile-1.gridle-debug.parent:before {
      content: "grid-parent-mobile-1" !important; }
  .push-mobile-1 {
    left: 8.33333%; }
    .gridle-debug .push-mobile-1:after, .push-mobile-1.gridle-debug:after {
      content: "push-mobile-1" !important; }
  .pull-mobile-1 {
    right: 8.33333%; }
    .gridle-debug .pull-mobile-1:after, .pull-mobile-1.gridle-debug:after {
      content: "pull-mobile-1" !important; }
  .prefix-mobile-1 {
    margin-left: 8.33333%; }
    .gridle-debug .prefix-mobile-1:after, .prefix-mobile-1.gridle-debug:after {
      content: "prefix-mobile-1" !important; }
  .suffix-mobile-1 {
    margin-right: 8.33333%; }
    .gridle-debug .suffix-mobile-1:after, .suffix-mobile-1.gridle-debug:after {
      content: "suffix-mobile-1" !important; }
  .grid-mobile-2 {
    width: 16.66667%; }
    .gridle-debug .grid-mobile-2:before, .grid-mobile-2.gridle-debug:before {
      content: "grid-mobile-2" !important; }
    .gridle-debug .grid-mobile-2.parent:before, .grid-mobile-2.gridle-debug.parent:before {
      content: "grid-parent-mobile-2" !important; }
  .push-mobile-2 {
    left: 16.66667%; }
    .gridle-debug .push-mobile-2:after, .push-mobile-2.gridle-debug:after {
      content: "push-mobile-2" !important; }
  .pull-mobile-2 {
    right: 16.66667%; }
    .gridle-debug .pull-mobile-2:after, .pull-mobile-2.gridle-debug:after {
      content: "pull-mobile-2" !important; }
  .prefix-mobile-2 {
    margin-left: 16.66667%; }
    .gridle-debug .prefix-mobile-2:after, .prefix-mobile-2.gridle-debug:after {
      content: "prefix-mobile-2" !important; }
  .suffix-mobile-2 {
    margin-right: 16.66667%; }
    .gridle-debug .suffix-mobile-2:after, .suffix-mobile-2.gridle-debug:after {
      content: "suffix-mobile-2" !important; }
  .grid-mobile-3 {
    width: 25%; }
    .gridle-debug .grid-mobile-3:before, .grid-mobile-3.gridle-debug:before {
      content: "grid-mobile-3" !important; }
    .gridle-debug .grid-mobile-3.parent:before, .grid-mobile-3.gridle-debug.parent:before {
      content: "grid-parent-mobile-3" !important; }
  .push-mobile-3 {
    left: 25%; }
    .gridle-debug .push-mobile-3:after, .push-mobile-3.gridle-debug:after {
      content: "push-mobile-3" !important; }
  .pull-mobile-3 {
    right: 25%; }
    .gridle-debug .pull-mobile-3:after, .pull-mobile-3.gridle-debug:after {
      content: "pull-mobile-3" !important; }
  .prefix-mobile-3 {
    margin-left: 25%; }
    .gridle-debug .prefix-mobile-3:after, .prefix-mobile-3.gridle-debug:after {
      content: "prefix-mobile-3" !important; }
  .suffix-mobile-3 {
    margin-right: 25%; }
    .gridle-debug .suffix-mobile-3:after, .suffix-mobile-3.gridle-debug:after {
      content: "suffix-mobile-3" !important; }
  .grid-mobile-4 {
    width: 33.33333%; }
    .gridle-debug .grid-mobile-4:before, .grid-mobile-4.gridle-debug:before {
      content: "grid-mobile-4" !important; }
    .gridle-debug .grid-mobile-4.parent:before, .grid-mobile-4.gridle-debug.parent:before {
      content: "grid-parent-mobile-4" !important; }
  .push-mobile-4 {
    left: 33.33333%; }
    .gridle-debug .push-mobile-4:after, .push-mobile-4.gridle-debug:after {
      content: "push-mobile-4" !important; }
  .pull-mobile-4 {
    right: 33.33333%; }
    .gridle-debug .pull-mobile-4:after, .pull-mobile-4.gridle-debug:after {
      content: "pull-mobile-4" !important; }
  .prefix-mobile-4 {
    margin-left: 33.33333%; }
    .gridle-debug .prefix-mobile-4:after, .prefix-mobile-4.gridle-debug:after {
      content: "prefix-mobile-4" !important; }
  .suffix-mobile-4 {
    margin-right: 33.33333%; }
    .gridle-debug .suffix-mobile-4:after, .suffix-mobile-4.gridle-debug:after {
      content: "suffix-mobile-4" !important; }
  .grid-mobile-5 {
    width: 41.66667%; }
    .gridle-debug .grid-mobile-5:before, .grid-mobile-5.gridle-debug:before {
      content: "grid-mobile-5" !important; }
    .gridle-debug .grid-mobile-5.parent:before, .grid-mobile-5.gridle-debug.parent:before {
      content: "grid-parent-mobile-5" !important; }
  .push-mobile-5 {
    left: 41.66667%; }
    .gridle-debug .push-mobile-5:after, .push-mobile-5.gridle-debug:after {
      content: "push-mobile-5" !important; }
  .pull-mobile-5 {
    right: 41.66667%; }
    .gridle-debug .pull-mobile-5:after, .pull-mobile-5.gridle-debug:after {
      content: "pull-mobile-5" !important; }
  .prefix-mobile-5 {
    margin-left: 41.66667%; }
    .gridle-debug .prefix-mobile-5:after, .prefix-mobile-5.gridle-debug:after {
      content: "prefix-mobile-5" !important; }
  .suffix-mobile-5 {
    margin-right: 41.66667%; }
    .gridle-debug .suffix-mobile-5:after, .suffix-mobile-5.gridle-debug:after {
      content: "suffix-mobile-5" !important; }
  .grid-mobile-6 {
    width: 50%; }
    .gridle-debug .grid-mobile-6:before, .grid-mobile-6.gridle-debug:before {
      content: "grid-mobile-6" !important; }
    .gridle-debug .grid-mobile-6.parent:before, .grid-mobile-6.gridle-debug.parent:before {
      content: "grid-parent-mobile-6" !important; }
  .push-mobile-6 {
    left: 50%; }
    .gridle-debug .push-mobile-6:after, .push-mobile-6.gridle-debug:after {
      content: "push-mobile-6" !important; }
  .pull-mobile-6 {
    right: 50%; }
    .gridle-debug .pull-mobile-6:after, .pull-mobile-6.gridle-debug:after {
      content: "pull-mobile-6" !important; }
  .prefix-mobile-6 {
    margin-left: 50%; }
    .gridle-debug .prefix-mobile-6:after, .prefix-mobile-6.gridle-debug:after {
      content: "prefix-mobile-6" !important; }
  .suffix-mobile-6 {
    margin-right: 50%; }
    .gridle-debug .suffix-mobile-6:after, .suffix-mobile-6.gridle-debug:after {
      content: "suffix-mobile-6" !important; }
  .grid-mobile-7 {
    width: 58.33333%; }
    .gridle-debug .grid-mobile-7:before, .grid-mobile-7.gridle-debug:before {
      content: "grid-mobile-7" !important; }
    .gridle-debug .grid-mobile-7.parent:before, .grid-mobile-7.gridle-debug.parent:before {
      content: "grid-parent-mobile-7" !important; }
  .push-mobile-7 {
    left: 58.33333%; }
    .gridle-debug .push-mobile-7:after, .push-mobile-7.gridle-debug:after {
      content: "push-mobile-7" !important; }
  .pull-mobile-7 {
    right: 58.33333%; }
    .gridle-debug .pull-mobile-7:after, .pull-mobile-7.gridle-debug:after {
      content: "pull-mobile-7" !important; }
  .prefix-mobile-7 {
    margin-left: 58.33333%; }
    .gridle-debug .prefix-mobile-7:after, .prefix-mobile-7.gridle-debug:after {
      content: "prefix-mobile-7" !important; }
  .suffix-mobile-7 {
    margin-right: 58.33333%; }
    .gridle-debug .suffix-mobile-7:after, .suffix-mobile-7.gridle-debug:after {
      content: "suffix-mobile-7" !important; }
  .grid-mobile-8 {
    width: 66.66667%; }
    .gridle-debug .grid-mobile-8:before, .grid-mobile-8.gridle-debug:before {
      content: "grid-mobile-8" !important; }
    .gridle-debug .grid-mobile-8.parent:before, .grid-mobile-8.gridle-debug.parent:before {
      content: "grid-parent-mobile-8" !important; }
  .push-mobile-8 {
    left: 66.66667%; }
    .gridle-debug .push-mobile-8:after, .push-mobile-8.gridle-debug:after {
      content: "push-mobile-8" !important; }
  .pull-mobile-8 {
    right: 66.66667%; }
    .gridle-debug .pull-mobile-8:after, .pull-mobile-8.gridle-debug:after {
      content: "pull-mobile-8" !important; }
  .prefix-mobile-8 {
    margin-left: 66.66667%; }
    .gridle-debug .prefix-mobile-8:after, .prefix-mobile-8.gridle-debug:after {
      content: "prefix-mobile-8" !important; }
  .suffix-mobile-8 {
    margin-right: 66.66667%; }
    .gridle-debug .suffix-mobile-8:after, .suffix-mobile-8.gridle-debug:after {
      content: "suffix-mobile-8" !important; }
  .grid-mobile-9 {
    width: 75%; }
    .gridle-debug .grid-mobile-9:before, .grid-mobile-9.gridle-debug:before {
      content: "grid-mobile-9" !important; }
    .gridle-debug .grid-mobile-9.parent:before, .grid-mobile-9.gridle-debug.parent:before {
      content: "grid-parent-mobile-9" !important; }
  .push-mobile-9 {
    left: 75%; }
    .gridle-debug .push-mobile-9:after, .push-mobile-9.gridle-debug:after {
      content: "push-mobile-9" !important; }
  .pull-mobile-9 {
    right: 75%; }
    .gridle-debug .pull-mobile-9:after, .pull-mobile-9.gridle-debug:after {
      content: "pull-mobile-9" !important; }
  .prefix-mobile-9 {
    margin-left: 75%; }
    .gridle-debug .prefix-mobile-9:after, .prefix-mobile-9.gridle-debug:after {
      content: "prefix-mobile-9" !important; }
  .suffix-mobile-9 {
    margin-right: 75%; }
    .gridle-debug .suffix-mobile-9:after, .suffix-mobile-9.gridle-debug:after {
      content: "suffix-mobile-9" !important; }
  .grid-mobile-10 {
    width: 83.33333%; }
    .gridle-debug .grid-mobile-10:before, .grid-mobile-10.gridle-debug:before {
      content: "grid-mobile-10" !important; }
    .gridle-debug .grid-mobile-10.parent:before, .grid-mobile-10.gridle-debug.parent:before {
      content: "grid-parent-mobile-10" !important; }
  .push-mobile-10 {
    left: 83.33333%; }
    .gridle-debug .push-mobile-10:after, .push-mobile-10.gridle-debug:after {
      content: "push-mobile-10" !important; }
  .pull-mobile-10 {
    right: 83.33333%; }
    .gridle-debug .pull-mobile-10:after, .pull-mobile-10.gridle-debug:after {
      content: "pull-mobile-10" !important; }
  .prefix-mobile-10 {
    margin-left: 83.33333%; }
    .gridle-debug .prefix-mobile-10:after, .prefix-mobile-10.gridle-debug:after {
      content: "prefix-mobile-10" !important; }
  .suffix-mobile-10 {
    margin-right: 83.33333%; }
    .gridle-debug .suffix-mobile-10:after, .suffix-mobile-10.gridle-debug:after {
      content: "suffix-mobile-10" !important; }
  .grid-mobile-11 {
    width: 91.66667%; }
    .gridle-debug .grid-mobile-11:before, .grid-mobile-11.gridle-debug:before {
      content: "grid-mobile-11" !important; }
    .gridle-debug .grid-mobile-11.parent:before, .grid-mobile-11.gridle-debug.parent:before {
      content: "grid-parent-mobile-11" !important; }
  .push-mobile-11 {
    left: 91.66667%; }
    .gridle-debug .push-mobile-11:after, .push-mobile-11.gridle-debug:after {
      content: "push-mobile-11" !important; }
  .pull-mobile-11 {
    right: 91.66667%; }
    .gridle-debug .pull-mobile-11:after, .pull-mobile-11.gridle-debug:after {
      content: "pull-mobile-11" !important; }
  .prefix-mobile-11 {
    margin-left: 91.66667%; }
    .gridle-debug .prefix-mobile-11:after, .prefix-mobile-11.gridle-debug:after {
      content: "prefix-mobile-11" !important; }
  .suffix-mobile-11 {
    margin-right: 91.66667%; }
    .gridle-debug .suffix-mobile-11:after, .suffix-mobile-11.gridle-debug:after {
      content: "suffix-mobile-11" !important; }
  .grid-mobile-12 {
    width: 100%; }
    .gridle-debug .grid-mobile-12:before, .grid-mobile-12.gridle-debug:before {
      content: "grid-mobile-12" !important; }
    .gridle-debug .grid-mobile-12.parent:before, .grid-mobile-12.gridle-debug.parent:before {
      content: "grid-parent-mobile-12" !important; }
  .push-mobile-12 {
    left: 100%; }
    .gridle-debug .push-mobile-12:after, .push-mobile-12.gridle-debug:after {
      content: "push-mobile-12" !important; }
  .pull-mobile-12 {
    right: 100%; }
    .gridle-debug .pull-mobile-12:after, .pull-mobile-12.gridle-debug:after {
      content: "pull-mobile-12" !important; }
  .prefix-mobile-12 {
    margin-left: 100%; }
    .gridle-debug .prefix-mobile-12:after, .prefix-mobile-12.gridle-debug:after {
      content: "prefix-mobile-12" !important; }
  .suffix-mobile-12 {
    margin-right: 100%; }
    .gridle-debug .suffix-mobile-12:after, .suffix-mobile-12.gridle-debug:after {
      content: "suffix-mobile-12" !important; }
  .float-mobile-left {
    float: left; }
    html.default .float-mobile-left {
      float: left; }
  .float-mobile-right {
    float: right; }
    html.default .float-mobile-right {
      float: right; }
  .clear-mobile {
    clear: both; }
    html.default .clear-mobile {
      clear: both; }
  .clear-mobile-left {
    clear: left; }
    html.default .clear-mobile-left {
      clear: left; }
  .clear-mobile-right {
    clear: right; }
    html.default .clear-mobile-right {
      clear: right; }
  .no-gutter-mobile,
  .no-margin-mobile {
    padding-left: 0;
    padding-right: 0; }
    html.default .no-gutter-mobile,
    html.default .no-margin-mobile {
      padding-left: 0;
      padding-right: 0; }
  .no-gutter-mobile-left,
  .no-margin-mobile-left {
    padding-left: 0; }
    html.default .no-gutter-mobile-left,
    html.default .no-margin-mobile-left {
      padding-left: 0; }
  .no-gutter-mobile-right,
  .no-margin-mobile-right {
    padding-right: 0; }
    html.default .no-gutter-mobile-right,
    html.default .no-margin-mobile-right {
      padding-right: 0; }
  .no-gutter-mobile-top,
  .no-margin-mobile-top {
    padding-top: 0; }
    html.default .no-gutter-mobile-top,
    html.default .no-margin-mobile-top {
      padding-top: 0; }
  .no-gutter-mobile-bottom,
  .no-margin-mobile-bottom {
    padding-bottom: 0; }
    html.default .no-gutter-mobile-bottom,
    html.default .no-margin-mobile-bottom {
      padding-bottom: 0; }
  .gutter-mobile,
  .margins-mobile {
    padding-left: 10px;
    padding-right: 10px; }
    html.default .gutter-mobile,
    html.default .margins-mobile {
      padding-left: 10px;
      padding-right: 10px; }
  .gutter-mobile-left,
  .margin-mobile-left {
    padding-left: 10px; }
    html.default .gutter-mobile-left,
    html.default .margin-mobile-left {
      padding-left: 10px; }
  .gutter-mobile-right,
  .margin-mobile-right {
    padding-right: 10px; }
    html.default .gutter-mobile-right,
    html.default .margin-mobile-right {
      padding-right: 10px; }
  .gutter-mobile-top,
  .margin-mobile-top {
    padding-top: 10px; }
    html.default .gutter-mobile-top,
    html.default .margin-mobile-top {
      padding-top: 10px; }
  .gutter-mobile-bottom,
  .margin-mobile-bottom {
    padding-bottom: 10px; }
    html.default .gutter-mobile-bottom,
    html.default .margin-mobile-bottom {
      padding-bottom: 10px; }
  .auto-height-mobile {
    height: inherit; }
  .centered-mobile {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  .parent-mobile {
    padding-left: 0;
    padding-right: 0; }
    html.default .parent-mobile {
      padding-left: 0;
      padding-right: 0; }
  .vertical-align-mobile-middle {
    font-size: 0;
    clear: both; }
    .vertical-align-mobile-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  .vertical-align-mobile-top {
    font-size: 0;
    clear: both; }
    .vertical-align-mobile-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  .vertical-align-mobile-bottom {
    font-size: 0;
    clear: both; }
    .vertical-align-mobile-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  /**
	 * Visible, hide, etc...
	 */
  .hide-mobile {
    display: none; }
  .not-visible-mobile {
    visibility: hidden; }
  .show-mobile {
    display: block; }
  .show-inline-mobile {
    display: inline-block; }
  .visible-mobile {
    visibility: visible; }
  /**
	 * Clear each class :
	 */
  .clear-each-mobile-2 > *:nth-child(2n+1) {
    clear: left; }
  .clear-each-mobile-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug .debug-color-mobile-1, .debug-color-mobile-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug .debug-color-mobile-2, .debug-color-mobile-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug .debug-color-mobile-3, .debug-color-mobile-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug .debug-color-mobile-4, .debug-color-mobile-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug .debug-color-mobile-5, .debug-color-mobile-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug .debug-color-mobile-6, .debug-color-mobile-6.gridle-debug {
    background-color: #b2d8ee; } }

html.tablet {
  /**
	 * Visible, hide, etc...
	 */
  /**
	 * Clear each class :
	 */ }
  html.tablet .grid-tablet-1on5 {
    width: 20%; }
    .gridle-debug html.tablet .grid-tablet-1on5:before, html.tablet .grid-tablet-1on5.gridle-debug:before {
      content: "grid-tablet-1" !important; }
    .gridle-debug html.tablet .grid-tablet-1on5.parent:before, html.tablet .grid-tablet-1on5.gridle-debug.parent:before {
      content: "grid-parent-tablet-1" !important; }
  html.tablet .push-tablet-1on5 {
    left: 20%; }
    .gridle-debug html.tablet .push-tablet-1on5:after, html.tablet .push-tablet-1on5.gridle-debug:after {
      content: "push-tablet-1" !important; }
  html.tablet .pull-tablet-1on5 {
    right: 20%; }
    .gridle-debug html.tablet .pull-tablet-1on5:after, html.tablet .pull-tablet-1on5.gridle-debug:after {
      content: "pull-tablet-1" !important; }
  html.tablet .prefix-tablet-1on5 {
    margin-left: 20%; }
    .gridle-debug html.tablet .prefix-tablet-1on5:after, html.tablet .prefix-tablet-1on5.gridle-debug:after {
      content: "prefix-tablet-1" !important; }
  html.tablet .suffix-tablet-1on5 {
    margin-right: 20%; }
    .gridle-debug html.tablet .suffix-tablet-1on5:after, html.tablet .suffix-tablet-1on5.gridle-debug:after {
      content: "suffix-tablet-1" !important; }
  html.tablet .grid-tablet-0 {
    width: 0%; }
    .gridle-debug html.tablet .grid-tablet-0:before, html.tablet .grid-tablet-0.gridle-debug:before {
      content: "grid-tablet-0" !important; }
    .gridle-debug html.tablet .grid-tablet-0.parent:before, html.tablet .grid-tablet-0.gridle-debug.parent:before {
      content: "grid-parent-tablet-0" !important; }
  html.tablet .push-tablet-0 {
    left: 0%; }
    .gridle-debug html.tablet .push-tablet-0:after, html.tablet .push-tablet-0.gridle-debug:after {
      content: "push-tablet-0" !important; }
  html.tablet .pull-tablet-0 {
    right: 0%; }
    .gridle-debug html.tablet .pull-tablet-0:after, html.tablet .pull-tablet-0.gridle-debug:after {
      content: "pull-tablet-0" !important; }
  html.tablet .prefix-tablet-0 {
    margin-left: 0%; }
    .gridle-debug html.tablet .prefix-tablet-0:after, html.tablet .prefix-tablet-0.gridle-debug:after {
      content: "prefix-tablet-0" !important; }
  html.tablet .suffix-tablet-0 {
    margin-right: 0%; }
    .gridle-debug html.tablet .suffix-tablet-0:after, html.tablet .suffix-tablet-0.gridle-debug:after {
      content: "suffix-tablet-0" !important; }
  html.tablet .grid-tablet-1 {
    width: 8.33333%; }
    .gridle-debug html.tablet .grid-tablet-1:before, html.tablet .grid-tablet-1.gridle-debug:before {
      content: "grid-tablet-1" !important; }
    .gridle-debug html.tablet .grid-tablet-1.parent:before, html.tablet .grid-tablet-1.gridle-debug.parent:before {
      content: "grid-parent-tablet-1" !important; }
  html.tablet .push-tablet-1 {
    left: 8.33333%; }
    .gridle-debug html.tablet .push-tablet-1:after, html.tablet .push-tablet-1.gridle-debug:after {
      content: "push-tablet-1" !important; }
  html.tablet .pull-tablet-1 {
    right: 8.33333%; }
    .gridle-debug html.tablet .pull-tablet-1:after, html.tablet .pull-tablet-1.gridle-debug:after {
      content: "pull-tablet-1" !important; }
  html.tablet .prefix-tablet-1 {
    margin-left: 8.33333%; }
    .gridle-debug html.tablet .prefix-tablet-1:after, html.tablet .prefix-tablet-1.gridle-debug:after {
      content: "prefix-tablet-1" !important; }
  html.tablet .suffix-tablet-1 {
    margin-right: 8.33333%; }
    .gridle-debug html.tablet .suffix-tablet-1:after, html.tablet .suffix-tablet-1.gridle-debug:after {
      content: "suffix-tablet-1" !important; }
  html.tablet .grid-tablet-2 {
    width: 16.66667%; }
    .gridle-debug html.tablet .grid-tablet-2:before, html.tablet .grid-tablet-2.gridle-debug:before {
      content: "grid-tablet-2" !important; }
    .gridle-debug html.tablet .grid-tablet-2.parent:before, html.tablet .grid-tablet-2.gridle-debug.parent:before {
      content: "grid-parent-tablet-2" !important; }
  html.tablet .push-tablet-2 {
    left: 16.66667%; }
    .gridle-debug html.tablet .push-tablet-2:after, html.tablet .push-tablet-2.gridle-debug:after {
      content: "push-tablet-2" !important; }
  html.tablet .pull-tablet-2 {
    right: 16.66667%; }
    .gridle-debug html.tablet .pull-tablet-2:after, html.tablet .pull-tablet-2.gridle-debug:after {
      content: "pull-tablet-2" !important; }
  html.tablet .prefix-tablet-2 {
    margin-left: 16.66667%; }
    .gridle-debug html.tablet .prefix-tablet-2:after, html.tablet .prefix-tablet-2.gridle-debug:after {
      content: "prefix-tablet-2" !important; }
  html.tablet .suffix-tablet-2 {
    margin-right: 16.66667%; }
    .gridle-debug html.tablet .suffix-tablet-2:after, html.tablet .suffix-tablet-2.gridle-debug:after {
      content: "suffix-tablet-2" !important; }
  html.tablet .grid-tablet-3 {
    width: 25%; }
    .gridle-debug html.tablet .grid-tablet-3:before, html.tablet .grid-tablet-3.gridle-debug:before {
      content: "grid-tablet-3" !important; }
    .gridle-debug html.tablet .grid-tablet-3.parent:before, html.tablet .grid-tablet-3.gridle-debug.parent:before {
      content: "grid-parent-tablet-3" !important; }
  html.tablet .push-tablet-3 {
    left: 25%; }
    .gridle-debug html.tablet .push-tablet-3:after, html.tablet .push-tablet-3.gridle-debug:after {
      content: "push-tablet-3" !important; }
  html.tablet .pull-tablet-3 {
    right: 25%; }
    .gridle-debug html.tablet .pull-tablet-3:after, html.tablet .pull-tablet-3.gridle-debug:after {
      content: "pull-tablet-3" !important; }
  html.tablet .prefix-tablet-3 {
    margin-left: 25%; }
    .gridle-debug html.tablet .prefix-tablet-3:after, html.tablet .prefix-tablet-3.gridle-debug:after {
      content: "prefix-tablet-3" !important; }
  html.tablet .suffix-tablet-3 {
    margin-right: 25%; }
    .gridle-debug html.tablet .suffix-tablet-3:after, html.tablet .suffix-tablet-3.gridle-debug:after {
      content: "suffix-tablet-3" !important; }
  html.tablet .grid-tablet-4 {
    width: 33.33333%; }
    .gridle-debug html.tablet .grid-tablet-4:before, html.tablet .grid-tablet-4.gridle-debug:before {
      content: "grid-tablet-4" !important; }
    .gridle-debug html.tablet .grid-tablet-4.parent:before, html.tablet .grid-tablet-4.gridle-debug.parent:before {
      content: "grid-parent-tablet-4" !important; }
  html.tablet .push-tablet-4 {
    left: 33.33333%; }
    .gridle-debug html.tablet .push-tablet-4:after, html.tablet .push-tablet-4.gridle-debug:after {
      content: "push-tablet-4" !important; }
  html.tablet .pull-tablet-4 {
    right: 33.33333%; }
    .gridle-debug html.tablet .pull-tablet-4:after, html.tablet .pull-tablet-4.gridle-debug:after {
      content: "pull-tablet-4" !important; }
  html.tablet .prefix-tablet-4 {
    margin-left: 33.33333%; }
    .gridle-debug html.tablet .prefix-tablet-4:after, html.tablet .prefix-tablet-4.gridle-debug:after {
      content: "prefix-tablet-4" !important; }
  html.tablet .suffix-tablet-4 {
    margin-right: 33.33333%; }
    .gridle-debug html.tablet .suffix-tablet-4:after, html.tablet .suffix-tablet-4.gridle-debug:after {
      content: "suffix-tablet-4" !important; }
  html.tablet .grid-tablet-5 {
    width: 41.66667%; }
    .gridle-debug html.tablet .grid-tablet-5:before, html.tablet .grid-tablet-5.gridle-debug:before {
      content: "grid-tablet-5" !important; }
    .gridle-debug html.tablet .grid-tablet-5.parent:before, html.tablet .grid-tablet-5.gridle-debug.parent:before {
      content: "grid-parent-tablet-5" !important; }
  html.tablet .push-tablet-5 {
    left: 41.66667%; }
    .gridle-debug html.tablet .push-tablet-5:after, html.tablet .push-tablet-5.gridle-debug:after {
      content: "push-tablet-5" !important; }
  html.tablet .pull-tablet-5 {
    right: 41.66667%; }
    .gridle-debug html.tablet .pull-tablet-5:after, html.tablet .pull-tablet-5.gridle-debug:after {
      content: "pull-tablet-5" !important; }
  html.tablet .prefix-tablet-5 {
    margin-left: 41.66667%; }
    .gridle-debug html.tablet .prefix-tablet-5:after, html.tablet .prefix-tablet-5.gridle-debug:after {
      content: "prefix-tablet-5" !important; }
  html.tablet .suffix-tablet-5 {
    margin-right: 41.66667%; }
    .gridle-debug html.tablet .suffix-tablet-5:after, html.tablet .suffix-tablet-5.gridle-debug:after {
      content: "suffix-tablet-5" !important; }
  html.tablet .grid-tablet-6 {
    width: 50%; }
    .gridle-debug html.tablet .grid-tablet-6:before, html.tablet .grid-tablet-6.gridle-debug:before {
      content: "grid-tablet-6" !important; }
    .gridle-debug html.tablet .grid-tablet-6.parent:before, html.tablet .grid-tablet-6.gridle-debug.parent:before {
      content: "grid-parent-tablet-6" !important; }
  html.tablet .push-tablet-6 {
    left: 50%; }
    .gridle-debug html.tablet .push-tablet-6:after, html.tablet .push-tablet-6.gridle-debug:after {
      content: "push-tablet-6" !important; }
  html.tablet .pull-tablet-6 {
    right: 50%; }
    .gridle-debug html.tablet .pull-tablet-6:after, html.tablet .pull-tablet-6.gridle-debug:after {
      content: "pull-tablet-6" !important; }
  html.tablet .prefix-tablet-6 {
    margin-left: 50%; }
    .gridle-debug html.tablet .prefix-tablet-6:after, html.tablet .prefix-tablet-6.gridle-debug:after {
      content: "prefix-tablet-6" !important; }
  html.tablet .suffix-tablet-6 {
    margin-right: 50%; }
    .gridle-debug html.tablet .suffix-tablet-6:after, html.tablet .suffix-tablet-6.gridle-debug:after {
      content: "suffix-tablet-6" !important; }
  html.tablet .grid-tablet-7 {
    width: 58.33333%; }
    .gridle-debug html.tablet .grid-tablet-7:before, html.tablet .grid-tablet-7.gridle-debug:before {
      content: "grid-tablet-7" !important; }
    .gridle-debug html.tablet .grid-tablet-7.parent:before, html.tablet .grid-tablet-7.gridle-debug.parent:before {
      content: "grid-parent-tablet-7" !important; }
  html.tablet .push-tablet-7 {
    left: 58.33333%; }
    .gridle-debug html.tablet .push-tablet-7:after, html.tablet .push-tablet-7.gridle-debug:after {
      content: "push-tablet-7" !important; }
  html.tablet .pull-tablet-7 {
    right: 58.33333%; }
    .gridle-debug html.tablet .pull-tablet-7:after, html.tablet .pull-tablet-7.gridle-debug:after {
      content: "pull-tablet-7" !important; }
  html.tablet .prefix-tablet-7 {
    margin-left: 58.33333%; }
    .gridle-debug html.tablet .prefix-tablet-7:after, html.tablet .prefix-tablet-7.gridle-debug:after {
      content: "prefix-tablet-7" !important; }
  html.tablet .suffix-tablet-7 {
    margin-right: 58.33333%; }
    .gridle-debug html.tablet .suffix-tablet-7:after, html.tablet .suffix-tablet-7.gridle-debug:after {
      content: "suffix-tablet-7" !important; }
  html.tablet .grid-tablet-8 {
    width: 66.66667%; }
    .gridle-debug html.tablet .grid-tablet-8:before, html.tablet .grid-tablet-8.gridle-debug:before {
      content: "grid-tablet-8" !important; }
    .gridle-debug html.tablet .grid-tablet-8.parent:before, html.tablet .grid-tablet-8.gridle-debug.parent:before {
      content: "grid-parent-tablet-8" !important; }
  html.tablet .push-tablet-8 {
    left: 66.66667%; }
    .gridle-debug html.tablet .push-tablet-8:after, html.tablet .push-tablet-8.gridle-debug:after {
      content: "push-tablet-8" !important; }
  html.tablet .pull-tablet-8 {
    right: 66.66667%; }
    .gridle-debug html.tablet .pull-tablet-8:after, html.tablet .pull-tablet-8.gridle-debug:after {
      content: "pull-tablet-8" !important; }
  html.tablet .prefix-tablet-8 {
    margin-left: 66.66667%; }
    .gridle-debug html.tablet .prefix-tablet-8:after, html.tablet .prefix-tablet-8.gridle-debug:after {
      content: "prefix-tablet-8" !important; }
  html.tablet .suffix-tablet-8 {
    margin-right: 66.66667%; }
    .gridle-debug html.tablet .suffix-tablet-8:after, html.tablet .suffix-tablet-8.gridle-debug:after {
      content: "suffix-tablet-8" !important; }
  html.tablet .grid-tablet-9 {
    width: 75%; }
    .gridle-debug html.tablet .grid-tablet-9:before, html.tablet .grid-tablet-9.gridle-debug:before {
      content: "grid-tablet-9" !important; }
    .gridle-debug html.tablet .grid-tablet-9.parent:before, html.tablet .grid-tablet-9.gridle-debug.parent:before {
      content: "grid-parent-tablet-9" !important; }
  html.tablet .push-tablet-9 {
    left: 75%; }
    .gridle-debug html.tablet .push-tablet-9:after, html.tablet .push-tablet-9.gridle-debug:after {
      content: "push-tablet-9" !important; }
  html.tablet .pull-tablet-9 {
    right: 75%; }
    .gridle-debug html.tablet .pull-tablet-9:after, html.tablet .pull-tablet-9.gridle-debug:after {
      content: "pull-tablet-9" !important; }
  html.tablet .prefix-tablet-9 {
    margin-left: 75%; }
    .gridle-debug html.tablet .prefix-tablet-9:after, html.tablet .prefix-tablet-9.gridle-debug:after {
      content: "prefix-tablet-9" !important; }
  html.tablet .suffix-tablet-9 {
    margin-right: 75%; }
    .gridle-debug html.tablet .suffix-tablet-9:after, html.tablet .suffix-tablet-9.gridle-debug:after {
      content: "suffix-tablet-9" !important; }
  html.tablet .grid-tablet-10 {
    width: 83.33333%; }
    .gridle-debug html.tablet .grid-tablet-10:before, html.tablet .grid-tablet-10.gridle-debug:before {
      content: "grid-tablet-10" !important; }
    .gridle-debug html.tablet .grid-tablet-10.parent:before, html.tablet .grid-tablet-10.gridle-debug.parent:before {
      content: "grid-parent-tablet-10" !important; }
  html.tablet .push-tablet-10 {
    left: 83.33333%; }
    .gridle-debug html.tablet .push-tablet-10:after, html.tablet .push-tablet-10.gridle-debug:after {
      content: "push-tablet-10" !important; }
  html.tablet .pull-tablet-10 {
    right: 83.33333%; }
    .gridle-debug html.tablet .pull-tablet-10:after, html.tablet .pull-tablet-10.gridle-debug:after {
      content: "pull-tablet-10" !important; }
  html.tablet .prefix-tablet-10 {
    margin-left: 83.33333%; }
    .gridle-debug html.tablet .prefix-tablet-10:after, html.tablet .prefix-tablet-10.gridle-debug:after {
      content: "prefix-tablet-10" !important; }
  html.tablet .suffix-tablet-10 {
    margin-right: 83.33333%; }
    .gridle-debug html.tablet .suffix-tablet-10:after, html.tablet .suffix-tablet-10.gridle-debug:after {
      content: "suffix-tablet-10" !important; }
  html.tablet .grid-tablet-11 {
    width: 91.66667%; }
    .gridle-debug html.tablet .grid-tablet-11:before, html.tablet .grid-tablet-11.gridle-debug:before {
      content: "grid-tablet-11" !important; }
    .gridle-debug html.tablet .grid-tablet-11.parent:before, html.tablet .grid-tablet-11.gridle-debug.parent:before {
      content: "grid-parent-tablet-11" !important; }
  html.tablet .push-tablet-11 {
    left: 91.66667%; }
    .gridle-debug html.tablet .push-tablet-11:after, html.tablet .push-tablet-11.gridle-debug:after {
      content: "push-tablet-11" !important; }
  html.tablet .pull-tablet-11 {
    right: 91.66667%; }
    .gridle-debug html.tablet .pull-tablet-11:after, html.tablet .pull-tablet-11.gridle-debug:after {
      content: "pull-tablet-11" !important; }
  html.tablet .prefix-tablet-11 {
    margin-left: 91.66667%; }
    .gridle-debug html.tablet .prefix-tablet-11:after, html.tablet .prefix-tablet-11.gridle-debug:after {
      content: "prefix-tablet-11" !important; }
  html.tablet .suffix-tablet-11 {
    margin-right: 91.66667%; }
    .gridle-debug html.tablet .suffix-tablet-11:after, html.tablet .suffix-tablet-11.gridle-debug:after {
      content: "suffix-tablet-11" !important; }
  html.tablet .grid-tablet-12 {
    width: 100%; }
    .gridle-debug html.tablet .grid-tablet-12:before, html.tablet .grid-tablet-12.gridle-debug:before {
      content: "grid-tablet-12" !important; }
    .gridle-debug html.tablet .grid-tablet-12.parent:before, html.tablet .grid-tablet-12.gridle-debug.parent:before {
      content: "grid-parent-tablet-12" !important; }
  html.tablet .push-tablet-12 {
    left: 100%; }
    .gridle-debug html.tablet .push-tablet-12:after, html.tablet .push-tablet-12.gridle-debug:after {
      content: "push-tablet-12" !important; }
  html.tablet .pull-tablet-12 {
    right: 100%; }
    .gridle-debug html.tablet .pull-tablet-12:after, html.tablet .pull-tablet-12.gridle-debug:after {
      content: "pull-tablet-12" !important; }
  html.tablet .prefix-tablet-12 {
    margin-left: 100%; }
    .gridle-debug html.tablet .prefix-tablet-12:after, html.tablet .prefix-tablet-12.gridle-debug:after {
      content: "prefix-tablet-12" !important; }
  html.tablet .suffix-tablet-12 {
    margin-right: 100%; }
    .gridle-debug html.tablet .suffix-tablet-12:after, html.tablet .suffix-tablet-12.gridle-debug:after {
      content: "suffix-tablet-12" !important; }
  html.tablet .float-tablet-left {
    float: left; }
    html.default html.tablet .float-tablet-left {
      float: left; }
  html.tablet .float-tablet-right {
    float: right; }
    html.default html.tablet .float-tablet-right {
      float: right; }
  html.tablet .clear-tablet {
    clear: both; }
    html.default html.tablet .clear-tablet {
      clear: both; }
  html.tablet .clear-tablet-left {
    clear: left; }
    html.default html.tablet .clear-tablet-left {
      clear: left; }
  html.tablet .clear-tablet-right {
    clear: right; }
    html.default html.tablet .clear-tablet-right {
      clear: right; }
  html.tablet .no-gutter-tablet,
  html.tablet .no-margin-tablet {
    padding-left: 0;
    padding-right: 0; }
    html.default html.tablet .no-gutter-tablet,
    html.default html.tablet .no-margin-tablet {
      padding-left: 0;
      padding-right: 0; }
  html.tablet .no-gutter-tablet-left,
  html.tablet .no-margin-tablet-left {
    padding-left: 0; }
    html.default html.tablet .no-gutter-tablet-left,
    html.default html.tablet .no-margin-tablet-left {
      padding-left: 0; }
  html.tablet .no-gutter-tablet-right,
  html.tablet .no-margin-tablet-right {
    padding-right: 0; }
    html.default html.tablet .no-gutter-tablet-right,
    html.default html.tablet .no-margin-tablet-right {
      padding-right: 0; }
  html.tablet .no-gutter-tablet-top,
  html.tablet .no-margin-tablet-top {
    padding-top: 0; }
    html.default html.tablet .no-gutter-tablet-top,
    html.default html.tablet .no-margin-tablet-top {
      padding-top: 0; }
  html.tablet .no-gutter-tablet-bottom,
  html.tablet .no-margin-tablet-bottom {
    padding-bottom: 0; }
    html.default html.tablet .no-gutter-tablet-bottom,
    html.default html.tablet .no-margin-tablet-bottom {
      padding-bottom: 0; }
  html.tablet .gutter-tablet,
  html.tablet .margins-tablet {
    padding-left: 10px;
    padding-right: 10px; }
    html.default html.tablet .gutter-tablet,
    html.default html.tablet .margins-tablet {
      padding-left: 10px;
      padding-right: 10px; }
  html.tablet .gutter-tablet-left,
  html.tablet .margin-tablet-left {
    padding-left: 10px; }
    html.default html.tablet .gutter-tablet-left,
    html.default html.tablet .margin-tablet-left {
      padding-left: 10px; }
  html.tablet .gutter-tablet-right,
  html.tablet .margin-tablet-right {
    padding-right: 10px; }
    html.default html.tablet .gutter-tablet-right,
    html.default html.tablet .margin-tablet-right {
      padding-right: 10px; }
  html.tablet .gutter-tablet-top,
  html.tablet .margin-tablet-top {
    padding-top: 10px; }
    html.default html.tablet .gutter-tablet-top,
    html.default html.tablet .margin-tablet-top {
      padding-top: 10px; }
  html.tablet .gutter-tablet-bottom,
  html.tablet .margin-tablet-bottom {
    padding-bottom: 10px; }
    html.default html.tablet .gutter-tablet-bottom,
    html.default html.tablet .margin-tablet-bottom {
      padding-bottom: 10px; }
  html.tablet .auto-height-tablet {
    height: inherit; }
  html.tablet .centered-tablet {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  html.tablet .parent-tablet {
    padding-left: 0;
    padding-right: 0; }
    html.default html.tablet .parent-tablet {
      padding-left: 0;
      padding-right: 0; }
  html.tablet .vertical-align-tablet-middle {
    font-size: 0;
    clear: both; }
    html.tablet .vertical-align-tablet-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  html.tablet .vertical-align-tablet-top {
    font-size: 0;
    clear: both; }
    html.tablet .vertical-align-tablet-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  html.tablet .vertical-align-tablet-bottom {
    font-size: 0;
    clear: both; }
    html.tablet .vertical-align-tablet-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  html.tablet .hide-tablet {
    display: none; }
  html.tablet .not-visible-tablet {
    visibility: hidden; }
  html.tablet .show-tablet {
    display: block; }
  html.tablet .show-inline-tablet {
    display: inline-block; }
  html.tablet .visible-tablet {
    visibility: visible; }
  html.tablet .clear-each-tablet-2 > *:nth-child(2n+1) {
    clear: left; }
  html.tablet .clear-each-tablet-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug html.tablet .debug-color-tablet-1, html.tablet .debug-color-tablet-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug html.tablet .debug-color-tablet-2, html.tablet .debug-color-tablet-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug html.tablet .debug-color-tablet-3, html.tablet .debug-color-tablet-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug html.tablet .debug-color-tablet-4, html.tablet .debug-color-tablet-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug html.tablet .debug-color-tablet-5, html.tablet .debug-color-tablet-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug html.tablet .debug-color-tablet-6, html.tablet .debug-color-tablet-6.gridle-debug {
    background-color: #b2d8ee; }

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .grid-tablet-1on5 {
    width: 20%; }
    .gridle-debug .grid-tablet-1on5:before, .grid-tablet-1on5.gridle-debug:before {
      content: "grid-tablet-1" !important; }
    .gridle-debug .grid-tablet-1on5.parent:before, .grid-tablet-1on5.gridle-debug.parent:before {
      content: "grid-parent-tablet-1" !important; }
  .push-tablet-1on5 {
    left: 20%; }
    .gridle-debug .push-tablet-1on5:after, .push-tablet-1on5.gridle-debug:after {
      content: "push-tablet-1" !important; }
  .pull-tablet-1on5 {
    right: 20%; }
    .gridle-debug .pull-tablet-1on5:after, .pull-tablet-1on5.gridle-debug:after {
      content: "pull-tablet-1" !important; }
  .prefix-tablet-1on5 {
    margin-left: 20%; }
    .gridle-debug .prefix-tablet-1on5:after, .prefix-tablet-1on5.gridle-debug:after {
      content: "prefix-tablet-1" !important; }
  .suffix-tablet-1on5 {
    margin-right: 20%; }
    .gridle-debug .suffix-tablet-1on5:after, .suffix-tablet-1on5.gridle-debug:after {
      content: "suffix-tablet-1" !important; }
  .grid-tablet-0 {
    width: 0%; }
    .gridle-debug .grid-tablet-0:before, .grid-tablet-0.gridle-debug:before {
      content: "grid-tablet-0" !important; }
    .gridle-debug .grid-tablet-0.parent:before, .grid-tablet-0.gridle-debug.parent:before {
      content: "grid-parent-tablet-0" !important; }
  .push-tablet-0 {
    left: 0%; }
    .gridle-debug .push-tablet-0:after, .push-tablet-0.gridle-debug:after {
      content: "push-tablet-0" !important; }
  .pull-tablet-0 {
    right: 0%; }
    .gridle-debug .pull-tablet-0:after, .pull-tablet-0.gridle-debug:after {
      content: "pull-tablet-0" !important; }
  .prefix-tablet-0 {
    margin-left: 0%; }
    .gridle-debug .prefix-tablet-0:after, .prefix-tablet-0.gridle-debug:after {
      content: "prefix-tablet-0" !important; }
  .suffix-tablet-0 {
    margin-right: 0%; }
    .gridle-debug .suffix-tablet-0:after, .suffix-tablet-0.gridle-debug:after {
      content: "suffix-tablet-0" !important; }
  .grid-tablet-1 {
    width: 8.33333%; }
    .gridle-debug .grid-tablet-1:before, .grid-tablet-1.gridle-debug:before {
      content: "grid-tablet-1" !important; }
    .gridle-debug .grid-tablet-1.parent:before, .grid-tablet-1.gridle-debug.parent:before {
      content: "grid-parent-tablet-1" !important; }
  .push-tablet-1 {
    left: 8.33333%; }
    .gridle-debug .push-tablet-1:after, .push-tablet-1.gridle-debug:after {
      content: "push-tablet-1" !important; }
  .pull-tablet-1 {
    right: 8.33333%; }
    .gridle-debug .pull-tablet-1:after, .pull-tablet-1.gridle-debug:after {
      content: "pull-tablet-1" !important; }
  .prefix-tablet-1 {
    margin-left: 8.33333%; }
    .gridle-debug .prefix-tablet-1:after, .prefix-tablet-1.gridle-debug:after {
      content: "prefix-tablet-1" !important; }
  .suffix-tablet-1 {
    margin-right: 8.33333%; }
    .gridle-debug .suffix-tablet-1:after, .suffix-tablet-1.gridle-debug:after {
      content: "suffix-tablet-1" !important; }
  .grid-tablet-2 {
    width: 16.66667%; }
    .gridle-debug .grid-tablet-2:before, .grid-tablet-2.gridle-debug:before {
      content: "grid-tablet-2" !important; }
    .gridle-debug .grid-tablet-2.parent:before, .grid-tablet-2.gridle-debug.parent:before {
      content: "grid-parent-tablet-2" !important; }
  .push-tablet-2 {
    left: 16.66667%; }
    .gridle-debug .push-tablet-2:after, .push-tablet-2.gridle-debug:after {
      content: "push-tablet-2" !important; }
  .pull-tablet-2 {
    right: 16.66667%; }
    .gridle-debug .pull-tablet-2:after, .pull-tablet-2.gridle-debug:after {
      content: "pull-tablet-2" !important; }
  .prefix-tablet-2 {
    margin-left: 16.66667%; }
    .gridle-debug .prefix-tablet-2:after, .prefix-tablet-2.gridle-debug:after {
      content: "prefix-tablet-2" !important; }
  .suffix-tablet-2 {
    margin-right: 16.66667%; }
    .gridle-debug .suffix-tablet-2:after, .suffix-tablet-2.gridle-debug:after {
      content: "suffix-tablet-2" !important; }
  .grid-tablet-3 {
    width: 25%; }
    .gridle-debug .grid-tablet-3:before, .grid-tablet-3.gridle-debug:before {
      content: "grid-tablet-3" !important; }
    .gridle-debug .grid-tablet-3.parent:before, .grid-tablet-3.gridle-debug.parent:before {
      content: "grid-parent-tablet-3" !important; }
  .push-tablet-3 {
    left: 25%; }
    .gridle-debug .push-tablet-3:after, .push-tablet-3.gridle-debug:after {
      content: "push-tablet-3" !important; }
  .pull-tablet-3 {
    right: 25%; }
    .gridle-debug .pull-tablet-3:after, .pull-tablet-3.gridle-debug:after {
      content: "pull-tablet-3" !important; }
  .prefix-tablet-3 {
    margin-left: 25%; }
    .gridle-debug .prefix-tablet-3:after, .prefix-tablet-3.gridle-debug:after {
      content: "prefix-tablet-3" !important; }
  .suffix-tablet-3 {
    margin-right: 25%; }
    .gridle-debug .suffix-tablet-3:after, .suffix-tablet-3.gridle-debug:after {
      content: "suffix-tablet-3" !important; }
  .grid-tablet-4 {
    width: 33.33333%; }
    .gridle-debug .grid-tablet-4:before, .grid-tablet-4.gridle-debug:before {
      content: "grid-tablet-4" !important; }
    .gridle-debug .grid-tablet-4.parent:before, .grid-tablet-4.gridle-debug.parent:before {
      content: "grid-parent-tablet-4" !important; }
  .push-tablet-4 {
    left: 33.33333%; }
    .gridle-debug .push-tablet-4:after, .push-tablet-4.gridle-debug:after {
      content: "push-tablet-4" !important; }
  .pull-tablet-4 {
    right: 33.33333%; }
    .gridle-debug .pull-tablet-4:after, .pull-tablet-4.gridle-debug:after {
      content: "pull-tablet-4" !important; }
  .prefix-tablet-4 {
    margin-left: 33.33333%; }
    .gridle-debug .prefix-tablet-4:after, .prefix-tablet-4.gridle-debug:after {
      content: "prefix-tablet-4" !important; }
  .suffix-tablet-4 {
    margin-right: 33.33333%; }
    .gridle-debug .suffix-tablet-4:after, .suffix-tablet-4.gridle-debug:after {
      content: "suffix-tablet-4" !important; }
  .grid-tablet-5 {
    width: 41.66667%; }
    .gridle-debug .grid-tablet-5:before, .grid-tablet-5.gridle-debug:before {
      content: "grid-tablet-5" !important; }
    .gridle-debug .grid-tablet-5.parent:before, .grid-tablet-5.gridle-debug.parent:before {
      content: "grid-parent-tablet-5" !important; }
  .push-tablet-5 {
    left: 41.66667%; }
    .gridle-debug .push-tablet-5:after, .push-tablet-5.gridle-debug:after {
      content: "push-tablet-5" !important; }
  .pull-tablet-5 {
    right: 41.66667%; }
    .gridle-debug .pull-tablet-5:after, .pull-tablet-5.gridle-debug:after {
      content: "pull-tablet-5" !important; }
  .prefix-tablet-5 {
    margin-left: 41.66667%; }
    .gridle-debug .prefix-tablet-5:after, .prefix-tablet-5.gridle-debug:after {
      content: "prefix-tablet-5" !important; }
  .suffix-tablet-5 {
    margin-right: 41.66667%; }
    .gridle-debug .suffix-tablet-5:after, .suffix-tablet-5.gridle-debug:after {
      content: "suffix-tablet-5" !important; }
  .grid-tablet-6 {
    width: 50%; }
    .gridle-debug .grid-tablet-6:before, .grid-tablet-6.gridle-debug:before {
      content: "grid-tablet-6" !important; }
    .gridle-debug .grid-tablet-6.parent:before, .grid-tablet-6.gridle-debug.parent:before {
      content: "grid-parent-tablet-6" !important; }
  .push-tablet-6 {
    left: 50%; }
    .gridle-debug .push-tablet-6:after, .push-tablet-6.gridle-debug:after {
      content: "push-tablet-6" !important; }
  .pull-tablet-6 {
    right: 50%; }
    .gridle-debug .pull-tablet-6:after, .pull-tablet-6.gridle-debug:after {
      content: "pull-tablet-6" !important; }
  .prefix-tablet-6 {
    margin-left: 50%; }
    .gridle-debug .prefix-tablet-6:after, .prefix-tablet-6.gridle-debug:after {
      content: "prefix-tablet-6" !important; }
  .suffix-tablet-6 {
    margin-right: 50%; }
    .gridle-debug .suffix-tablet-6:after, .suffix-tablet-6.gridle-debug:after {
      content: "suffix-tablet-6" !important; }
  .grid-tablet-7 {
    width: 58.33333%; }
    .gridle-debug .grid-tablet-7:before, .grid-tablet-7.gridle-debug:before {
      content: "grid-tablet-7" !important; }
    .gridle-debug .grid-tablet-7.parent:before, .grid-tablet-7.gridle-debug.parent:before {
      content: "grid-parent-tablet-7" !important; }
  .push-tablet-7 {
    left: 58.33333%; }
    .gridle-debug .push-tablet-7:after, .push-tablet-7.gridle-debug:after {
      content: "push-tablet-7" !important; }
  .pull-tablet-7 {
    right: 58.33333%; }
    .gridle-debug .pull-tablet-7:after, .pull-tablet-7.gridle-debug:after {
      content: "pull-tablet-7" !important; }
  .prefix-tablet-7 {
    margin-left: 58.33333%; }
    .gridle-debug .prefix-tablet-7:after, .prefix-tablet-7.gridle-debug:after {
      content: "prefix-tablet-7" !important; }
  .suffix-tablet-7 {
    margin-right: 58.33333%; }
    .gridle-debug .suffix-tablet-7:after, .suffix-tablet-7.gridle-debug:after {
      content: "suffix-tablet-7" !important; }
  .grid-tablet-8 {
    width: 66.66667%; }
    .gridle-debug .grid-tablet-8:before, .grid-tablet-8.gridle-debug:before {
      content: "grid-tablet-8" !important; }
    .gridle-debug .grid-tablet-8.parent:before, .grid-tablet-8.gridle-debug.parent:before {
      content: "grid-parent-tablet-8" !important; }
  .push-tablet-8 {
    left: 66.66667%; }
    .gridle-debug .push-tablet-8:after, .push-tablet-8.gridle-debug:after {
      content: "push-tablet-8" !important; }
  .pull-tablet-8 {
    right: 66.66667%; }
    .gridle-debug .pull-tablet-8:after, .pull-tablet-8.gridle-debug:after {
      content: "pull-tablet-8" !important; }
  .prefix-tablet-8 {
    margin-left: 66.66667%; }
    .gridle-debug .prefix-tablet-8:after, .prefix-tablet-8.gridle-debug:after {
      content: "prefix-tablet-8" !important; }
  .suffix-tablet-8 {
    margin-right: 66.66667%; }
    .gridle-debug .suffix-tablet-8:after, .suffix-tablet-8.gridle-debug:after {
      content: "suffix-tablet-8" !important; }
  .grid-tablet-9 {
    width: 75%; }
    .gridle-debug .grid-tablet-9:before, .grid-tablet-9.gridle-debug:before {
      content: "grid-tablet-9" !important; }
    .gridle-debug .grid-tablet-9.parent:before, .grid-tablet-9.gridle-debug.parent:before {
      content: "grid-parent-tablet-9" !important; }
  .push-tablet-9 {
    left: 75%; }
    .gridle-debug .push-tablet-9:after, .push-tablet-9.gridle-debug:after {
      content: "push-tablet-9" !important; }
  .pull-tablet-9 {
    right: 75%; }
    .gridle-debug .pull-tablet-9:after, .pull-tablet-9.gridle-debug:after {
      content: "pull-tablet-9" !important; }
  .prefix-tablet-9 {
    margin-left: 75%; }
    .gridle-debug .prefix-tablet-9:after, .prefix-tablet-9.gridle-debug:after {
      content: "prefix-tablet-9" !important; }
  .suffix-tablet-9 {
    margin-right: 75%; }
    .gridle-debug .suffix-tablet-9:after, .suffix-tablet-9.gridle-debug:after {
      content: "suffix-tablet-9" !important; }
  .grid-tablet-10 {
    width: 83.33333%; }
    .gridle-debug .grid-tablet-10:before, .grid-tablet-10.gridle-debug:before {
      content: "grid-tablet-10" !important; }
    .gridle-debug .grid-tablet-10.parent:before, .grid-tablet-10.gridle-debug.parent:before {
      content: "grid-parent-tablet-10" !important; }
  .push-tablet-10 {
    left: 83.33333%; }
    .gridle-debug .push-tablet-10:after, .push-tablet-10.gridle-debug:after {
      content: "push-tablet-10" !important; }
  .pull-tablet-10 {
    right: 83.33333%; }
    .gridle-debug .pull-tablet-10:after, .pull-tablet-10.gridle-debug:after {
      content: "pull-tablet-10" !important; }
  .prefix-tablet-10 {
    margin-left: 83.33333%; }
    .gridle-debug .prefix-tablet-10:after, .prefix-tablet-10.gridle-debug:after {
      content: "prefix-tablet-10" !important; }
  .suffix-tablet-10 {
    margin-right: 83.33333%; }
    .gridle-debug .suffix-tablet-10:after, .suffix-tablet-10.gridle-debug:after {
      content: "suffix-tablet-10" !important; }
  .grid-tablet-11 {
    width: 91.66667%; }
    .gridle-debug .grid-tablet-11:before, .grid-tablet-11.gridle-debug:before {
      content: "grid-tablet-11" !important; }
    .gridle-debug .grid-tablet-11.parent:before, .grid-tablet-11.gridle-debug.parent:before {
      content: "grid-parent-tablet-11" !important; }
  .push-tablet-11 {
    left: 91.66667%; }
    .gridle-debug .push-tablet-11:after, .push-tablet-11.gridle-debug:after {
      content: "push-tablet-11" !important; }
  .pull-tablet-11 {
    right: 91.66667%; }
    .gridle-debug .pull-tablet-11:after, .pull-tablet-11.gridle-debug:after {
      content: "pull-tablet-11" !important; }
  .prefix-tablet-11 {
    margin-left: 91.66667%; }
    .gridle-debug .prefix-tablet-11:after, .prefix-tablet-11.gridle-debug:after {
      content: "prefix-tablet-11" !important; }
  .suffix-tablet-11 {
    margin-right: 91.66667%; }
    .gridle-debug .suffix-tablet-11:after, .suffix-tablet-11.gridle-debug:after {
      content: "suffix-tablet-11" !important; }
  .grid-tablet-12 {
    width: 100%; }
    .gridle-debug .grid-tablet-12:before, .grid-tablet-12.gridle-debug:before {
      content: "grid-tablet-12" !important; }
    .gridle-debug .grid-tablet-12.parent:before, .grid-tablet-12.gridle-debug.parent:before {
      content: "grid-parent-tablet-12" !important; }
  .push-tablet-12 {
    left: 100%; }
    .gridle-debug .push-tablet-12:after, .push-tablet-12.gridle-debug:after {
      content: "push-tablet-12" !important; }
  .pull-tablet-12 {
    right: 100%; }
    .gridle-debug .pull-tablet-12:after, .pull-tablet-12.gridle-debug:after {
      content: "pull-tablet-12" !important; }
  .prefix-tablet-12 {
    margin-left: 100%; }
    .gridle-debug .prefix-tablet-12:after, .prefix-tablet-12.gridle-debug:after {
      content: "prefix-tablet-12" !important; }
  .suffix-tablet-12 {
    margin-right: 100%; }
    .gridle-debug .suffix-tablet-12:after, .suffix-tablet-12.gridle-debug:after {
      content: "suffix-tablet-12" !important; }
  .float-tablet-left {
    float: left; }
    html.default .float-tablet-left {
      float: left; }
  .float-tablet-right {
    float: right; }
    html.default .float-tablet-right {
      float: right; }
  .clear-tablet {
    clear: both; }
    html.default .clear-tablet {
      clear: both; }
  .clear-tablet-left {
    clear: left; }
    html.default .clear-tablet-left {
      clear: left; }
  .clear-tablet-right {
    clear: right; }
    html.default .clear-tablet-right {
      clear: right; }
  .no-gutter-tablet,
  .no-margin-tablet {
    padding-left: 0;
    padding-right: 0; }
    html.default .no-gutter-tablet,
    html.default .no-margin-tablet {
      padding-left: 0;
      padding-right: 0; }
  .no-gutter-tablet-left,
  .no-margin-tablet-left {
    padding-left: 0; }
    html.default .no-gutter-tablet-left,
    html.default .no-margin-tablet-left {
      padding-left: 0; }
  .no-gutter-tablet-right,
  .no-margin-tablet-right {
    padding-right: 0; }
    html.default .no-gutter-tablet-right,
    html.default .no-margin-tablet-right {
      padding-right: 0; }
  .no-gutter-tablet-top,
  .no-margin-tablet-top {
    padding-top: 0; }
    html.default .no-gutter-tablet-top,
    html.default .no-margin-tablet-top {
      padding-top: 0; }
  .no-gutter-tablet-bottom,
  .no-margin-tablet-bottom {
    padding-bottom: 0; }
    html.default .no-gutter-tablet-bottom,
    html.default .no-margin-tablet-bottom {
      padding-bottom: 0; }
  .gutter-tablet,
  .margins-tablet {
    padding-left: 10px;
    padding-right: 10px; }
    html.default .gutter-tablet,
    html.default .margins-tablet {
      padding-left: 10px;
      padding-right: 10px; }
  .gutter-tablet-left,
  .margin-tablet-left {
    padding-left: 10px; }
    html.default .gutter-tablet-left,
    html.default .margin-tablet-left {
      padding-left: 10px; }
  .gutter-tablet-right,
  .margin-tablet-right {
    padding-right: 10px; }
    html.default .gutter-tablet-right,
    html.default .margin-tablet-right {
      padding-right: 10px; }
  .gutter-tablet-top,
  .margin-tablet-top {
    padding-top: 10px; }
    html.default .gutter-tablet-top,
    html.default .margin-tablet-top {
      padding-top: 10px; }
  .gutter-tablet-bottom,
  .margin-tablet-bottom {
    padding-bottom: 10px; }
    html.default .gutter-tablet-bottom,
    html.default .margin-tablet-bottom {
      padding-bottom: 10px; }
  .auto-height-tablet {
    height: inherit; }
  .centered-tablet {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  .parent-tablet {
    padding-left: 0;
    padding-right: 0; }
    html.default .parent-tablet {
      padding-left: 0;
      padding-right: 0; }
  .vertical-align-tablet-middle {
    font-size: 0;
    clear: both; }
    .vertical-align-tablet-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  .vertical-align-tablet-top {
    font-size: 0;
    clear: both; }
    .vertical-align-tablet-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  .vertical-align-tablet-bottom {
    font-size: 0;
    clear: both; }
    .vertical-align-tablet-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  /**
	 * Visible, hide, etc...
	 */
  .hide-tablet {
    display: none; }
  .not-visible-tablet {
    visibility: hidden; }
  .show-tablet {
    display: block; }
  .show-inline-tablet {
    display: inline-block; }
  .visible-tablet {
    visibility: visible; }
  /**
	 * Clear each class :
	 */
  .clear-each-tablet-2 > *:nth-child(2n+1) {
    clear: left; }
  .clear-each-tablet-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug .debug-color-tablet-1, .debug-color-tablet-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug .debug-color-tablet-2, .debug-color-tablet-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug .debug-color-tablet-3, .debug-color-tablet-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug .debug-color-tablet-4, .debug-color-tablet-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug .debug-color-tablet-5, .debug-color-tablet-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug .debug-color-tablet-6, .debug-color-tablet-6.gridle-debug {
    background-color: #b2d8ee; } }

html.ipad-landscape {
  /**
	 * Visible, hide, etc...
	 */
  /**
	 * Clear each class :
	 */ }
  html.ipad-landscape .grid-ipad-landscape-1on5 {
    width: 20%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-1on5:before, html.ipad-landscape .grid-ipad-landscape-1on5.gridle-debug:before {
      content: "grid-ipad-landscape-1" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-1on5.parent:before, html.ipad-landscape .grid-ipad-landscape-1on5.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-1" !important; }
  html.ipad-landscape .push-ipad-landscape-1on5 {
    left: 20%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-1on5:after, html.ipad-landscape .push-ipad-landscape-1on5.gridle-debug:after {
      content: "push-ipad-landscape-1" !important; }
  html.ipad-landscape .pull-ipad-landscape-1on5 {
    right: 20%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-1on5:after, html.ipad-landscape .pull-ipad-landscape-1on5.gridle-debug:after {
      content: "pull-ipad-landscape-1" !important; }
  html.ipad-landscape .prefix-ipad-landscape-1on5 {
    margin-left: 20%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-1on5:after, html.ipad-landscape .prefix-ipad-landscape-1on5.gridle-debug:after {
      content: "prefix-ipad-landscape-1" !important; }
  html.ipad-landscape .suffix-ipad-landscape-1on5 {
    margin-right: 20%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-1on5:after, html.ipad-landscape .suffix-ipad-landscape-1on5.gridle-debug:after {
      content: "suffix-ipad-landscape-1" !important; }
  html.ipad-landscape .grid-ipad-landscape-0 {
    width: 0%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-0:before, html.ipad-landscape .grid-ipad-landscape-0.gridle-debug:before {
      content: "grid-ipad-landscape-0" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-0.parent:before, html.ipad-landscape .grid-ipad-landscape-0.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-0" !important; }
  html.ipad-landscape .push-ipad-landscape-0 {
    left: 0%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-0:after, html.ipad-landscape .push-ipad-landscape-0.gridle-debug:after {
      content: "push-ipad-landscape-0" !important; }
  html.ipad-landscape .pull-ipad-landscape-0 {
    right: 0%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-0:after, html.ipad-landscape .pull-ipad-landscape-0.gridle-debug:after {
      content: "pull-ipad-landscape-0" !important; }
  html.ipad-landscape .prefix-ipad-landscape-0 {
    margin-left: 0%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-0:after, html.ipad-landscape .prefix-ipad-landscape-0.gridle-debug:after {
      content: "prefix-ipad-landscape-0" !important; }
  html.ipad-landscape .suffix-ipad-landscape-0 {
    margin-right: 0%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-0:after, html.ipad-landscape .suffix-ipad-landscape-0.gridle-debug:after {
      content: "suffix-ipad-landscape-0" !important; }
  html.ipad-landscape .grid-ipad-landscape-1 {
    width: 8.33333%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-1:before, html.ipad-landscape .grid-ipad-landscape-1.gridle-debug:before {
      content: "grid-ipad-landscape-1" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-1.parent:before, html.ipad-landscape .grid-ipad-landscape-1.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-1" !important; }
  html.ipad-landscape .push-ipad-landscape-1 {
    left: 8.33333%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-1:after, html.ipad-landscape .push-ipad-landscape-1.gridle-debug:after {
      content: "push-ipad-landscape-1" !important; }
  html.ipad-landscape .pull-ipad-landscape-1 {
    right: 8.33333%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-1:after, html.ipad-landscape .pull-ipad-landscape-1.gridle-debug:after {
      content: "pull-ipad-landscape-1" !important; }
  html.ipad-landscape .prefix-ipad-landscape-1 {
    margin-left: 8.33333%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-1:after, html.ipad-landscape .prefix-ipad-landscape-1.gridle-debug:after {
      content: "prefix-ipad-landscape-1" !important; }
  html.ipad-landscape .suffix-ipad-landscape-1 {
    margin-right: 8.33333%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-1:after, html.ipad-landscape .suffix-ipad-landscape-1.gridle-debug:after {
      content: "suffix-ipad-landscape-1" !important; }
  html.ipad-landscape .grid-ipad-landscape-2 {
    width: 16.66667%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-2:before, html.ipad-landscape .grid-ipad-landscape-2.gridle-debug:before {
      content: "grid-ipad-landscape-2" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-2.parent:before, html.ipad-landscape .grid-ipad-landscape-2.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-2" !important; }
  html.ipad-landscape .push-ipad-landscape-2 {
    left: 16.66667%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-2:after, html.ipad-landscape .push-ipad-landscape-2.gridle-debug:after {
      content: "push-ipad-landscape-2" !important; }
  html.ipad-landscape .pull-ipad-landscape-2 {
    right: 16.66667%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-2:after, html.ipad-landscape .pull-ipad-landscape-2.gridle-debug:after {
      content: "pull-ipad-landscape-2" !important; }
  html.ipad-landscape .prefix-ipad-landscape-2 {
    margin-left: 16.66667%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-2:after, html.ipad-landscape .prefix-ipad-landscape-2.gridle-debug:after {
      content: "prefix-ipad-landscape-2" !important; }
  html.ipad-landscape .suffix-ipad-landscape-2 {
    margin-right: 16.66667%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-2:after, html.ipad-landscape .suffix-ipad-landscape-2.gridle-debug:after {
      content: "suffix-ipad-landscape-2" !important; }
  html.ipad-landscape .grid-ipad-landscape-3 {
    width: 25%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-3:before, html.ipad-landscape .grid-ipad-landscape-3.gridle-debug:before {
      content: "grid-ipad-landscape-3" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-3.parent:before, html.ipad-landscape .grid-ipad-landscape-3.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-3" !important; }
  html.ipad-landscape .push-ipad-landscape-3 {
    left: 25%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-3:after, html.ipad-landscape .push-ipad-landscape-3.gridle-debug:after {
      content: "push-ipad-landscape-3" !important; }
  html.ipad-landscape .pull-ipad-landscape-3 {
    right: 25%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-3:after, html.ipad-landscape .pull-ipad-landscape-3.gridle-debug:after {
      content: "pull-ipad-landscape-3" !important; }
  html.ipad-landscape .prefix-ipad-landscape-3 {
    margin-left: 25%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-3:after, html.ipad-landscape .prefix-ipad-landscape-3.gridle-debug:after {
      content: "prefix-ipad-landscape-3" !important; }
  html.ipad-landscape .suffix-ipad-landscape-3 {
    margin-right: 25%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-3:after, html.ipad-landscape .suffix-ipad-landscape-3.gridle-debug:after {
      content: "suffix-ipad-landscape-3" !important; }
  html.ipad-landscape .grid-ipad-landscape-4 {
    width: 33.33333%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-4:before, html.ipad-landscape .grid-ipad-landscape-4.gridle-debug:before {
      content: "grid-ipad-landscape-4" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-4.parent:before, html.ipad-landscape .grid-ipad-landscape-4.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-4" !important; }
  html.ipad-landscape .push-ipad-landscape-4 {
    left: 33.33333%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-4:after, html.ipad-landscape .push-ipad-landscape-4.gridle-debug:after {
      content: "push-ipad-landscape-4" !important; }
  html.ipad-landscape .pull-ipad-landscape-4 {
    right: 33.33333%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-4:after, html.ipad-landscape .pull-ipad-landscape-4.gridle-debug:after {
      content: "pull-ipad-landscape-4" !important; }
  html.ipad-landscape .prefix-ipad-landscape-4 {
    margin-left: 33.33333%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-4:after, html.ipad-landscape .prefix-ipad-landscape-4.gridle-debug:after {
      content: "prefix-ipad-landscape-4" !important; }
  html.ipad-landscape .suffix-ipad-landscape-4 {
    margin-right: 33.33333%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-4:after, html.ipad-landscape .suffix-ipad-landscape-4.gridle-debug:after {
      content: "suffix-ipad-landscape-4" !important; }
  html.ipad-landscape .grid-ipad-landscape-5 {
    width: 41.66667%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-5:before, html.ipad-landscape .grid-ipad-landscape-5.gridle-debug:before {
      content: "grid-ipad-landscape-5" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-5.parent:before, html.ipad-landscape .grid-ipad-landscape-5.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-5" !important; }
  html.ipad-landscape .push-ipad-landscape-5 {
    left: 41.66667%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-5:after, html.ipad-landscape .push-ipad-landscape-5.gridle-debug:after {
      content: "push-ipad-landscape-5" !important; }
  html.ipad-landscape .pull-ipad-landscape-5 {
    right: 41.66667%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-5:after, html.ipad-landscape .pull-ipad-landscape-5.gridle-debug:after {
      content: "pull-ipad-landscape-5" !important; }
  html.ipad-landscape .prefix-ipad-landscape-5 {
    margin-left: 41.66667%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-5:after, html.ipad-landscape .prefix-ipad-landscape-5.gridle-debug:after {
      content: "prefix-ipad-landscape-5" !important; }
  html.ipad-landscape .suffix-ipad-landscape-5 {
    margin-right: 41.66667%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-5:after, html.ipad-landscape .suffix-ipad-landscape-5.gridle-debug:after {
      content: "suffix-ipad-landscape-5" !important; }
  html.ipad-landscape .grid-ipad-landscape-6 {
    width: 50%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-6:before, html.ipad-landscape .grid-ipad-landscape-6.gridle-debug:before {
      content: "grid-ipad-landscape-6" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-6.parent:before, html.ipad-landscape .grid-ipad-landscape-6.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-6" !important; }
  html.ipad-landscape .push-ipad-landscape-6 {
    left: 50%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-6:after, html.ipad-landscape .push-ipad-landscape-6.gridle-debug:after {
      content: "push-ipad-landscape-6" !important; }
  html.ipad-landscape .pull-ipad-landscape-6 {
    right: 50%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-6:after, html.ipad-landscape .pull-ipad-landscape-6.gridle-debug:after {
      content: "pull-ipad-landscape-6" !important; }
  html.ipad-landscape .prefix-ipad-landscape-6 {
    margin-left: 50%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-6:after, html.ipad-landscape .prefix-ipad-landscape-6.gridle-debug:after {
      content: "prefix-ipad-landscape-6" !important; }
  html.ipad-landscape .suffix-ipad-landscape-6 {
    margin-right: 50%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-6:after, html.ipad-landscape .suffix-ipad-landscape-6.gridle-debug:after {
      content: "suffix-ipad-landscape-6" !important; }
  html.ipad-landscape .grid-ipad-landscape-7 {
    width: 58.33333%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-7:before, html.ipad-landscape .grid-ipad-landscape-7.gridle-debug:before {
      content: "grid-ipad-landscape-7" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-7.parent:before, html.ipad-landscape .grid-ipad-landscape-7.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-7" !important; }
  html.ipad-landscape .push-ipad-landscape-7 {
    left: 58.33333%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-7:after, html.ipad-landscape .push-ipad-landscape-7.gridle-debug:after {
      content: "push-ipad-landscape-7" !important; }
  html.ipad-landscape .pull-ipad-landscape-7 {
    right: 58.33333%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-7:after, html.ipad-landscape .pull-ipad-landscape-7.gridle-debug:after {
      content: "pull-ipad-landscape-7" !important; }
  html.ipad-landscape .prefix-ipad-landscape-7 {
    margin-left: 58.33333%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-7:after, html.ipad-landscape .prefix-ipad-landscape-7.gridle-debug:after {
      content: "prefix-ipad-landscape-7" !important; }
  html.ipad-landscape .suffix-ipad-landscape-7 {
    margin-right: 58.33333%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-7:after, html.ipad-landscape .suffix-ipad-landscape-7.gridle-debug:after {
      content: "suffix-ipad-landscape-7" !important; }
  html.ipad-landscape .grid-ipad-landscape-8 {
    width: 66.66667%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-8:before, html.ipad-landscape .grid-ipad-landscape-8.gridle-debug:before {
      content: "grid-ipad-landscape-8" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-8.parent:before, html.ipad-landscape .grid-ipad-landscape-8.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-8" !important; }
  html.ipad-landscape .push-ipad-landscape-8 {
    left: 66.66667%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-8:after, html.ipad-landscape .push-ipad-landscape-8.gridle-debug:after {
      content: "push-ipad-landscape-8" !important; }
  html.ipad-landscape .pull-ipad-landscape-8 {
    right: 66.66667%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-8:after, html.ipad-landscape .pull-ipad-landscape-8.gridle-debug:after {
      content: "pull-ipad-landscape-8" !important; }
  html.ipad-landscape .prefix-ipad-landscape-8 {
    margin-left: 66.66667%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-8:after, html.ipad-landscape .prefix-ipad-landscape-8.gridle-debug:after {
      content: "prefix-ipad-landscape-8" !important; }
  html.ipad-landscape .suffix-ipad-landscape-8 {
    margin-right: 66.66667%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-8:after, html.ipad-landscape .suffix-ipad-landscape-8.gridle-debug:after {
      content: "suffix-ipad-landscape-8" !important; }
  html.ipad-landscape .grid-ipad-landscape-9 {
    width: 75%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-9:before, html.ipad-landscape .grid-ipad-landscape-9.gridle-debug:before {
      content: "grid-ipad-landscape-9" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-9.parent:before, html.ipad-landscape .grid-ipad-landscape-9.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-9" !important; }
  html.ipad-landscape .push-ipad-landscape-9 {
    left: 75%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-9:after, html.ipad-landscape .push-ipad-landscape-9.gridle-debug:after {
      content: "push-ipad-landscape-9" !important; }
  html.ipad-landscape .pull-ipad-landscape-9 {
    right: 75%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-9:after, html.ipad-landscape .pull-ipad-landscape-9.gridle-debug:after {
      content: "pull-ipad-landscape-9" !important; }
  html.ipad-landscape .prefix-ipad-landscape-9 {
    margin-left: 75%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-9:after, html.ipad-landscape .prefix-ipad-landscape-9.gridle-debug:after {
      content: "prefix-ipad-landscape-9" !important; }
  html.ipad-landscape .suffix-ipad-landscape-9 {
    margin-right: 75%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-9:after, html.ipad-landscape .suffix-ipad-landscape-9.gridle-debug:after {
      content: "suffix-ipad-landscape-9" !important; }
  html.ipad-landscape .grid-ipad-landscape-10 {
    width: 83.33333%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-10:before, html.ipad-landscape .grid-ipad-landscape-10.gridle-debug:before {
      content: "grid-ipad-landscape-10" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-10.parent:before, html.ipad-landscape .grid-ipad-landscape-10.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-10" !important; }
  html.ipad-landscape .push-ipad-landscape-10 {
    left: 83.33333%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-10:after, html.ipad-landscape .push-ipad-landscape-10.gridle-debug:after {
      content: "push-ipad-landscape-10" !important; }
  html.ipad-landscape .pull-ipad-landscape-10 {
    right: 83.33333%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-10:after, html.ipad-landscape .pull-ipad-landscape-10.gridle-debug:after {
      content: "pull-ipad-landscape-10" !important; }
  html.ipad-landscape .prefix-ipad-landscape-10 {
    margin-left: 83.33333%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-10:after, html.ipad-landscape .prefix-ipad-landscape-10.gridle-debug:after {
      content: "prefix-ipad-landscape-10" !important; }
  html.ipad-landscape .suffix-ipad-landscape-10 {
    margin-right: 83.33333%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-10:after, html.ipad-landscape .suffix-ipad-landscape-10.gridle-debug:after {
      content: "suffix-ipad-landscape-10" !important; }
  html.ipad-landscape .grid-ipad-landscape-11 {
    width: 91.66667%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-11:before, html.ipad-landscape .grid-ipad-landscape-11.gridle-debug:before {
      content: "grid-ipad-landscape-11" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-11.parent:before, html.ipad-landscape .grid-ipad-landscape-11.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-11" !important; }
  html.ipad-landscape .push-ipad-landscape-11 {
    left: 91.66667%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-11:after, html.ipad-landscape .push-ipad-landscape-11.gridle-debug:after {
      content: "push-ipad-landscape-11" !important; }
  html.ipad-landscape .pull-ipad-landscape-11 {
    right: 91.66667%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-11:after, html.ipad-landscape .pull-ipad-landscape-11.gridle-debug:after {
      content: "pull-ipad-landscape-11" !important; }
  html.ipad-landscape .prefix-ipad-landscape-11 {
    margin-left: 91.66667%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-11:after, html.ipad-landscape .prefix-ipad-landscape-11.gridle-debug:after {
      content: "prefix-ipad-landscape-11" !important; }
  html.ipad-landscape .suffix-ipad-landscape-11 {
    margin-right: 91.66667%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-11:after, html.ipad-landscape .suffix-ipad-landscape-11.gridle-debug:after {
      content: "suffix-ipad-landscape-11" !important; }
  html.ipad-landscape .grid-ipad-landscape-12 {
    width: 100%; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-12:before, html.ipad-landscape .grid-ipad-landscape-12.gridle-debug:before {
      content: "grid-ipad-landscape-12" !important; }
    .gridle-debug html.ipad-landscape .grid-ipad-landscape-12.parent:before, html.ipad-landscape .grid-ipad-landscape-12.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-12" !important; }
  html.ipad-landscape .push-ipad-landscape-12 {
    left: 100%; }
    .gridle-debug html.ipad-landscape .push-ipad-landscape-12:after, html.ipad-landscape .push-ipad-landscape-12.gridle-debug:after {
      content: "push-ipad-landscape-12" !important; }
  html.ipad-landscape .pull-ipad-landscape-12 {
    right: 100%; }
    .gridle-debug html.ipad-landscape .pull-ipad-landscape-12:after, html.ipad-landscape .pull-ipad-landscape-12.gridle-debug:after {
      content: "pull-ipad-landscape-12" !important; }
  html.ipad-landscape .prefix-ipad-landscape-12 {
    margin-left: 100%; }
    .gridle-debug html.ipad-landscape .prefix-ipad-landscape-12:after, html.ipad-landscape .prefix-ipad-landscape-12.gridle-debug:after {
      content: "prefix-ipad-landscape-12" !important; }
  html.ipad-landscape .suffix-ipad-landscape-12 {
    margin-right: 100%; }
    .gridle-debug html.ipad-landscape .suffix-ipad-landscape-12:after, html.ipad-landscape .suffix-ipad-landscape-12.gridle-debug:after {
      content: "suffix-ipad-landscape-12" !important; }
  html.ipad-landscape .float-ipad-landscape-left {
    float: left; }
    html.default html.ipad-landscape .float-ipad-landscape-left {
      float: left; }
  html.ipad-landscape .float-ipad-landscape-right {
    float: right; }
    html.default html.ipad-landscape .float-ipad-landscape-right {
      float: right; }
  html.ipad-landscape .clear-ipad-landscape {
    clear: both; }
    html.default html.ipad-landscape .clear-ipad-landscape {
      clear: both; }
  html.ipad-landscape .clear-ipad-landscape-left {
    clear: left; }
    html.default html.ipad-landscape .clear-ipad-landscape-left {
      clear: left; }
  html.ipad-landscape .clear-ipad-landscape-right {
    clear: right; }
    html.default html.ipad-landscape .clear-ipad-landscape-right {
      clear: right; }
  html.ipad-landscape .no-gutter-ipad-landscape,
  html.ipad-landscape .no-margin-ipad-landscape {
    padding-left: 0;
    padding-right: 0; }
    html.default html.ipad-landscape .no-gutter-ipad-landscape,
    html.default html.ipad-landscape .no-margin-ipad-landscape {
      padding-left: 0;
      padding-right: 0; }
  html.ipad-landscape .no-gutter-ipad-landscape-left,
  html.ipad-landscape .no-margin-ipad-landscape-left {
    padding-left: 0; }
    html.default html.ipad-landscape .no-gutter-ipad-landscape-left,
    html.default html.ipad-landscape .no-margin-ipad-landscape-left {
      padding-left: 0; }
  html.ipad-landscape .no-gutter-ipad-landscape-right,
  html.ipad-landscape .no-margin-ipad-landscape-right {
    padding-right: 0; }
    html.default html.ipad-landscape .no-gutter-ipad-landscape-right,
    html.default html.ipad-landscape .no-margin-ipad-landscape-right {
      padding-right: 0; }
  html.ipad-landscape .no-gutter-ipad-landscape-top,
  html.ipad-landscape .no-margin-ipad-landscape-top {
    padding-top: 0; }
    html.default html.ipad-landscape .no-gutter-ipad-landscape-top,
    html.default html.ipad-landscape .no-margin-ipad-landscape-top {
      padding-top: 0; }
  html.ipad-landscape .no-gutter-ipad-landscape-bottom,
  html.ipad-landscape .no-margin-ipad-landscape-bottom {
    padding-bottom: 0; }
    html.default html.ipad-landscape .no-gutter-ipad-landscape-bottom,
    html.default html.ipad-landscape .no-margin-ipad-landscape-bottom {
      padding-bottom: 0; }
  html.ipad-landscape .gutter-ipad-landscape,
  html.ipad-landscape .margins-ipad-landscape {
    padding-left: 10px;
    padding-right: 10px; }
    html.default html.ipad-landscape .gutter-ipad-landscape,
    html.default html.ipad-landscape .margins-ipad-landscape {
      padding-left: 10px;
      padding-right: 10px; }
  html.ipad-landscape .gutter-ipad-landscape-left,
  html.ipad-landscape .margin-ipad-landscape-left {
    padding-left: 10px; }
    html.default html.ipad-landscape .gutter-ipad-landscape-left,
    html.default html.ipad-landscape .margin-ipad-landscape-left {
      padding-left: 10px; }
  html.ipad-landscape .gutter-ipad-landscape-right,
  html.ipad-landscape .margin-ipad-landscape-right {
    padding-right: 10px; }
    html.default html.ipad-landscape .gutter-ipad-landscape-right,
    html.default html.ipad-landscape .margin-ipad-landscape-right {
      padding-right: 10px; }
  html.ipad-landscape .gutter-ipad-landscape-top,
  html.ipad-landscape .margin-ipad-landscape-top {
    padding-top: 10px; }
    html.default html.ipad-landscape .gutter-ipad-landscape-top,
    html.default html.ipad-landscape .margin-ipad-landscape-top {
      padding-top: 10px; }
  html.ipad-landscape .gutter-ipad-landscape-bottom,
  html.ipad-landscape .margin-ipad-landscape-bottom {
    padding-bottom: 10px; }
    html.default html.ipad-landscape .gutter-ipad-landscape-bottom,
    html.default html.ipad-landscape .margin-ipad-landscape-bottom {
      padding-bottom: 10px; }
  html.ipad-landscape .auto-height-ipad-landscape {
    height: inherit; }
  html.ipad-landscape .centered-ipad-landscape {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  html.ipad-landscape .parent-ipad-landscape {
    padding-left: 0;
    padding-right: 0; }
    html.default html.ipad-landscape .parent-ipad-landscape {
      padding-left: 0;
      padding-right: 0; }
  html.ipad-landscape .vertical-align-ipad-landscape-middle {
    font-size: 0;
    clear: both; }
    html.ipad-landscape .vertical-align-ipad-landscape-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  html.ipad-landscape .vertical-align-ipad-landscape-top {
    font-size: 0;
    clear: both; }
    html.ipad-landscape .vertical-align-ipad-landscape-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  html.ipad-landscape .vertical-align-ipad-landscape-bottom {
    font-size: 0;
    clear: both; }
    html.ipad-landscape .vertical-align-ipad-landscape-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  html.ipad-landscape .hide-ipad-landscape {
    display: none; }
  html.ipad-landscape .not-visible-ipad-landscape {
    visibility: hidden; }
  html.ipad-landscape .show-ipad-landscape {
    display: block; }
  html.ipad-landscape .show-inline-ipad-landscape {
    display: inline-block; }
  html.ipad-landscape .visible-ipad-landscape {
    visibility: visible; }
  html.ipad-landscape .clear-each-ipad-landscape-2 > *:nth-child(2n+1) {
    clear: left; }
  html.ipad-landscape .clear-each-ipad-landscape-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug html.ipad-landscape .debug-color-ipad-landscape-1, html.ipad-landscape .debug-color-ipad-landscape-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug html.ipad-landscape .debug-color-ipad-landscape-2, html.ipad-landscape .debug-color-ipad-landscape-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug html.ipad-landscape .debug-color-ipad-landscape-3, html.ipad-landscape .debug-color-ipad-landscape-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug html.ipad-landscape .debug-color-ipad-landscape-4, html.ipad-landscape .debug-color-ipad-landscape-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug html.ipad-landscape .debug-color-ipad-landscape-5, html.ipad-landscape .debug-color-ipad-landscape-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug html.ipad-landscape .debug-color-ipad-landscape-6, html.ipad-landscape .debug-color-ipad-landscape-6.gridle-debug {
    background-color: #b2d8ee; }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .grid-ipad-landscape-1on5 {
    width: 20%; }
    .gridle-debug .grid-ipad-landscape-1on5:before, .grid-ipad-landscape-1on5.gridle-debug:before {
      content: "grid-ipad-landscape-1" !important; }
    .gridle-debug .grid-ipad-landscape-1on5.parent:before, .grid-ipad-landscape-1on5.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-1" !important; }
  .push-ipad-landscape-1on5 {
    left: 20%; }
    .gridle-debug .push-ipad-landscape-1on5:after, .push-ipad-landscape-1on5.gridle-debug:after {
      content: "push-ipad-landscape-1" !important; }
  .pull-ipad-landscape-1on5 {
    right: 20%; }
    .gridle-debug .pull-ipad-landscape-1on5:after, .pull-ipad-landscape-1on5.gridle-debug:after {
      content: "pull-ipad-landscape-1" !important; }
  .prefix-ipad-landscape-1on5 {
    margin-left: 20%; }
    .gridle-debug .prefix-ipad-landscape-1on5:after, .prefix-ipad-landscape-1on5.gridle-debug:after {
      content: "prefix-ipad-landscape-1" !important; }
  .suffix-ipad-landscape-1on5 {
    margin-right: 20%; }
    .gridle-debug .suffix-ipad-landscape-1on5:after, .suffix-ipad-landscape-1on5.gridle-debug:after {
      content: "suffix-ipad-landscape-1" !important; }
  .grid-ipad-landscape-0 {
    width: 0%; }
    .gridle-debug .grid-ipad-landscape-0:before, .grid-ipad-landscape-0.gridle-debug:before {
      content: "grid-ipad-landscape-0" !important; }
    .gridle-debug .grid-ipad-landscape-0.parent:before, .grid-ipad-landscape-0.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-0" !important; }
  .push-ipad-landscape-0 {
    left: 0%; }
    .gridle-debug .push-ipad-landscape-0:after, .push-ipad-landscape-0.gridle-debug:after {
      content: "push-ipad-landscape-0" !important; }
  .pull-ipad-landscape-0 {
    right: 0%; }
    .gridle-debug .pull-ipad-landscape-0:after, .pull-ipad-landscape-0.gridle-debug:after {
      content: "pull-ipad-landscape-0" !important; }
  .prefix-ipad-landscape-0 {
    margin-left: 0%; }
    .gridle-debug .prefix-ipad-landscape-0:after, .prefix-ipad-landscape-0.gridle-debug:after {
      content: "prefix-ipad-landscape-0" !important; }
  .suffix-ipad-landscape-0 {
    margin-right: 0%; }
    .gridle-debug .suffix-ipad-landscape-0:after, .suffix-ipad-landscape-0.gridle-debug:after {
      content: "suffix-ipad-landscape-0" !important; }
  .grid-ipad-landscape-1 {
    width: 8.33333%; }
    .gridle-debug .grid-ipad-landscape-1:before, .grid-ipad-landscape-1.gridle-debug:before {
      content: "grid-ipad-landscape-1" !important; }
    .gridle-debug .grid-ipad-landscape-1.parent:before, .grid-ipad-landscape-1.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-1" !important; }
  .push-ipad-landscape-1 {
    left: 8.33333%; }
    .gridle-debug .push-ipad-landscape-1:after, .push-ipad-landscape-1.gridle-debug:after {
      content: "push-ipad-landscape-1" !important; }
  .pull-ipad-landscape-1 {
    right: 8.33333%; }
    .gridle-debug .pull-ipad-landscape-1:after, .pull-ipad-landscape-1.gridle-debug:after {
      content: "pull-ipad-landscape-1" !important; }
  .prefix-ipad-landscape-1 {
    margin-left: 8.33333%; }
    .gridle-debug .prefix-ipad-landscape-1:after, .prefix-ipad-landscape-1.gridle-debug:after {
      content: "prefix-ipad-landscape-1" !important; }
  .suffix-ipad-landscape-1 {
    margin-right: 8.33333%; }
    .gridle-debug .suffix-ipad-landscape-1:after, .suffix-ipad-landscape-1.gridle-debug:after {
      content: "suffix-ipad-landscape-1" !important; }
  .grid-ipad-landscape-2 {
    width: 16.66667%; }
    .gridle-debug .grid-ipad-landscape-2:before, .grid-ipad-landscape-2.gridle-debug:before {
      content: "grid-ipad-landscape-2" !important; }
    .gridle-debug .grid-ipad-landscape-2.parent:before, .grid-ipad-landscape-2.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-2" !important; }
  .push-ipad-landscape-2 {
    left: 16.66667%; }
    .gridle-debug .push-ipad-landscape-2:after, .push-ipad-landscape-2.gridle-debug:after {
      content: "push-ipad-landscape-2" !important; }
  .pull-ipad-landscape-2 {
    right: 16.66667%; }
    .gridle-debug .pull-ipad-landscape-2:after, .pull-ipad-landscape-2.gridle-debug:after {
      content: "pull-ipad-landscape-2" !important; }
  .prefix-ipad-landscape-2 {
    margin-left: 16.66667%; }
    .gridle-debug .prefix-ipad-landscape-2:after, .prefix-ipad-landscape-2.gridle-debug:after {
      content: "prefix-ipad-landscape-2" !important; }
  .suffix-ipad-landscape-2 {
    margin-right: 16.66667%; }
    .gridle-debug .suffix-ipad-landscape-2:after, .suffix-ipad-landscape-2.gridle-debug:after {
      content: "suffix-ipad-landscape-2" !important; }
  .grid-ipad-landscape-3 {
    width: 25%; }
    .gridle-debug .grid-ipad-landscape-3:before, .grid-ipad-landscape-3.gridle-debug:before {
      content: "grid-ipad-landscape-3" !important; }
    .gridle-debug .grid-ipad-landscape-3.parent:before, .grid-ipad-landscape-3.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-3" !important; }
  .push-ipad-landscape-3 {
    left: 25%; }
    .gridle-debug .push-ipad-landscape-3:after, .push-ipad-landscape-3.gridle-debug:after {
      content: "push-ipad-landscape-3" !important; }
  .pull-ipad-landscape-3 {
    right: 25%; }
    .gridle-debug .pull-ipad-landscape-3:after, .pull-ipad-landscape-3.gridle-debug:after {
      content: "pull-ipad-landscape-3" !important; }
  .prefix-ipad-landscape-3 {
    margin-left: 25%; }
    .gridle-debug .prefix-ipad-landscape-3:after, .prefix-ipad-landscape-3.gridle-debug:after {
      content: "prefix-ipad-landscape-3" !important; }
  .suffix-ipad-landscape-3 {
    margin-right: 25%; }
    .gridle-debug .suffix-ipad-landscape-3:after, .suffix-ipad-landscape-3.gridle-debug:after {
      content: "suffix-ipad-landscape-3" !important; }
  .grid-ipad-landscape-4 {
    width: 33.33333%; }
    .gridle-debug .grid-ipad-landscape-4:before, .grid-ipad-landscape-4.gridle-debug:before {
      content: "grid-ipad-landscape-4" !important; }
    .gridle-debug .grid-ipad-landscape-4.parent:before, .grid-ipad-landscape-4.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-4" !important; }
  .push-ipad-landscape-4 {
    left: 33.33333%; }
    .gridle-debug .push-ipad-landscape-4:after, .push-ipad-landscape-4.gridle-debug:after {
      content: "push-ipad-landscape-4" !important; }
  .pull-ipad-landscape-4 {
    right: 33.33333%; }
    .gridle-debug .pull-ipad-landscape-4:after, .pull-ipad-landscape-4.gridle-debug:after {
      content: "pull-ipad-landscape-4" !important; }
  .prefix-ipad-landscape-4 {
    margin-left: 33.33333%; }
    .gridle-debug .prefix-ipad-landscape-4:after, .prefix-ipad-landscape-4.gridle-debug:after {
      content: "prefix-ipad-landscape-4" !important; }
  .suffix-ipad-landscape-4 {
    margin-right: 33.33333%; }
    .gridle-debug .suffix-ipad-landscape-4:after, .suffix-ipad-landscape-4.gridle-debug:after {
      content: "suffix-ipad-landscape-4" !important; }
  .grid-ipad-landscape-5 {
    width: 41.66667%; }
    .gridle-debug .grid-ipad-landscape-5:before, .grid-ipad-landscape-5.gridle-debug:before {
      content: "grid-ipad-landscape-5" !important; }
    .gridle-debug .grid-ipad-landscape-5.parent:before, .grid-ipad-landscape-5.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-5" !important; }
  .push-ipad-landscape-5 {
    left: 41.66667%; }
    .gridle-debug .push-ipad-landscape-5:after, .push-ipad-landscape-5.gridle-debug:after {
      content: "push-ipad-landscape-5" !important; }
  .pull-ipad-landscape-5 {
    right: 41.66667%; }
    .gridle-debug .pull-ipad-landscape-5:after, .pull-ipad-landscape-5.gridle-debug:after {
      content: "pull-ipad-landscape-5" !important; }
  .prefix-ipad-landscape-5 {
    margin-left: 41.66667%; }
    .gridle-debug .prefix-ipad-landscape-5:after, .prefix-ipad-landscape-5.gridle-debug:after {
      content: "prefix-ipad-landscape-5" !important; }
  .suffix-ipad-landscape-5 {
    margin-right: 41.66667%; }
    .gridle-debug .suffix-ipad-landscape-5:after, .suffix-ipad-landscape-5.gridle-debug:after {
      content: "suffix-ipad-landscape-5" !important; }
  .grid-ipad-landscape-6 {
    width: 50%; }
    .gridle-debug .grid-ipad-landscape-6:before, .grid-ipad-landscape-6.gridle-debug:before {
      content: "grid-ipad-landscape-6" !important; }
    .gridle-debug .grid-ipad-landscape-6.parent:before, .grid-ipad-landscape-6.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-6" !important; }
  .push-ipad-landscape-6 {
    left: 50%; }
    .gridle-debug .push-ipad-landscape-6:after, .push-ipad-landscape-6.gridle-debug:after {
      content: "push-ipad-landscape-6" !important; }
  .pull-ipad-landscape-6 {
    right: 50%; }
    .gridle-debug .pull-ipad-landscape-6:after, .pull-ipad-landscape-6.gridle-debug:after {
      content: "pull-ipad-landscape-6" !important; }
  .prefix-ipad-landscape-6 {
    margin-left: 50%; }
    .gridle-debug .prefix-ipad-landscape-6:after, .prefix-ipad-landscape-6.gridle-debug:after {
      content: "prefix-ipad-landscape-6" !important; }
  .suffix-ipad-landscape-6 {
    margin-right: 50%; }
    .gridle-debug .suffix-ipad-landscape-6:after, .suffix-ipad-landscape-6.gridle-debug:after {
      content: "suffix-ipad-landscape-6" !important; }
  .grid-ipad-landscape-7 {
    width: 58.33333%; }
    .gridle-debug .grid-ipad-landscape-7:before, .grid-ipad-landscape-7.gridle-debug:before {
      content: "grid-ipad-landscape-7" !important; }
    .gridle-debug .grid-ipad-landscape-7.parent:before, .grid-ipad-landscape-7.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-7" !important; }
  .push-ipad-landscape-7 {
    left: 58.33333%; }
    .gridle-debug .push-ipad-landscape-7:after, .push-ipad-landscape-7.gridle-debug:after {
      content: "push-ipad-landscape-7" !important; }
  .pull-ipad-landscape-7 {
    right: 58.33333%; }
    .gridle-debug .pull-ipad-landscape-7:after, .pull-ipad-landscape-7.gridle-debug:after {
      content: "pull-ipad-landscape-7" !important; }
  .prefix-ipad-landscape-7 {
    margin-left: 58.33333%; }
    .gridle-debug .prefix-ipad-landscape-7:after, .prefix-ipad-landscape-7.gridle-debug:after {
      content: "prefix-ipad-landscape-7" !important; }
  .suffix-ipad-landscape-7 {
    margin-right: 58.33333%; }
    .gridle-debug .suffix-ipad-landscape-7:after, .suffix-ipad-landscape-7.gridle-debug:after {
      content: "suffix-ipad-landscape-7" !important; }
  .grid-ipad-landscape-8 {
    width: 66.66667%; }
    .gridle-debug .grid-ipad-landscape-8:before, .grid-ipad-landscape-8.gridle-debug:before {
      content: "grid-ipad-landscape-8" !important; }
    .gridle-debug .grid-ipad-landscape-8.parent:before, .grid-ipad-landscape-8.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-8" !important; }
  .push-ipad-landscape-8 {
    left: 66.66667%; }
    .gridle-debug .push-ipad-landscape-8:after, .push-ipad-landscape-8.gridle-debug:after {
      content: "push-ipad-landscape-8" !important; }
  .pull-ipad-landscape-8 {
    right: 66.66667%; }
    .gridle-debug .pull-ipad-landscape-8:after, .pull-ipad-landscape-8.gridle-debug:after {
      content: "pull-ipad-landscape-8" !important; }
  .prefix-ipad-landscape-8 {
    margin-left: 66.66667%; }
    .gridle-debug .prefix-ipad-landscape-8:after, .prefix-ipad-landscape-8.gridle-debug:after {
      content: "prefix-ipad-landscape-8" !important; }
  .suffix-ipad-landscape-8 {
    margin-right: 66.66667%; }
    .gridle-debug .suffix-ipad-landscape-8:after, .suffix-ipad-landscape-8.gridle-debug:after {
      content: "suffix-ipad-landscape-8" !important; }
  .grid-ipad-landscape-9 {
    width: 75%; }
    .gridle-debug .grid-ipad-landscape-9:before, .grid-ipad-landscape-9.gridle-debug:before {
      content: "grid-ipad-landscape-9" !important; }
    .gridle-debug .grid-ipad-landscape-9.parent:before, .grid-ipad-landscape-9.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-9" !important; }
  .push-ipad-landscape-9 {
    left: 75%; }
    .gridle-debug .push-ipad-landscape-9:after, .push-ipad-landscape-9.gridle-debug:after {
      content: "push-ipad-landscape-9" !important; }
  .pull-ipad-landscape-9 {
    right: 75%; }
    .gridle-debug .pull-ipad-landscape-9:after, .pull-ipad-landscape-9.gridle-debug:after {
      content: "pull-ipad-landscape-9" !important; }
  .prefix-ipad-landscape-9 {
    margin-left: 75%; }
    .gridle-debug .prefix-ipad-landscape-9:after, .prefix-ipad-landscape-9.gridle-debug:after {
      content: "prefix-ipad-landscape-9" !important; }
  .suffix-ipad-landscape-9 {
    margin-right: 75%; }
    .gridle-debug .suffix-ipad-landscape-9:after, .suffix-ipad-landscape-9.gridle-debug:after {
      content: "suffix-ipad-landscape-9" !important; }
  .grid-ipad-landscape-10 {
    width: 83.33333%; }
    .gridle-debug .grid-ipad-landscape-10:before, .grid-ipad-landscape-10.gridle-debug:before {
      content: "grid-ipad-landscape-10" !important; }
    .gridle-debug .grid-ipad-landscape-10.parent:before, .grid-ipad-landscape-10.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-10" !important; }
  .push-ipad-landscape-10 {
    left: 83.33333%; }
    .gridle-debug .push-ipad-landscape-10:after, .push-ipad-landscape-10.gridle-debug:after {
      content: "push-ipad-landscape-10" !important; }
  .pull-ipad-landscape-10 {
    right: 83.33333%; }
    .gridle-debug .pull-ipad-landscape-10:after, .pull-ipad-landscape-10.gridle-debug:after {
      content: "pull-ipad-landscape-10" !important; }
  .prefix-ipad-landscape-10 {
    margin-left: 83.33333%; }
    .gridle-debug .prefix-ipad-landscape-10:after, .prefix-ipad-landscape-10.gridle-debug:after {
      content: "prefix-ipad-landscape-10" !important; }
  .suffix-ipad-landscape-10 {
    margin-right: 83.33333%; }
    .gridle-debug .suffix-ipad-landscape-10:after, .suffix-ipad-landscape-10.gridle-debug:after {
      content: "suffix-ipad-landscape-10" !important; }
  .grid-ipad-landscape-11 {
    width: 91.66667%; }
    .gridle-debug .grid-ipad-landscape-11:before, .grid-ipad-landscape-11.gridle-debug:before {
      content: "grid-ipad-landscape-11" !important; }
    .gridle-debug .grid-ipad-landscape-11.parent:before, .grid-ipad-landscape-11.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-11" !important; }
  .push-ipad-landscape-11 {
    left: 91.66667%; }
    .gridle-debug .push-ipad-landscape-11:after, .push-ipad-landscape-11.gridle-debug:after {
      content: "push-ipad-landscape-11" !important; }
  .pull-ipad-landscape-11 {
    right: 91.66667%; }
    .gridle-debug .pull-ipad-landscape-11:after, .pull-ipad-landscape-11.gridle-debug:after {
      content: "pull-ipad-landscape-11" !important; }
  .prefix-ipad-landscape-11 {
    margin-left: 91.66667%; }
    .gridle-debug .prefix-ipad-landscape-11:after, .prefix-ipad-landscape-11.gridle-debug:after {
      content: "prefix-ipad-landscape-11" !important; }
  .suffix-ipad-landscape-11 {
    margin-right: 91.66667%; }
    .gridle-debug .suffix-ipad-landscape-11:after, .suffix-ipad-landscape-11.gridle-debug:after {
      content: "suffix-ipad-landscape-11" !important; }
  .grid-ipad-landscape-12 {
    width: 100%; }
    .gridle-debug .grid-ipad-landscape-12:before, .grid-ipad-landscape-12.gridle-debug:before {
      content: "grid-ipad-landscape-12" !important; }
    .gridle-debug .grid-ipad-landscape-12.parent:before, .grid-ipad-landscape-12.gridle-debug.parent:before {
      content: "grid-parent-ipad-landscape-12" !important; }
  .push-ipad-landscape-12 {
    left: 100%; }
    .gridle-debug .push-ipad-landscape-12:after, .push-ipad-landscape-12.gridle-debug:after {
      content: "push-ipad-landscape-12" !important; }
  .pull-ipad-landscape-12 {
    right: 100%; }
    .gridle-debug .pull-ipad-landscape-12:after, .pull-ipad-landscape-12.gridle-debug:after {
      content: "pull-ipad-landscape-12" !important; }
  .prefix-ipad-landscape-12 {
    margin-left: 100%; }
    .gridle-debug .prefix-ipad-landscape-12:after, .prefix-ipad-landscape-12.gridle-debug:after {
      content: "prefix-ipad-landscape-12" !important; }
  .suffix-ipad-landscape-12 {
    margin-right: 100%; }
    .gridle-debug .suffix-ipad-landscape-12:after, .suffix-ipad-landscape-12.gridle-debug:after {
      content: "suffix-ipad-landscape-12" !important; }
  .float-ipad-landscape-left {
    float: left; }
    html.default .float-ipad-landscape-left {
      float: left; }
  .float-ipad-landscape-right {
    float: right; }
    html.default .float-ipad-landscape-right {
      float: right; }
  .clear-ipad-landscape {
    clear: both; }
    html.default .clear-ipad-landscape {
      clear: both; }
  .clear-ipad-landscape-left {
    clear: left; }
    html.default .clear-ipad-landscape-left {
      clear: left; }
  .clear-ipad-landscape-right {
    clear: right; }
    html.default .clear-ipad-landscape-right {
      clear: right; }
  .no-gutter-ipad-landscape,
  .no-margin-ipad-landscape {
    padding-left: 0;
    padding-right: 0; }
    html.default .no-gutter-ipad-landscape,
    html.default .no-margin-ipad-landscape {
      padding-left: 0;
      padding-right: 0; }
  .no-gutter-ipad-landscape-left,
  .no-margin-ipad-landscape-left {
    padding-left: 0; }
    html.default .no-gutter-ipad-landscape-left,
    html.default .no-margin-ipad-landscape-left {
      padding-left: 0; }
  .no-gutter-ipad-landscape-right,
  .no-margin-ipad-landscape-right {
    padding-right: 0; }
    html.default .no-gutter-ipad-landscape-right,
    html.default .no-margin-ipad-landscape-right {
      padding-right: 0; }
  .no-gutter-ipad-landscape-top,
  .no-margin-ipad-landscape-top {
    padding-top: 0; }
    html.default .no-gutter-ipad-landscape-top,
    html.default .no-margin-ipad-landscape-top {
      padding-top: 0; }
  .no-gutter-ipad-landscape-bottom,
  .no-margin-ipad-landscape-bottom {
    padding-bottom: 0; }
    html.default .no-gutter-ipad-landscape-bottom,
    html.default .no-margin-ipad-landscape-bottom {
      padding-bottom: 0; }
  .gutter-ipad-landscape,
  .margins-ipad-landscape {
    padding-left: 10px;
    padding-right: 10px; }
    html.default .gutter-ipad-landscape,
    html.default .margins-ipad-landscape {
      padding-left: 10px;
      padding-right: 10px; }
  .gutter-ipad-landscape-left,
  .margin-ipad-landscape-left {
    padding-left: 10px; }
    html.default .gutter-ipad-landscape-left,
    html.default .margin-ipad-landscape-left {
      padding-left: 10px; }
  .gutter-ipad-landscape-right,
  .margin-ipad-landscape-right {
    padding-right: 10px; }
    html.default .gutter-ipad-landscape-right,
    html.default .margin-ipad-landscape-right {
      padding-right: 10px; }
  .gutter-ipad-landscape-top,
  .margin-ipad-landscape-top {
    padding-top: 10px; }
    html.default .gutter-ipad-landscape-top,
    html.default .margin-ipad-landscape-top {
      padding-top: 10px; }
  .gutter-ipad-landscape-bottom,
  .margin-ipad-landscape-bottom {
    padding-bottom: 10px; }
    html.default .gutter-ipad-landscape-bottom,
    html.default .margin-ipad-landscape-bottom {
      padding-bottom: 10px; }
  .auto-height-ipad-landscape {
    height: inherit; }
  .centered-ipad-landscape {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  .parent-ipad-landscape {
    padding-left: 0;
    padding-right: 0; }
    html.default .parent-ipad-landscape {
      padding-left: 0;
      padding-right: 0; }
  .vertical-align-ipad-landscape-middle {
    font-size: 0;
    clear: both; }
    .vertical-align-ipad-landscape-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  .vertical-align-ipad-landscape-top {
    font-size: 0;
    clear: both; }
    .vertical-align-ipad-landscape-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  .vertical-align-ipad-landscape-bottom {
    font-size: 0;
    clear: both; }
    .vertical-align-ipad-landscape-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  /**
	 * Visible, hide, etc...
	 */
  .hide-ipad-landscape {
    display: none; }
  .not-visible-ipad-landscape {
    visibility: hidden; }
  .show-ipad-landscape {
    display: block; }
  .show-inline-ipad-landscape {
    display: inline-block; }
  .visible-ipad-landscape {
    visibility: visible; }
  /**
	 * Clear each class :
	 */
  .clear-each-ipad-landscape-2 > *:nth-child(2n+1) {
    clear: left; }
  .clear-each-ipad-landscape-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug .debug-color-ipad-landscape-1, .debug-color-ipad-landscape-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug .debug-color-ipad-landscape-2, .debug-color-ipad-landscape-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug .debug-color-ipad-landscape-3, .debug-color-ipad-landscape-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug .debug-color-ipad-landscape-4, .debug-color-ipad-landscape-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug .debug-color-ipad-landscape-5, .debug-color-ipad-landscape-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug .debug-color-ipad-landscape-6, .debug-color-ipad-landscape-6.gridle-debug {
    background-color: #b2d8ee; } }

html.ad-desktop {
  /**
	 * Visible, hide, etc...
	 */
  /**
	 * Clear each class :
	 */ }
  html.ad-desktop .grid-ad-desktop-1on5 {
    width: 20%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-1on5:before, html.ad-desktop .grid-ad-desktop-1on5.gridle-debug:before {
      content: "grid-ad-desktop-1" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-1on5.parent:before, html.ad-desktop .grid-ad-desktop-1on5.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-1" !important; }
  html.ad-desktop .push-ad-desktop-1on5 {
    left: 20%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-1on5:after, html.ad-desktop .push-ad-desktop-1on5.gridle-debug:after {
      content: "push-ad-desktop-1" !important; }
  html.ad-desktop .pull-ad-desktop-1on5 {
    right: 20%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-1on5:after, html.ad-desktop .pull-ad-desktop-1on5.gridle-debug:after {
      content: "pull-ad-desktop-1" !important; }
  html.ad-desktop .prefix-ad-desktop-1on5 {
    margin-left: 20%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-1on5:after, html.ad-desktop .prefix-ad-desktop-1on5.gridle-debug:after {
      content: "prefix-ad-desktop-1" !important; }
  html.ad-desktop .suffix-ad-desktop-1on5 {
    margin-right: 20%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-1on5:after, html.ad-desktop .suffix-ad-desktop-1on5.gridle-debug:after {
      content: "suffix-ad-desktop-1" !important; }
  html.ad-desktop .grid-ad-desktop-0 {
    width: 0%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-0:before, html.ad-desktop .grid-ad-desktop-0.gridle-debug:before {
      content: "grid-ad-desktop-0" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-0.parent:before, html.ad-desktop .grid-ad-desktop-0.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-0" !important; }
  html.ad-desktop .push-ad-desktop-0 {
    left: 0%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-0:after, html.ad-desktop .push-ad-desktop-0.gridle-debug:after {
      content: "push-ad-desktop-0" !important; }
  html.ad-desktop .pull-ad-desktop-0 {
    right: 0%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-0:after, html.ad-desktop .pull-ad-desktop-0.gridle-debug:after {
      content: "pull-ad-desktop-0" !important; }
  html.ad-desktop .prefix-ad-desktop-0 {
    margin-left: 0%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-0:after, html.ad-desktop .prefix-ad-desktop-0.gridle-debug:after {
      content: "prefix-ad-desktop-0" !important; }
  html.ad-desktop .suffix-ad-desktop-0 {
    margin-right: 0%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-0:after, html.ad-desktop .suffix-ad-desktop-0.gridle-debug:after {
      content: "suffix-ad-desktop-0" !important; }
  html.ad-desktop .grid-ad-desktop-1 {
    width: 8.33333%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-1:before, html.ad-desktop .grid-ad-desktop-1.gridle-debug:before {
      content: "grid-ad-desktop-1" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-1.parent:before, html.ad-desktop .grid-ad-desktop-1.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-1" !important; }
  html.ad-desktop .push-ad-desktop-1 {
    left: 8.33333%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-1:after, html.ad-desktop .push-ad-desktop-1.gridle-debug:after {
      content: "push-ad-desktop-1" !important; }
  html.ad-desktop .pull-ad-desktop-1 {
    right: 8.33333%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-1:after, html.ad-desktop .pull-ad-desktop-1.gridle-debug:after {
      content: "pull-ad-desktop-1" !important; }
  html.ad-desktop .prefix-ad-desktop-1 {
    margin-left: 8.33333%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-1:after, html.ad-desktop .prefix-ad-desktop-1.gridle-debug:after {
      content: "prefix-ad-desktop-1" !important; }
  html.ad-desktop .suffix-ad-desktop-1 {
    margin-right: 8.33333%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-1:after, html.ad-desktop .suffix-ad-desktop-1.gridle-debug:after {
      content: "suffix-ad-desktop-1" !important; }
  html.ad-desktop .grid-ad-desktop-2 {
    width: 16.66667%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-2:before, html.ad-desktop .grid-ad-desktop-2.gridle-debug:before {
      content: "grid-ad-desktop-2" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-2.parent:before, html.ad-desktop .grid-ad-desktop-2.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-2" !important; }
  html.ad-desktop .push-ad-desktop-2 {
    left: 16.66667%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-2:after, html.ad-desktop .push-ad-desktop-2.gridle-debug:after {
      content: "push-ad-desktop-2" !important; }
  html.ad-desktop .pull-ad-desktop-2 {
    right: 16.66667%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-2:after, html.ad-desktop .pull-ad-desktop-2.gridle-debug:after {
      content: "pull-ad-desktop-2" !important; }
  html.ad-desktop .prefix-ad-desktop-2 {
    margin-left: 16.66667%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-2:after, html.ad-desktop .prefix-ad-desktop-2.gridle-debug:after {
      content: "prefix-ad-desktop-2" !important; }
  html.ad-desktop .suffix-ad-desktop-2 {
    margin-right: 16.66667%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-2:after, html.ad-desktop .suffix-ad-desktop-2.gridle-debug:after {
      content: "suffix-ad-desktop-2" !important; }
  html.ad-desktop .grid-ad-desktop-3 {
    width: 25%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-3:before, html.ad-desktop .grid-ad-desktop-3.gridle-debug:before {
      content: "grid-ad-desktop-3" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-3.parent:before, html.ad-desktop .grid-ad-desktop-3.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-3" !important; }
  html.ad-desktop .push-ad-desktop-3 {
    left: 25%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-3:after, html.ad-desktop .push-ad-desktop-3.gridle-debug:after {
      content: "push-ad-desktop-3" !important; }
  html.ad-desktop .pull-ad-desktop-3 {
    right: 25%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-3:after, html.ad-desktop .pull-ad-desktop-3.gridle-debug:after {
      content: "pull-ad-desktop-3" !important; }
  html.ad-desktop .prefix-ad-desktop-3 {
    margin-left: 25%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-3:after, html.ad-desktop .prefix-ad-desktop-3.gridle-debug:after {
      content: "prefix-ad-desktop-3" !important; }
  html.ad-desktop .suffix-ad-desktop-3 {
    margin-right: 25%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-3:after, html.ad-desktop .suffix-ad-desktop-3.gridle-debug:after {
      content: "suffix-ad-desktop-3" !important; }
  html.ad-desktop .grid-ad-desktop-4 {
    width: 33.33333%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-4:before, html.ad-desktop .grid-ad-desktop-4.gridle-debug:before {
      content: "grid-ad-desktop-4" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-4.parent:before, html.ad-desktop .grid-ad-desktop-4.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-4" !important; }
  html.ad-desktop .push-ad-desktop-4 {
    left: 33.33333%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-4:after, html.ad-desktop .push-ad-desktop-4.gridle-debug:after {
      content: "push-ad-desktop-4" !important; }
  html.ad-desktop .pull-ad-desktop-4 {
    right: 33.33333%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-4:after, html.ad-desktop .pull-ad-desktop-4.gridle-debug:after {
      content: "pull-ad-desktop-4" !important; }
  html.ad-desktop .prefix-ad-desktop-4 {
    margin-left: 33.33333%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-4:after, html.ad-desktop .prefix-ad-desktop-4.gridle-debug:after {
      content: "prefix-ad-desktop-4" !important; }
  html.ad-desktop .suffix-ad-desktop-4 {
    margin-right: 33.33333%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-4:after, html.ad-desktop .suffix-ad-desktop-4.gridle-debug:after {
      content: "suffix-ad-desktop-4" !important; }
  html.ad-desktop .grid-ad-desktop-5 {
    width: 41.66667%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-5:before, html.ad-desktop .grid-ad-desktop-5.gridle-debug:before {
      content: "grid-ad-desktop-5" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-5.parent:before, html.ad-desktop .grid-ad-desktop-5.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-5" !important; }
  html.ad-desktop .push-ad-desktop-5 {
    left: 41.66667%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-5:after, html.ad-desktop .push-ad-desktop-5.gridle-debug:after {
      content: "push-ad-desktop-5" !important; }
  html.ad-desktop .pull-ad-desktop-5 {
    right: 41.66667%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-5:after, html.ad-desktop .pull-ad-desktop-5.gridle-debug:after {
      content: "pull-ad-desktop-5" !important; }
  html.ad-desktop .prefix-ad-desktop-5 {
    margin-left: 41.66667%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-5:after, html.ad-desktop .prefix-ad-desktop-5.gridle-debug:after {
      content: "prefix-ad-desktop-5" !important; }
  html.ad-desktop .suffix-ad-desktop-5 {
    margin-right: 41.66667%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-5:after, html.ad-desktop .suffix-ad-desktop-5.gridle-debug:after {
      content: "suffix-ad-desktop-5" !important; }
  html.ad-desktop .grid-ad-desktop-6 {
    width: 50%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-6:before, html.ad-desktop .grid-ad-desktop-6.gridle-debug:before {
      content: "grid-ad-desktop-6" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-6.parent:before, html.ad-desktop .grid-ad-desktop-6.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-6" !important; }
  html.ad-desktop .push-ad-desktop-6 {
    left: 50%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-6:after, html.ad-desktop .push-ad-desktop-6.gridle-debug:after {
      content: "push-ad-desktop-6" !important; }
  html.ad-desktop .pull-ad-desktop-6 {
    right: 50%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-6:after, html.ad-desktop .pull-ad-desktop-6.gridle-debug:after {
      content: "pull-ad-desktop-6" !important; }
  html.ad-desktop .prefix-ad-desktop-6 {
    margin-left: 50%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-6:after, html.ad-desktop .prefix-ad-desktop-6.gridle-debug:after {
      content: "prefix-ad-desktop-6" !important; }
  html.ad-desktop .suffix-ad-desktop-6 {
    margin-right: 50%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-6:after, html.ad-desktop .suffix-ad-desktop-6.gridle-debug:after {
      content: "suffix-ad-desktop-6" !important; }
  html.ad-desktop .grid-ad-desktop-7 {
    width: 58.33333%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-7:before, html.ad-desktop .grid-ad-desktop-7.gridle-debug:before {
      content: "grid-ad-desktop-7" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-7.parent:before, html.ad-desktop .grid-ad-desktop-7.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-7" !important; }
  html.ad-desktop .push-ad-desktop-7 {
    left: 58.33333%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-7:after, html.ad-desktop .push-ad-desktop-7.gridle-debug:after {
      content: "push-ad-desktop-7" !important; }
  html.ad-desktop .pull-ad-desktop-7 {
    right: 58.33333%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-7:after, html.ad-desktop .pull-ad-desktop-7.gridle-debug:after {
      content: "pull-ad-desktop-7" !important; }
  html.ad-desktop .prefix-ad-desktop-7 {
    margin-left: 58.33333%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-7:after, html.ad-desktop .prefix-ad-desktop-7.gridle-debug:after {
      content: "prefix-ad-desktop-7" !important; }
  html.ad-desktop .suffix-ad-desktop-7 {
    margin-right: 58.33333%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-7:after, html.ad-desktop .suffix-ad-desktop-7.gridle-debug:after {
      content: "suffix-ad-desktop-7" !important; }
  html.ad-desktop .grid-ad-desktop-8 {
    width: 66.66667%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-8:before, html.ad-desktop .grid-ad-desktop-8.gridle-debug:before {
      content: "grid-ad-desktop-8" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-8.parent:before, html.ad-desktop .grid-ad-desktop-8.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-8" !important; }
  html.ad-desktop .push-ad-desktop-8 {
    left: 66.66667%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-8:after, html.ad-desktop .push-ad-desktop-8.gridle-debug:after {
      content: "push-ad-desktop-8" !important; }
  html.ad-desktop .pull-ad-desktop-8 {
    right: 66.66667%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-8:after, html.ad-desktop .pull-ad-desktop-8.gridle-debug:after {
      content: "pull-ad-desktop-8" !important; }
  html.ad-desktop .prefix-ad-desktop-8 {
    margin-left: 66.66667%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-8:after, html.ad-desktop .prefix-ad-desktop-8.gridle-debug:after {
      content: "prefix-ad-desktop-8" !important; }
  html.ad-desktop .suffix-ad-desktop-8 {
    margin-right: 66.66667%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-8:after, html.ad-desktop .suffix-ad-desktop-8.gridle-debug:after {
      content: "suffix-ad-desktop-8" !important; }
  html.ad-desktop .grid-ad-desktop-9 {
    width: 75%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-9:before, html.ad-desktop .grid-ad-desktop-9.gridle-debug:before {
      content: "grid-ad-desktop-9" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-9.parent:before, html.ad-desktop .grid-ad-desktop-9.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-9" !important; }
  html.ad-desktop .push-ad-desktop-9 {
    left: 75%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-9:after, html.ad-desktop .push-ad-desktop-9.gridle-debug:after {
      content: "push-ad-desktop-9" !important; }
  html.ad-desktop .pull-ad-desktop-9 {
    right: 75%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-9:after, html.ad-desktop .pull-ad-desktop-9.gridle-debug:after {
      content: "pull-ad-desktop-9" !important; }
  html.ad-desktop .prefix-ad-desktop-9 {
    margin-left: 75%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-9:after, html.ad-desktop .prefix-ad-desktop-9.gridle-debug:after {
      content: "prefix-ad-desktop-9" !important; }
  html.ad-desktop .suffix-ad-desktop-9 {
    margin-right: 75%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-9:after, html.ad-desktop .suffix-ad-desktop-9.gridle-debug:after {
      content: "suffix-ad-desktop-9" !important; }
  html.ad-desktop .grid-ad-desktop-10 {
    width: 83.33333%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-10:before, html.ad-desktop .grid-ad-desktop-10.gridle-debug:before {
      content: "grid-ad-desktop-10" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-10.parent:before, html.ad-desktop .grid-ad-desktop-10.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-10" !important; }
  html.ad-desktop .push-ad-desktop-10 {
    left: 83.33333%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-10:after, html.ad-desktop .push-ad-desktop-10.gridle-debug:after {
      content: "push-ad-desktop-10" !important; }
  html.ad-desktop .pull-ad-desktop-10 {
    right: 83.33333%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-10:after, html.ad-desktop .pull-ad-desktop-10.gridle-debug:after {
      content: "pull-ad-desktop-10" !important; }
  html.ad-desktop .prefix-ad-desktop-10 {
    margin-left: 83.33333%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-10:after, html.ad-desktop .prefix-ad-desktop-10.gridle-debug:after {
      content: "prefix-ad-desktop-10" !important; }
  html.ad-desktop .suffix-ad-desktop-10 {
    margin-right: 83.33333%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-10:after, html.ad-desktop .suffix-ad-desktop-10.gridle-debug:after {
      content: "suffix-ad-desktop-10" !important; }
  html.ad-desktop .grid-ad-desktop-11 {
    width: 91.66667%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-11:before, html.ad-desktop .grid-ad-desktop-11.gridle-debug:before {
      content: "grid-ad-desktop-11" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-11.parent:before, html.ad-desktop .grid-ad-desktop-11.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-11" !important; }
  html.ad-desktop .push-ad-desktop-11 {
    left: 91.66667%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-11:after, html.ad-desktop .push-ad-desktop-11.gridle-debug:after {
      content: "push-ad-desktop-11" !important; }
  html.ad-desktop .pull-ad-desktop-11 {
    right: 91.66667%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-11:after, html.ad-desktop .pull-ad-desktop-11.gridle-debug:after {
      content: "pull-ad-desktop-11" !important; }
  html.ad-desktop .prefix-ad-desktop-11 {
    margin-left: 91.66667%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-11:after, html.ad-desktop .prefix-ad-desktop-11.gridle-debug:after {
      content: "prefix-ad-desktop-11" !important; }
  html.ad-desktop .suffix-ad-desktop-11 {
    margin-right: 91.66667%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-11:after, html.ad-desktop .suffix-ad-desktop-11.gridle-debug:after {
      content: "suffix-ad-desktop-11" !important; }
  html.ad-desktop .grid-ad-desktop-12 {
    width: 100%; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-12:before, html.ad-desktop .grid-ad-desktop-12.gridle-debug:before {
      content: "grid-ad-desktop-12" !important; }
    .gridle-debug html.ad-desktop .grid-ad-desktop-12.parent:before, html.ad-desktop .grid-ad-desktop-12.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-12" !important; }
  html.ad-desktop .push-ad-desktop-12 {
    left: 100%; }
    .gridle-debug html.ad-desktop .push-ad-desktop-12:after, html.ad-desktop .push-ad-desktop-12.gridle-debug:after {
      content: "push-ad-desktop-12" !important; }
  html.ad-desktop .pull-ad-desktop-12 {
    right: 100%; }
    .gridle-debug html.ad-desktop .pull-ad-desktop-12:after, html.ad-desktop .pull-ad-desktop-12.gridle-debug:after {
      content: "pull-ad-desktop-12" !important; }
  html.ad-desktop .prefix-ad-desktop-12 {
    margin-left: 100%; }
    .gridle-debug html.ad-desktop .prefix-ad-desktop-12:after, html.ad-desktop .prefix-ad-desktop-12.gridle-debug:after {
      content: "prefix-ad-desktop-12" !important; }
  html.ad-desktop .suffix-ad-desktop-12 {
    margin-right: 100%; }
    .gridle-debug html.ad-desktop .suffix-ad-desktop-12:after, html.ad-desktop .suffix-ad-desktop-12.gridle-debug:after {
      content: "suffix-ad-desktop-12" !important; }
  html.ad-desktop .float-ad-desktop-left {
    float: left; }
    html.default html.ad-desktop .float-ad-desktop-left {
      float: left; }
  html.ad-desktop .float-ad-desktop-right {
    float: right; }
    html.default html.ad-desktop .float-ad-desktop-right {
      float: right; }
  html.ad-desktop .clear-ad-desktop {
    clear: both; }
    html.default html.ad-desktop .clear-ad-desktop {
      clear: both; }
  html.ad-desktop .clear-ad-desktop-left {
    clear: left; }
    html.default html.ad-desktop .clear-ad-desktop-left {
      clear: left; }
  html.ad-desktop .clear-ad-desktop-right {
    clear: right; }
    html.default html.ad-desktop .clear-ad-desktop-right {
      clear: right; }
  html.ad-desktop .no-gutter-ad-desktop,
  html.ad-desktop .no-margin-ad-desktop {
    padding-left: 0;
    padding-right: 0; }
    html.default html.ad-desktop .no-gutter-ad-desktop,
    html.default html.ad-desktop .no-margin-ad-desktop {
      padding-left: 0;
      padding-right: 0; }
  html.ad-desktop .no-gutter-ad-desktop-left,
  html.ad-desktop .no-margin-ad-desktop-left {
    padding-left: 0; }
    html.default html.ad-desktop .no-gutter-ad-desktop-left,
    html.default html.ad-desktop .no-margin-ad-desktop-left {
      padding-left: 0; }
  html.ad-desktop .no-gutter-ad-desktop-right,
  html.ad-desktop .no-margin-ad-desktop-right {
    padding-right: 0; }
    html.default html.ad-desktop .no-gutter-ad-desktop-right,
    html.default html.ad-desktop .no-margin-ad-desktop-right {
      padding-right: 0; }
  html.ad-desktop .no-gutter-ad-desktop-top,
  html.ad-desktop .no-margin-ad-desktop-top {
    padding-top: 0; }
    html.default html.ad-desktop .no-gutter-ad-desktop-top,
    html.default html.ad-desktop .no-margin-ad-desktop-top {
      padding-top: 0; }
  html.ad-desktop .no-gutter-ad-desktop-bottom,
  html.ad-desktop .no-margin-ad-desktop-bottom {
    padding-bottom: 0; }
    html.default html.ad-desktop .no-gutter-ad-desktop-bottom,
    html.default html.ad-desktop .no-margin-ad-desktop-bottom {
      padding-bottom: 0; }
  html.ad-desktop .gutter-ad-desktop,
  html.ad-desktop .margins-ad-desktop {
    padding-left: 10px;
    padding-right: 10px; }
    html.default html.ad-desktop .gutter-ad-desktop,
    html.default html.ad-desktop .margins-ad-desktop {
      padding-left: 10px;
      padding-right: 10px; }
  html.ad-desktop .gutter-ad-desktop-left,
  html.ad-desktop .margin-ad-desktop-left {
    padding-left: 10px; }
    html.default html.ad-desktop .gutter-ad-desktop-left,
    html.default html.ad-desktop .margin-ad-desktop-left {
      padding-left: 10px; }
  html.ad-desktop .gutter-ad-desktop-right,
  html.ad-desktop .margin-ad-desktop-right {
    padding-right: 10px; }
    html.default html.ad-desktop .gutter-ad-desktop-right,
    html.default html.ad-desktop .margin-ad-desktop-right {
      padding-right: 10px; }
  html.ad-desktop .gutter-ad-desktop-top,
  html.ad-desktop .margin-ad-desktop-top {
    padding-top: 10px; }
    html.default html.ad-desktop .gutter-ad-desktop-top,
    html.default html.ad-desktop .margin-ad-desktop-top {
      padding-top: 10px; }
  html.ad-desktop .gutter-ad-desktop-bottom,
  html.ad-desktop .margin-ad-desktop-bottom {
    padding-bottom: 10px; }
    html.default html.ad-desktop .gutter-ad-desktop-bottom,
    html.default html.ad-desktop .margin-ad-desktop-bottom {
      padding-bottom: 10px; }
  html.ad-desktop .auto-height-ad-desktop {
    height: inherit; }
  html.ad-desktop .centered-ad-desktop {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  html.ad-desktop .parent-ad-desktop {
    padding-left: 0;
    padding-right: 0; }
    html.default html.ad-desktop .parent-ad-desktop {
      padding-left: 0;
      padding-right: 0; }
  html.ad-desktop .vertical-align-ad-desktop-middle {
    font-size: 0;
    clear: both; }
    html.ad-desktop .vertical-align-ad-desktop-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  html.ad-desktop .vertical-align-ad-desktop-top {
    font-size: 0;
    clear: both; }
    html.ad-desktop .vertical-align-ad-desktop-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  html.ad-desktop .vertical-align-ad-desktop-bottom {
    font-size: 0;
    clear: both; }
    html.ad-desktop .vertical-align-ad-desktop-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  html.ad-desktop .hide-ad-desktop {
    display: none; }
  html.ad-desktop .not-visible-ad-desktop {
    visibility: hidden; }
  html.ad-desktop .show-ad-desktop {
    display: block; }
  html.ad-desktop .show-inline-ad-desktop {
    display: inline-block; }
  html.ad-desktop .visible-ad-desktop {
    visibility: visible; }
  html.ad-desktop .clear-each-ad-desktop-2 > *:nth-child(2n+1) {
    clear: left; }
  html.ad-desktop .clear-each-ad-desktop-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug html.ad-desktop .debug-color-ad-desktop-1, html.ad-desktop .debug-color-ad-desktop-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug html.ad-desktop .debug-color-ad-desktop-2, html.ad-desktop .debug-color-ad-desktop-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug html.ad-desktop .debug-color-ad-desktop-3, html.ad-desktop .debug-color-ad-desktop-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug html.ad-desktop .debug-color-ad-desktop-4, html.ad-desktop .debug-color-ad-desktop-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug html.ad-desktop .debug-color-ad-desktop-5, html.ad-desktop .debug-color-ad-desktop-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug html.ad-desktop .debug-color-ad-desktop-6, html.ad-desktop .debug-color-ad-desktop-6.gridle-debug {
    background-color: #b2d8ee; }

@media screen and (min-width: 1280px) {
  .grid-ad-desktop-1on5 {
    width: 20%; }
    .gridle-debug .grid-ad-desktop-1on5:before, .grid-ad-desktop-1on5.gridle-debug:before {
      content: "grid-ad-desktop-1" !important; }
    .gridle-debug .grid-ad-desktop-1on5.parent:before, .grid-ad-desktop-1on5.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-1" !important; }
  .push-ad-desktop-1on5 {
    left: 20%; }
    .gridle-debug .push-ad-desktop-1on5:after, .push-ad-desktop-1on5.gridle-debug:after {
      content: "push-ad-desktop-1" !important; }
  .pull-ad-desktop-1on5 {
    right: 20%; }
    .gridle-debug .pull-ad-desktop-1on5:after, .pull-ad-desktop-1on5.gridle-debug:after {
      content: "pull-ad-desktop-1" !important; }
  .prefix-ad-desktop-1on5 {
    margin-left: 20%; }
    .gridle-debug .prefix-ad-desktop-1on5:after, .prefix-ad-desktop-1on5.gridle-debug:after {
      content: "prefix-ad-desktop-1" !important; }
  .suffix-ad-desktop-1on5 {
    margin-right: 20%; }
    .gridle-debug .suffix-ad-desktop-1on5:after, .suffix-ad-desktop-1on5.gridle-debug:after {
      content: "suffix-ad-desktop-1" !important; }
  .grid-ad-desktop-0 {
    width: 0%; }
    .gridle-debug .grid-ad-desktop-0:before, .grid-ad-desktop-0.gridle-debug:before {
      content: "grid-ad-desktop-0" !important; }
    .gridle-debug .grid-ad-desktop-0.parent:before, .grid-ad-desktop-0.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-0" !important; }
  .push-ad-desktop-0 {
    left: 0%; }
    .gridle-debug .push-ad-desktop-0:after, .push-ad-desktop-0.gridle-debug:after {
      content: "push-ad-desktop-0" !important; }
  .pull-ad-desktop-0 {
    right: 0%; }
    .gridle-debug .pull-ad-desktop-0:after, .pull-ad-desktop-0.gridle-debug:after {
      content: "pull-ad-desktop-0" !important; }
  .prefix-ad-desktop-0 {
    margin-left: 0%; }
    .gridle-debug .prefix-ad-desktop-0:after, .prefix-ad-desktop-0.gridle-debug:after {
      content: "prefix-ad-desktop-0" !important; }
  .suffix-ad-desktop-0 {
    margin-right: 0%; }
    .gridle-debug .suffix-ad-desktop-0:after, .suffix-ad-desktop-0.gridle-debug:after {
      content: "suffix-ad-desktop-0" !important; }
  .grid-ad-desktop-1 {
    width: 8.33333%; }
    .gridle-debug .grid-ad-desktop-1:before, .grid-ad-desktop-1.gridle-debug:before {
      content: "grid-ad-desktop-1" !important; }
    .gridle-debug .grid-ad-desktop-1.parent:before, .grid-ad-desktop-1.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-1" !important; }
  .push-ad-desktop-1 {
    left: 8.33333%; }
    .gridle-debug .push-ad-desktop-1:after, .push-ad-desktop-1.gridle-debug:after {
      content: "push-ad-desktop-1" !important; }
  .pull-ad-desktop-1 {
    right: 8.33333%; }
    .gridle-debug .pull-ad-desktop-1:after, .pull-ad-desktop-1.gridle-debug:after {
      content: "pull-ad-desktop-1" !important; }
  .prefix-ad-desktop-1 {
    margin-left: 8.33333%; }
    .gridle-debug .prefix-ad-desktop-1:after, .prefix-ad-desktop-1.gridle-debug:after {
      content: "prefix-ad-desktop-1" !important; }
  .suffix-ad-desktop-1 {
    margin-right: 8.33333%; }
    .gridle-debug .suffix-ad-desktop-1:after, .suffix-ad-desktop-1.gridle-debug:after {
      content: "suffix-ad-desktop-1" !important; }
  .grid-ad-desktop-2 {
    width: 16.66667%; }
    .gridle-debug .grid-ad-desktop-2:before, .grid-ad-desktop-2.gridle-debug:before {
      content: "grid-ad-desktop-2" !important; }
    .gridle-debug .grid-ad-desktop-2.parent:before, .grid-ad-desktop-2.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-2" !important; }
  .push-ad-desktop-2 {
    left: 16.66667%; }
    .gridle-debug .push-ad-desktop-2:after, .push-ad-desktop-2.gridle-debug:after {
      content: "push-ad-desktop-2" !important; }
  .pull-ad-desktop-2 {
    right: 16.66667%; }
    .gridle-debug .pull-ad-desktop-2:after, .pull-ad-desktop-2.gridle-debug:after {
      content: "pull-ad-desktop-2" !important; }
  .prefix-ad-desktop-2 {
    margin-left: 16.66667%; }
    .gridle-debug .prefix-ad-desktop-2:after, .prefix-ad-desktop-2.gridle-debug:after {
      content: "prefix-ad-desktop-2" !important; }
  .suffix-ad-desktop-2 {
    margin-right: 16.66667%; }
    .gridle-debug .suffix-ad-desktop-2:after, .suffix-ad-desktop-2.gridle-debug:after {
      content: "suffix-ad-desktop-2" !important; }
  .grid-ad-desktop-3 {
    width: 25%; }
    .gridle-debug .grid-ad-desktop-3:before, .grid-ad-desktop-3.gridle-debug:before {
      content: "grid-ad-desktop-3" !important; }
    .gridle-debug .grid-ad-desktop-3.parent:before, .grid-ad-desktop-3.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-3" !important; }
  .push-ad-desktop-3 {
    left: 25%; }
    .gridle-debug .push-ad-desktop-3:after, .push-ad-desktop-3.gridle-debug:after {
      content: "push-ad-desktop-3" !important; }
  .pull-ad-desktop-3 {
    right: 25%; }
    .gridle-debug .pull-ad-desktop-3:after, .pull-ad-desktop-3.gridle-debug:after {
      content: "pull-ad-desktop-3" !important; }
  .prefix-ad-desktop-3 {
    margin-left: 25%; }
    .gridle-debug .prefix-ad-desktop-3:after, .prefix-ad-desktop-3.gridle-debug:after {
      content: "prefix-ad-desktop-3" !important; }
  .suffix-ad-desktop-3 {
    margin-right: 25%; }
    .gridle-debug .suffix-ad-desktop-3:after, .suffix-ad-desktop-3.gridle-debug:after {
      content: "suffix-ad-desktop-3" !important; }
  .grid-ad-desktop-4 {
    width: 33.33333%; }
    .gridle-debug .grid-ad-desktop-4:before, .grid-ad-desktop-4.gridle-debug:before {
      content: "grid-ad-desktop-4" !important; }
    .gridle-debug .grid-ad-desktop-4.parent:before, .grid-ad-desktop-4.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-4" !important; }
  .push-ad-desktop-4 {
    left: 33.33333%; }
    .gridle-debug .push-ad-desktop-4:after, .push-ad-desktop-4.gridle-debug:after {
      content: "push-ad-desktop-4" !important; }
  .pull-ad-desktop-4 {
    right: 33.33333%; }
    .gridle-debug .pull-ad-desktop-4:after, .pull-ad-desktop-4.gridle-debug:after {
      content: "pull-ad-desktop-4" !important; }
  .prefix-ad-desktop-4 {
    margin-left: 33.33333%; }
    .gridle-debug .prefix-ad-desktop-4:after, .prefix-ad-desktop-4.gridle-debug:after {
      content: "prefix-ad-desktop-4" !important; }
  .suffix-ad-desktop-4 {
    margin-right: 33.33333%; }
    .gridle-debug .suffix-ad-desktop-4:after, .suffix-ad-desktop-4.gridle-debug:after {
      content: "suffix-ad-desktop-4" !important; }
  .grid-ad-desktop-5 {
    width: 41.66667%; }
    .gridle-debug .grid-ad-desktop-5:before, .grid-ad-desktop-5.gridle-debug:before {
      content: "grid-ad-desktop-5" !important; }
    .gridle-debug .grid-ad-desktop-5.parent:before, .grid-ad-desktop-5.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-5" !important; }
  .push-ad-desktop-5 {
    left: 41.66667%; }
    .gridle-debug .push-ad-desktop-5:after, .push-ad-desktop-5.gridle-debug:after {
      content: "push-ad-desktop-5" !important; }
  .pull-ad-desktop-5 {
    right: 41.66667%; }
    .gridle-debug .pull-ad-desktop-5:after, .pull-ad-desktop-5.gridle-debug:after {
      content: "pull-ad-desktop-5" !important; }
  .prefix-ad-desktop-5 {
    margin-left: 41.66667%; }
    .gridle-debug .prefix-ad-desktop-5:after, .prefix-ad-desktop-5.gridle-debug:after {
      content: "prefix-ad-desktop-5" !important; }
  .suffix-ad-desktop-5 {
    margin-right: 41.66667%; }
    .gridle-debug .suffix-ad-desktop-5:after, .suffix-ad-desktop-5.gridle-debug:after {
      content: "suffix-ad-desktop-5" !important; }
  .grid-ad-desktop-6 {
    width: 50%; }
    .gridle-debug .grid-ad-desktop-6:before, .grid-ad-desktop-6.gridle-debug:before {
      content: "grid-ad-desktop-6" !important; }
    .gridle-debug .grid-ad-desktop-6.parent:before, .grid-ad-desktop-6.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-6" !important; }
  .push-ad-desktop-6 {
    left: 50%; }
    .gridle-debug .push-ad-desktop-6:after, .push-ad-desktop-6.gridle-debug:after {
      content: "push-ad-desktop-6" !important; }
  .pull-ad-desktop-6 {
    right: 50%; }
    .gridle-debug .pull-ad-desktop-6:after, .pull-ad-desktop-6.gridle-debug:after {
      content: "pull-ad-desktop-6" !important; }
  .prefix-ad-desktop-6 {
    margin-left: 50%; }
    .gridle-debug .prefix-ad-desktop-6:after, .prefix-ad-desktop-6.gridle-debug:after {
      content: "prefix-ad-desktop-6" !important; }
  .suffix-ad-desktop-6 {
    margin-right: 50%; }
    .gridle-debug .suffix-ad-desktop-6:after, .suffix-ad-desktop-6.gridle-debug:after {
      content: "suffix-ad-desktop-6" !important; }
  .grid-ad-desktop-7 {
    width: 58.33333%; }
    .gridle-debug .grid-ad-desktop-7:before, .grid-ad-desktop-7.gridle-debug:before {
      content: "grid-ad-desktop-7" !important; }
    .gridle-debug .grid-ad-desktop-7.parent:before, .grid-ad-desktop-7.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-7" !important; }
  .push-ad-desktop-7 {
    left: 58.33333%; }
    .gridle-debug .push-ad-desktop-7:after, .push-ad-desktop-7.gridle-debug:after {
      content: "push-ad-desktop-7" !important; }
  .pull-ad-desktop-7 {
    right: 58.33333%; }
    .gridle-debug .pull-ad-desktop-7:after, .pull-ad-desktop-7.gridle-debug:after {
      content: "pull-ad-desktop-7" !important; }
  .prefix-ad-desktop-7 {
    margin-left: 58.33333%; }
    .gridle-debug .prefix-ad-desktop-7:after, .prefix-ad-desktop-7.gridle-debug:after {
      content: "prefix-ad-desktop-7" !important; }
  .suffix-ad-desktop-7 {
    margin-right: 58.33333%; }
    .gridle-debug .suffix-ad-desktop-7:after, .suffix-ad-desktop-7.gridle-debug:after {
      content: "suffix-ad-desktop-7" !important; }
  .grid-ad-desktop-8 {
    width: 66.66667%; }
    .gridle-debug .grid-ad-desktop-8:before, .grid-ad-desktop-8.gridle-debug:before {
      content: "grid-ad-desktop-8" !important; }
    .gridle-debug .grid-ad-desktop-8.parent:before, .grid-ad-desktop-8.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-8" !important; }
  .push-ad-desktop-8 {
    left: 66.66667%; }
    .gridle-debug .push-ad-desktop-8:after, .push-ad-desktop-8.gridle-debug:after {
      content: "push-ad-desktop-8" !important; }
  .pull-ad-desktop-8 {
    right: 66.66667%; }
    .gridle-debug .pull-ad-desktop-8:after, .pull-ad-desktop-8.gridle-debug:after {
      content: "pull-ad-desktop-8" !important; }
  .prefix-ad-desktop-8 {
    margin-left: 66.66667%; }
    .gridle-debug .prefix-ad-desktop-8:after, .prefix-ad-desktop-8.gridle-debug:after {
      content: "prefix-ad-desktop-8" !important; }
  .suffix-ad-desktop-8 {
    margin-right: 66.66667%; }
    .gridle-debug .suffix-ad-desktop-8:after, .suffix-ad-desktop-8.gridle-debug:after {
      content: "suffix-ad-desktop-8" !important; }
  .grid-ad-desktop-9 {
    width: 75%; }
    .gridle-debug .grid-ad-desktop-9:before, .grid-ad-desktop-9.gridle-debug:before {
      content: "grid-ad-desktop-9" !important; }
    .gridle-debug .grid-ad-desktop-9.parent:before, .grid-ad-desktop-9.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-9" !important; }
  .push-ad-desktop-9 {
    left: 75%; }
    .gridle-debug .push-ad-desktop-9:after, .push-ad-desktop-9.gridle-debug:after {
      content: "push-ad-desktop-9" !important; }
  .pull-ad-desktop-9 {
    right: 75%; }
    .gridle-debug .pull-ad-desktop-9:after, .pull-ad-desktop-9.gridle-debug:after {
      content: "pull-ad-desktop-9" !important; }
  .prefix-ad-desktop-9 {
    margin-left: 75%; }
    .gridle-debug .prefix-ad-desktop-9:after, .prefix-ad-desktop-9.gridle-debug:after {
      content: "prefix-ad-desktop-9" !important; }
  .suffix-ad-desktop-9 {
    margin-right: 75%; }
    .gridle-debug .suffix-ad-desktop-9:after, .suffix-ad-desktop-9.gridle-debug:after {
      content: "suffix-ad-desktop-9" !important; }
  .grid-ad-desktop-10 {
    width: 83.33333%; }
    .gridle-debug .grid-ad-desktop-10:before, .grid-ad-desktop-10.gridle-debug:before {
      content: "grid-ad-desktop-10" !important; }
    .gridle-debug .grid-ad-desktop-10.parent:before, .grid-ad-desktop-10.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-10" !important; }
  .push-ad-desktop-10 {
    left: 83.33333%; }
    .gridle-debug .push-ad-desktop-10:after, .push-ad-desktop-10.gridle-debug:after {
      content: "push-ad-desktop-10" !important; }
  .pull-ad-desktop-10 {
    right: 83.33333%; }
    .gridle-debug .pull-ad-desktop-10:after, .pull-ad-desktop-10.gridle-debug:after {
      content: "pull-ad-desktop-10" !important; }
  .prefix-ad-desktop-10 {
    margin-left: 83.33333%; }
    .gridle-debug .prefix-ad-desktop-10:after, .prefix-ad-desktop-10.gridle-debug:after {
      content: "prefix-ad-desktop-10" !important; }
  .suffix-ad-desktop-10 {
    margin-right: 83.33333%; }
    .gridle-debug .suffix-ad-desktop-10:after, .suffix-ad-desktop-10.gridle-debug:after {
      content: "suffix-ad-desktop-10" !important; }
  .grid-ad-desktop-11 {
    width: 91.66667%; }
    .gridle-debug .grid-ad-desktop-11:before, .grid-ad-desktop-11.gridle-debug:before {
      content: "grid-ad-desktop-11" !important; }
    .gridle-debug .grid-ad-desktop-11.parent:before, .grid-ad-desktop-11.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-11" !important; }
  .push-ad-desktop-11 {
    left: 91.66667%; }
    .gridle-debug .push-ad-desktop-11:after, .push-ad-desktop-11.gridle-debug:after {
      content: "push-ad-desktop-11" !important; }
  .pull-ad-desktop-11 {
    right: 91.66667%; }
    .gridle-debug .pull-ad-desktop-11:after, .pull-ad-desktop-11.gridle-debug:after {
      content: "pull-ad-desktop-11" !important; }
  .prefix-ad-desktop-11 {
    margin-left: 91.66667%; }
    .gridle-debug .prefix-ad-desktop-11:after, .prefix-ad-desktop-11.gridle-debug:after {
      content: "prefix-ad-desktop-11" !important; }
  .suffix-ad-desktop-11 {
    margin-right: 91.66667%; }
    .gridle-debug .suffix-ad-desktop-11:after, .suffix-ad-desktop-11.gridle-debug:after {
      content: "suffix-ad-desktop-11" !important; }
  .grid-ad-desktop-12 {
    width: 100%; }
    .gridle-debug .grid-ad-desktop-12:before, .grid-ad-desktop-12.gridle-debug:before {
      content: "grid-ad-desktop-12" !important; }
    .gridle-debug .grid-ad-desktop-12.parent:before, .grid-ad-desktop-12.gridle-debug.parent:before {
      content: "grid-parent-ad-desktop-12" !important; }
  .push-ad-desktop-12 {
    left: 100%; }
    .gridle-debug .push-ad-desktop-12:after, .push-ad-desktop-12.gridle-debug:after {
      content: "push-ad-desktop-12" !important; }
  .pull-ad-desktop-12 {
    right: 100%; }
    .gridle-debug .pull-ad-desktop-12:after, .pull-ad-desktop-12.gridle-debug:after {
      content: "pull-ad-desktop-12" !important; }
  .prefix-ad-desktop-12 {
    margin-left: 100%; }
    .gridle-debug .prefix-ad-desktop-12:after, .prefix-ad-desktop-12.gridle-debug:after {
      content: "prefix-ad-desktop-12" !important; }
  .suffix-ad-desktop-12 {
    margin-right: 100%; }
    .gridle-debug .suffix-ad-desktop-12:after, .suffix-ad-desktop-12.gridle-debug:after {
      content: "suffix-ad-desktop-12" !important; }
  .float-ad-desktop-left {
    float: left; }
    html.default .float-ad-desktop-left {
      float: left; }
  .float-ad-desktop-right {
    float: right; }
    html.default .float-ad-desktop-right {
      float: right; }
  .clear-ad-desktop {
    clear: both; }
    html.default .clear-ad-desktop {
      clear: both; }
  .clear-ad-desktop-left {
    clear: left; }
    html.default .clear-ad-desktop-left {
      clear: left; }
  .clear-ad-desktop-right {
    clear: right; }
    html.default .clear-ad-desktop-right {
      clear: right; }
  .no-gutter-ad-desktop,
  .no-margin-ad-desktop {
    padding-left: 0;
    padding-right: 0; }
    html.default .no-gutter-ad-desktop,
    html.default .no-margin-ad-desktop {
      padding-left: 0;
      padding-right: 0; }
  .no-gutter-ad-desktop-left,
  .no-margin-ad-desktop-left {
    padding-left: 0; }
    html.default .no-gutter-ad-desktop-left,
    html.default .no-margin-ad-desktop-left {
      padding-left: 0; }
  .no-gutter-ad-desktop-right,
  .no-margin-ad-desktop-right {
    padding-right: 0; }
    html.default .no-gutter-ad-desktop-right,
    html.default .no-margin-ad-desktop-right {
      padding-right: 0; }
  .no-gutter-ad-desktop-top,
  .no-margin-ad-desktop-top {
    padding-top: 0; }
    html.default .no-gutter-ad-desktop-top,
    html.default .no-margin-ad-desktop-top {
      padding-top: 0; }
  .no-gutter-ad-desktop-bottom,
  .no-margin-ad-desktop-bottom {
    padding-bottom: 0; }
    html.default .no-gutter-ad-desktop-bottom,
    html.default .no-margin-ad-desktop-bottom {
      padding-bottom: 0; }
  .gutter-ad-desktop,
  .margins-ad-desktop {
    padding-left: 10px;
    padding-right: 10px; }
    html.default .gutter-ad-desktop,
    html.default .margins-ad-desktop {
      padding-left: 10px;
      padding-right: 10px; }
  .gutter-ad-desktop-left,
  .margin-ad-desktop-left {
    padding-left: 10px; }
    html.default .gutter-ad-desktop-left,
    html.default .margin-ad-desktop-left {
      padding-left: 10px; }
  .gutter-ad-desktop-right,
  .margin-ad-desktop-right {
    padding-right: 10px; }
    html.default .gutter-ad-desktop-right,
    html.default .margin-ad-desktop-right {
      padding-right: 10px; }
  .gutter-ad-desktop-top,
  .margin-ad-desktop-top {
    padding-top: 10px; }
    html.default .gutter-ad-desktop-top,
    html.default .margin-ad-desktop-top {
      padding-top: 10px; }
  .gutter-ad-desktop-bottom,
  .margin-ad-desktop-bottom {
    padding-bottom: 10px; }
    html.default .gutter-ad-desktop-bottom,
    html.default .margin-ad-desktop-bottom {
      padding-bottom: 10px; }
  .auto-height-ad-desktop {
    height: inherit; }
  .centered-ad-desktop {
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important; }
  .parent-ad-desktop {
    padding-left: 0;
    padding-right: 0; }
    html.default .parent-ad-desktop {
      padding-left: 0;
      padding-right: 0; }
  .vertical-align-ad-desktop-middle {
    font-size: 0;
    clear: both; }
    .vertical-align-ad-desktop-middle > * {
      display: inline-block;
      float: none !important;
      vertical-align: middle;
      font-size: 1rem; }
  .vertical-align-ad-desktop-top {
    font-size: 0;
    clear: both; }
    .vertical-align-ad-desktop-top > * {
      display: inline-block;
      float: none !important;
      vertical-align: top;
      font-size: 1rem; }
  .vertical-align-ad-desktop-bottom {
    font-size: 0;
    clear: both; }
    .vertical-align-ad-desktop-bottom > * {
      display: inline-block;
      float: none !important;
      vertical-align: bottom;
      font-size: 1rem; }
  /**
	 * Visible, hide, etc...
	 */
  .hide-ad-desktop {
    display: none; }
  .not-visible-ad-desktop {
    visibility: hidden; }
  .show-ad-desktop {
    display: block; }
  .show-inline-ad-desktop {
    display: inline-block; }
  .visible-ad-desktop {
    visibility: visible; }
  /**
	 * Clear each class :
	 */
  .clear-each-ad-desktop-2 > *:nth-child(2n+1) {
    clear: left; }
  .clear-each-ad-desktop-12 > *:nth-child(12n+1) {
    clear: both; }
  .gridle-debug .debug-color-ad-desktop-1, .debug-color-ad-desktop-1.gridle-debug {
    background-color: #edeeb2; }
  .gridle-debug .debug-color-ad-desktop-2, .debug-color-ad-desktop-2.gridle-debug {
    background-color: #fae4a7; }
  .gridle-debug .debug-color-ad-desktop-3, .debug-color-ad-desktop-3.gridle-debug {
    background-color: #f5eacc; }
  .gridle-debug .debug-color-ad-desktop-4, .debug-color-ad-desktop-4.gridle-debug {
    background-color: #eebdb2; }
  .gridle-debug .debug-color-ad-desktop-5, .debug-color-ad-desktop-5.gridle-debug {
    background-color: #d4b2ee; }
  .gridle-debug .debug-color-ad-desktop-6, .debug-color-ad-desktop-6.gridle-debug {
    background-color: #b2d8ee; } }

html.default .center {
  text-align: center; }

.center {
  text-align: center; }

html.mobile .center-mobile {
  text-align: center; }

@media screen and (max-width: 480px) {
  .center-mobile {
    text-align: center; } }

html.tablet .center-tablet {
  text-align: center; }

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .center-tablet {
    text-align: center; } }

html.ipad-landscape .center-ipad-landscape {
  text-align: center; }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .center-ipad-landscape {
    text-align: center; } }

html.ad-desktop .center-ad-desktop {
  text-align: center; }

@media screen and (min-width: 1280px) {
  .center-ad-desktop {
    text-align: center; } }

.container, div.bookshelf section.shelf div.shelf-items {
  margin: 0 auto;
  max-width: 960px; }

.tags {
  margin: 0;
  margin-top: 20px;
  padding: 0;
  position: relative;
  right: 24px;
  bottom: -12px;
  list-style: none;
  font-family: 'futura-pt', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.88;
  margin-left: 15px; }

.tags li, .tags a {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  position: relative;
  font-size: 14px;
  margin-bottom: 10px; }

.tags a {
  margin-left: 20px;
  padding: 0 10px 0 12px;
  background: #B8ADA4;
  color: #fff;
  text-decoration: none;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px; }

.tags a:before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-color: transparent #B8ADA4 transparent transparent;
  border-style: solid;
  border-width: 12px 12px 12px 0; }

.tags a:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  float: left;
  width: 4px;
  height: 4px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
  -moz-box-shadow: -1px -1px 2px #a29387;
  -webkit-box-shadow: -1px -1px 2px #a29387;
  box-shadow: -1px -1px 2px #a29387; }

.tags a:hover {
  background: #9B3434; }

.tags a:hover:before {
  border-color: transparent #9B3434 transparent transparent; }

html.mobile html .show-mobile {
  display: inherit; }

@media screen and (max-width: 480px) {
  html .show-mobile {
    display: inherit; } }

html.tablet html .show-tablet {
  display: inherit; }

@media screen and (min-width: 481px) and (max-width: 1024px) {
  html .show-tablet {
    display: inherit; } }

html.mobile html .hide-mobile {
  display: none; }

@media screen and (max-width: 480px) {
  html .hide-mobile {
    display: none; } }

html.mobile html .hide-tablet {
  display: none; }

@media screen and (max-width: 480px) {
  html .hide-tablet {
    display: none; } }

html.tablet html .hide-tablet {
  display: none; }

@media screen and (min-width: 481px) and (max-width: 1024px) {
  html .hide-tablet {
    display: none; } }

html .desktop-ad {
  display: none; }
  html.ad-desktop html .desktop-ad {
    display: inherit; }
  @media screen and (min-width: 1280px) {
    html .desktop-ad {
      display: inherit; } }

html .non-desktop-ad {
  display: inherit; }
  html.ad-desktop html .non-desktop-ad {
    display: none; }
  @media screen and (min-width: 1280px) {
    html .non-desktop-ad {
      display: none; } }

html .mobile-only {
  display: none; }
  html.mobile html .mobile-only {
    display: inherit; }
  @media screen and (max-width: 480px) {
    html .mobile-only {
      display: inherit; } }

html .mobile-tablet-only {
  display: none; }
  html.tablet html .mobile-tablet-only {
    display: inherit; }
  @media screen and (min-width: 481px) and (max-width: 1024px) {
    html .mobile-tablet-only {
      display: inherit; } }
  html.mobile html .mobile-tablet-only {
    display: inherit; }
  @media screen and (max-width: 480px) {
    html .mobile-tablet-only {
      display: inherit; } }

html .hide-desktop {
  display: none; }
  html.mobile html .hide-desktop {
    display: inherit; }
  @media screen and (max-width: 480px) {
    html .hide-desktop {
      display: inherit; } }
  html.tablet html .hide-desktop {
    display: inherit; }
  @media screen and (min-width: 481px) and (max-width: 1024px) {
    html .hide-desktop {
      display: inherit; } }

html body {
  background: #F6F6F6;
  font-family: "adriane", "Adriane Text", serif; }
  html body .container, html body div.bookshelf section.shelf div.shelf-items, div.bookshelf section.shelf html body div.shelf-items {
    max-width: 960px;
    margin: 0 auto;
    position: relative; }
    html body .container.full-width, html body div.bookshelf section.shelf div.full-width.shelf-items, div.bookshelf section.shelf html body div.full-width.shelf-items {
      max-width: 100%;
      margin: 0; }
      html body .container.full-width .grid-1, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-1, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-1, html body .container.full-width .grid-2, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-2, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-2, html body .container.full-width header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.top-row html body .container.full-width li, html body div.bookshelf section.shelf div.full-width.shelf-items header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.top-row html body div.bookshelf section.shelf div.full-width.shelf-items li, div.bookshelf section.shelf html body div.full-width.shelf-items header#main-navigation nav[role='sub'] div.sub-section ul.top-row li, header#main-navigation nav[role='sub'] div.sub-section ul.top-row div.bookshelf section.shelf html body div.full-width.shelf-items li, html body .container.full-width header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row html body .container.full-width li, html body div.bookshelf section.shelf div.full-width.shelf-items header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row html body div.bookshelf section.shelf div.full-width.shelf-items li, div.bookshelf section.shelf html body div.full-width.shelf-items header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li, header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row div.bookshelf section.shelf html body div.full-width.shelf-items li, html body .container.full-width .grid-3, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-3, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-3, html body .container.full-width div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html body .container.full-width div.item, html body div.bookshelf section.shelf div.full-width.shelf-items div.item, div.bookshelf section.shelf html body div.full-width.shelf-items div.item, html body .container.full-width .grid-4, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-4, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-4, html.mobile .single-article article.post-content.feature.essay body .container.full-width .featuredImage, html.mobile .single-article article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html.mobile .single-article article.post-content.feature.essay body div.full-width.shelf-items .featuredImage, html.mobile .single-article article.post-content.feature.essay body .container.full-width figure.alignleft, html.mobile .single-article article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html.mobile .single-article article.post-content.feature.essay body div.full-width.shelf-items figure.alignleft, html.mobile .single-article article.post-content.feature.essay body .container.full-width img.alignleft, html.mobile .single-article article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html.mobile .single-article article.post-content.feature.essay body div.full-width.shelf-items img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay body .container.full-width .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html.mobile .single-short-takes article.post-content.feature.essay body div.full-width.shelf-items .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay body .container.full-width figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html.mobile .single-short-takes article.post-content.feature.essay body div.full-width.shelf-items figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay body .container.full-width img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html.mobile .single-short-takes article.post-content.feature.essay body div.full-width.shelf-items img.alignleft, html body .container.full-width .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html body .container.full-width .featuredImage, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items .featuredImage, html body .container.full-width .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html body .container.full-width figure.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignleft, html body .container.full-width .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html body .container.full-width img.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignleft, html body .container.full-width .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html body .container.full-width .featuredImage, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items .featuredImage, html body .container.full-width .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html body .container.full-width figure.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignleft, html body .container.full-width .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html body .container.full-width img.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignleft, html.mobile .single-article article.post-content.feature.essay body .container.full-width figure.alignright, html.mobile .single-article article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items figure.alignright, div.bookshelf section.shelf html.mobile .single-article article.post-content.feature.essay body div.full-width.shelf-items figure.alignright, html.mobile .single-article article.post-content.feature.essay body .container.full-width img.alignright, html.mobile .single-article article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items img.alignright, div.bookshelf section.shelf html.mobile .single-article article.post-content.feature.essay body div.full-width.shelf-items img.alignright, html.mobile .single-short-takes article.post-content.feature.essay body .container.full-width figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items figure.alignright, div.bookshelf section.shelf html.mobile .single-short-takes article.post-content.feature.essay body div.full-width.shelf-items figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay body .container.full-width img.alignright, html.mobile .single-short-takes article.post-content.feature.essay body div.bookshelf section.shelf div.full-width.shelf-items img.alignright, div.bookshelf section.shelf html.mobile .single-short-takes article.post-content.feature.essay body div.full-width.shelf-items img.alignright, html body .container.full-width .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html body .container.full-width figure.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignright, html body .container.full-width .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html body .container.full-width img.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignright, html body .container.full-width .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html body .container.full-width figure.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignright, html body .container.full-width .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html body .container.full-width img.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignright, html.mobile div.bookshelf section.shelf div.shelf-items body .container.full-width div.item, html body .container.full-width div.bookshelf section.shelf div.shelf-items div.item, div.bookshelf section.shelf div.shelf-items html body .container.full-width div.item, html body div.bookshelf section.shelf div.full-width.shelf-items div.item, div.bookshelf section.shelf html body div.full-width.shelf-items div.item, html.mobile section.singular-av article div.post-content body .container.full-width .featuredImage, html.mobile section.singular-av article div.post-content body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html.mobile section.singular-av article div.post-content body div.full-width.shelf-items .featuredImage, html.mobile section.singular-av article div.post-content body .container.full-width figure.alignleft, html.mobile section.singular-av article div.post-content body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html.mobile section.singular-av article div.post-content body div.full-width.shelf-items figure.alignleft, html.mobile section.singular-av article div.post-content body .container.full-width img.alignleft, html.mobile section.singular-av article div.post-content body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html.mobile section.singular-av article div.post-content body div.full-width.shelf-items img.alignleft, html body .container.full-width section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html body .container.full-width .featuredImage, html body div.bookshelf section.shelf div.full-width.shelf-items section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html body div.full-width.shelf-items section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content div.bookshelf section.shelf html body div.full-width.shelf-items .featuredImage, html body .container.full-width section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html body .container.full-width figure.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignleft, html body .container.full-width section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html body .container.full-width img.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content div.bookshelf section.shelf html body div.full-width.shelf-items img.alignleft, html body .container.full-width .grid-5, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-5, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-5, html body .container.full-width .grid-6, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-6, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-6, html body .container.full-width .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html body .container.full-width .featuredImage, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items .featuredImage, html body .container.full-width .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html body .container.full-width figure.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignleft, html body .container.full-width .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html body .container.full-width img.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignleft, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignleft, html body .container.full-width .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html body .container.full-width .featuredImage, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items .featuredImage, html body .container.full-width .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html body .container.full-width figure.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignleft, html body .container.full-width .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html body .container.full-width img.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignleft, html body .container.full-width .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html body .container.full-width figure.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignright, html body .container.full-width .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html body .container.full-width img.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-article article.post-content.feature.essay img.alignright, .single-article article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignright, html body .container.full-width .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html body .container.full-width figure.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignright, html body .container.full-width .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html body .container.full-width img.alignright, html body div.bookshelf section.shelf div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay html body div.bookshelf section.shelf div.full-width.shelf-items img.alignright, div.bookshelf section.shelf html body div.full-width.shelf-items .single-short-takes article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay div.bookshelf section.shelf html body div.full-width.shelf-items img.alignright, html body .container.full-width section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html body .container.full-width .featuredImage, html body div.bookshelf section.shelf div.full-width.shelf-items section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content html body div.bookshelf section.shelf div.full-width.shelf-items .featuredImage, div.bookshelf section.shelf html body div.full-width.shelf-items section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content div.bookshelf section.shelf html body div.full-width.shelf-items .featuredImage, html body .container.full-width section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html body .container.full-width figure.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content html body div.bookshelf section.shelf div.full-width.shelf-items figure.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content div.bookshelf section.shelf html body div.full-width.shelf-items figure.alignleft, html body .container.full-width section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html body .container.full-width img.alignleft, html body div.bookshelf section.shelf div.full-width.shelf-items section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content html body div.bookshelf section.shelf div.full-width.shelf-items img.alignleft, div.bookshelf section.shelf html body div.full-width.shelf-items section.singular-av article div.post-content img.alignleft, section.singular-av article div.post-content div.bookshelf section.shelf html body div.full-width.shelf-items img.alignleft, html body .container.full-width .grid-7, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-7, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-7, html body .container.full-width .grid-8, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-8, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-8, html body .container.full-width .grid-9, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-9, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-9, html body .container.full-width .grid-10, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-10, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-10, html body .container.full-width .grid-11, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-11, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-11, html body .container.full-width .grid-12, html body div.bookshelf section.shelf div.full-width.shelf-items .grid-12, div.bookshelf section.shelf html body div.full-width.shelf-items .grid-12 {
        padding: 0;
        margin: 0; }
  html body.single-article #content, html body.single-short-takes #content {
    background: white !important; }
  html body.home {
    background: white !important; }
  html body .shadow, html body .card, html body section.tabbed .tabbed-content, section.tabbed html body .tabbed-content, html body section.header.article, html body article.item.slider-item img, article.item.slider-item html body img, html body figure.wp-caption img, figure.wp-caption html body img, html body .single-article article.post-content img, .single-article article.post-content html body img, html body .single-short-takes article.post-content img, .single-short-takes article.post-content html body img, html body .single-article article.post-content.feature.essay img, .single-article article.post-content.feature.essay html body img, html body .single-short-takes article.post-content.feature.essay img, .single-short-takes article.post-content.feature.essay html body img, html body .single-article article.post-content.feature.essay .featuredImage img, .single-article article.post-content.feature.essay .featuredImage html body img, html body .single-article article.post-content.feature.essay figure.alignleft img, .single-article article.post-content.feature.essay figure.alignleft html body img, html body .single-article article.post-content.feature.essay img.alignleft img, .single-article article.post-content.feature.essay img.alignleft html body img, html body .single-short-takes article.post-content.feature.essay .featuredImage img, .single-short-takes article.post-content.feature.essay .featuredImage html body img, html body .single-short-takes article.post-content.feature.essay figure.alignleft img, .single-short-takes article.post-content.feature.essay figure.alignleft html body img, html body .single-short-takes article.post-content.feature.essay img.alignleft img, .single-short-takes article.post-content.feature.essay img.alignleft html body img, html body .single-article article.post-content.feature.essay figure.alignright img, .single-article article.post-content.feature.essay figure.alignright html body img, html body .single-article article.post-content.feature.essay img.alignright img, .single-article article.post-content.feature.essay img.alignright html body img, html body .single-short-takes article.post-content.feature.essay figure.alignright img, .single-short-takes article.post-content.feature.essay figure.alignright html body img, html body .single-short-takes article.post-content.feature.essay img.alignright img, .single-short-takes article.post-content.feature.essay img.alignright html body img, html body nav[role='content'], html body section.singular-av article div.post-content .featuredImage img, section.singular-av article div.post-content .featuredImage html body img, html body section.singular-av article div.post-content figure.alignleft img, section.singular-av article div.post-content figure.alignleft html body img, html body section.singular-av article div.post-content img.alignleft img, section.singular-av article div.post-content img.alignleft html body img {
    background: #FFFFFF;
    box-shadow: 1px 1px 8px 0px rgba(142, 142, 142, 0.25); }
  html body #page {
    position: relative;
    width: 100%;
    height: auto; }
  html body #content {
    position: relative; }
    html body #content.below-nav {
      padding-top: 120px; }
      html.mobile html body #content.below-nav {
        padding-top: 40px; }
      @media screen and (max-width: 480px) {
        html body #content.below-nav {
          padding-top: 40px; } }
  html body .modal {
    z-index: 999999999; }
    html body .modal img {
      margin-right: 30px; }
    html body .modal .modal-title {
      font-family: 'futura-pt', sans-serif;
      font-size: 24px;
      font-weight: 500;
      color: #9B3434;
      line-height: 32px;
      vertical-align: baseline;
      letter-spacing: -0.25;
      margin: 0;
      padding: 0;
      margin-bottom: 30px;
      text-align: left; }
    html body .modal .modal-book-title {
      margin: 0;
      padding: 0;
      margin-bottom: 10px;
      font-family: 'adriane', serif;
      font-size: 26px;
      font-weight: 400;
      color: #4A4A4A;
      letter-spacing: 0.51px;
      line-height: 30px; }
  html body .card {
    margin-top: 0; }
    html body .card:last-child {
      margin-bottom: 0; }
    html body .card:only-child {
      margin-bottom: 20px; }
  html body .padding-0 {
    padding: 0px; }
  html body .padding-5 {
    padding: 5px; }
  html body .padding-10 {
    padding: 10px; }
  html body .padding-15 {
    padding: 15px; }
  html body .padding-30 {
    padding: 30px; }
  html body .padding-0-5 {
    padding: 0 5px; }
  html body .padding-0-10 {
    padding: 0 10px; }
  html body .padding-0-15 {
    padding: 0 15px; }
  html body .padding-0-30 {
    padding: 0 30px; }
  html body .padding-5-0 {
    padding: 5px 0; }
  html body .padding-10-0 {
    padding: 10px 0; }
  html body .padding-0-10 {
    padding: 0 10px; }
  html body .padding-15-0 {
    padding: 15px 0; }
  html body .padding-30-0 {
    padding: 30px 0; }
  html body .padding-30-20 {
    padding: 30px 20px; }
  html body .white-text-color {
    color: white; }
  html body .white-bg {
    background: white; }
  html body .red-text-color {
    color: #9B3434 !important; }
  html body .red-bg {
    background: #9B3434 !important; }
  html body .gray-text-color {
    color: #9B9B9B; }
  html body .yellow-bg {
    background: #F5A827; }
  html body .yellow-text-color {
    color: #F5A827; }

html .align.center {
  text-align: center; }

html .align.left {
  text-align: left; }

html .align.right {
  text-align: right; }

header#main-navigation {
  z-index: 998;
  width: 100%;
  position: absolute;
  height: 120px;
  top: 0;
  margin-top: 0;
  padding-top: 0; }
  html.mobile header#main-navigation {
    height: 60px; }
  @media screen and (max-width: 480px) {
    header#main-navigation {
      height: 60px; } }
  header#main-navigation.no-hover {
    height: 40px; }
  header#main-navigation nav[role="main"] {
    height: 40px;
    width: 100%;
    top: 0;
    height: auto;
    margin: auto;
    background: rgba(226, 226, 226, 0.9);
    z-index: 1001;
    position: fixed; }
    header#main-navigation nav[role="main"] div.container, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items {
      max-width: 960px;
      margin: auto;
      position: relative; }
      header#main-navigation nav[role="main"] div.container ul, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul {
        margin: auto;
        padding: 0;
        list-style: none;
        height: 40px;
        width: auto;
        text-align: left;
        float: left;
        position: relative;
        left: 0;
        top: 0; }
        header#main-navigation nav[role="main"] div.container ul#primary, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#primary, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#primary {
          margin-left: 85px; }
        header#main-navigation nav[role="main"] div.container ul#secondary, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary {
          margin-left: 30px;
          text-align: right;
          left: auto;
          right: 0;
          float: right; }
        header#main-navigation nav[role="main"] div.container ul li, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul li, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul li {
          height: 40px;
          width: auto;
          display: inline-block;
          margin: 0;
          padding: 0 10px;
          font-size: 16px;
          font-family: 'futura-pt', sans-serif;
          text-transform: uppercase;
          letter-spacing: 1.40px;
          line-height: 40px;
          text-align: center;
          vertical-align: middle;
          color: #4A4A4A; }
          header#main-navigation nav[role="main"] div.container ul li a, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul li a, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul li a {
            margin: 0;
            padding: 0; }
            header#main-navigation nav[role="main"] div.container ul li a:hover, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul li a:hover, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul li a:hover {
              -webkit-transition: all 0.25s ease-in-out;
              -o-transition: all 0.25s ease-in-out;
              -moz-transition: all 0.25s ease-in-out;
              transition: all 0.25s ease-in-out;
              color: #9B3434; }
        header#main-navigation nav[role="main"] div.container ul#secondary, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary {
          z-index: 1000; }
          header#main-navigation nav[role="main"] div.container ul#secondary li, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li {
            margin-left: 5px;
            padding: 0; }
            header#main-navigation nav[role="main"] div.container ul#secondary li .ic, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li .ic, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li .ic {
              width: 40px;
              height: 40px;
              display: block;
              margin: 0;
              padding: 0; }
              header#main-navigation nav[role="main"] div.container ul#secondary li .ic.menu, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li .ic.menu, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li .ic.menu {
                background: url(../images/navigation/ic_menu@3x.png) no-repeat;
                background-size: 34px 34px;
                background-position: center center; }
                header#main-navigation nav[role="main"] div.container ul#secondary li .ic.menu:hover, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li .ic.menu:hover, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li .ic.menu:hover {
                  -webkit-transition: all 0.25s ease-in-out;
                  -o-transition: all 0.25s ease-in-out;
                  -moz-transition: all 0.25s ease-in-out;
                  transition: all 0.25s ease-in-out;
                  background: url(../images/navigation/ic_menu_hover@3x.png) no-repeat;
                  background-size: 34px 34px;
                  background-position: center center; }
              header#main-navigation nav[role="main"] div.container ul#secondary li .ic.search, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li .ic.search, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li .ic.search {
                background: url(../images/navigation/ic_search@3x.png) no-repeat;
                background-size: 34px 34px;
                background-position: center center; }
                header#main-navigation nav[role="main"] div.container ul#secondary li .ic.search:hover, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li .ic.search:hover, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li .ic.search:hover {
                  -webkit-transition: all 0.25s ease-in-out;
                  -o-transition: all 0.25s ease-in-out;
                  -moz-transition: all 0.25s ease-in-out;
                  transition: all 0.25s ease-in-out;
                  background: url(../images/navigation/ic_search_hover@3x.png) no-repeat;
                  background-size: 34px 34px;
                  background-position: center center; }
              header#main-navigation nav[role="main"] div.container ul#secondary li .ic.edit, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li .ic.edit, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li .ic.edit {
                background: url(../images/navigation/ic_edit@3x.png) no-repeat;
                background-size: 34px 34px;
                background-position: center center; }
                header#main-navigation nav[role="main"] div.container ul#secondary li .ic.edit:hover, header#main-navigation nav[role="main"] div.bookshelf section.shelf div.shelf-items ul#secondary li .ic.edit:hover, div.bookshelf section.shelf header#main-navigation nav[role="main"] div.shelf-items ul#secondary li .ic.edit:hover {
                  -webkit-transition: all 0.25s ease-in-out;
                  -o-transition: all 0.25s ease-in-out;
                  -moz-transition: all 0.25s ease-in-out;
                  transition: all 0.25s ease-in-out;
                  background: url(../images/navigation/ic_edit_hover@3x.png) no-repeat;
                  background-size: 34px 34px;
                  background-position: center center; }
  header#main-navigation div#logo {
    width: 70px;
    height: 140px;
    left: 10px;
    background: url(../images/navigation/img_logo@2x.png) center bottom no-repeat;
    background-size: 70px 140px;
    top: 0;
    position: absolute;
    z-index: 1003; }
    html.mobile header#main-navigation div#logo {
      display: none; }
    @media screen and (max-width: 480px) {
      header#main-navigation div#logo {
        display: none; } }
  header#main-navigation div#logo-fixed {
    width: 70px;
    height: 60px;
    left: 10px;
    background: url(../images/navigation/img_logo_fixed@2x.png) center bottom no-repeat;
    background-size: 70px 60px;
    top: 0px;
    position: absolute;
    z-index: 1002; }
  header#main-navigation nav[role='sub'] {
    z-index: 1000;
    width: 100%;
    height: 40px;
    top: 15px;
    position: absolute; }
    html.mobile header#main-navigation nav[role='sub'] {
      display: none; }
    @media screen and (max-width: 480px) {
      header#main-navigation nav[role='sub'] {
        display: none; } }
    header#main-navigation nav[role='sub'] div.sub-section {
      width: 100%;
      height: 80px;
      top: 0px;
      position: absolute;
      padding-left: 95px; }
      header#main-navigation nav[role='sub'] div.sub-section:not([data-section='default']) {
        display: none; }
      header#main-navigation nav[role='sub'] div.sub-section ul.top-row {
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: left; }
        header#main-navigation nav[role='sub'] div.sub-section ul.top-row li {
          padding: 0;
          text-align: left;
          font-family: 'futura-pt', sans-serif;
          font-size: 16px;
          font-weight: 400;
          line-height: 20px;
          height: auto;
          letter-spacing: 1.17;
          color: #4A4A4A; }
          header#main-navigation nav[role='sub'] div.sub-section ul.top-row li:hover {
            color: #4A4A4A; }
      header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row {
        width: 100%;
        height: 34px;
        display: none; }
        header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li {
          padding: 0;
          line-height: 33px;
          vertical-align: middle;
          text-align: left;
          font-family: 'futura-pt', sans-serif;
          font-size: 14px;
          font-weight: 400;
          letter-spacing: 1.17;
          color: #4A4A4A; }
          header#main-navigation nav[role='sub'] div.sub-section ul.bottom-row li:hover {
            color: #4A4A4A; }
    header#main-navigation nav[role='sub'] div#logo-type {
      width: 608px;
      height: 80px;
      left: 95px;
      background: url(../images/navigation/img_logo_text_gray.png) center bottom no-repeat;
      background-size: 608px 100px;
      top: 35px;
      position: absolute; }

div#aside-cover {
  cursor: pointer;
  display: none;
  position: fixed;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

aside#aside-navigation {
  display: none;
  opacity: 0;
  overflow-y: scroll;
  z-index: 10001;
  width: 300px;
  height: 100%;
  position: fixed;
  background: #f7f7f7;
  top: 0;
  bottom: 0;
  left: auto;
  right: -300px;
  -webkit-box-shadow: -5px 0px 10px -2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -5px 0px 10px -2px rgba(0, 0, 0, 0.25);
  box-shadow: -5px 0px 10px -2px rgba(0, 0, 0, 0.25); }
  aside#aside-navigation p.aside-title {
    height: 40px;
    width: auto;
    display: inline-block;
    margin: 0;
    padding: 0 15px;
    font-size: 16px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    color: #4A4A4A; }
  aside#aside-navigation section {
    margin-bottom: 15px; }
    aside#aside-navigation section p.aside-section-title {
      height: 40px;
      width: auto;
      display: inline-block;
      margin: 0;
      padding: 0 15px;
      font-size: 16px;
      font-family: 'futura-pt', sans-serif;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 40px;
      text-align: center;
      vertical-align: middle;
      color: #9B3434; }
    aside#aside-navigation section ul {
      list-style: none;
      margin: 0;
      padding: 0 15px; }
      aside#aside-navigation section ul li {
        font-family: 'adriane' serif;
        font-size: 16px;
        font-weight: normal;
        line-height: 32px; }
        aside#aside-navigation section ul li a {
          display: block; }
          aside#aside-navigation section ul li a:hover {
            color: #9B3434; }

body header#main-navigation {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  body header#main-navigation:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background: rgba(226, 226, 226, 0.9); }

body.single #logo-type, body.bookshelf #logo-type, body.membership #logo-type, body.create-an-account #logo-type, body.options #logo-type, body.thankyou #logo-type {
  display: none; }

body.single h1.membership-header-title, body.bookshelf h1.membership-header-title, body.membership h1.membership-header-title, body.create-an-account h1.membership-header-title, body.options h1.membership-header-title, body.thankyou h1.membership-header-title {
  font-family: 'futura-pt', sans-serif;
  color: white;
  font-weight: 500;
  font-size: 54px;
  line-height: 60px;
  margin: 0;
  padding: 0; }

body.single h2.membership-subheader-title, body.bookshelf h2.membership-subheader-title, body.membership h2.membership-subheader-title, body.create-an-account h2.membership-subheader-title, body.options h2.membership-subheader-title, body.thankyou h2.membership-subheader-title {
  font-family: 'futura-pt', sans-serif;
  color: white;
  font-weight: 500;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 60px;
  padding: 0;
  font-size: 24px;
  line-height: 28px; }

body.single .membership-section-title, body.bookshelf .membership-section-title, body.membership .membership-section-title, body.create-an-account .membership-section-title, body.options .membership-section-title, body.thankyou .membership-section-title {
  padding: 0;
  margin: 0;
  margin-bottom: 0 !important; }

body.single .membership-sidebar-item-title, body.bookshelf .membership-sidebar-item-title, body.membership .membership-sidebar-item-title, body.create-an-account .membership-sidebar-item-title, body.options .membership-sidebar-item-title, body.thankyou .membership-sidebar-item-title {
  font-family: 'futura-pt', sans-serif;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9B3434;
  letter-spacing: 0px;
  line-height: 28px;
  margin-top: 30px; }
  body.single .membership-sidebar-item-title:first-child, body.bookshelf .membership-sidebar-item-title:first-child, body.membership .membership-sidebar-item-title:first-child, body.create-an-account .membership-sidebar-item-title:first-child, body.options .membership-sidebar-item-title:first-child, body.thankyou .membership-sidebar-item-title:first-child {
    margin-top: 0; }

body.single .membership-section-subtitle, body.bookshelf .membership-section-subtitle, body.membership .membership-section-subtitle, body.create-an-account .membership-section-subtitle, body.options .membership-section-subtitle, body.thankyou .membership-section-subtitle {
  font-family: 'futura-pt', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #4A4A4A !important;
  letter-spacing: 0px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  text-align: left; }

body.single p, body.bookshelf p, body.membership p, body.create-an-account p, body.options p, body.thankyou p {
  text-align: left; }

body.single .btn.donate-option, body.single .donate-option.btn-large, body.bookshelf .btn.donate-option, body.bookshelf .donate-option.btn-large, body.membership .btn.donate-option, body.membership .donate-option.btn-large, body.create-an-account .btn.donate-option, body.create-an-account .donate-option.btn-large, body.options .btn.donate-option, body.options .donate-option.btn-large, body.thankyou .btn.donate-option, body.thankyou .donate-option.btn-large {
  padding: 0 10px;
  margin-bottom: 10px; }
  body.single .btn.donate-option.bronze, body.single .donate-option.bronze.btn-large, body.bookshelf .btn.donate-option.bronze, body.bookshelf .donate-option.bronze.btn-large, body.membership .btn.donate-option.bronze, body.membership .donate-option.bronze.btn-large, body.create-an-account .btn.donate-option.bronze, body.create-an-account .donate-option.bronze.btn-large, body.options .btn.donate-option.bronze, body.options .donate-option.bronze.btn-large, body.thankyou .btn.donate-option.bronze, body.thankyou .donate-option.bronze.btn-large {
    background: #733737;
    border: none; }
  body.single .btn.donate-option.silver, body.single .donate-option.silver.btn-large, body.bookshelf .btn.donate-option.silver, body.bookshelf .donate-option.silver.btn-large, body.membership .btn.donate-option.silver, body.membership .donate-option.silver.btn-large, body.create-an-account .btn.donate-option.silver, body.create-an-account .donate-option.silver.btn-large, body.options .btn.donate-option.silver, body.options .donate-option.silver.btn-large, body.thankyou .btn.donate-option.silver, body.thankyou .donate-option.silver.btn-large {
    background: #7C7C7C;
    border: none; }
  body.single .btn.donate-option.gold, body.single .donate-option.gold.btn-large, body.bookshelf .btn.donate-option.gold, body.bookshelf .donate-option.gold.btn-large, body.membership .btn.donate-option.gold, body.membership .donate-option.gold.btn-large, body.create-an-account .btn.donate-option.gold, body.create-an-account .donate-option.gold.btn-large, body.options .btn.donate-option.gold, body.options .donate-option.gold.btn-large, body.thankyou .btn.donate-option.gold, body.thankyou .donate-option.gold.btn-large {
    background: #C6A062;
    border: none; }
  body.single .btn.donate-option.platinum, body.single .donate-option.platinum.btn-large, body.bookshelf .btn.donate-option.platinum, body.bookshelf .donate-option.platinum.btn-large, body.membership .btn.donate-option.platinum, body.membership .donate-option.platinum.btn-large, body.create-an-account .btn.donate-option.platinum, body.create-an-account .donate-option.platinum.btn-large, body.options .btn.donate-option.platinum, body.options .donate-option.platinum.btn-large, body.thankyou .btn.donate-option.platinum, body.thankyou .donate-option.platinum.btn-large {
    background: #B5B5B5;
    border: none; }
  body.single .btn.donate-option.founder, body.single .donate-option.founder.btn-large, body.bookshelf .btn.donate-option.founder, body.bookshelf .donate-option.founder.btn-large, body.membership .btn.donate-option.founder, body.membership .donate-option.founder.btn-large, body.create-an-account .btn.donate-option.founder, body.create-an-account .donate-option.founder.btn-large, body.options .btn.donate-option.founder, body.options .donate-option.founder.btn-large, body.thankyou .btn.donate-option.founder, body.thankyou .donate-option.founder.btn-large {
    background: #9B3434;
    border: none; }
  body.single .btn.donate-option.darkgray, body.single .donate-option.darkgray.btn-large, body.bookshelf .btn.donate-option.darkgray, body.bookshelf .donate-option.darkgray.btn-large, body.membership .btn.donate-option.darkgray, body.membership .donate-option.darkgray.btn-large, body.create-an-account .btn.donate-option.darkgray, body.create-an-account .donate-option.darkgray.btn-large, body.options .btn.donate-option.darkgray, body.options .donate-option.darkgray.btn-large, body.thankyou .btn.donate-option.darkgray, body.thankyou .donate-option.darkgray.btn-large {
    background: #4A4A4A;
    border: none; }

body.single div.membership-section, body.bookshelf div.membership-section, body.membership div.membership-section, body.create-an-account div.membership-section, body.options div.membership-section, body.thankyou div.membership-section {
  margin: 0;
  border-top: rgba(155, 155, 155, 0.2) 1px solid; }
  body.single div.membership-section .active-only, body.bookshelf div.membership-section .active-only, body.membership div.membership-section .active-only, body.create-an-account div.membership-section .active-only, body.options div.membership-section .active-only, body.thankyou div.membership-section .active-only {
    display: none; }
  body.single div.membership-section .inactive-only, body.bookshelf div.membership-section .inactive-only, body.membership div.membership-section .inactive-only, body.create-an-account div.membership-section .inactive-only, body.options div.membership-section .inactive-only, body.thankyou div.membership-section .inactive-only {
    display: inherit; }
  body.single div.membership-section.active .active-only, body.bookshelf div.membership-section.active .active-only, body.membership div.membership-section.active .active-only, body.create-an-account div.membership-section.active .active-only, body.options div.membership-section.active .active-only, body.thankyou div.membership-section.active .active-only {
    display: inherit; }
  body.single div.membership-section.active .inactive-only, body.bookshelf div.membership-section.active .inactive-only, body.membership div.membership-section.active .inactive-only, body.create-an-account div.membership-section.active .inactive-only, body.options div.membership-section.active .inactive-only, body.thankyou div.membership-section.active .inactive-only {
    display: none; }

body.archive #logo-type {
  display: none; }

body.archive.post-type-archive-av #logo-type {
  display: inherit; }

hr {
  border-bottom: 1px solid #4A4A4A;
  margin: 30px 0; }
  hr.gray {
    border-bottom: 1px solid #9B9B9B; }
  hr.light-gray {
    border-bottom: 1px solid #e8e8e8; }

section {
  position: relative;
  margin-bottom: 30px; }
  section.advertisement {
    padding-top: 30px;
    padding-bottom: 30px; }
  section.gray-bg {
    background: #e5e5e5;
    border-bottom: rgba(155, 155, 155, 0.2) 1px solid;
    padding-bottom: 30px; }
  section h1.section-title {
    font-family: 'futura-pt', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #9B3434;
    line-height: 32px;
    vertical-align: baseline;
    letter-spacing: -0.25;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    text-align: center; }
    section h1.section-title.slider-tab {
      color: #B8ADA4;
      text-align: left;
      margin-right: 30px; }
      section h1.section-title.slider-tab.active {
        color: #9B3434; }
    section h1.section-title.cta {
      font-family: 'futura-pt' sans-serif;
      font-size: 18px;
      color: #9B9B9B;
      vertical-align: baseline;
      font-weight: 500;
      letter-spacing: -0.25; }
    section h1.section-title.right {
      float: right; }
    section h1.section-title.center {
      text-align: center; }
    section h1.section-title.left {
      text-align: left; }
  section.hero {
    width: 100%;
    height: 450px; }
    html.mobile section.hero {
      height: 220px; }
    @media screen and (max-width: 480px) {
      section.hero {
        height: 220px; } }
    html.mobile section.hero .parallax-container {
      height: 220px; }
    @media screen and (max-width: 480px) {
      section.hero .parallax-container {
        height: 220px; } }
    section.hero.overlap-nav {
      margin-top: -100px; }
  section.tabbed .tabbed-content .tabbed-container {
    min-height: 120px; }
  section.tabbed ul.tabs {
    height: 40px;
    border-bottom: 4px solid #9B9B9B;
    margin-bottom: 0;
    padding: 0; }
    section.tabbed ul.tabs li {
      list-style: none;
      display: inline;
      float: left;
      height: 40px;
      font-size: 24px;
      color: #9B9B9B;
      padding: 0;
      padding-bottom: 10px;
      vertical-align: top;
      text-align: center;
      width: auto;
      font-family: 'futura-pt', sans-serif;
      font-weight: 500;
      letter-spacing: -0.25;
      text-transform: uppercase;
      margin: 0 10px; }
      html.mobile section.tabbed ul.tabs li {
        font-size: 18px;
        margin: 0 5px; }
      @media screen and (max-width: 480px) {
        section.tabbed ul.tabs li {
          font-size: 18px;
          margin: 0 5px; } }
      section.tabbed ul.tabs li:first-child {
        margin-left: 0px; }
      section.tabbed ul.tabs li.active {
        color: #9B3434;
        border-bottom: 4px solid #9B3434; }
      section.tabbed ul.tabs li.right {
        margin-right: 0px;
        margin-left: 10px;
        font-size: 18px;
        float: right; }
        html.mobile section.tabbed ul.tabs li.right {
          display: none; }
        @media screen and (max-width: 480px) {
          section.tabbed ul.tabs li.right {
            display: none; } }
      section.tabbed ul.tabs li a {
        display: block;
        height: 50px; }
        section.tabbed ul.tabs li a:hover {
          -webkit-transition: all 0.25s ease-in-out;
          -o-transition: all 0.25s ease-in-out;
          -moz-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
          color: #9B3434; }
  section.tabbed.membership ul.tabs {
    border-bottom: 4px solid #621E1E; }
    section.tabbed.membership ul.tabs li {
      color: #621E1E; }
      section.tabbed.membership ul.tabs li.active {
        color: white;
        border-bottom: 4px solid #F5A827; }
      section.tabbed.membership ul.tabs li a {
        display: block;
        height: 50px; }
        section.tabbed.membership ul.tabs li a:hover {
          -webkit-transition: all 0.25s ease-in-out;
          -o-transition: all 0.25s ease-in-out;
          -moz-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
          color: white; }
  section.slider h1.section-title {
    float: left;
    margin-bottom: 0;
    padding-bottom: 0; }
    section.slider h1.section-title.cta {
      float: right; }
  section.feature .parallax-container {
    height: 350px; }
    html.mobile section.feature .parallax-container {
      height: 220px; }
    @media screen and (max-width: 480px) {
      section.feature .parallax-container {
        height: 220px; } }
    section.feature .parallax-container div.overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.1);
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.8)));
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
      background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$startcolor', endColorstr='$endcolor',GradientType=0 ); }
      html.mobile section.feature .parallax-container div.overlay {
        background: rgba(0, 0, 0, 0.6);
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(100%, rgba(0, 0, 0, 0.9)));
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
        background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$startcolor', endColorstr='$endcolor',GradientType=0 ); }
      @media screen and (max-width: 480px) {
        section.feature .parallax-container div.overlay {
          background: rgba(0, 0, 0, 0.6);
          background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
          background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(100%, rgba(0, 0, 0, 0.9)));
          background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
          background: -o-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
          background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
          background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$startcolor', endColorstr='$endcolor',GradientType=0 ); } }
  section.feature h1.single-section-title {
    margin: 0;
    padding: 0;
    color: white !important;
    line-height: 80px;
    margin-left: 100px;
    font-family: 'futura-pt', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 42px; }
    section.feature h1.single-section-title span.light {
      font-weight: 100; }
    html.mobile section.feature h1.single-section-title {
      position: absolute;
      text-align: center;
      font-size: 32px;
      line-height: 36px;
      left: 10px;
      right: 0;
      top: 50px;
      text-align: center;
      margin-left: 0; }
    @media screen and (max-width: 480px) {
      section.feature h1.single-section-title {
        position: absolute;
        text-align: center;
        font-size: 32px;
        line-height: 36px;
        left: 10px;
        right: 0;
        top: 50px;
        text-align: center;
        margin-left: 0; } }
  section.feature .feature-content {
    margin-top: -250px; }
  section.feature .feature-title {
    font-family: 'futura-pt' sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: white;
    vertical-align: baseline;
    font-weight: 500;
    letter-spacing: -0.25;
    text-align: left;
    margin-bottom: 0; }
  section.feature .section-title {
    font-family: 'futura-pt', sans-serif;
    font-size: 34px;
    font-weight: 500;
    color: white;
    line-height: 38px;
    vertical-align: baseline;
    letter-spacing: -0.25;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    text-align: left; }
  section.section-feature div.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.8)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$startcolor', endColorstr='$endcolor',GradientType=0 ); }
  section.section-feature .parallax-container {
    height: 350px; }
    html.mobile section.section-feature .parallax-container {
      height: 220px; }
    @media screen and (max-width: 480px) {
      section.section-feature .parallax-container {
        height: 220px; } }
  section.section-feature .feature-content {
    margin-top: -50px; }
  section.header.article {
    border-bottom: rgba(155, 155, 155, 0.2) solid 1px; }
    section.header.article.feature img {
      max-height: 500px;
      z-index: 10; }
    section.header.article.feature header.article {
      z-index: 100; }
    section.header.article.standard {
      margin-bottom: 30px; }

.post-title {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  font-family: 'adriane', serif;
  font-size: 18px;
  font-weight: 400;
  color: #4A4A4A;
  letter-spacing: 0.51px;
  line-height: 22px; }
  .post-title.size.med {
    font-size: 22px;
    line-height: 26px; }
  .post-title.size.lg {
    font-size: 26px;
    line-height: 30px; }

.post-section {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  color: #9B3434;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.75; }

.post-author {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  color: #9B9B9B;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 10px;
  letter-spacing: 1.75; }

.post-excerpt {
  font-family: 'adriane', serif;
  font-size: 14px;
  color: #4A4A4A;
  line-height: 18px;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline; }

article.item .post-title {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  font-family: 'adriane', serif;
  font-size: 20px;
  font-weight: 600;
  color: #4A4A4A;
  letter-spacing: 0.51px;
  line-height: 25px; }
  article.item .post-title.size.med {
    font-size: 22px;
    line-height: 26px; }
  article.item .post-title.size.lg {
    font-size: 26px;
    line-height: 30px; }
  article.item .post-title.size.sm {
    font-size: 16px;
    line-height: 20px; }

html.mobile article.item {
  border-bottom: 1px solid rgba(155, 155, 155, 0.2);
  margin-bottom: 30px;
  padding-bottom: 30px; }

@media screen and (max-width: 480px) {
  article.item {
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
    margin-bottom: 30px;
    padding-bottom: 30px; } }

article.item .post-section {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  color: #9B3434;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.75; }

article.item .post-author {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  color: #9B9B9B;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
  letter-spacing: 1.75;
  vertical-align: baseline; }
  article.item .post-author a:link, article.item .post-author a:visited, article.item .post-author a:hover, article.item .post-author a:active {
    color: #9B3434;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    vertical-align: baseline; }

article.item .post-excerpt {
  font-family: 'adriane', serif;
  font-size: 14px;
  color: #4A4A4A;
  line-height: 18px;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline; }

article.item.slider-item {
  text-align: center;
  border-left: 1px solid rgba(155, 155, 155, 0.2);
  border-right: none;
  padding: 15px 40px;
  padding-bottom: 5px; }
  article.item.slider-item.first {
    border-left: none; }
  article.item.slider-item.last {
    border-right: none; }
  article.item.slider-item img {
    margin-bottom: 30px; }
  article.item.slider-item .post-title {
    margin-bottom: 20px; }

article.item.list {
  margin-bottom: 20px; }
  article.item.list .post-title {
    margin-bottom: 0; }
  article.item.list .post-author {
    margin-top: 0; }

article.item.book-cover {
  width: auto;
  padding-right: 30px;
  padding-bottom: 15px; }
  article.item.book-cover img {
    float: left;
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 140px;
    height: auto;
    display: inline-block; }
    html.mobile article.item.book-cover img {
      width: 100px;
      margin-right: 20px;
      margin-bottom: 20px; }
    @media screen and (max-width: 480px) {
      article.item.book-cover img {
        width: 100px;
        margin-right: 20px;
        margin-bottom: 20px; } }
  article.item.book-cover:after {
    clear: left; }
  article.item.book-cover div.post-meta {
    position: relative;
    left: 10px;
    right: 10px;
    margin-left: 170px;
    height: auto;
    width: auto; }
    html.mobile article.item.book-cover div.post-meta {
      margin-left: 120px; }
    @media screen and (max-width: 480px) {
      article.item.book-cover div.post-meta {
        margin-left: 120px; } }
  article.item.book-cover .post-title {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    font-family: 'adriane', serif;
    font-size: 20px;
    font-weight: 600;
    color: #4A4A4A;
    letter-spacing: 0.51px;
    line-height: 25px; }
  article.item.book-cover .post-section {
    margin: 0;
    padding: 0;
    font-family: 'futura-pt', sans-serif;
    color: #9B3434;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 10px;
    letter-spacing: 1.75; }
  article.item.book-cover .post-date {
    margin: 0;
    padding: 0;
    font-family: 'futura-pt', sans-serif;
    color: #9B9B9B;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 10px; }

html.mobile article.item.top_articles.featured {
  border-bottom: 1px solid rgba(155, 155, 155, 0.2);
  margin-bottom: 30px;
  padding-bottom: 30px; }
  html.mobile article.item.top_articles.featured img {
    margin-bottom: 20px; }

@media screen and (max-width: 480px) {
  article.item.top_articles.featured {
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
    margin-bottom: 30px;
    padding-bottom: 30px; }
    article.item.top_articles.featured img {
      margin-bottom: 20px; } }

article.item.top_articles.featured .post-section {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  color: #9B3434;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 10px;
  letter-spacing: 1.75; }
  html.mobile article.item.top_articles.featured .post-section {
    margin-top: 10px;
    text-align: center; }
  @media screen and (max-width: 480px) {
    article.item.top_articles.featured .post-section {
      margin-top: 10px;
      text-align: center; } }

article.item.top_articles.featured .post-title {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  font-family: 'adriane', serif;
  font-size: 23px;
  font-weight: 600;
  color: #4A4A4A;
  letter-spacing: 0.51px;
  line-height: 30px; }
  html.mobile article.item.top_articles.featured .post-title {
    text-align: center; }
  @media screen and (max-width: 480px) {
    article.item.top_articles.featured .post-title {
      text-align: center; } }

article.item.top_articles.featured .post-excerpt {
  font-family: 'adriane', serif;
  font-size: 17px;
  color: #4A4A4A;
  line-height: 25px;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline; }
  html.mobile article.item.top_articles.featured .post-excerpt {
    text-align: center !important;
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px; }
  @media screen and (max-width: 480px) {
    article.item.top_articles.featured .post-excerpt {
      text-align: center !important;
      display: inline-block;
      padding-left: 30px;
      padding-right: 30px; } }

html.mobile article.item.top_articles.featured .post-author {
  text-align: center; }

@media screen and (max-width: 480px) {
  article.item.top_articles.featured .post-author {
    text-align: center; } }

article.item.toc {
  margin-bottom: 20px; }

.unslider {
  width: 100%;
  position: relative; }

.halved {
  display: flex; }
  html.mobile .halved {
    display: inline-block; }
  @media screen and (max-width: 480px) {
    .halved {
      display: inline-block; } }
  .halved div.half {
    width: 50%;
    flex-grow: 1; }
    html.mobile .halved div.half {
      width: 100%; }
    @media screen and (max-width: 480px) {
      .halved div.half {
        width: 100%; } }
    .halved div.half.image-cover {
      background-size: cover;
      background-color: #9B9B9B; }

/*
 *	WORDPRESS POST/ARTICLE ITEMS
 */
figure.wp-caption.alignleft {
  float: left;
  margin-left: -182px; }

figure.wp-caption.alignright {
  float: right;
  margin-right: -182px; }

figure.wp-caption img {
  margin-bottom: 30px; }

figure.wp-caption figcaption {
  font-family: 'adriane', serif;
  font-size: 14px;
  color: #9B9B9B;
  line-height: 18px;
  margin-top: -10px;
  padding-top: 0; }
  figure.wp-caption figcaption.wp-caption-text {
    font-family: 'adriane', serif;
    font-size: 14px;
    color: #9B9B9B;
    line-height: 20px; }

blockquote {
  position: relative;
  margin: 30px;
  margin-top: 36px;
  padding-top: 30px;
  font-family: 'futura-pt', sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #4A4A4A;
  line-height: 32px; }
  blockquote.alignleft {
    margin-right: 60px;
    width: 340px;
    float: left;
    margin-left: -182px;
    padding-left: 0; }
  blockquote.alignright {
    margin-left: 60px;
    width: 340px;
    float: right;
    margin-right: -182px;
    padding-right: 0; }

.link-list a {
  font-family: 'futura-pt', sans-serif;
  color: #9B3434;
  font-weight: 500;
  display: inline-block; }

.gallery .thumb {
  margin-bottom: 30px; }

.input-field {
  margin-top: 15px;
  margin-bottom: 15px; }
  .input-field label {
    left: 0; }
    .input-field label.active {
      transform: translateY(-100%); }

.btn, .btn-large {
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  text-transform: uppercase; }
  .btn:hover, .btn-large:hover {
    cursor: pointer; }
  .btn.add-to-bookshelf, .add-to-bookshelf.btn-large {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    html.mobile .btn.add-to-bookshelf, html.mobile .add-to-bookshelf.btn-large {
      font-size: 12px;
      padding-left: 5px;
      padding-right: 5px; }
    @media screen and (max-width: 480px) {
      .btn.add-to-bookshelf, .add-to-bookshelf.btn-large {
        font-size: 12px;
        padding-left: 5px;
        padding-right: 5px; } }
  .btn.larb-yellow, .larb-yellow.btn-large {
    background: #E0911D; }

.btn-flat {
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  text-transform: uppercase; }
  .btn-flat:hover {
    cursor: pointer; }
  .btn-flat.inline {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px; }
  .btn-flat.larb-red-text {
    color: #9B3434; }

.single-article article.post-content, .single-short-takes article.post-content {
  font-size: 1.05rem;
  line-height: 1.75rem !important;
  text-align: justify; }
  html.mobile .single-article article.post-content, html.mobile .single-short-takes article.post-content {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; }
  @media screen and (max-width: 480px) {
    .single-article article.post-content, .single-short-takes article.post-content {
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto; } }
  .single-article article.post-content a:link, .single-short-takes article.post-content a:link {
    color: #9B3434; }
  .single-article article.post-content a:visited, .single-short-takes article.post-content a:visited {
    color: #762424; }
  .single-article article.post-content p, .single-short-takes article.post-content p {
    font-size: 1.05rem;
    line-height: 1.75rem !important;
    text-align: justify;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0; }
    html.mobile .single-article article.post-content p, html.mobile .single-short-takes article.post-content p {
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto; }
    @media screen and (max-width: 480px) {
      .single-article article.post-content p, .single-short-takes article.post-content p {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto; } }
  .single-article article.post-content .article-teaser, .single-article article.post-content .teaser, .single-short-takes article.post-content .article-teaser, .single-short-takes article.post-content .teaser {
    font-weight: 600;
    font-size: 1.15rem;
    padding-bottom: 30px; }
  .single-article article.post-content img, .single-short-takes article.post-content img {
    width: 100%;
    height: auto; }
  .single-article article.post-content .post-date, .single-short-takes article.post-content .post-date {
    margin: 0;
    margin-top: 5px;
    padding: 0;
    font-family: 'futura-pt', sans-serif;
    color: #9B9B9B;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 10px; }
  .single-article article.post-content.feature.essay, .single-short-takes article.post-content.feature.essay {
    font-size: 1.00rem;
    line-height: 1.75rem !important; }
    .single-article article.post-content.feature.essay p, .single-short-takes article.post-content.feature.essay p {
      font-size: 1.00rem;
      line-height: 1.75rem !important;
      padding-top: 15px;
      padding-bottom: 15px;
      margin: 0; }
    .single-article article.post-content.feature.essay img, .single-short-takes article.post-content.feature.essay img {
      width: 100%;
      height: auto;
      margin-top: 30px;
      margin-bottom: 30px;
      text-align: center; }
    .single-article article.post-content.feature.essay iframe, .single-short-takes article.post-content.feature.essay iframe {
      width: 100% !important; }
    .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft {
      float: left;
      margin: 0;
      margin-left: -27.5%;
      padding: 10px 30px 20px 0; }
      .single-article article.post-content.feature.essay .featuredImage img, .single-article article.post-content.feature.essay figure.alignleft img, .single-article article.post-content.feature.essay img.alignleft img, .single-short-takes article.post-content.feature.essay .featuredImage img, .single-short-takes article.post-content.feature.essay figure.alignleft img, .single-short-takes article.post-content.feature.essay img.alignleft img {
        padding: 0;
        margin: 0; }
        .single-article article.post-content.feature.essay .featuredImage img:hover, .single-article article.post-content.feature.essay figure.alignleft img:hover, .single-article article.post-content.feature.essay img.alignleft img:hover, .single-short-takes article.post-content.feature.essay .featuredImage img:hover, .single-short-takes article.post-content.feature.essay figure.alignleft img:hover, .single-short-takes article.post-content.feature.essay img.alignleft img:hover {
          cursor: pointer; }
      html.mobile .single-article article.post-content.feature.essay .featuredImage, html.mobile .single-article article.post-content.feature.essay figure.alignleft, html.mobile .single-article article.post-content.feature.essay img.alignleft, html.mobile .single-short-takes article.post-content.feature.essay .featuredImage, html.mobile .single-short-takes article.post-content.feature.essay figure.alignleft, html.mobile .single-short-takes article.post-content.feature.essay img.alignleft {
        margin-left: 0;
        padding: 10px 20px 10px 0; }
      @media screen and (max-width: 480px) {
        .single-article article.post-content.feature.essay .featuredImage, .single-article article.post-content.feature.essay figure.alignleft, .single-article article.post-content.feature.essay img.alignleft, .single-short-takes article.post-content.feature.essay .featuredImage, .single-short-takes article.post-content.feature.essay figure.alignleft, .single-short-takes article.post-content.feature.essay img.alignleft {
          margin-left: 0;
          padding: 10px 20px 10px 0; } }
    .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright {
      float: right;
      margin: 0;
      margin-right: -27.5%;
      padding: 10px 0 20px 30px; }
      .single-article article.post-content.feature.essay figure.alignright img, .single-article article.post-content.feature.essay img.alignright img, .single-short-takes article.post-content.feature.essay figure.alignright img, .single-short-takes article.post-content.feature.essay img.alignright img {
        padding: 0;
        margin: 0; }
        .single-article article.post-content.feature.essay figure.alignright img:hover, .single-article article.post-content.feature.essay img.alignright img:hover, .single-short-takes article.post-content.feature.essay figure.alignright img:hover, .single-short-takes article.post-content.feature.essay img.alignright img:hover {
          cursor: pointer; }
      html.mobile .single-article article.post-content.feature.essay figure.alignright, html.mobile .single-article article.post-content.feature.essay img.alignright, html.mobile .single-short-takes article.post-content.feature.essay figure.alignright, html.mobile .single-short-takes article.post-content.feature.essay img.alignright {
        margin-left: 0;
        padding: 10px 0 10px 20px; }
      @media screen and (max-width: 480px) {
        .single-article article.post-content.feature.essay figure.alignright, .single-article article.post-content.feature.essay img.alignright, .single-short-takes article.post-content.feature.essay figure.alignright, .single-short-takes article.post-content.feature.essay img.alignright {
          margin-left: 0;
          padding: 10px 0 10px 20px; } }
  .single-article article.post-content figure.aligncenter, .single-article article.post-content img.aligncenter, .single-short-takes article.post-content figure.aligncenter, .single-short-takes article.post-content img.aligncenter {
    text-align: center;
    width: 100%;
    height: auto; }

.article header.article {
  padding-top: 180px;
  padding-bottom: 20px; }
  html.mobile .article header.article {
    padding-top: 90px; }
  @media screen and (max-width: 480px) {
    .article header.article {
      padding-top: 90px; } }
  .article header.article h1 {
    text-align: left;
    color: #4A4A4A;
    margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px; }
  .article header.article .category, .article header.article .byline {
    font-family: 'futura-pt';
    font-weight: 500;
    margin: 0;
    padding: 15px 0;
    color: #B8ADA4;
    font-size: 20px; }

div.widget {
  margin-bottom: 60px; }
  div.widget .widget-title {
    font-family: 'futura-pt', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #9B3434;
    letter-spacing: 0.75px;
    line-height: 40px;
    margin-bottom: 20px; }
  div.widget.content-index.text-list ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    div.widget.content-index.text-list ul li {
      list-style: none;
      margin: 0; }
      div.widget.content-index.text-list ul li .post-title {
        margin: 0;
        padding: 0;
        font-family: 'adriane', serif;
        font-size: 17px;
        font-weight: 600;
        color: #4A4A4A;
        letter-spacing: 0.51px;
        line-height: 22px; }
      div.widget.content-index.text-list ul li .post-author {
        margin: 0;
        padding: 0;
        font-family: 'futura-pt', sans-serif;
        color: #9B9B9B;
        font-size: 16px;
        font-weight: 500;
        line-height: 19px;
        margin-bottom: 20px; }
  div.widget.content-index.text-list.size.small .post-title {
    margin: 0;
    padding: 0;
    font-family: 'adriane', serif;
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
    letter-spacing: 0.51px;
    line-height: 18px; }
  div.widget.content-index.text-list.size.small .post-author {
    margin: 0;
    padding: 0;
    font-family: 'futura-pt', sans-serif;
    color: #9B9B9B;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 20px; }
  div.widget.article-info {
    margin-top: 15px; }
  div.widget.book-info {
    border-top: 2px solid #9B3434; }
    html.mobile div.widget.book-info {
      padding-top: 30px; }
    @media screen and (max-width: 480px) {
      div.widget.book-info {
        padding-top: 30px; } }
    div.widget.book-info .book-title {
      margin: 0;
      margin-top: 30px;
      margin-bottom: 10px;
      padding: 0;
      font-family: 'adriane', serif;
      font-weight: bold;
      font-size: 22px;
      color: #9B3434;
      letter-spacing: 0.68px;
      line-height: 24px; }
    div.widget.book-info .book-author {
      margin: 0;
      padding: 0;
      font-family: 'futura-pt', sans-serif;
      font-weight: 500;
      font-size: 20px;
      color: #343434;
      letter-spacing: 1.11px;
      line-height: 27px; }
    div.widget.book-info .book-meta {
      margin: 0;
      margin-bottom: 30px;
      padding: 0;
      font-family: 'futura-pt', sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: #9B9B9B;
      letter-spacing: 0.88px;
      line-height: 21px; }

.archive-header {
  height: 290px;
  background: #762424;
  position: relative;
  margin-bottom: 0; }
  .archive-header .hero-title {
    margin-top: 140px; }
    .archive-header .hero-title h1 {
      font-family: 'adriane', serif;
      font-weight: bold;
      font-size: 36px;
      line-height: 40px;
      color: #FFFFFF;
      letter-spacing: 0.75px; }
    .archive-header .hero-title h2 {
      margin: 0;
      padding: 0;
      font-family: 'adriane', serif;
      font-size: 24px;
      color: #FFFFFF;
      letter-spacing: 0.63px;
      line-height: 28px; }

div.bookshelf {
  background: #FEFEFE;
  height: auto;
  margin: 0; }
  div.bookshelf section.shelf {
    position: relative;
    width: auto;
    background-image: linear-gradient(-180deg, #D5D5D5 0%, #FDFDFD 11%, #E9E9E9 100%);
    z-index: 100;
    height: 290px;
    margin-bottom: 0;
    padding-bottom: 0; }
    html.mobile div.bookshelf section.shelf {
      height: 160px; }
    @media screen and (max-width: 480px) {
      div.bookshelf section.shelf {
        height: 160px; } }
    div.bookshelf section.shelf:first-child {
      background-image: linear-gradient(-180deg, #FFFFFF 0%, #E9E9E9 100%); }
    div.bookshelf section.shelf div.item {
      z-index: 101; }
    div.bookshelf section.shelf div.shelf-items {
      position: relative;
      top: 0;
      bottom: 0px;
      left: 0;
      right: 0;
      height: 100%;
      padding-top: 30px;
      padding-bottom: 0;
      display: flex;
      flex-basis: content;
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-y: hidden;
      overflow: visible;
      background: transparent; }
      div.bookshelf section.shelf div.shelf-items div.item {
        display: inline;
        z-index: 199;
        background: transparent;
        box-shadow: none;
        position: relative; }
        html.mobile div.bookshelf section.shelf div.shelf-items div.item {
          display: inline-block; }
        @media screen and (max-width: 480px) {
          div.bookshelf section.shelf div.shelf-items div.item {
            display: inline-block; } }
        div.bookshelf section.shelf div.shelf-items div.item:hover {
          z-index: 201; }
        div.bookshelf section.shelf div.shelf-items div.item div.book {
          width: 100%;
          display: block;
          vertical-align: bottom; }
          div.bookshelf section.shelf div.shelf-items div.item div.book div.remove {
            display: none; }
            div.bookshelf section.shelf div.shelf-items div.item div.book div.remove.enabled {
              display: inherit;
              position: absolute;
              top: 0;
              left: 10px;
              right: 10px;
              bottom: 40px;
              background: rgba(0, 0, 0, 0.75) url(../images/bookshelf/remove.png) center center no-repeat;
              background-size: 40px 40px;
              cursor: pointer; }
              div.bookshelf section.shelf div.shelf-items div.item div.book div.remove.enabled a {
                position: absolute;
                width: 90%;
                height: 30px;
                bottom: 30px;
                color: rgba(255, 255, 255, 0.4);
                text-align: center;
                font-family: 'futura-pt' sans-serif;
                font-weight: 500;
                letter-spacing: 1px;
                text-transform: uppercase;
                margin-left: 5%;
                margin-right: 5%;
                pointer-events: none; }
              div.bookshelf section.shelf div.shelf-items div.item div.book div.remove.enabled:hover {
                background: rgba(155, 52, 52, 0.75) url(../images/bookshelf/remove.png) center center no-repeat;
                background-size: 40px 40px;
                cursor: pointer; }
                div.bookshelf section.shelf div.shelf-items div.item div.book div.remove.enabled:hover a {
                  position: absolute;
                  width: 90%;
                  height: 30px;
                  bottom: 30px;
                  color: rgba(255, 255, 255, 0.4);
                  text-align: center;
                  font-family: 'futura-pt' sans-serif;
                  font-weight: 500;
                  letter-spacing: 1px;
                  text-transform: uppercase;
                  margin-left: 5%;
                  margin-right: 5%; }
    div.bookshelf section.shelf div.base {
      height: 40px;
      background: white;
      width: 100%;
      position: absolute;
      bottom: 0;
      z-index: 200; }
      div.bookshelf section.shelf div.base .shelf-title {
        margin: 0;
        padding: 0;
        padding-left: 10px;
        font-family: 'futura-pt', sans-serif;
        text-transform: uppercase;
        font-size: 20px;
        color: #9B3434;
        letter-spacing: 1.11px;
        line-height: 40px;
        vertical-align: middle; }

.edition .post-date {
  margin: 0;
  font-family: 'futura-pt', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4A4A4A;
  letter-spacing: 1.11px;
  line-height: 27px; }

.edition .post-title {
  margin: 0;
  font-family: 'futura-pt', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #9B3434;
  letter-spacing: 1px;
  line-height: 40px; }

.edition blockquote {
  border: none;
  font-weight: inherit;
  color: #9B9B9B;
  font-family: 'adriane' serif;
  font-style: italic;
  line-height: 125%;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0; }

.edition article.post-content {
  margin: 0;
  padding: 0; }

.edition-item .post-title {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  font-family: 'adriane', serif;
  font-size: 30px;
  color: #4A4A4A;
  line-height: 33px; }

.edition-item .post-date {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #B8ADA4;
  letter-spacing: 0.88px;
  line-height: 13px; }

.membership-section {
  text-align: center;
  margin: 30px auto; }
  .membership-section .membership-section-icon {
    margin: auto;
    width: 50%;
    height: 50%;
    min-width: 88px;
    min-height: 88px;
    border-radius: 50%;
    background-color: 'transparent';
    overflow: hidden;
    text-align: center; }
    .membership-section .membership-section-icon img {
      text-align: center;
      max-width: 100%;
      min-width: 100%;
      opacity: 1;
      border-radius: 50%; }
  .membership-section .membership-section-title {
    padding: 0 15%;
    font-family: 'futura-pt', sans-serif;
    font-size: 16px;
    color: #9B9B9B;
    letter-spacing: 0.75px;
    line-height: 20px; }
  .membership-section:hover {
    cursor: pointer; }
    .membership-section:hover .membership-section-icon {
      background: #808BA9; }
      .membership-section:hover .membership-section-icon img {
        border-radius: 50%;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        opacity: 0.6; }
    .membership-section:hover .membership-section-title {
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      color: #808BA9; }

nav[role='content'] {
  margin: 0;
  margin-top: -30px;
  padding: 0;
  width: auto;
  height: 40px;
  background: #4A4A4A !important; }
  nav[role='content'] ul {
    margin: 0;
    padding: 0;
    height: 40px; }
    nav[role='content'] ul li {
      height: 40px;
      line-height: 40px;
      vertical-align: middle;
      display: inline-block;
      width: auto;
      margin-right: 15px;
      font-size: 16x;
      font-weight: 400;
      font-family: 'futura-pt', sans-serif;
      color: #9B9B9B; }
      nav[role='content'] ul li.active {
        font-weight: 500;
        line-height: 40px;
        height: 40px;
        border-bottom: 4px solid #808BA9;
        color: white; }
      nav[role='content'] ul li:hover {
        -webkit-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        color: white; }
    nav[role='content'] ul.left {
      float: left; }
    nav[role='content'] ul.right {
      float: right; }
  nav[role='content'].archive {
    margin-top: 0; }
    nav[role='content'].archive ul li.active {
      border-bottom: 4px solid #9B3434; }

.book-list {
  margin-top: 30px;
  position: relative;
  display: block;
  height: auto; }
  .book-list .book-list-item {
    display: inline-block;
    width: 120px;
    margin-right: 15px;
    padding-left: 0px; }

.artist-hero {
  position: relative;
  height: auto; }
  .artist-hero header {
    height: 100%;
    position: absolute;
    width: 100%;
    bottom: 30px; }
    .artist-hero header .hero-title {
      height: auto;
      position: absolute;
      bottom: 0; }
      .artist-hero header .hero-title h1 {
        text-align: left;
        color: white;
        margin: 0;
        padding: 0;
        font-size: 36px;
        font-weight: 600;
        line-height: 40px; }
      .artist-hero header .hero-title .category, .artist-hero header .hero-title .byline {
        font-family: 'futura-pt';
        font-weight: 500;
        margin: 0;
        padding: 15px 0;
        color: white;
        font-size: 20px; }

.single-artist {
  position: relative; }
  .single-artist .artist-quote {
    font-family: 'adriane', serif;
    font-weight: 600;
    font-size: 22px;
    color: #343434;
    line-height: 32px;
    padding-left: 20px; }
  .single-artist img.quote-open {
    padding: 0 30px 30px 0;
    margin-left: -20px;
    position: relative;
    float: left; }
  .single-artist .artist-title {
    font-family: 'futura-pt', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    color: #343434;
    letter-spacing: 1.92px;
    line-height: 32px;
    margin-bottom: 20px; }
  .single-artist .vertical-separator {
    background: rgba(155, 155, 155, 0.2);
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; }

.artist-selected-work nav.unslider-nav ol {
  float: right; }
  .artist-selected-work nav.unslider-nav ol li {
    background: blue; }

.artist-selected-work .artwork-meta {
  margin-top: 30px; }
  .artist-selected-work .artwork-meta .post-section {
    padding-top: 20px;
    color: #9B9B9B; }
  .artist-selected-work .artwork-meta .post-title {
    margin-bottom: 0;
    padding-bottom: 0; }
  .artist-selected-work .artwork-meta .post-excerpt {
    font-size: 12px;
    line-height: 16px;
    color: #343434; }

.av-index-player-playlist {
  padding-bottom: 30px; }
  .av-index-player-playlist .videoplaylist {
    padding-left: 30px; }
    .av-index-player-playlist .videoplaylist .av-item {
      margin-top: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      .av-index-player-playlist .videoplaylist .av-item:first-child {
        margin-top: 0; }
      .av-index-player-playlist .videoplaylist .av-item image {
        width: 120px;
        height: auto;
        flex: left;
        margin-right: 15px; }
      .av-index-player-playlist .videoplaylist .av-item .post-title {
        margin: 0;
        padding: 0;
        font-size: 18px;
        color: white;
        margin-bottom: 10px; }
  .av-index-player-playlist .post-excerpt {
    color: #e5e5e5; }

.post-content h1, .page-content h1 {
  font-size: 32px !important;
  margin: .67em 0; }

.post-content h2, .page-content h2 {
  font-size: 24px !important;
  margin: .75em 0; }

.post-content h3, .page-content h3 {
  font-size: 19px !important;
  margin: .83em 0; }

.post-content h4, .page-content h4 {
  font-size: 17px !important;
  margin: .83em 0; }

.post-content h5, .page-content h5 {
  font-size: 16px !important;
  margin: 1.5em 0; }

.post-content h6, .page-content h6 {
  font-size: 13px !important;
  margin: 1.67em 0; }

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6, .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  color: #9B3434;
  font-weight: 500;
  letter-spacing: 1px; }

.post-content :not(header *) h1, .post-content :not(header *) h2, .post-content :not(header *) h3, .post-content :not(header *) h4, .post-content :not(header *) h5, .post-content :not(header *) h6, .page-content :not(header *) h1, .page-content :not(header *) h2, .page-content :not(header *) h3, .page-content :not(header *) h4, .page-content :not(header *) h5, .page-content :not(header *) h6 {
  font-family: 'futura-pt' sans-serif;
  text-transform: uppercase; }

.page-content {
  padding-top: 30px; }

.edition-item img {
  border-bottom: 1px solid rgba(155, 155, 155, 0.2); }

.edition-item .publication-date {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  color: #9B9B9B;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 10px;
  padding-top: 15px;
  letter-spacing: 1.75; }

.edition-item .post-title {
  margin: 0;
  padding: 0 15px 15px 15px;
  margin-bottom: 10px;
  font-family: 'adriane', serif;
  font-size: 18px;
  font-weight: 400;
  color: #4A4A4A;
  letter-spacing: 0.51px;
  line-height: 22px; }

.unslider {
  overflow: auto; }

.unslider-wrap {
  position: relative; }

.unslider-wrap.unslider-carousel li {
  float: left; }

.unslider-vertical > ul {
  height: 100%; }

.unslider-vertical li {
  float: none;
  width: 100%; }

.unslider-fade {
  position: relative; }

.unslider-fade .unslider-wrap li {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 8; }

.unslider-fade .unslider-wrap li.unslider-active {
  z-index: 10; }

.unslider li {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none; }

.unslider-nav ol {
  list-style: none;
  text-align: center; }

.unslider-nav ol li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
  text-indent: -999em;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer; }

.unslider-nav ol li.unslider-active {
  background: #fff;
  cursor: default; }

.unslider-arrow {
  position: absolute;
  top: 50%;
  margin-top: -60px;
  background: blue; }
  .unslider-arrow:hover {
    cursor: pointer; }
  .unslider-arrow.left-arrow {
    background: url(../images/slider/ic_carat_left_gray.svg) center center no-repeat;
    background-size: 30px 60px;
    width: 30px;
    height: 60px;
    left: 30px; }
  .unslider-arrow.right-arrow {
    background: url(../images/slider/ic_carat_right_red.svg) center center no-repeat;
    background-size: 30px 60px;
    width: 30px;
    height: 60px;
    right: 30px; }

div.collapsible-header {
  font-family: 'futura-pt', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #9B3434;
  vertical-align: middle;
  letter-spacing: -0.25;
  margin: 0;
  padding: 0;
  text-align: left; }

div.collapsible-body p {
  padding: 0 0 15px 0 !important; }
  div.collapsible-body p label {
    color: black; }

div#searchMode {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  pointer-events: none; }
  div#searchMode div.overlay {
    background: transparent;
    z-index: 1001;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    div#searchMode div.overlay:hover {
      cursor: pointer; }
  div#searchMode.active {
    display: inline;
    opacity: 1;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    pointer-events: auto; }
    div#searchMode.active div.overlay {
      background: rgba(0, 0, 0, 0.95);
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.95)), color-stop(100%, rgba(0, 0, 0, 0.7)));
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
      background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 ); }
  div#searchMode div#searchModeForm {
    position: absolute;
    top: 40px;
    height: 80px;
    background: #e5e5e5;
    left: 0;
    right: 0;
    border-bottom: 2px solid #9B3434;
    z-index: 1002; }
    div#searchMode div#searchModeForm div.advanced-searchmode-logo-fixed {
      width: 70px;
      height: 140px;
      left: 10px;
      background: url(../images/navigation/img_logo@2x.png) center bottom no-repeat;
      background-size: 70px 140px;
      top: -40px;
      position: absolute;
      z-index: 1003; }
      html.mobile div#searchMode div#searchModeForm div.advanced-searchmode-logo-fixed {
        display: none; }
      @media screen and (max-width: 480px) {
        div#searchMode div#searchModeForm div.advanced-searchmode-logo-fixed {
          display: none; } }
    div#searchMode div#searchModeForm input.advanced-searchmode-input {
      position: relative;
      left: 90px;
      height: 80px;
      border: none;
      line-height: 44px;
      vertical-align: middle;
      text-align: left;
      color: #9B3434;
      font-family: 'futura-pt', sans-serif;
      font-weight: 500;
      font-size: 44px;
      text-transform: uppercase; }
      div#searchMode div#searchModeForm input.advanced-searchmode-input:focus {
        border: none; }
      html.mobile div#searchMode div#searchModeForm input.advanced-searchmode-input {
        left: 0px;
        right: 10px; }
      @media screen and (max-width: 480px) {
        div#searchMode div#searchModeForm input.advanced-searchmode-input {
          left: 0px;
          right: 10px; } }
    div#searchMode div#searchModeForm label.advanced-searchmode-label {
      position: absolute;
      top: 0;
      left: 90px;
      height: 80px;
      border: none;
      line-height: 80px;
      vertical-align: middle;
      text-align: left;
      color: rgba(0, 0, 0, 0.1);
      font-family: 'futura-pt', sans-serif;
      font-weight: 500;
      font-size: 44px;
      text-transform: uppercase;
      padding-left: 10px;
      pointer-events: none; }
      html.mobile div#searchMode div#searchModeForm label.advanced-searchmode-label {
        left: 0px;
        right: 10px; }
      @media screen and (max-width: 480px) {
        div#searchMode div#searchModeForm label.advanced-searchmode-label {
          left: 0px;
          right: 10px; } }
  div#searchMode #searchModeHint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-style: normal;
    font-family: 'futura-pt', sans-serif;
    text-transform: uppercase;
    position: absolute;
    top: -30px;
    left: 105px; }
    html.mobile div#searchMode #searchModeHint {
      left: 10px; }
    @media screen and (max-width: 480px) {
      div#searchMode #searchModeHint {
        left: 10px; } }

section.singular-av div.video-feature-section {
  height: auto;
  min-height: 468px;
  width: 100%;
  position: relative;
  top: 0; }
  html.mobile section.singular-av div.video-feature-section {
    height: 200px; }
  @media screen and (max-width: 480px) {
    section.singular-av div.video-feature-section {
      height: 200px; } }
  section.singular-av div.video-feature-section #video-LaunchButton {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -55px;
    background: url("../images/ic_play_large_normal.png") center center;
    background-size: contain;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    html.mobile section.singular-av div.video-feature-section #video-LaunchButton {
      width: 80px;
      height: 80px;
      margin-left: -40px;
      top: 65px; }
    @media screen and (max-width: 480px) {
      section.singular-av div.video-feature-section #video-LaunchButton {
        width: 80px;
        height: 80px;
        margin-left: -40px;
        top: 65px; } }
    section.singular-av div.video-feature-section #video-LaunchButton:hover {
      background: url("../images/ic_play_large_active.png") center center;
      background-size: contain;
      cursor: pointer;
      -webkit-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }

section.singular-av article div.post-content {
  text-align: justify;
  margin-bottom: 60px; }
  html.mobile section.singular-av article div.post-content {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; }
  @media screen and (max-width: 480px) {
    section.singular-av article div.post-content {
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto; } }
  section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft {
    float: left;
    margin: 0;
    margin-left: -27.5%;
    padding: 10px 30px 20px 10px; }
    section.singular-av article div.post-content .featuredImage img, section.singular-av article div.post-content figure.alignleft img, section.singular-av article div.post-content img.alignleft img {
      padding: 0;
      margin: 0; }
      section.singular-av article div.post-content .featuredImage img:hover, section.singular-av article div.post-content figure.alignleft img:hover, section.singular-av article div.post-content img.alignleft img:hover {
        cursor: pointer; }
    html.mobile section.singular-av article div.post-content .featuredImage, html.mobile section.singular-av article div.post-content figure.alignleft, html.mobile section.singular-av article div.post-content img.alignleft {
      margin-left: 0;
      padding: 10px 20px 10px 0; }
    @media screen and (max-width: 480px) {
      section.singular-av article div.post-content .featuredImage, section.singular-av article div.post-content figure.alignleft, section.singular-av article div.post-content img.alignleft {
        margin-left: 0;
        padding: 10px 20px 10px 0; } }
  section.singular-av article div.post-content a {
    color: #9B3434; }
    section.singular-av article div.post-content a:active, section.singular-av article div.post-content a:link {
      color: #9B3434; }
    section.singular-av article div.post-content a:hover {
      color: #9B3434;
      text-decoration: underline; }
    section.singular-av article div.post-content a:visited {
      color: #762424; }

section.singular-av article p.post-title {
  font-size: 32px;
  line-height: 36px;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-weight: bold; }

section.singular-av article p.post-date {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
  color: #9B9B9B;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 10px; }
  html.mobile section.singular-av article p.post-date {
    margin-bottom: 0px; }
  @media screen and (max-width: 480px) {
    section.singular-av article p.post-date {
      margin-bottom: 0px; } }

#videoPlayer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  pointer-events: none; }
  #videoPlayer div.overlay {
    background: rgba(40, 40, 40, 0);
    z-index: 1001;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    #videoPlayer div.overlay:hover {
      cursor: pointer; }
  #videoPlayer div#videoPlayerContainer {
    position: absolute;
    top: 0;
    height: auto;
    min-height: 140px;
    background: transparent;
    left: 0;
    right: 0;
    z-index: 1002;
    margin-top: 120px; }
    #videoPlayer div#videoPlayerContainer div.player-logo-fixed {
      width: 70px;
      height: 140px;
      left: 10px;
      background: url(../images/navigation/img_logo@2x.png) center bottom no-repeat;
      background-size: 70px 140px;
      top: -120px;
      position: absolute;
      z-index: 1003; }
      html.mobile #videoPlayer div#videoPlayerContainer div.player-logo-fixed {
        display: none; }
      @media screen and (max-width: 480px) {
        #videoPlayer div#videoPlayerContainer div.player-logo-fixed {
          display: none; } }
  #videoPlayer.active {
    display: inline;
    opacity: 1;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    pointer-events: auto; }
    #videoPlayer.active div.overlay {
      background: rgba(40, 40, 40, 0.95); }

#newsletterModal, #popUpModal {
  overflow: visible;
  background: white; }
  #newsletterModal ::-webkit-scrollbar, #popUpModal ::-webkit-scrollbar {
    width: 0 !important; }
  #newsletterModal h1, #popUpModal h1 {
    font-family: 'futura-pt', sans-serif;
    text-transform: uppercase;
    font-size: 72px;
    line-height: 76px;
    font-weight: 600; }
    html.mobile #newsletterModal h1, html.mobile #popUpModal h1 {
      font-size: 44px;
      line-height: 48px; }
    @media screen and (max-width: 480px) {
      #newsletterModal h1, #popUpModal h1 {
        font-size: 44px;
        line-height: 48px; } }
    html.tablet #newsletterModal h1, html.tablet #popUpModal h1 {
      font-size: 44px;
      line-height: 48px; }
    @media screen and (min-width: 481px) and (max-width: 1024px) {
      #newsletterModal h1, #popUpModal h1 {
        font-size: 44px;
        line-height: 48px; } }
  #newsletterModal div.newsletterModalX, #newsletterModal div.popUpModalX, #popUpModal div.newsletterModalX, #popUpModal div.popUpModalX {
    width: 30px;
    height: 30px;
    background: url("../images/1466144101_close.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer; }

/*! Typebase.less v0.1.0 | MIT License */
/* Setup */
html {
  /* Change default typefaces here */
  font-family: "adriane", "Adriane Text", serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: auto;
  -moz-text-size-adjust: auto;
  -ms-text-size-adjust: auto;
  -o-text-size-adjust: auto;
  text-size-adjust: auto; }

/* Copy & Lists */
p {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0; }

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }
  ul li,
  ol li {
    line-height: 1.5rem; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-top: 0;
    margin-bottom: 0; }

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* Change heading typefaces here */
  font-family: "adriane", "Adriane Text", serif;
  font-weight: 100;
  margin-top: 1.5rem;
  margin-bottom: 0;
  line-height: 1.5rem; }

h1 {
  font-size: 4.242rem;
  line-height: 4.5rem;
  margin-top: 3rem; }

h2 {
  font-size: 2.828rem;
  line-height: 3rem;
  margin-top: 3rem; }

h3 {
  font-family: "futura-pt", "Futura", serif;
  font-size: 1.414rem;
  text-transform: uppercase; }

h4 {
  font-family: "futura-pt", "Futura", serif;
  font-size: 0.707rem;
  text-transform: uppercase; }

h5 {
  font-family: "futura-pt", "Futura", serif;
  font-size: 0.47133rem;
  text-transform: uppercase; }

h6 {
  font-family: "futura-pt", "Futura", serif;
  font-size: 0.3535rem;
  text-transform: uppercase; }

/* Tables */
table {
  margin-top: 1.5rem;
  border-spacing: 0px;
  border-collapse: collapse; }

td,
th {
  padding: 0;
  line-height: 33px; }

/* Code blocks */
code {
  vertical-align: bottom; }

/* Leading paragraph text */
.lead {
  font-size: 1.414rem; }

/* Hug a the block above you */
.hug {
  margin-top: 0; }

/*# sourceMappingURL=style.map */