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

Stylesheet: Main Stylesheet

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

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

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

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

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

Stylesheet: Typography

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

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

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

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

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

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

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

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

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

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

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

******************************************************************/
/*================ #Clear Fix ================*/
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/**
 * Foundation for Sites by ZURB
 * Version 6.5.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

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

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

******************************************************************/
/*********************
INPUTS
*********************/
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
/******************************************************************
Stylesheet: Base Mobile Stylesheet
******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* html element 62.5% font-size for REM use */
@charset "UTF-8";
/* Arrows */
/******************************************************************
Stylesheet: Super Large Monitor Stylesheet
******************************************************************/
/*iPad Portrait orientation styles */
/*iPad landscape orientation styles */
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
	/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
}
audio,
canvas,
video {
	display: inline-block;
	/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
}
audio:not([controls]) {
	display: none;
	height: 0;
	/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
}
[hidden],
template {
	display: none;
	/* ==========================================================================
   Base
   ========================================================================== */
	/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
}
html {
	/* 1 */
	font-family: sans-serif;
	/* 2 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/**
 * Remove default margin.
 */
}
body {
	margin: 0;
	/* ==========================================================================
   Links
   ========================================================================== */
	/**
 * Remove the gray background color from active links in IE 10.
 */
}
a {
	background: transparent;
	/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
}
a:focus {
	outline: thin dotted;
	/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
}
a:active,
a:hover {
	outline: 0;
	/* ==========================================================================
   Typography
   ========================================================================== */
	/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
	/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
}
abbr[title] {
	border-bottom: 1px dotted;
	/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
}
b,
strong,
.strong {
	font-weight: bold;
	/**
 * Address styling not present in Safari 5 and Chrome.
 */
}
dfn,
em,
.em {
	font-style: italic;
	/**
 * Address differences between Firefox and other browsers.
 */
}
hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	/*
 * Addresses margins set differently in IE6/7.
 */
}
pre {
	margin: 0;
	/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
}
code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
	/**
 * Improve readability of pre-formatted text in all browsers.
 */
}
pre {
	white-space: pre-wrap;
	/**
 * Set consistent quote types.
 */
}
q {
	quotes: "\201C""\201D""\2018""\2019";
	/**
 * Address inconsistent and variable font size in all browsers.
 */
}
q:before,
q:after {
	content: "";
	content: none;
}
small,
.small {
	font-size: 75%;
	/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
	/* ==========================================================================
  Lists
========================================================================== */
	/*
 * Addresses margins set differently in IE6/7.
 */
}
dl,
menu,
ol,
ul {
	margin: 0;
}
dd {
	margin: 0;
	/*
 * Addresses paddings set differently in IE6/7.
 */
}
menu {
	padding: 0 0 0 40px;
}
ol,
ul {
	padding: 0;
	list-style-type: none;
	/*
 * Corrects list images handled incorrectly in IE7.
 */
}
nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
	/* ==========================================================================
  Embedded content
========================================================================== */
	/**
 * Remove border when inside `a` element in IE 8/9.
 */
}
img {
	border: 0;
	/**
 * Correct overflow displayed oddly in IE 9.
 */
}
img {
	-ms-interpolation-mode: bicubic;
}
svg:not(:root) {
	overflow: hidden;
	/* ==========================================================================
   Figures
   ========================================================================== */
	/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
}
figure {
	margin: 0;
	/* ==========================================================================
   Forms
   ========================================================================== */
	/**
 * Define consistent border, margin, and padding.
 */
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
}
legend {
	/* 1 */
	border: 0;
	/* 2 */
	padding: 0;
	/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
}
button,
input,
select,
textarea {
	/* 1 */
	font-family: inherit;
	/* 2 */
	font-size: 100%;
	/* 3 */
	margin: 0;
	/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
}
button,
input {
	line-height: normal;
	/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
}
button,
select {
	text-transform: none;
	/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	/* 2 */
	-webkit-appearance: button;
	/* 3 */
	cursor: pointer;
	/**
 * Re-set default cursor for disabled elements.
 */
}
button[disabled],
html input[disabled] {
	cursor: default;
	/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
}
input[type="checkbox"],
input[type="radio"] {
	/* 1 */
	box-sizing: border-box;
	/* 2 */
	padding: 0;
	/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
}
input[type="search"] {
	/* 1 */
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	/* 2 */
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
	/**
 * Remove inner padding and border in Firefox 4+.
 */
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
	/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
}
textarea {
	/* 1 */
	overflow: auto;
	/* 2 */
	vertical-align: top;
	/* ==========================================================================
   Tables
   ========================================================================== */
	/**
 * Remove most spacing between table cells.
 */
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*.image-replacement,
.ir {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}*/
	/*  IMAGE Replacement */
}
.image-replacement,
.ir {
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: transparent;
}
.clearfix,
.cf,
.comment-respond {
	zoom: 1;
	/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
}
.clearfix:before,
.cf:before,
.comment-respond:before,
.clearfix:after,
.cf:after,
.comment-respond:after {
	content: "";
	display: table;
}
.clearfix:after,
.cf:after,
.comment-respond:after {
	clear: both;
}
span.amp {
	font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
	font-style: italic;
}
p {
	-ms-word-wrap: normal;
	word-break: normal;
	word-wrap: normal;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	-webkit-hyphenate-before: 2;
	-webkit-hyphenate-after: 3;
	hyphenate-lines: 3;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}
.kite {
	display: table;
	width: 100%;
	font-size: 0 !important;
	/*
Opera 12 has causing too wide gaps bug by setting `font-size: 0'.
If you need to fix this bug, use the following code.

```
.opera:-o-prefocus,
.kite {
  font-size: 0.5px !important;
}
```
*/
}
.kite__item {
	box-sizing: border-box;
	display: inline-block;
	font-size: medium;
	font-size: 1rem;
	vertical-align: top;
	/*
# kite functions
*/
	/*
## Horizontal align items

```html
<div class="kite kite--center">
  <div class="kite__item">A</div>
  <div class="kite__item">B</div>
  <div class="kite__item">C</div>
</div>
```
*/
}
.kite--left {
	text-align: left !important;
}
.kite--center {
	text-align: center !important;
}
.kite--right {
	text-align: right !important;
	/*
## Sizing items

```html
<div class="kite">
  <div class="kite__item">A</div>
  <div class="kite__item kite__item--left">B</div>
  <div class="kite__item kite__item--right">C</div>
</div>
```
*/
}
.kite__item--fifth {
	width: 20%;
}
.kite__item--fourth {
	width: 25%;
}
.kite__item--third {
	width: 33.333%;
}
.kite__item--half {
	width: 50%;
}
.kite__item--full {
	width: 100%;
	/*
## Vertical align items

```html
<div class="kite">
  <div class="kite__item">A</div>
  <div class="kite__item kite__item--middle">B</div>
  <div class="kite__item kite__item--middle">C</div>
</div>
```
*/
}
.kite--top > .kite__item {
	vertical-align: top !important;
}
.kite--middle > .kite__item {
	vertical-align: middle !important;
}
.kite--bottom {
	/*
## Horizontal align content in items

```html
<div class="kite">
  <div class="kite__item kite__item--center">A</div>
  <div class="kite__item kite__item--center">B</div>
  <div class="kite__item kite__item--center">C</div>
</div>
```
*/
}
.kite--bottom > .kite__item {
	vertical-align: bottom !important;
}
.kite__item--left {
	text-align: left !important;
}
.kite__item--center {
	text-align: center !important;
}
.kite__item--right {
	text-align: right !important;
	/*
## Intrinsic width 

```html
<div class="kite">
  <div class="kite__item">A</div>
  <div class="kite__item kite__item--left">B</div>
  <div class="kite__item kite__item--right">C</div>
</div>
```
*/
}
.kite__item--fifth {
	width: 20%;
}
.kite__item--fourth {
	width: 25%;
}
.kite__item--third {
	width: 33.333%;
}
.kite__item--half {
	width: 50%;
}
.kite__item--full {
	width: 100%;
	/*
## Justify align items

```html
<div class="kite kite--justify">
  <div class="kite__item">A</div>
  <div class="kite__item">B</div>
  <div class="kite__item">C</div>
</div>
```
*/
}
.kite--justify {
	display: block;
	text-align: justify;
	text-justify: distribute-all-lines;
	/*
## Fill items

```html
<div class="kite kite--justify">
  <div class="kite__item">A</div>
  <div class="kite__item">B</div>
  <div class="kite__item">C</div>
</div>
```
*/
}
.kite--justify:after {
	content: "";
	display: inline-block;
	width: 100%;
}
.kite--fill {
	/*
## Absolute position items

```html
<div style="position:relative">
  <div class="kite kite--position">
    <div class="kite__item">A</div>
  </div>
</div>
```
*/
}
.kite--fill.is-equalize {
	table-layout: fixed;
}
.kite--fill > .kite__item {
	display: table-cell;
}
.kite--position {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	/*
## Grid layout items

NOTE: this can trigger a horizontal scrollbar if the component is as wide as the viewport.
Use padding on a container(.kite), or `overflow-x:hidden` to protect against it.

```html
<div class="kite kite--grid has-gutter">
  <div class="kite__item is-4of12">A</div>
  <div class="kite__item is-4of12">B</div>
  <div class="kite__item is-4of12">C</div>
</div>
```
*/
}
.kite--position.is-position-fixed {
	position: fixed;
}
.kite--position:after {
	display: inline-block;
	content: "";
	height: 100%;
	vertical-align: middle;
}
.kite--position > .kite__item {
	vertical-align: middle;
	text-align: left;
}
.kite--grid > .kite__item.is-1of12 {
	width: 8.33333%;
}
.kite--grid > .kite__item.is-2of12 {
	width: 16.66667%;
}
.kite--grid > .kite__item.is-3of12 {
	width: 25%;
}
.kite--grid > .kite__item.is-4of12 {
	width: 33.33333%;
}
.kite--grid > .kite__item.is-5of12 {
	width: 41.66667%;
}
.kite--grid > .kite__item.is-6of12 {
	width: 50%;
}
.kite--grid > .kite__item.is-7of12 {
	width: 58.33333%;
}
.kite--grid > .kite__item.is-8of12 {
	width: 66.66667%;
}
.kite--grid > .kite__item.is-9of12 {
	width: 75%;
}
.kite--grid > .kite__item.is-10of12 {
	width: 83.33333%;
}
.kite--grid > .kite__item.is-11of12 {
	width: 91.66667%;
}
.kite--grid > .kite__item.is-12of12 {
	width: 100%;
}
.kite--grid.has-gutter {
	display: block;
	width: auto;
	margin-left: -10px;
	margin-right: -10px;
}
.kite--grid.has-gutter > .kite__item {
	padding-left: 10px;
	padding-right: 10px;
}
.grid-container {
	padding-right: 0.9375rem;
	padding-left: 0.9375rem;
	max-width: 62.5rem;
	margin: 0 auto;
}
.grid-container.fluid {
	padding-right: 0.9375rem;
	padding-left: 0.9375rem;
	max-width: 100%;
	margin: 0 auto;
}
.grid-container.full {
	padding-right: 0;
	padding-left: 0;
	max-width: 100%;
	margin: 0 auto;
}
.grid-x {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.cell {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	min-height: 0px;
	min-width: 0px;
	width: 100%;
}
.cell.auto {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 0px;
	-ms-flex: 1 1 0px;
	flex: 1 1 0px;
}
.cell.shrink {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.grid-x > .auto {
	width: auto;
}
.grid-x > .shrink {
	width: auto;
}
.grid-x > .small-shrink,
.grid-x > .small-full,
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}
@media only screen and (min-width: 768px) {
	.grid-x > .medium-shrink,
	.grid-x > .medium-full,
	.grid-x > .medium-1,
	.grid-x > .medium-2,
	.grid-x > .medium-3,
	.grid-x > .medium-4,
	.grid-x > .medium-5,
	.grid-x > .medium-6,
	.grid-x > .medium-7,
	.grid-x > .medium-8,
	.grid-x > .medium-9,
	.grid-x > .medium-10,
	.grid-x > .medium-11,
	.grid-x > .medium-12 {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}
@media only screen and (min-width: 1000px) {
	.grid-x > .large-shrink,
	.grid-x > .large-full,
	.grid-x > .large-1,
	.grid-x > .large-2,
	.grid-x > .large-3,
	.grid-x > .large-4,
	.grid-x > .large-5,
	.grid-x > .large-6,
	.grid-x > .large-7,
	.grid-x > .large-8,
	.grid-x > .large-9,
	.grid-x > .large-10,
	.grid-x > .large-11,
	.grid-x > .large-12 {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.grid-x > .small-1 {
	width: 8.33333%;
}
.grid-x > .small-2 {
	width: 16.66667%;
}
.grid-x > .small-3 {
	width: 25%;
}
.grid-x > .small-4 {
	width: 33.33333%;
}
.grid-x > .small-5 {
	width: 41.66667%;
}
.grid-x > .small-6 {
	width: 50%;
}
.grid-x > .small-7 {
	width: 58.33333%;
}
.grid-x > .small-8 {
	width: 66.66667%;
}
.grid-x > .small-9 {
	width: 75%;
}
.grid-x > .small-10 {
	width: 83.33333%;
}
.grid-x > .small-11 {
	width: 91.66667%;
}
.grid-x > .small-12 {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.grid-x > .medium-auto {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 0px;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto;
	}
	.grid-x > .medium-shrink,
	.grid-x > .medium-1,
	.grid-x > .medium-2,
	.grid-x > .medium-3,
	.grid-x > .medium-4,
	.grid-x > .medium-5,
	.grid-x > .medium-6,
	.grid-x > .medium-7,
	.grid-x > .medium-8,
	.grid-x > .medium-9,
	.grid-x > .medium-10,
	.grid-x > .medium-11,
	.grid-x > .medium-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	.grid-x > .medium-shrink {
		width: auto;
	}
	.grid-x > .medium-1 {
		width: 8.33333%;
	}
	.grid-x > .medium-2 {
		width: 16.66667%;
	}
	.grid-x > .medium-3 {
		width: 25%;
	}
	.grid-x > .medium-4 {
		width: 33.33333%;
	}
	.grid-x > .medium-5 {
		width: 41.66667%;
	}
	.grid-x > .medium-6 {
		width: 50%;
	}
	.grid-x > .medium-7 {
		width: 58.33333%;
	}
	.grid-x > .medium-8 {
		width: 66.66667%;
	}
	.grid-x > .medium-9 {
		width: 75%;
	}
	.grid-x > .medium-10 {
		width: 83.33333%;
	}
	.grid-x > .medium-11 {
		width: 91.66667%;
	}
	.grid-x > .medium-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.grid-x > .large-auto {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 0px;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto;
	}
	.grid-x > .large-shrink,
	.grid-x > .large-1,
	.grid-x > .large-2,
	.grid-x > .large-3,
	.grid-x > .large-4,
	.grid-x > .large-5,
	.grid-x > .large-6,
	.grid-x > .large-7,
	.grid-x > .large-8,
	.grid-x > .large-9,
	.grid-x > .large-10,
	.grid-x > .large-11,
	.grid-x > .large-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	.grid-x > .large-shrink {
		width: auto;
	}
	.grid-x > .large-1 {
		width: 8.33333%;
	}
	.grid-x > .large-2 {
		width: 16.66667%;
	}
	.grid-x > .large-3 {
		width: 25%;
	}
	.grid-x > .large-4 {
		width: 33.33333%;
	}
	.grid-x > .large-5 {
		width: 41.66667%;
	}
	.grid-x > .large-6 {
		width: 50%;
	}
	.grid-x > .large-7 {
		width: 58.33333%;
	}
	.grid-x > .large-8 {
		width: 66.66667%;
	}
	.grid-x > .large-9 {
		width: 75%;
	}
	.grid-x > .large-10 {
		width: 83.33333%;
	}
	.grid-x > .large-11 {
		width: 91.66667%;
	}
	.grid-x > .large-12 {
		width: 100%;
	}
}
.grid-margin-x:not(.grid-x) > .cell {
	width: auto;
}
.grid-margin-y:not(.grid-y) > .cell {
	height: auto;
}
.grid-margin-x {
	margin-left: -0.9375rem;
	margin-right: -0.9375rem;
}
.grid-margin-x > .cell {
	width: calc(100% - 1.875rem);
	margin-left: 0.9375rem;
	margin-right: 0.9375rem;
}
.grid-margin-x > .auto {
	width: auto;
}
.grid-margin-x > .shrink {
	width: auto;
}
.grid-margin-x > .small-1 {
	width: calc(8.33333% - 1.875rem);
}
.grid-margin-x > .small-2 {
	width: calc(16.66667% - 1.875rem);
}
.grid-margin-x > .small-3 {
	width: calc(25% - 1.875rem);
}
.grid-margin-x > .small-4 {
	width: calc(33.33333% - 1.875rem);
}
.grid-margin-x > .small-5 {
	width: calc(41.66667% - 1.875rem);
}
.grid-margin-x > .small-6 {
	width: calc(50% - 1.875rem);
}
.grid-margin-x > .small-7 {
	width: calc(58.33333% - 1.875rem);
}
.grid-margin-x > .small-8 {
	width: calc(66.66667% - 1.875rem);
}
.grid-margin-x > .small-9 {
	width: calc(75% - 1.875rem);
}
.grid-margin-x > .small-10 {
	width: calc(83.33333% - 1.875rem);
}
.grid-margin-x > .small-11 {
	width: calc(91.66667% - 1.875rem);
}
.grid-margin-x > .small-12 {
	width: calc(100% - 1.875rem);
}
@media only screen and (min-width: 768px) {
	.grid-margin-x > .medium-auto {
		width: auto;
	}
	.grid-margin-x > .medium-shrink {
		width: auto;
	}
	.grid-margin-x > .medium-1 {
		width: calc(8.33333% - 1.875rem);
	}
	.grid-margin-x > .medium-2 {
		width: calc(16.66667% - 1.875rem);
	}
	.grid-margin-x > .medium-3 {
		width: calc(25% - 1.875rem);
	}
	.grid-margin-x > .medium-4 {
		width: calc(33.33333% - 1.875rem);
	}
	.grid-margin-x > .medium-5 {
		width: calc(41.66667% - 1.875rem);
	}
	.grid-margin-x > .medium-6 {
		width: calc(50% - 1.875rem);
	}
	.grid-margin-x > .medium-7 {
		width: calc(58.33333% - 1.875rem);
	}
	.grid-margin-x > .medium-8 {
		width: calc(66.66667% - 1.875rem);
	}
	.grid-margin-x > .medium-9 {
		width: calc(75% - 1.875rem);
	}
	.grid-margin-x > .medium-10 {
		width: calc(83.33333% - 1.875rem);
	}
	.grid-margin-x > .medium-11 {
		width: calc(91.66667% - 1.875rem);
	}
	.grid-margin-x > .medium-12 {
		width: calc(100% - 1.875rem);
	}
}
@media only screen and (min-width: 1000px) {
	.grid-margin-x > .large-auto {
		width: auto;
	}
	.grid-margin-x > .large-shrink {
		width: auto;
	}
	.grid-margin-x > .large-1 {
		width: calc(8.33333% - 1.875rem);
	}
	.grid-margin-x > .large-2 {
		width: calc(16.66667% - 1.875rem);
	}
	.grid-margin-x > .large-3 {
		width: calc(25% - 1.875rem);
	}
	.grid-margin-x > .large-4 {
		width: calc(33.33333% - 1.875rem);
	}
	.grid-margin-x > .large-5 {
		width: calc(41.66667% - 1.875rem);
	}
	.grid-margin-x > .large-6 {
		width: calc(50% - 2.3rem);
	}
	.grid-margin-x > .large-7 {
		width: calc(58.33333% - 1.875rem);
	}
	.grid-margin-x > .large-8 {
		width: calc(66.66667% - 1.875rem);
	}
	.grid-margin-x > .large-9 {
		width: calc(75% - 1.875rem);
	}
	.grid-margin-x > .large-10 {
		width: calc(83.33333% - 1.875rem);
	}
	.grid-margin-x > .large-11 {
		width: calc(91.66667% - 1.875rem);
	}
	.grid-margin-x > .large-12 {
		width: calc(100% - 1.875rem);
	}
}
.grid-padding-x .grid-padding-x {
	margin-right: -0.9375rem;
	margin-left: -0.9375rem;
}
.grid-container:not(.full) > .grid-padding-x {
	margin-right: -0.9375rem;
	margin-left: -0.9375rem;
}
.grid-padding-x > .cell {
	padding-right: 0px;
	padding-left: 0;
}
.small-up-1 > .cell {
	width: 100%;
}
.small-up-2 > .cell {
	width: 50%;
}
.small-up-3 > .cell {
	width: 33.33333%;
}
.small-up-4 > .cell {
	width: 25%;
}
.small-up-5 > .cell {
	width: 20%;
}
.small-up-6 > .cell {
	width: 16.66667%;
}
.small-up-7 > .cell {
	width: 14.28571%;
}
.small-up-8 > .cell {
	width: 12.5%;
}
@media only screen and (min-width: 768px) {
	.medium-up-1 > .cell {
		width: 100%;
	}
	.medium-up-2 > .cell {
		width: 50%;
	}
	.medium-up-3 > .cell {
		width: 33.33333%;
	}
	.medium-up-4 > .cell {
		width: 25%;
	}
	.medium-up-5 > .cell {
		width: 20%;
	}
	.medium-up-6 > .cell {
		width: 16.66667%;
	}
	.medium-up-7 > .cell {
		width: 14.28571%;
	}
	.medium-up-8 > .cell {
		width: 12.5%;
	}
}
@media only screen and (min-width: 1000px) {
	.large-up-1 > .cell {
		width: 100%;
	}
	.large-up-2 > .cell {
		width: 50%;
	}
	.large-up-3 > .cell {
		width: 33.33333%;
	}
	.large-up-4 > .cell {
		width: 25%;
	}
	.large-up-5 > .cell {
		width: 20%;
	}
	.large-up-6 > .cell {
		width: 16.66667%;
	}
	.large-up-7 > .cell {
		width: 14.28571%;
	}
	.large-up-8 > .cell {
		width: 12.5%;
	}
}
.grid-margin-x.small-up-1 > .cell {
	width: calc(100% - 1.875rem);
}
.grid-margin-x.small-up-2 > .cell {
	width: calc(50% - 1.875rem);
}
.grid-margin-x.small-up-3 > .cell {
	width: calc(33.33333% - 1.875rem);
}
.grid-margin-x.small-up-4 > .cell {
	width: calc(25% - 1.875rem);
}
.grid-margin-x.small-up-5 > .cell {
	width: calc(20% - 1.875rem);
}
.grid-margin-x.small-up-6 > .cell {
	width: calc(16.66667% - 1.875rem);
}
.grid-margin-x.small-up-7 > .cell {
	width: calc(14.28571% - 1.875rem);
}
.grid-margin-x.small-up-8 > .cell {
	width: calc(12.5% - 1.875rem);
}
@media only screen and (min-width: 768px) {
	.grid-margin-x.medium-up-1 > .cell {
		width: calc(100% - 1.875rem);
	}
	.grid-margin-x.medium-up-2 > .cell {
		width: calc(50% - 1.875rem);
	}
	.grid-margin-x.medium-up-3 > .cell {
		width: calc(33.33333% - 1.875rem);
	}
	.grid-margin-x.medium-up-4 > .cell {
		width: calc(25% - 1.875rem);
	}
	.grid-margin-x.medium-up-5 > .cell {
		width: calc(20% - 1.875rem);
	}
	.grid-margin-x.medium-up-6 > .cell {
		width: calc(16.66667% - 1.875rem);
	}
	.grid-margin-x.medium-up-7 > .cell {
		width: calc(14.28571% - 1.875rem);
	}
	.grid-margin-x.medium-up-8 > .cell {
		width: calc(12.5% - 1.875rem);
	}
}
@media only screen and (min-width: 1000px) {
	.grid-margin-x.large-up-1 > .cell {
		width: calc(100% - 1.875rem);
	}
	.grid-margin-x.large-up-2 > .cell {
		width: calc(50% - 1.875rem);
	}
	.grid-margin-x.large-up-3 > .cell {
		width: calc(33.33333% - 1.875rem);
	}
	.grid-margin-x.large-up-4 > .cell {
		width: calc(25% - 1.875rem);
	}
	.grid-margin-x.large-up-5 > .cell {
		width: calc(20% - 1.875rem);
	}
	.grid-margin-x.large-up-6 > .cell {
		width: calc(16.66667% - 1.875rem);
	}
	.grid-margin-x.large-up-7 > .cell {
		width: calc(14.28571% - 1.875rem);
	}
	.grid-margin-x.large-up-8 > .cell {
		width: calc(12.5% - 1.875rem);
	}
}
.small-margin-collapse {
	margin-right: 0;
	margin-left: 0;
}
.small-margin-collapse > .cell {
	margin-right: 0;
	margin-left: 0;
}
.small-margin-collapse > .small-1 {
	width: 8.33333%;
}
.small-margin-collapse > .small-2 {
	width: 16.66667%;
}
.small-margin-collapse > .small-3 {
	width: 25%;
}
.small-margin-collapse > .small-4 {
	width: 33.33333%;
}
.small-margin-collapse > .small-5 {
	width: 41.66667%;
}
.small-margin-collapse > .small-6 {
	width: 50%;
}
.small-margin-collapse > .small-7 {
	width: 58.33333%;
}
.small-margin-collapse > .small-8 {
	width: 66.66667%;
}
.small-margin-collapse > .small-9 {
	width: 75%;
}
.small-margin-collapse > .small-10 {
	width: 83.33333%;
}
.small-margin-collapse > .small-11 {
	width: 91.66667%;
}
.small-margin-collapse > .small-12 {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.small-margin-collapse > .medium-1 {
		width: 8.33333%;
	}
	.small-margin-collapse > .medium-2 {
		width: 16.66667%;
	}
	.small-margin-collapse > .medium-3 {
		width: 25%;
	}
	.small-margin-collapse > .medium-4 {
		width: 33.33333%;
	}
	.small-margin-collapse > .medium-5 {
		width: 41.66667%;
	}
	.small-margin-collapse > .medium-6 {
		width: 50%;
	}
	.small-margin-collapse > .medium-7 {
		width: 58.33333%;
	}
	.small-margin-collapse > .medium-8 {
		width: 66.66667%;
	}
	.small-margin-collapse > .medium-9 {
		width: 75%;
	}
	.small-margin-collapse > .medium-10 {
		width: 83.33333%;
	}
	.small-margin-collapse > .medium-11 {
		width: 91.66667%;
	}
	.small-margin-collapse > .medium-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.small-margin-collapse > .large-1 {
		width: 8.33333%;
	}
	.small-margin-collapse > .large-2 {
		width: 16.66667%;
	}
	.small-margin-collapse > .large-3 {
		width: 25%;
	}
	.small-margin-collapse > .large-4 {
		width: 33.33333%;
	}
	.small-margin-collapse > .large-5 {
		width: 41.66667%;
	}
	.small-margin-collapse > .large-6 {
		width: 50%;
	}
	.small-margin-collapse > .large-7 {
		width: 58.33333%;
	}
	.small-margin-collapse > .large-8 {
		width: 66.66667%;
	}
	.small-margin-collapse > .large-9 {
		width: 75%;
	}
	.small-margin-collapse > .large-10 {
		width: 83.33333%;
	}
	.small-margin-collapse > .large-11 {
		width: 91.66667%;
	}
	.small-margin-collapse > .large-12 {
		width: 100%;
	}
}
.small-padding-collapse {
	margin-right: 0;
	margin-left: 0;
}
.small-padding-collapse > .cell {
	padding-right: 0;
	padding-left: 0;
}
@media only screen and (min-width: 768px) {
	.medium-margin-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	.medium-margin-collapse > .cell {
		margin-right: 0;
		margin-left: 0;
	}
}
@media only screen and (min-width: 768px) {
	.medium-margin-collapse > .small-1 {
		width: 8.33333%;
	}
	.medium-margin-collapse > .small-2 {
		width: 16.66667%;
	}
	.medium-margin-collapse > .small-3 {
		width: 25%;
	}
	.medium-margin-collapse > .small-4 {
		width: 33.33333%;
	}
	.medium-margin-collapse > .small-5 {
		width: 41.66667%;
	}
	.medium-margin-collapse > .small-6 {
		width: 50%;
	}
	.medium-margin-collapse > .small-7 {
		width: 58.33333%;
	}
	.medium-margin-collapse > .small-8 {
		width: 66.66667%;
	}
	.medium-margin-collapse > .small-9 {
		width: 75%;
	}
	.medium-margin-collapse > .small-10 {
		width: 83.33333%;
	}
	.medium-margin-collapse > .small-11 {
		width: 91.66667%;
	}
	.medium-margin-collapse > .small-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 768px) {
	.medium-margin-collapse > .medium-1 {
		width: 8.33333%;
	}
	.medium-margin-collapse > .medium-2 {
		width: 16.66667%;
	}
	.medium-margin-collapse > .medium-3 {
		width: 25%;
	}
	.medium-margin-collapse > .medium-4 {
		width: 33.33333%;
	}
	.medium-margin-collapse > .medium-5 {
		width: 41.66667%;
	}
	.medium-margin-collapse > .medium-6 {
		width: 50%;
	}
	.medium-margin-collapse > .medium-7 {
		width: 58.33333%;
	}
	.medium-margin-collapse > .medium-8 {
		width: 66.66667%;
	}
	.medium-margin-collapse > .medium-9 {
		width: 75%;
	}
	.medium-margin-collapse > .medium-10 {
		width: 83.33333%;
	}
	.medium-margin-collapse > .medium-11 {
		width: 91.66667%;
	}
	.medium-margin-collapse > .medium-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.medium-margin-collapse > .large-1 {
		width: 8.33333%;
	}
	.medium-margin-collapse > .large-2 {
		width: 16.66667%;
	}
	.medium-margin-collapse > .large-3 {
		width: 25%;
	}
	.medium-margin-collapse > .large-4 {
		width: 33.33333%;
	}
	.medium-margin-collapse > .large-5 {
		width: 41.66667%;
	}
	.medium-margin-collapse > .large-6 {
		width: 50%;
	}
	.medium-margin-collapse > .large-7 {
		width: 58.33333%;
	}
	.medium-margin-collapse > .large-8 {
		width: 66.66667%;
	}
	.medium-margin-collapse > .large-9 {
		width: 75%;
	}
	.medium-margin-collapse > .large-10 {
		width: 83.33333%;
	}
	.medium-margin-collapse > .large-11 {
		width: 91.66667%;
	}
	.medium-margin-collapse > .large-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 768px) {
	.medium-padding-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	.medium-padding-collapse > .cell {
		padding-right: 0;
		padding-left: 0;
	}
}
@media only screen and (min-width: 1000px) {
	.large-margin-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	.large-margin-collapse > .cell {
		margin-right: 0;
		margin-left: 0;
	}
}
@media only screen and (min-width: 1000px) {
	.large-margin-collapse > .small-1 {
		width: 8.33333%;
	}
	.large-margin-collapse > .small-2 {
		width: 16.66667%;
	}
	.large-margin-collapse > .small-3 {
		width: 25%;
	}
	.large-margin-collapse > .small-4 {
		width: 33.33333%;
	}
	.large-margin-collapse > .small-5 {
		width: 41.66667%;
	}
	.large-margin-collapse > .small-6 {
		width: 50%;
	}
	.large-margin-collapse > .small-7 {
		width: 58.33333%;
	}
	.large-margin-collapse > .small-8 {
		width: 66.66667%;
	}
	.large-margin-collapse > .small-9 {
		width: 75%;
	}
	.large-margin-collapse > .small-10 {
		width: 83.33333%;
	}
	.large-margin-collapse > .small-11 {
		width: 91.66667%;
	}
	.large-margin-collapse > .small-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.large-margin-collapse > .medium-1 {
		width: 8.33333%;
	}
	.large-margin-collapse > .medium-2 {
		width: 16.66667%;
	}
	.large-margin-collapse > .medium-3 {
		width: 25%;
	}
	.large-margin-collapse > .medium-4 {
		width: 33.33333%;
	}
	.large-margin-collapse > .medium-5 {
		width: 41.66667%;
	}
	.large-margin-collapse > .medium-6 {
		width: 50%;
	}
	.large-margin-collapse > .medium-7 {
		width: 58.33333%;
	}
	.large-margin-collapse > .medium-8 {
		width: 66.66667%;
	}
	.large-margin-collapse > .medium-9 {
		width: 75%;
	}
	.large-margin-collapse > .medium-10 {
		width: 83.33333%;
	}
	.large-margin-collapse > .medium-11 {
		width: 91.66667%;
	}
	.large-margin-collapse > .medium-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.large-margin-collapse > .large-1 {
		width: 8.33333%;
	}
	.large-margin-collapse > .large-2 {
		width: 16.66667%;
	}
	.large-margin-collapse > .large-3 {
		width: 25%;
	}
	.large-margin-collapse > .large-4 {
		width: 33.33333%;
	}
	.large-margin-collapse > .large-5 {
		width: 41.66667%;
	}
	.large-margin-collapse > .large-6 {
		width: 50%;
	}
	.large-margin-collapse > .large-7 {
		width: 58.33333%;
	}
	.large-margin-collapse > .large-8 {
		width: 66.66667%;
	}
	.large-margin-collapse > .large-9 {
		width: 75%;
	}
	.large-margin-collapse > .large-10 {
		width: 83.33333%;
	}
	.large-margin-collapse > .large-11 {
		width: 91.66667%;
	}
	.large-margin-collapse > .large-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.large-padding-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	.large-padding-collapse > .cell {
		padding-right: 0;
		padding-left: 0;
	}
}
.small-offset-0 {
	margin-left: 0%;
}
.grid-margin-x > .small-offset-0 {
	margin-left: calc(0% + 0.9375rem);
}
.small-offset-1 {
	margin-left: 8.33333%;
}
.grid-margin-x > .small-offset-1 {
	margin-left: calc(8.33333% + 0.9375rem);
}
.small-offset-2 {
	margin-left: 16.66667%;
}
.grid-margin-x > .small-offset-2 {
	margin-left: calc(16.66667% + 0.9375rem);
}
.small-offset-3 {
	margin-left: 25%;
}
.grid-margin-x > .small-offset-3 {
	margin-left: calc(25% + 0.9375rem);
}
.small-offset-4 {
	margin-left: 33.33333%;
}
.grid-margin-x > .small-offset-4 {
	margin-left: calc(33.33333% + 0.9375rem);
}
.small-offset-5 {
	margin-left: 41.66667%;
}
.grid-margin-x > .small-offset-5 {
	margin-left: calc(41.66667% + 0.9375rem);
}
.small-offset-6 {
	margin-left: 50%;
}
.grid-margin-x > .small-offset-6 {
	margin-left: calc(50% + 0.9375rem);
}
.small-offset-7 {
	margin-left: 58.33333%;
}
.grid-margin-x > .small-offset-7 {
	margin-left: calc(58.33333% + 0.9375rem);
}
.small-offset-8 {
	margin-left: 66.66667%;
}
.grid-margin-x > .small-offset-8 {
	margin-left: calc(66.66667% + 0.9375rem);
}
.small-offset-9 {
	margin-left: 75%;
}
.grid-margin-x > .small-offset-9 {
	margin-left: calc(75% + 0.9375rem);
}
.small-offset-10 {
	margin-left: 83.33333%;
}
.grid-margin-x > .small-offset-10 {
	margin-left: calc(83.33333% + 0.9375rem);
}
.small-offset-11 {
	margin-left: 91.66667%;
}
.grid-margin-x > .small-offset-11 {
	margin-left: calc(91.66667% + 0.9375rem);
}
@media only screen and (min-width: 768px) {
	.medium-offset-0 {
		margin-left: 0%;
	}
	.grid-margin-x > .medium-offset-0 {
		margin-left: calc(0% + 0.9375rem);
	}
	.medium-offset-1 {
		margin-left: 8.33333%;
	}
	.grid-margin-x > .medium-offset-1 {
		margin-left: calc(8.33333% + 0.9375rem);
	}
	.medium-offset-2 {
		margin-left: 16.66667%;
	}
	.grid-margin-x > .medium-offset-2 {
		margin-left: calc(16.66667% + 0.9375rem);
	}
	.medium-offset-3 {
		margin-left: 25%;
	}
	.grid-margin-x > .medium-offset-3 {
		margin-left: calc(25% + 0.9375rem);
	}
	.medium-offset-4 {
		margin-left: 33.33333%;
	}
	.grid-margin-x > .medium-offset-4 {
		margin-left: calc(33.33333% + 0.9375rem);
	}
	.medium-offset-5 {
		margin-left: 41.66667%;
	}
	.grid-margin-x > .medium-offset-5 {
		margin-left: calc(41.66667% + 0.9375rem);
	}
	.medium-offset-6 {
		margin-left: 50%;
	}
	.grid-margin-x > .medium-offset-6 {
		margin-left: calc(50% + 0.9375rem);
	}
	.medium-offset-7 {
		margin-left: 58.33333%;
	}
	.grid-margin-x > .medium-offset-7 {
		margin-left: calc(58.33333% + 0.9375rem);
	}
	.medium-offset-8 {
		margin-left: 66.66667%;
	}
	.grid-margin-x > .medium-offset-8 {
		margin-left: calc(66.66667% + 0.9375rem);
	}
	.medium-offset-9 {
		margin-left: 75%;
	}
	.grid-margin-x > .medium-offset-9 {
		margin-left: calc(75% + 0.9375rem);
	}
	.medium-offset-10 {
		margin-left: 83.33333%;
	}
	.grid-margin-x > .medium-offset-10 {
		margin-left: calc(83.33333% + 0.9375rem);
	}
	.medium-offset-11 {
		margin-left: 91.66667%;
	}
	.grid-margin-x > .medium-offset-11 {
		margin-left: calc(91.66667% + 0.9375rem);
	}
}
@media only screen and (min-width: 1000px) {
	.large-offset-0 {
		margin-left: 0%;
	}
	.grid-margin-x > .large-offset-0 {
		margin-left: calc(0% + 0.9375rem);
	}
	.large-offset-1 {
		margin-left: 8.33333%;
	}
	.grid-margin-x > .large-offset-1 {
		margin-left: calc(8.33333% + 0.9375rem);
	}
	.large-offset-2 {
		margin-left: 16.66667%;
	}
	.grid-margin-x > .large-offset-2 {
		margin-left: calc(16.66667% + 0.9375rem);
	}
	.large-offset-3 {
		margin-left: 25%;
	}
	.grid-margin-x > .large-offset-3 {
		margin-left: calc(25% + 0.9375rem);
	}
	.large-offset-4 {
		margin-left: 33.33333%;
	}
	.grid-margin-x > .large-offset-4 {
		margin-left: calc(33.33333% + 0.9375rem);
	}
	.large-offset-5 {
		margin-left: 41.66667%;
	}
	.grid-margin-x > .large-offset-5 {
		margin-left: calc(41.66667% + 0.9375rem);
	}
	.large-offset-6 {
		margin-left: 50%;
	}
	.grid-margin-x > .large-offset-6 {
		margin-left: calc(50% + 0.9375rem);
	}
	.large-offset-7 {
		margin-left: 58.33333%;
	}
	.grid-margin-x > .large-offset-7 {
		margin-left: calc(58.33333% + 0.9375rem);
	}
	.large-offset-8 {
		margin-left: 66.66667%;
	}
	.grid-margin-x > .large-offset-8 {
		margin-left: calc(66.66667% + 0.9375rem);
	}
	.large-offset-9 {
		margin-left: 75%;
	}
	.grid-margin-x > .large-offset-9 {
		margin-left: calc(75% + 0.9375rem);
	}
	.large-offset-10 {
		margin-left: 83.33333%;
	}
	.grid-margin-x > .large-offset-10 {
		margin-left: calc(83.33333% + 0.9375rem);
	}
	.large-offset-11 {
		margin-left: 91.66667%;
	}
	.grid-margin-x > .large-offset-11 {
		margin-left: calc(91.66667% + 0.9375rem);
	}
}
.grid-y {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
}
.grid-y > .cell {
	width: auto;
	max-width: none;
}
.grid-y > .auto {
	height: auto;
}
.grid-y > .shrink {
	height: auto;
}
.grid-y > .small-shrink,
.grid-y > .small-full,
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}
@media only screen and (min-width: 768px) {
	.grid-y > .medium-shrink,
	.grid-y > .medium-full,
	.grid-y > .medium-1,
	.grid-y > .medium-2,
	.grid-y > .medium-3,
	.grid-y > .medium-4,
	.grid-y > .medium-5,
	.grid-y > .medium-6,
	.grid-y > .medium-7,
	.grid-y > .medium-8,
	.grid-y > .medium-9,
	.grid-y > .medium-10,
	.grid-y > .medium-11,
	.grid-y > .medium-12 {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}
@media only screen and (min-width: 1000px) {
	.grid-y > .large-shrink,
	.grid-y > .large-full,
	.grid-y > .large-1,
	.grid-y > .large-2,
	.grid-y > .large-3,
	.grid-y > .large-4,
	.grid-y > .large-5,
	.grid-y > .large-6,
	.grid-y > .large-7,
	.grid-y > .large-8,
	.grid-y > .large-9,
	.grid-y > .large-10,
	.grid-y > .large-11,
	.grid-y > .large-12 {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.grid-y > .small-1 {
	height: 8.33333%;
}
.grid-y > .small-2 {
	height: 16.66667%;
}
.grid-y > .small-3 {
	height: 25%;
}
.grid-y > .small-4 {
	height: 33.33333%;
}
.grid-y > .small-5 {
	height: 41.66667%;
}
.grid-y > .small-6 {
	height: 50%;
}
.grid-y > .small-7 {
	height: 58.33333%;
}
.grid-y > .small-8 {
	height: 66.66667%;
}
.grid-y > .small-9 {
	height: 75%;
}
.grid-y > .small-10 {
	height: 83.33333%;
}
.grid-y > .small-11 {
	height: 91.66667%;
}
.grid-y > .small-12 {
	height: 100%;
}
@media only screen and (min-width: 768px) {
	.grid-y > .medium-auto {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 0px;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		height: auto;
	}
	.grid-y > .medium-shrink,
	.grid-y > .medium-1,
	.grid-y > .medium-2,
	.grid-y > .medium-3,
	.grid-y > .medium-4,
	.grid-y > .medium-5,
	.grid-y > .medium-6,
	.grid-y > .medium-7,
	.grid-y > .medium-8,
	.grid-y > .medium-9,
	.grid-y > .medium-10,
	.grid-y > .medium-11,
	.grid-y > .medium-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	.grid-y > .medium-shrink {
		height: auto;
	}
	.grid-y > .medium-1 {
		height: 8.33333%;
	}
	.grid-y > .medium-2 {
		height: 16.66667%;
	}
	.grid-y > .medium-3 {
		height: 25%;
	}
	.grid-y > .medium-4 {
		height: 33.33333%;
	}
	.grid-y > .medium-5 {
		height: 41.66667%;
	}
	.grid-y > .medium-6 {
		height: 50%;
	}
	.grid-y > .medium-7 {
		height: 58.33333%;
	}
	.grid-y > .medium-8 {
		height: 66.66667%;
	}
	.grid-y > .medium-9 {
		height: 75%;
	}
	.grid-y > .medium-10 {
		height: 83.33333%;
	}
	.grid-y > .medium-11 {
		height: 91.66667%;
	}
	.grid-y > .medium-12 {
		height: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.grid-y > .large-auto {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 0px;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		height: auto;
	}
	.grid-y > .large-shrink,
	.grid-y > .large-1,
	.grid-y > .large-2,
	.grid-y > .large-3,
	.grid-y > .large-4,
	.grid-y > .large-5,
	.grid-y > .large-6,
	.grid-y > .large-7,
	.grid-y > .large-8,
	.grid-y > .large-9,
	.grid-y > .large-10,
	.grid-y > .large-11,
	.grid-y > .large-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	.grid-y > .large-shrink {
		height: auto;
	}
	.grid-y > .large-1 {
		height: 8.33333%;
	}
	.grid-y > .large-2 {
		height: 16.66667%;
	}
	.grid-y > .large-3 {
		height: 25%;
	}
	.grid-y > .large-4 {
		height: 33.33333%;
	}
	.grid-y > .large-5 {
		height: 41.66667%;
	}
	.grid-y > .large-6 {
		height: 50%;
	}
	.grid-y > .large-7 {
		height: 58.33333%;
	}
	.grid-y > .large-8 {
		height: 66.66667%;
	}
	.grid-y > .large-9 {
		height: 75%;
	}
	.grid-y > .large-10 {
		height: 83.33333%;
	}
	.grid-y > .large-11 {
		height: 91.66667%;
	}
	.grid-y > .large-12 {
		height: 100%;
	}
}
.grid-padding-y .grid-padding-y {
	margin-top: -0.9375rem;
	margin-bottom: -0.9375rem;
}
.grid-padding-y > .cell {
	padding-top: 0.9375rem;
	padding-bottom: 0.9375rem;
}
.grid-margin-y {
	margin-top: -0.9375rem;
	margin-bottom: -0.9375rem;
}
.grid-margin-y > .cell {
	height: calc(100% - 1.875rem);
	margin-top: 0.9375rem;
	margin-bottom: 0.9375rem;
}
.grid-margin-y > .auto {
	height: auto;
}
.grid-margin-y > .shrink {
	height: auto;
}
.grid-margin-y > .small-1 {
	height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .small-2 {
	height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .small-3 {
	height: calc(25% - 1.875rem);
}
.grid-margin-y > .small-4 {
	height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .small-5 {
	height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .small-6 {
	height: calc(50% - 1.875rem);
}
.grid-margin-y > .small-7 {
	height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .small-8 {
	height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .small-9 {
	height: calc(75% - 1.875rem);
}
.grid-margin-y > .small-10 {
	height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .small-11 {
	height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .small-12 {
	height: calc(100% - 1.875rem);
}
@media only screen and (min-width: 768px) {
	.grid-margin-y > .medium-auto {
		height: auto;
	}
	.grid-margin-y > .medium-shrink {
		height: auto;
	}
	.grid-margin-y > .medium-1 {
		height: calc(8.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-2 {
		height: calc(16.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-3 {
		height: calc(25% - 1.875rem);
	}
	.grid-margin-y > .medium-4 {
		height: calc(33.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-5 {
		height: calc(41.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-6 {
		height: calc(50% - 1.875rem);
	}
	.grid-margin-y > .medium-7 {
		height: calc(58.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-8 {
		height: calc(66.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-9 {
		height: calc(75% - 1.875rem);
	}
	.grid-margin-y > .medium-10 {
		height: calc(83.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-11 {
		height: calc(91.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-12 {
		height: calc(100% - 1.875rem);
	}
}
@media only screen and (min-width: 1000px) {
	.grid-margin-y > .large-auto {
		height: auto;
	}
	.grid-margin-y > .large-shrink {
		height: auto;
	}
	.grid-margin-y > .large-1 {
		height: calc(8.33333% - 1.875rem);
	}
	.grid-margin-y > .large-2 {
		height: calc(16.66667% - 1.875rem);
	}
	.grid-margin-y > .large-3 {
		height: calc(25% - 1.875rem);
	}
	.grid-margin-y > .large-4 {
		height: calc(33.33333% - 1.875rem);
	}
	.grid-margin-y > .large-5 {
		height: calc(41.66667% - 1.875rem);
	}
	.grid-margin-y > .large-6 {
		height: calc(50% - 1.875rem);
	}
	.grid-margin-y > .large-7 {
		height: calc(58.33333% - 1.875rem);
	}
	.grid-margin-y > .large-8 {
		height: calc(66.66667% - 1.875rem);
	}
	.grid-margin-y > .large-9 {
		height: calc(75% - 1.875rem);
	}
	.grid-margin-y > .large-10 {
		height: calc(83.33333% - 1.875rem);
	}
	.grid-margin-y > .large-11 {
		height: calc(91.66667% - 1.875rem);
	}
	.grid-margin-y > .large-12 {
		height: calc(100% - 1.875rem);
	}
}
.grid-frame {
	overflow: hidden;
	position: relative;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100vw;
}
.cell .grid-frame {
	width: 100%;
}
.cell-block {
	overflow-x: auto;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-y {
	overflow-y: auto;
	max-height: 100%;
	min-height: 100%;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	max-height: 100%;
}
.cell-block-container > .grid-x {
	max-height: 100%;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
@media only screen and (min-width: 768px) {
	.medium-grid-frame {
		overflow: hidden;
		position: relative;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		width: 100vw;
	}
	.cell .medium-grid-frame {
		width: 100%;
	}
	.medium-cell-block {
		overflow-x: auto;
		max-width: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.medium-cell-block-container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		max-height: 100%;
	}
	.medium-cell-block-container > .grid-x {
		max-height: 100%;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.medium-cell-block-y {
		overflow-y: auto;
		max-height: 100%;
		min-height: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
}
@media only screen and (min-width: 1000px) {
	.large-grid-frame {
		overflow: hidden;
		position: relative;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		width: 100vw;
	}
	.cell .large-grid-frame {
		width: 100%;
	}
	.large-cell-block {
		overflow-x: auto;
		max-width: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.large-cell-block-container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		max-height: 100%;
	}
	.large-cell-block-container > .grid-x {
		max-height: 100%;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.large-cell-block-y {
		overflow-y: auto;
		max-height: 100%;
		min-height: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
}
.grid-y.grid-frame {
	width: auto;
	overflow: hidden;
	position: relative;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	height: 100vh;
}
@media only screen and (min-width: 768px) {
	.grid-y.medium-grid-frame {
		width: auto;
		overflow: hidden;
		position: relative;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		height: 100vh;
	}
}
@media only screen and (min-width: 1000px) {
	.grid-y.large-grid-frame {
		width: auto;
		overflow: hidden;
		position: relative;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		height: 100vh;
	}
}
.cell .grid-y.grid-frame {
	height: 100%;
}
@media only screen and (min-width: 768px) {
	.cell .grid-y.medium-grid-frame {
		height: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.cell .grid-y.large-grid-frame {
		height: 100%;
	}
}
.grid-margin-y {
	margin-top: -0.9375rem;
	margin-bottom: -0.9375rem;
}
.grid-margin-y > .cell {
	height: calc(100% - 1.875rem);
	margin-top: 0.9375rem;
	margin-bottom: 0.9375rem;
}
.grid-margin-y > .auto {
	height: auto;
}
.grid-margin-y > .shrink {
	height: auto;
}
.grid-margin-y > .small-1 {
	height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .small-2 {
	height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .small-3 {
	height: calc(25% - 1.875rem);
}
.grid-margin-y > .small-4 {
	height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .small-5 {
	height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .small-6 {
	height: calc(50% - 1.875rem);
}
.grid-margin-y > .small-7 {
	height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .small-8 {
	height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .small-9 {
	height: calc(75% - 1.875rem);
}
.grid-margin-y > .small-10 {
	height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .small-11 {
	height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .small-12 {
	height: calc(100% - 1.875rem);
}
@media only screen and (min-width: 768px) {
	.grid-margin-y > .medium-auto {
		height: auto;
	}
	.grid-margin-y > .medium-shrink {
		height: auto;
	}
	.grid-margin-y > .medium-1 {
		height: calc(8.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-2 {
		height: calc(16.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-3 {
		height: calc(25% - 1.875rem);
	}
	.grid-margin-y > .medium-4 {
		height: calc(33.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-5 {
		height: calc(41.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-6 {
		height: calc(50% - 1.875rem);
	}
	.grid-margin-y > .medium-7 {
		height: calc(58.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-8 {
		height: calc(66.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-9 {
		height: calc(75% - 1.875rem);
	}
	.grid-margin-y > .medium-10 {
		height: calc(83.33333% - 1.875rem);
	}
	.grid-margin-y > .medium-11 {
		height: calc(91.66667% - 1.875rem);
	}
	.grid-margin-y > .medium-12 {
		height: calc(100% - 1.875rem);
	}
}
@media only screen and (min-width: 1000px) {
	.grid-margin-y > .large-auto {
		height: auto;
	}
	.grid-margin-y > .large-shrink {
		height: auto;
	}
	.grid-margin-y > .large-1 {
		height: calc(8.33333% - 1.875rem);
	}
	.grid-margin-y > .large-2 {
		height: calc(16.66667% - 1.875rem);
	}
	.grid-margin-y > .large-3 {
		height: calc(25% - 1.875rem);
	}
	.grid-margin-y > .large-4 {
		height: calc(33.33333% - 1.875rem);
	}
	.grid-margin-y > .large-5 {
		height: calc(41.66667% - 1.875rem);
	}
	.grid-margin-y > .large-6 {
		height: calc(50% - 1.875rem);
	}
	.grid-margin-y > .large-7 {
		height: calc(58.33333% - 1.875rem);
	}
	.grid-margin-y > .large-8 {
		height: calc(66.66667% - 1.875rem);
	}
	.grid-margin-y > .large-9 {
		height: calc(75% - 1.875rem);
	}
	.grid-margin-y > .large-10 {
		height: calc(83.33333% - 1.875rem);
	}
	.grid-margin-y > .large-11 {
		height: calc(91.66667% - 1.875rem);
	}
	.grid-margin-y > .large-12 {
		height: calc(100% - 1.875rem);
	}
}
.grid-frame.grid-margin-y {
	height: calc(100vh + 1.875rem);
}
@media only screen and (min-width: 768px) {
	.grid-margin-y.medium-grid-frame {
		height: calc(100vh + 1.875rem);
	}
}
@media only screen and (min-width: 1000px) {
	.grid-margin-y.large-grid-frame {
		height: calc(100vh + 1.875rem);
	}
}
.align-left {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.align-right {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.align-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.align-justify {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.align-spaced {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.align-left.vertical.menu > li > a {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.align-right.vertical.menu > li > a {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.align-center.vertical.menu > li > a {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.align-top {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.align-self-top {
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.align-bottom {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.align-self-bottom {
	-webkit-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
}
.align-middle {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.align-self-middle {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
}
.align-stretch {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.align-self-stretch {
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
}
.align-center-middle {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
}
.small-order-1 {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
}
.small-order-2 {
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
}
.small-order-3 {
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
}
.small-order-4 {
	-webkit-box-ordinal-group: 5;
	-webkit-order: 4;
	-ms-flex-order: 4;
	order: 4;
}
.small-order-5 {
	-webkit-box-ordinal-group: 6;
	-webkit-order: 5;
	-ms-flex-order: 5;
	order: 5;
}
.small-order-6 {
	-webkit-box-ordinal-group: 7;
	-webkit-order: 6;
	-ms-flex-order: 6;
	order: 6;
}
@media only screen and (min-width: 768px) {
	.medium-order-1 {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
	}
	.medium-order-2 {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
	}
	.medium-order-3 {
		-webkit-box-ordinal-group: 4;
		-webkit-order: 3;
		-ms-flex-order: 3;
		order: 3;
	}
	.medium-order-4 {
		-webkit-box-ordinal-group: 5;
		-webkit-order: 4;
		-ms-flex-order: 4;
		order: 4;
	}
	.medium-order-5 {
		-webkit-box-ordinal-group: 6;
		-webkit-order: 5;
		-ms-flex-order: 5;
		order: 5;
	}
	.medium-order-6 {
		-webkit-box-ordinal-group: 7;
		-webkit-order: 6;
		-ms-flex-order: 6;
		order: 6;
	}
}
@media only screen and (min-width: 1000px) {
	.large-order-1 {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
	}
	.large-order-2 {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
	}
	.large-order-3 {
		-webkit-box-ordinal-group: 4;
		-webkit-order: 3;
		-ms-flex-order: 3;
		order: 3;
	}
	.large-order-4 {
		-webkit-box-ordinal-group: 5;
		-webkit-order: 4;
		-ms-flex-order: 4;
		order: 4;
	}
	.large-order-5 {
		-webkit-box-ordinal-group: 6;
		-webkit-order: 5;
		-ms-flex-order: 5;
		order: 5;
	}
	.large-order-6 {
		-webkit-box-ordinal-group: 7;
		-webkit-order: 6;
		-ms-flex-order: 6;
		order: 6;
	}
}
.flex-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.flex-child-auto {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.flex-child-grow {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}
.flex-child-shrink {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.flex-dir-row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}
.flex-dir-row-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex-dir-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flex-dir-column-reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
	.medium-flex-container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.medium-flex-child-auto {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.medium-flex-child-grow {
		-webkit-box-flex: 1;
		-webkit-flex: 1 0 auto;
		-ms-flex: 1 0 auto;
		flex: 1 0 auto;
	}
	.medium-flex-child-shrink {
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.medium-flex-dir-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.medium-flex-dir-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.medium-flex-dir-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.medium-flex-dir-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
@media only screen and (min-width: 1000px) {
	.large-flex-container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.large-flex-child-auto {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.large-flex-child-grow {
		-webkit-box-flex: 1;
		-webkit-flex: 1 0 auto;
		-ms-flex: 1 0 auto;
		flex: 1 0 auto;
	}
	.large-flex-child-shrink {
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.large-flex-dir-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.large-flex-dir-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.large-flex-dir-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.large-flex-dir-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
	display: block;
	height: auto;
	line-height: 1;
	padding: 0;
	font-size: 1em;
	color: #000;
	border-radius: 0;
	vertical-align: middle;
	box-shadow: none;
	border: 0;
	width: 100%;
	max-width: 400px;
	background-color: transparent;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
textarea:focus,
.field:focus,
input[type="text"]:active,
input[type="password"]:active,
input[type="datetime"]:active,
input[type="datetime-local"]:active,
input[type="date"]:active,
input[type="month"]:active,
input[type="time"]:active,
input[type="week"]:active,
input[type="number"]:active,
input[type="email"]:active,
input[type="url"]:active,
input[type="search"]:active,
input[type="tel"]:active,
input[type="color"]:active,
select:active,
textarea:active,
.field:active {
	outline: none;
}
input[type="text"].error,
input[type="password"].error,
input[type="datetime"].error,
input[type="datetime-local"].error,
input[type="date"].error,
input[type="month"].error,
input[type="time"].error,
input[type="week"].error,
input[type="number"].error,
input[type="email"].error,
input[type="url"].error,
input[type="search"].error,
input[type="tel"].error,
input[type="color"].error,
select.error,
textarea.error,
.field.error,
input[type="text"].is-invalid,
input[type="password"].is-invalid,
input[type="datetime"].is-invalid,
input[type="datetime-local"].is-invalid,
input[type="date"].is-invalid,
input[type="month"].is-invalid,
input[type="time"].is-invalid,
input[type="week"].is-invalid,
input[type="number"].is-invalid,
input[type="email"].is-invalid,
input[type="url"].is-invalid,
input[type="search"].is-invalid,
input[type="tel"].is-invalid,
input[type="color"].is-invalid,
select.is-invalid,
textarea.is-invalid,
.field.is-invalid {
	color: #fbe3e4;
	border-color: #fbe3e4;
	background-color: #fff;
	background-position: 99% center;
	background-repeat: no-repeat;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
	outline-color: #fbe3e4;
}
input[type="text"].success,
input[type="password"].success,
input[type="datetime"].success,
input[type="datetime-local"].success,
input[type="date"].success,
input[type="month"].success,
input[type="time"].success,
input[type="week"].success,
input[type="number"].success,
input[type="email"].success,
input[type="url"].success,
input[type="search"].success,
input[type="tel"].success,
input[type="color"].success,
select.success,
textarea.success,
.field.success,
input[type="text"].is-valid,
input[type="password"].is-valid,
input[type="datetime"].is-valid,
input[type="datetime-local"].is-valid,
input[type="date"].is-valid,
input[type="month"].is-valid,
input[type="time"].is-valid,
input[type="week"].is-valid,
input[type="number"].is-valid,
input[type="email"].is-valid,
input[type="url"].is-valid,
input[type="search"].is-valid,
input[type="tel"].is-valid,
input[type="color"].is-valid,
select.is-valid,
textarea.is-valid,
.field.is-valid {
	color: #e6efc2;
	border-color: #e6efc2;
	background-color: #fff;
	background-position: 99% center;
	background-repeat: no-repeat;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
	outline-color: #e6efc2;
}
input[type="text"][disabled],
input[type="password"][disabled],
input[type="datetime"][disabled],
input[type="datetime-local"][disabled],
input[type="date"][disabled],
input[type="month"][disabled],
input[type="time"][disabled],
input[type="week"][disabled],
input[type="number"][disabled],
input[type="email"][disabled],
input[type="url"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="color"][disabled],
select[disabled],
textarea[disabled],
.field[disabled],
input[type="text"].is-disabled,
input[type="password"].is-disabled,
input[type="datetime"].is-disabled,
input[type="datetime-local"].is-disabled,
input[type="date"].is-disabled,
input[type="month"].is-disabled,
input[type="time"].is-disabled,
input[type="week"].is-disabled,
input[type="number"].is-disabled,
input[type="email"].is-disabled,
input[type="url"].is-disabled,
input[type="search"].is-disabled,
input[type="tel"].is-disabled,
input[type="color"].is-disabled,
select.is-disabled,
textarea.is-disabled,
.field.is-disabled {
	cursor: not-allowed;
	border-color: #cfcfcf;
	opacity: 0.6;
}
input[type="text"][disabled]:focus,
input[type="password"][disabled]:focus,
input[type="datetime"][disabled]:focus,
input[type="datetime-local"][disabled]:focus,
input[type="date"][disabled]:focus,
input[type="month"][disabled]:focus,
input[type="time"][disabled]:focus,
input[type="week"][disabled]:focus,
input[type="number"][disabled]:focus,
input[type="email"][disabled]:focus,
input[type="url"][disabled]:focus,
input[type="search"][disabled]:focus,
input[type="tel"][disabled]:focus,
input[type="color"][disabled]:focus,
select[disabled]:focus,
textarea[disabled]:focus,
.field[disabled]:focus,
input[type="text"].is-disabled:focus,
input[type="password"].is-disabled:focus,
input[type="datetime"].is-disabled:focus,
input[type="datetime-local"].is-disabled:focus,
input[type="date"].is-disabled:focus,
input[type="month"].is-disabled:focus,
input[type="time"].is-disabled:focus,
input[type="week"].is-disabled:focus,
input[type="number"].is-disabled:focus,
input[type="email"].is-disabled:focus,
input[type="url"].is-disabled:focus,
input[type="search"].is-disabled:focus,
input[type="tel"].is-disabled:focus,
input[type="color"].is-disabled:focus,
select.is-disabled:focus,
textarea.is-disabled:focus,
.field.is-disabled:focus,
input[type="text"][disabled]:active,
input[type="password"][disabled]:active,
input[type="datetime"][disabled]:active,
input[type="datetime-local"][disabled]:active,
input[type="date"][disabled]:active,
input[type="month"][disabled]:active,
input[type="time"][disabled]:active,
input[type="week"][disabled]:active,
input[type="number"][disabled]:active,
input[type="email"][disabled]:active,
input[type="url"][disabled]:active,
input[type="search"][disabled]:active,
input[type="tel"][disabled]:active,
input[type="color"][disabled]:active,
select[disabled]:active,
textarea[disabled]:active,
.field[disabled]:active,
input[type="text"].is-disabled:active,
input[type="password"].is-disabled:active,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"].is-disabled:active,
input[type="date"].is-disabled:active,
input[type="month"].is-disabled:active,
input[type="time"].is-disabled:active,
input[type="week"].is-disabled:active,
input[type="number"].is-disabled:active,
input[type="email"].is-disabled:active,
input[type="url"].is-disabled:active,
input[type="search"].is-disabled:active,
input[type="tel"].is-disabled:active,
input[type="color"].is-disabled:active,
select.is-disabled:active,
textarea.is-disabled:active,
.field.is-disabled:active {
	background-color: #d5edf8;
}
input[type="password"] {
	letter-spacing: 0.3em;
}
textarea {
	max-width: 100%;
	min-height: 120px;
	line-height: 1.5em;
}
select {
	/* 1 */
	-webkit-appearance: none;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-position: 97.5% center;
}
html {
	font-size: 62.5%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/*********************
OPACITY   @include opacity(0.8);
*********************/
	overflow-y: scroll;
	overflow-x: hidden;
	height: 100%;
	/* global box-sizing */
}
*,
*:after,
*:before {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/* -webkit-perspective: 1000; */
	/* overflow: -moz-scrollbars-none; */
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
	-webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
	outline: none !important;
}
body {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	line-height: 1.2;
	color: #000;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100%;
}
body,
.kite__item {
	font-size: 16px;
	font-size: 1.6rem;
}
html.android,
html.android body {
	height: auto;
}
#container {
	padding: 10px 0 0 0;
	padding: 0 0 0 0;
	min-height: 100vh;
}
html.landscape.phone #container {
	padding: 4.4vh 0 0 0;
}
body.page-template-page-template-two_columns-nomenu #container {
	padding: 5px 0 0 0;
	padding: 0.6vh 0 0 0;
}
.turbolinks-progress-bar {
	visibility: hidden;
	/* clear */
}
.clear:before,
.clear:after {
	content: " ";
	display: table;
}
.clear:after {
	clear: both;
}
.clear {
	*zoom: 1;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	height: auto;
	background: transparent;
	color: transparent;
}
a {
	color: #00f;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #000;
}
a:focus,
a:active,
a:visited {
	outline: 0;
	border-bottom: 0px solid #00f !important;
}
a:hover,
a:active {
	outline: 0;
}
input:focus {
	outline: 0;
	border: 0;
}
p {
	margin: 0;
	padding: 0;
	/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
}
.rtl {
	/* for sites that are read right to left (i.e. hebrew) */
}
.home {
	/* home page */
}
.blog {
	/* blog template page */
}
.archive {
	/* archive page */
}
.date {
	/* date archive page */
}
.date-paged-1 {
	/* replace the number to the corresponding page number */
}
.search {
	/* search page */
}
.search-results {
	/* search result page */
}
.search-no-results {
	/* no results search page */
}
.search-paged-1 {
	/* individual paged search (i.e. body.search-paged-3) */
}
.error404 {
	/* 404 page */
}
.single {
	/* single post page */
}
.postid-1 {
	/* individual post page by id (i.e. body.postid-73) */
}
.single-paged-1 {
	/* individual paged single (i.e. body.single-paged-3) */
}
.attachment {
	/* attatchment page */
}
.attachmentid-1 {
	/* individual attatchment page (i.e. body.attachmentid-763) */
}
.attachment-mime-type {
	/* style mime type pages */
}
.author {
	/* author page */
}
.author-nicename {
	/* user nicename (i.e. body.author-samueladams) */
}
.author-paged-1 {
	/* paged author archives (i.e. body.author-paged-4) for page 4 */
}
.category {
	/* category page */
}
.category-1 {
	/* individual category page (i.e. body.category-6) */
}
.category-paged-1 {
	/* replace the number to the corresponding page number */
}
.tag {
	/* tag page */
}
.tag-slug {
	/* individual tag page (i.e. body.tag-news) */
}
.tag-paged-1 {
	/* replace the number to the corresponding page number */
}
.page-template {
	/* custom page template page */
}
.page-template-page-php {
	/* individual page template (i.e. body.page-template-contact-php */
}
.page-paged-1 {
	/* replace the number to the corresponding page number */
}
.page-parent {
	/* parent page template */
}
.page-child {
	/* child page template */
}
.parent-pageid-1 {
	/* replace the number to the corresponding page number */
}
.logged-in {
	/* if user is logged in */
}
.paged {
	/* paged items like search results or archives */
}
.paged-1 {
	/* individual paged (i.e. body.paged-3) */
	/*********************
LAYOUT & GRID STYLES
*********************/
}
.wrap {
	width: 94%;
	width: calc(100% - 20px);
	margin: 0 10px 0 10px;
}
html.iphonexxx .wrap {
	width: calc(100% - 18px);
	margin: 0 8px 0 10px;
	/*********************
LINK STYLES
*********************/
}
a,
a:visited {
	color: #00f;
	/* on hover */
	text-decoration: underline;
	/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
}
a:hover,
a:visited:hover {
	color: #000;
	text-decoration: none;
	outline: 0;
	/* on click */
}
a:active,
a:visited:active {
	/* mobile tap color */
}
a:link,
a:visited:link {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	/*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
	text-rendering: optimizelegibility;
	/*********************
HEADER STYLES
*********************/
}
.header {
	background-color: #fff;
}
#logo {
	display: none;
	margin: 20px auto;
	margin: 2rem auto;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
	/*********************
NAVIGATION STYLES
*********************/
	/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
}
#logo a {
	color: #00f;
	line-height: 1;
}
#logo img {
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	-ms-interpolation-mode: nearest-neighbor;
}
header nav {
	display: none;
	margin: 0 auto;
	position: fixed;
	top: 10px;
	left: 13px;
	top: 1vh;
	left: 1.2vh;
	height: 100%;
	height: 100vh;
	max-width: 360px;
	max-width: 40vh;
	z-index: 9999;
}
header nav.lang-switcher {
	right: 13px;
	right: 1.4vh;
	left: auto;
	display: none;
	height: auto;
}
header .nav {
	border-bottom: 0;
	margin: 0;
	padding: 0;
	/* end .nav */
}
header .nav li {
	display: block;
	font-size: 36px;
	font-size: 4vh;
	text-align: left;
	/* end .menu li */
	/* highlight current page */
}
header .nav li a,
header .nav li input {
	display: block;
	color: #00f;
	text-decoration: underline;
	font-weight: bold;
	line-height: 1.02;
	padding: 0;
	letter-spacing: -0.02em;
	/*
			remember this is for mobile ONLY, so there's no need
			to even declare hover styles here, you can do it in
			the style.scss file where it's relevant. We want to
			keep this file as small as possible!
			*/
	background-color: transparent;
}
header .nav li a:hover,
header .nav li input:hover {
	outline: 0;
	color: #000;
	text-decoration: none;
}
header .nav li a:focus,
header .nav li input:focus {
	outline: 0;
	color: #00f;
	text-decoration: underline;
}
header .nav li input:focus {
	color: #000;
	text-decoration: none;
}
header .nav li:first-child {
	padding: 0;
}
header .nav li:last-child {
	padding: 0;
	/*
		so you really have to rethink your dropdowns for mobile.
		you don't want to have it expand too much because the
		screen is so small. How you manage your menu should
		depend on the project. Here's some great info on it:
		http://www.alistapart.com/articles/organizing-mobile/
		*/
}
header .nav li ul.sub-menu li,
header .nav li ul.children li {
	padding-left: 30px;
	padding-left: 5.1vh;
}
header .nav li ul.sub-menu li a:hover,
header .nav li ul.children li a:hover,
header .nav li ul.sub-menu li a:focus,
header .nav li ul.children li a:focus {
	outline: 0;
}
header .nav li.current_page_item,
header .nav > li.current-menu-item {
	/* end current highlighters */
}
header .nav li.current_page_item > a,
header .nav > li.current-menu-item > a {
	text-decoration: none;
	color: #000;
}
header .nav li.current_page_item > a:hover,
header .nav > li.current-menu-item > a:hover {
	cursor: default;
}
header .nav li.current-menu-parent > ul.sub-menu {
	display: block;
}
header .nav li.current-menu-parent > a,
header .nav li.current-menu-parent li.active a {
	text-decoration: none;
	color: #000;
}
header .nav li.current-menu-item > axxx {
	text-decoration: none;
	color: #000;
}
header .nav li.current-menu-item > a:hover {
	cursor: default;
}
header .nav li.current-menu-item:not(.active) > a.hash_url:hover {
	cursor: pointer;
}
header .nav li input {
	padding: 0;
	padding-left: 0px;
	margin-top: -1px;
	height: auto;
	text-decoration: none;
	color: #000;
}
li.current-project-item > a {
	text-decoration: none !important;
	color: #000 !important;
}
.project-menu:not(.responsive-menu-pro-item) .sub-menu {
	display: none !important;
}
.einfach-menu {
	margin-top: 25px !important;
}
@media (min-width: 1024px) {
	.einfach-menu {
		margin-top: 1em !important;
	}
}
#container.exhib .prog_menu > a {
	text-decoration: none;
	color: #000;
}
#container.exhib .prog_menu > ul.sub-menu {
	display: block;
}
#container.exhib .prog_menu > ul.sub-menu li.exhib_menu a {
	text-decoration: none;
	color: #000;
}
#container.event .prog_menu > a {
	text-decoration: none;
	color: #000;
}
#container.event .prog_menu > ul.sub-menu {
	display: block;
}
#container.event .prog_menu > ul.sub-menu li.events_menu a {
	text-decoration: none;
	color: #000;
}
#container.commiss .prog_menu > a {
	text-decoration: none;
	color: #000;
}
#container.commiss .prog_menu > ul.sub-menu {
	display: block;
}
#container.commiss .prog_menu > ul.sub-menu li.commiss_menu a {
	text-decoration: none;
	color: #000;
}
#container.yearwith .prog_menu > a {
	text-decoration: none;
	color: #000;
}
#container.yearwith .prog_menu > ul.sub-menu {
	display: block;
}
#container.yearwith .prog_menu > ul.sub-menu li.yearwith_menu a {
	text-decoration: none;
	color: #000;
}
header .nav li,
.page-title {
	font-size: 36px;
	font-size: 4vh;
	font-size: 8vw;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -0.02em;
}
html.landscape.phone .page-title {
	font-size: 5vw;
}
.main-nav .wpml-ls-menu-item {
	display: none;
}
html.iphone button#responsive-menu-pro-button,
html.ipad.portrait button#responsive-menu-pro-button {
	top: 1px !important;
}
#responsive-menu-pro-container {
	position: fixed !important;
	width: 100%;
	height: 100% !important;
	height: 100vh !important;
	left: auto;
	top: 0px !important;
	padding: 10px 0 0 0 !important;
	background: #fff;
	transition: transform 0s;
	text-align: left;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
	padding-top: 7px !important;
}
#responsive-menu-pro-container #responsive-menu-pro-wrapper {
	display: block;
	display: box;
	display: flexbox;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
}
#responsive-menu-pro-container #responsive-menu-pro-wrapper #responsive-menu-pro-additional-content {
	flex: 0;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
}
#responsive-menu-pro-container #responsive-menu-pro-wrapper .nav.newsletter {
	margin-bottom: 12px;
	margin-bottom: 1.6vh;
}
.responsive-menu-pro-inner,
.responsive-menu-pro-inner::before,
.responsive-menu-pro-inner::after {
	border-radius: 0 !important;
}
#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
#responsive-menu-pro-additional-content a,
#responsive-menu-pro-container .nav.newsletter a,
#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
#responsive-menu-pro-additional-content input,
#responsive-menu-pro-container .nav.newsletter input {
	line-height: 1.02 !important;
	text-decoration: underline;
	border: 0 !important;
	font-weight: bold;
	font-size: 36px !important;
	font-size: 4vh !important;
	font-size: 8vw !important;
	background-color: transparent !important;
	padding: 0 5% !important;
	letter-spacing: -0.02em;
}
#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
#responsive-menu-pro-additional-content input,
#responsive-menu-pro-container .nav.newsletter input {
	text-decoration: none;
}
html.landscape.phone #responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
html.landscape.phone #responsive-menu-pro-additional-content a,
html.landscape.phone #responsive-menu-pro-container .nav.newsletter a,
html.landscape.phone #responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
html.landscape.phone #responsive-menu-pro-additional-content input,
html.landscape.phone #responsive-menu-pro-container .nav.newsletter input {
	font-size: 36px !important;
	font-size: 8vh !important;
	font-size: 5vw !important;
}
#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item-current-parent > a {
	color: #000 !important;
}
#responsive-menu-pro-container #responsive-menu-pro ul.responsive-menu-pro-submenu {
	padding-left: 5% !important;
}
#responsive-menu-pro-container #responsive-menu-pro-additional-content,
#responsive-menu-pro-container #responsive-menu-pro-title,
#responsive-menu-pro-container .nav.newsletter {
	padding: 25px 0% 0 13.3vw !important;
	padding: 25px 0% 0 0 !important;
}
#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a {
	height: 1.1em !important;
	/*********************
POSTS & CONTENT STYLES
*********************/
}
.bg-image {
	z-index: -1;
	width: 100%;
	left: 0px;
	right: 0;
	top: 0;
	padding: 10px;
	display: none;
}
.not_mob {
	display: none;
}
.mob_only {
	display: block;
	padding-bottom: 2px;
}
#content {
	margin-top: 2px;
	margin-top: 0.4vh;
	display: box;
	display: flexbox;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 98.7%;
	min-height: 98.7vh;
}
#inner-content {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.hentry {
	/* end .hentry */
}
.hentry footer {
	padding: 0rem;
}
.hentry footer p {
	margin: 0;
}
.single-title,
.page-title,
.entry-title {
	margin: 0;
}
.archive-title {
	/* want to style individual post classes? Booya! */
}
.post-id {
	/* post by id (i.e. post-3) */
}
.post {
	/* general post style */
}
.page {
	/* general article on a page style */
}
.attachment {
	/* general style on an attatchment */
}
.sticky {
	/* sticky post style */
}
.hentry {
	/* hentry class */
}
.category-slug {
	/* style by category (i.e. category-videos) */
}
.tag-slug {
	/* style by tag (i.e. tag-news) */
	/* post meta */
}
.byline {
	color: #9fa6b4;
	font-style: italic;
	margin: 0;
	/* entry content */
}
.entry-content {
	/* end .entry-content */
}
.entry-content p {
	margin: 0px 0 0;
	margin: 0rem 0 0;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
}
.entry-content ul {
	list-style-type: disc;
	margin-left: 16px;
}
.entry-content table {
	width: 100%;
	border: 0px solid #eaedf2;
	margin-bottom: 1.5em;
}
.entry-content table caption {
	margin: 0 0 7px;
	font-size: 0.75em;
	color: #9fa6b4;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.entry-content tr {
	border-bottom: 0px solid #eaedf2;
}
.entry-content td {
	padding: 7px 0 7px 0;
	border-right: 0px solid #eaedf2;
}
.entry-content td:last-child {
	border-right: 0;
}
.entry-content th:last-child {
	border-right: 0;
}
.entry-content blockquote {
	margin: 0 0 1.5em 0.75em;
	padding: 0 0 0 0.75em;
	border-left: 3px solid #2980b9;
	font-style: italic;
	color: #9fa6b4;
}
.entry-content dd {
	margin-left: 0;
	font-size: 0.9em;
	color: #787878;
	margin-bottom: 1.5em;
}
.entry-content img {
	margin: 0 0 0 0;
	max-width: 100%;
	height: auto;
	/*
			image alignment on a screen this size may be
			a bit difficult. It's set to start aligning
			and floating images at the next breakpoint,
			but it's up to you. Feel free to change it up.
			*/
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
	max-width: 100%;
	height: auto;
}
.entry-content pre {
	background: #000;
	color: #f8f9fa;
	font-size: 0.9em;
	padding: 1.5em;
	margin: 0 0 1.5em;
	border-radius: 3px;
}
.wp-caption {
	max-width: 100%;
	background: #eee;
	/* images inside wp-caption */
	padding: 5px;
	/* end .wp-caption */
	/* image gallery styles */
}
.wp-caption img {
	max-width: 100%;
	margin-bottom: 0;
	width: 100%;
}
.wp-caption p.wp-caption-text {
	font-size: 0.85em;
	margin: 4px 0 7px;
	text-align: center;
}
.gallery {
	/* end .gallery */
	/* gallery caption styles */
}
.tags {
	margin: 0;
}
.right_column {
	width: 100%;
}
.page-title {
	color: #000;
	line-height: 1.02;
	letter-spacing: -0.02em;
	word-break: break-word;
}
.page-title.previous-posts {
	margin-top: 5px;
}
.anchor-block {
	margin-bottom: 30px;
	margin-bottom: 3rem;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
	margin-top: -15px;
	padding-top: 15px;
}
.anchor-block .page-title {
	padding-top: 7px;
}
.anchor-block:first-child .page-title {
	padding-top: 0px;
}
.pagetext,
.page_image_caption {
	max-width: 580px;
	width: 100%;
}
body.single .pagetext {
	max-width: 100%;
}
body.kwonlocation,
body.kw-onlocation {
	background: url(https://www.kw-berlin.de/files/KW_on_location_BG_desktop.png) no-repeat;
	background: url(https://www.kw-berlin.de/files/KW_on_location_BG_mobile.png) no-repeat;
	background-size: 100%;
	background-position: 50% -0.07%;
}
body.kwonlocation .bg-image,
body.kw-onlocation .bg-image {
	display: none !important;
}
body.kwonlocation #content,
body.kw-onlocation #content {
	margin-top: 0.9vh;
}
body.kwonlocation .wrap,
body.kw-onlocation .wrap {
	width: 94%;
	width: calc(100% - 20px);
	margin: 0 10px 0 7px;
}
html.landscape.phone body.kw-onlocation {
	background-size: 102%;
	background-position: 50% 0.11%;
}
html.landscape.phone body.kw-onlocation #container {
	padding: 0.4vh 0 0 0;
}
body.page-template-page-template-video-nomenu {
	cursor: url(https://www.kw-berlin.de/files/LS.png), auto;
}
body.page-template-page-template-video-nomenu.soundon {
	cursor: url(https://www.kw-berlin.de/files/Xclose.png), auto;
}
.page-section,
.page_image,
.slider {
	max-width: 580px;
}
.page-section a,
.page_image a,
.slider a {
	text-decoration: underline;
}
.page-section a:hover,
.page_image a:hover,
.slider a:hover {
	text-decoration: none !important;
}
.pagetext.simple,
.anchor-block:last-child {
	margin-bottom: 20px;
	margin-bottom: 2rem;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
}
body.home .pagetext.simple,
body.home .anchor-block:last-child {
	margin-bottom: 0px;
	margin-bottom: 0rem;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
}
body.page-template-default .pagetext.simple,
body.page-template-default .anchor-block:last-child {
	margin-bottom: 36px;
	margin-bottom: 3.6rem;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
}
.left_column > .pagetext > .page-section:first-child {
	margin-top: 2px;
}
.page_image {
	text-align: center;
	margin-top: 4px;
	margin-bottom: 3px;
	text-align: left;
	margin-left: 0;
}
.page_image.left_aligned {
	text-align: left;
	margin-left: 0;
}
.page_image_caption {
	margin-top: 2px;
}
.page_image_caption.featured {
	white-space: pre-line;
}
.excerpt-read-more {
	display: none;
}
.search-text {
	max-width: 750px;
}
.video-wrapper {
	position: relative;
	overflow: hidden;
	height: 0;
	background-color: transparent;
	padding-bottom: 56.25%;
	margin: 4px auto 3px auto;
}
.video-wrapper iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
iframe,
video,
audio {
	border: 0;
	max-width: 100%;
}
iframe,
video {
	height: auto;
}
.mejs-container,
.mejs-container .mejs-controls,
.mejs-embed,
.mejs-embed body {
	margin: 3px auto 2px 0;
}
span.archive_year {
	margin-right: 3px;
}
.archive_old .left_column {
	width: 100% !important;
}
.archive_year_title {
	margin-top: 4px;
}
h1.page-title .archive_date {
	display: none;
}
.archive_caption br {
	display: none;
}
.archive-text p {
	margin-bottom: 20px;
}
.archive-text brxxx {
	display: block;
	margin: 20px 0;
	content: "&nbsp;" !important;
	display: block !important;
}
.newsletter-subscribe {
	max-width: 570px;
	padding-bottom: 5px;
}
.newsletter-subscribe h1,
.newsletter-subscribe h2,
.newsletter-subscribe p {
	text-align: left !important;
}
.newsletter-subscribe table,
.newsletter-subscribe tr,
.newsletter-subscribe td {
	border: 0 !important;
	background-color: transparent !important;
	display: block;
}
.newsletter-subscribe table tr:nth-of-type(3) td,
.newsletter-subscribe table tr:nth-of-type(4) td {
	width: 100% !important;
	display: block;
	max-width: 100%;
}
.newsletter-subscribe table tr:nth-of-type(1) td:first-child,
.newsletter-subscribe table tr:nth-of-type(2) td:first-child,
.newsletter-subscribe table tr:nth-of-type(3) td:first-child,
.newsletter-subscribe table tr:nth-of-type(4) td:first-child,
.newsletter-subscribe table tr:nth-of-type(5) td:first-child {
	display: none !important;
}
.newsletter-subscribe table tr:nth-of-type(4) {
	margin-top: 15px;
}
.newsletter-subscribe label {
	padding-left: 8px !important;
}
.newsletter-subscribe input {
	padding: 5px 0px !important;
	border-radius: 0 !important;
	border: 0 !important;
	border-bottom: 1px solid #000 !important;
	display: inline-block;
	max-width: 100%;
}
.newsletter-subscribe input.required {
	margin-top: 10px;
}
.newsletter-subscribe button {
	background-color: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	color: #00f !important;
	margin-top: -6px !important;
	cursor: pointer;
	float: right !important;
	text-align: right;
	text-decoration: underline !important;
}
.newsletter-subscribe ::-webkit-input-placeholder {
	color: #000;
	opacity: 1;
}
.newsletter-subscribe ::-moz-placeholder {
	color: #000;
	opacity: 1;
}
.newsletter-subscribe :-ms-input-placeholder {
	color: #000;
	opacity: 1;
}
.newsletter-subscribe :-moz-placeholder {
	color: #000;
	opacity: 1;
}
#cookie-notice {
	font-size: 100%;
	position: -webkit-sticky;
	position: fixed;
	bottom: 0;
}
.cookies-not-set #cookie-notice {
	display: block !important;
}
body.single-foyer_channel #cookie-notice {
	display: none !important;
}
#cookie-notice a {
	color: #000 !important;
	text-decoration: underline !important;
}
.cookie-notice-container {
	padding: 5px 10px !important;
	padding: 5px 1.2vh !important;
	text-align: left !important;
}
#cn-notice-buttons {
	float: right;
}
#cookie-notice .button {
	margin-left: 10px !important;
	color: #000 !important;
	text-align: right !important;
	display: block !important;
	margin-top: 1px !important;
	margin-bottom: 3px !important;
	text-decoration: underline !important;
}
#container.cookies_openxxx header nav .newsletter {
	margin-bottom: 42px !important;
	margin-bottom: 5.2vh !important;
}
#cn-close-notice {
	display: none;
}
.cn-text-container {
	margin: 0 !important;
	/******************************************************************
PAGE NAVI STYLES
******************************************************************/
}
.pagination,
.wp-prev-next {
	margin: 1.5em 0;
}
.pagination {
	text-align: center;
	/* end .bones_page_navi */
	/* fallback previous & next links */
}
.pagination ul {
	display: inline-block;
	background-color: #fff;
	white-space: nowrap;
	padding: 0;
	clear: both;
	border-radius: 3px;
}
.pagination li {
	padding: 0;
	margin: 0;
	float: left;
	display: inline;
	overflow: hidden;
	border-right: 1px solid #eaedf2;
}
.pagination a,
.pagination span {
	margin: 0;
	text-decoration: none;
	padding: 0;
	line-height: 1em;
	font-size: 1em;
	font-weight: normal;
	padding: 0.75em;
	min-width: 1em;
	display: block;
	color: #2980b9;
}
.pagination a:hover,
.pagination span:hover,
.pagination a:focus,
.pagination span:focus {
	background-color: #2980b9;
	color: #fff;
}
.pagination .current {
	cursor: default;
	color: #000;
}
.pagination .current:hover,
.pagination .current:focus {
	background-color: #fff;
	color: #000;
}
.wp-prev-next {
	/* end .wp-prev-next */
	/******************************************************************
COMMENT STYLES
******************************************************************/
	/* h3 comment title */
}
.wp-prev-next .prev-link {
	float: left;
}
.wp-prev-next .next-link {
	float: right;
}
#comments-title {
	padding: 0.75em;
	margin: 0;
	/* number of comments span */
	border-top: 1px solid #f8f9fa;
}
.commentlist {
	margin: 0;
	list-style-type: none;
}
.comment {
	position: relative;
	clear: both;
	overflow: hidden;
	padding: 1.5em;
	border-bottom: 1px solid #f8f9fa;
	/* comment meta */
}
.comment .comment-author {
	padding: 7px;
	border: 0;
	/* vcard */
}
.comment .vcard {
	margin-left: 50px;
	/* end .commentlist .vcard */
}
.comment .vcard cite.fn {
	font-weight: 700;
	font-style: normal;
}
.comment .vcard time {
	display: block;
	font-size: 0.9em;
	font-style: italic;
}
.comment .vcard time a {
	color: #9fa6b4;
	text-decoration: none;
}
.comment .vcard time a:hover {
	text-decoration: underline;
}
.comment .vcard .avatar {
	position: absolute;
	left: 16px;
	border-radius: 50%;
}
.comment:last-child {
	margin-bottom: 0;
}
.comment .children {
	margin: 0;
	/* end children */
}
.comment .children li {
	/* variations */
}
.comment .children .depth-1 {
	/* change number for different depth */
}
.comment[class*="depth-"] {
	margin-top: 1.1em;
}
.comment.depth-1 {
	margin-left: 0;
	margin-top: 0;
}
.comment:not(.depth-1) {
	margin-top: 0;
	margin-left: 7px;
	padding: 7px;
}
.comment.depth-5 {
	/* general comment classes */
}
.comment.odd {
	background-color: #fff;
}
.comment.even {
	background: #f8f9fa;
}
.commentmetadata {
	/* comment content */
}
.comment_content {
	/* end .commentlist .comment_content */
	/* comment reply link */
}
.comment_content p {
	margin: 0.7335em 0 1.5em;
	font-size: 1em;
	line-height: 1.5em;
}
.comment-reply-link {
	font-size: 0.9em;
	float: right;
	/* end .commentlist .comment-reply-link */
	/* edit comment link */
}
.comment-edit-link {
	font-style: italic;
	margin: 0 7px;
	text-decoration: none;
	font-size: 0.9em;
	/******************************************************************
COMMENT FORM STYLES
******************************************************************/
}
.comment-respond {
	padding: 1.5em;
	border-top: 1px solid #f8f9fa;
}
#reply-title {
	margin: 0;
}
.logged-in-as {
	color: #9fa6b4;
	font-style: italic;
	margin: 0;
}
.logged-in-as a {
	color: #000;
}
.comment-form-comment {
	margin: 1.5em 0 0.75em;
}
.form-allowed-tags {
	padding: 1.5em;
	background-color: #f8f9fa;
	font-size: 0.9em;
	/* comment submit button */
}
#submit {
	float: right;
	font-size: 1em;
	/* comment form title */
}
#comment-form-title {
	margin: 0 0 1.1em;
	/* cancel comment reply link */
}
#cancel-comment-reply {
	/* logged in comments */
}
.comments-logged-in-as {
	/* allowed tags */
}
#allowed_tags {
	margin: 1.5em 10px 0.7335em 0;
	/* no comments */
}
.nocomments {
	margin: 0 20px 1.1em;
	/*********************
SIDEBARS & ASIDES
*********************/
}
.widget ul li a {
	/* deep nesting */
}
.no-widgets {
	background-color: #fff;
	padding: 1.5em;
	text-align: center;
	border: 1px solid #000;
	border-radius: 2px;
	margin-bottom: 1.5em;
	/*********************
FOOTER STYLES
*********************/
}
.footer {
	clear: both;
	background-color: transparent;
	color: #000;
	width: 100%;
	margin-top: 40px;
	margin-top: 4rem;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
	margin-bottom: 10px;
	margin-bottom: 1.2vh;
}
.cookies-not-set .footer {
	margin-bottom: 19.2vh;
}
.footer nav {
	display: inline-block;
	vertical-align: baseline;
	margin-top: 16px;
	margin-top: 1.6rem;
	/*********************
ROTATE    @include rotate(-90deg);
*********************/
}
.footer-links-wrapper {
	display: block;
	/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
}
.footer-links {
	/* end .footer-links */
}
.footer .nav li {
	float: none;
}
.copyright {
	display: inline-block;
	vertical-align: baseline;
	/* Slider */
}
.lightbox-slider-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 100000;
}
.lightbox-slider {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	/*********************
TRANSITION     @include transition(color .3s ease);
*********************/
	/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
	max-width: 94.7vw;
}
.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}
.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}
[dir="rtl"] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
.slick-list {
	/* Icons */
}
.slick-loading .slick-list {
	background: #fff image-url("../images/ajax-loader.gif") center center no-repeat;
}
@font-face {
	font-family: "slick";
	src: font-url("slick.eot");
	src: font-url("slick.eot?#iefix") format("embedded-opentype"), font-url("slick.woff") format("woff"), font-url("slick.ttf") format("truetype"), font-url("slick.svg#slick") format("svg");
	font-weight: normal;
	font-style: normal;
}
.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 45%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
	z-index: 9999;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
	outline: none;
	background: transparent;
	color: transparent;
}
.slick-prev img,
.slick-next img {
	width: 20px;
}
.slick-prev {
	left: 0px;
}
.slick-prev img {
	float: left;
	margin-left: 10px;
}
.slick-next {
	right: 0px;
	/* Dots */
}
.slick-next img {
	float: right;
	margin-right: 10px;
}
.slick-dotted.slick-slider {
	margin-bottom: 30px;
}
.slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}
.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "\2022";
	width: 20px;
	height: 20px;
	font-family: "slick";
	font-size: 6px;
	line-height: 20px;
	text-align: center;
	color: black;
	opacity: 0.25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
	color: black;
	opacity: 0.75;
}
.slider .slide {
	display: none;
	padding: 0 1px;
}
.slider .slide:first-child {
	display: block;
}
.slick-initialized.slider .slide,
.slick-initialized.slider .slide:first-child {
	display: block;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0 1px;
}
.slide-info {
	text-align: right;
	width: 100%;
	margin-bottom: 4px;
}
.slide-info.big_slider {
	position: fixed;
	z-index: 100001;
	top: 0;
	left: 50%;
	font-size: 36px;
	font-size: 4vh;
	font-size: 8vw;
	font-weight: bold;
	-webkit-transform: translate(-50%, 3px);
	transform: translate(-50%, 3px);
}
a[href^="tel"] {
	color: inherit !important;
	text-decoration: none;
}
@media (max-width: 1024px) and (orientation: landscape) {
	/* Preload images */
	html.phone .slick-dots {
		display: none !important;
	}
}
body:after {
	display: none;
}
body.lb-disable-scrolling {
	overflow: hidden;
}
.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #fff;
	width: 100% !important;
	width: calc(100% + 20px) !important;
	opacity: 1;
	display: none;
}
.lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
	background-color: #fff;
}
.lightbox:hover {
	cursor: pointer;
}
html.csstransforms .lightbox {
	top: 50.1% !important;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	/*********************
VERTICAL ALIGN MIDDLE    @include vertical-align-total();
*********************/
	position: fixed;
}
.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
	/* Image border */
	border-radius: 0;
	border: 0;
}
.lightbox a img {
	border: none;
}
.lb-outerContainer {
	position: relative;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	/* Background color behind image.
     This is visible during transitions. */
	border-radius: 0;
	background-color: white;
}
.lb-outerContainer:hover {
	cursor: default;
}
.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
.lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(../images/loading.gif) no-repeat;
}
.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
.lb-container > .nav {
	left: 0;
}
.lb-nav a {
	outline: none;
}
.lb-prev,
.lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
}
.lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}
.lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}
.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
}
.lb-dataContainer:hover {
	cursor: default;
}
.lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-data {
	padding: 0;
	color: #000;
}
.lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.3;
}
.lb-data .lb-caption a {
	color: #00f;
}
.lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999;
}
.lb-data .lb-close {
	display: none;
	float: right;
	width: 30px;
	height: 30px;
	text-align: right;
	outline: none;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
	cursor: pointer;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
	/*------------------------------------*\
    MISC
\*------------------------------------*/
}
img {
	-ms-interpolation-mode: bicubic;
}
.js_show {
	display: none;
}
.hidden {
	display: none !important;
	visibility: hidden;
	/* Hide visually and from screenreaders, but maintain layout */
}
.invisible {
	visibility: hidden;
	/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
}
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
	/*  SELECTION */
}
::selection {
	background: #04a4cc;
	color: #fff;
	text-shadow: none;
}
::-webkit-selection {
	background: #04a4cc;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #04a4cc;
	color: #fff;
	text-shadow: none;
}
@media only screen and (min-width: 370px) {
	/******************************************************************
Stylesheet: 481px and Up Stylesheet
******************************************************************/
	/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
	/*********************
NAVIGATION STYLES
*********************/
	/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
	.nav {
		/* .menu is clearfixed inside mixins.scss */
	}
	.menu {
		/* end .menu */
		/*********************
POSTS & CONTENT STYLES
*********************/
		/* entry content */
	}
	.menu ul {
		/* end .menu ul */
	}
	.menu ul li {
		/* end .menu ul li */
		/* highlight current page */
	}
	.menu ul li:last-child {
		/*
				plan your menus and drop-downs wisely.
				*/
	}
	.menu ul li.current-menu-item,
	.menu ul li.current_page_item,
	.menu ul li.current_page_ancestor {
		/* end current highlighters */
	}
	.entry-content {
		/* end .entry-content */
		/*********************
FOOTER STYLES
*********************/
		/*
check your menus here. do they look good?
do they need tweaking?
*/
	}
	.entry-content .alignleft,
	.entry-content img.alignleft {
		margin-right: 1.5em;
		display: inline;
		float: left;
	}
	.entry-content .alignright,
	.entry-content img.alignright {
		margin-left: 1.5em;
		display: inline;
		float: right;
	}
	.entry-content .aligncenter,
	.entry-content img.aligncenter {
		margin-right: auto;
		margin-left: auto;
		display: block;
		clear: both;
	}
	.footer-links {
		/* end .footer-links */
	}
}
@media only screen and (min-width: 768px) {
	/******************************************************************
Stylesheet: Tablet & Small Desktop Stylesheet
******************************************************************/
	/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
	body.kwonlocation,
	body.kw-onlocation {
		background: url(https://www.kw-berlin.de/files/KW_on_location_BG_desktop.png) no-repeat;
		background-size: 100.5%;
		background-position: 50% 0.05%;
		/*********************
GENERAL STYLES
*********************/
	}
	body.kwonlocation #content,
	body.kw-onlocation #content {
		margin-top: 0.32vh;
	}
	body {
		/*********************
LAYOUT & GRID STYLES
*********************/
	}
	.wrap {
		/*********************
HEADER STYLES
*********************/
	}
	#logo {
		/*********************
NAVIGATION STYLES
*********************/
	}
	header .nav {
		border: 0;
		/* end .nav */
	}
	header .nav ul {
		margin-top: 0;
	}
	header .nav li {
		font-size: 4vh;
		/* end .menu ul li */
		/* highlight current page */
	}
	header .nav li a {
		/*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
		border-bottom: 0;
	}
	header .nav li:last-child {
		/*
		plan your menus and drop-downs wisely.
		*/
	}
	header .nav li ul.sub-menu,
	header .nav li ul.children {
		margin-top: 0;
		display: none;
		z-index: 8999;
		/* showing sub-menus */
	}
	header .nav li ul.sub-menu ul.sub-menu,
	header .nav li ul.children ul.sub-menu,
	header .nav li ul.sub-menu ul.children,
	header .nav li ul.children ul.children {
		display: block;
	}
	header .nav li ul.sub-menu li,
	header .nav li ul.children li {
		/* highlight sub-menu current page */
	}
	header .nav li ul.sub-menu li:last-child,
	header .nav li ul.children li:last-child {
		/*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
	}
	header .nav li ul.sub-menu li ul,
	header .nav li ul.children li ul {
		top: 0;
		left: 100%;
	}
	header .nav li:hover > ul {
		top: auto;
		display: block;
	}
	header .nav li.current-menu-item,
	header .nav li.current_page_item,
	header .nav li.current_page_ancestor {
		/* end current highlighters */
	}
	header .nav li,
	.page-title,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-additional-content a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
	#responsive-menu-pro-additional-content input,
	#responsive-menu-pro-container .nav.newsletter input,
	.slide-info.big_slider {
		font-size: 38px !important;
		font-size: 4vh !important;
	}
	html.no-js header .nav li:hover > ul {
		display: block;
	}
	.sub-menu.activexx {
		display: block !important;
	}
	#responsive-menu-pro-container #responsive-menu-pro,
	#responsive-menu-pro-container #responsive-menu-pro-additional-content,
	#responsive-menu-pro-container #responsive-menu-pro-title,
	#responsive-menu-pro-container .nav.newsletter {
		padding-left: 20px !important;
	}
	header .nav li.current-menu-ancestor > a + ul.sub-menu {
		display: block;
		/******************************************************************
CONTENT STYLES
******************************************************************/
	}
	.bg-image {
		padding: 10px;
		padding: 1vh 1.17vh;
	}
	.page_image img,
	.slick-slide img,
	.slide img {
		max-height: 450px;
		max-height: 65vh;
	}
	.lightbox-slider .slide img {
		max-height: 550px;
		max-height: 80vh;
	}
	.lightbox-slider .page_image_caption {
		width: 580px;
	}
	.lb-dataContainer,
	.lb-details {
		min-width: 500px;
	}
	.slick-slider,
	.slide-info {
		max-width: 580px;
	}
	.slick-prev,
	.slick-next {
		height: 70%;
		width: 70px;
	}
	.cookie-notice-container {
		padding: 5px 10px;
		padding: 10px 1.6vh 9px 1.5vh;
	}
	#cookie-notice .button {
		margin-top: 0px;
		margin-bottom: 0;
		float: right;
		/*********************
SIDEBARS & ASIDES
*********************/
	}
	.sidebar {
		margin-top: 2.2em;
	}
	.widgettitle {
		border-bottom: 2px solid #444;
		margin-bottom: 0.75em;
	}
	.widget {
		padding: 0 10px;
		margin: 2.2em 0;
		/* links widget */
	}
	.widget ul li {
		margin-bottom: 0.75em;
	}
	.widget ul li a {
		/* deep nesting */
	}
	.widget ul li ul {
		margin-top: 0.75em;
		padding-left: 1em;
	}
	.widget_links ul li a {
		/* meta widget */
	}
	.widget_meta ul li a {
		/* pages widget */
	}
	.widget_pages ul li a {
		/* recent-posts widget */
	}
	.widget_recent_entries ul li a {
		/* archives widget */
	}
	.widget_archive option {
		/* tag-cloud widget */
	}
	.widget_tag_cloud a:before {
		/* calendar widget */
	}
	#wp-calendar #prev a {
		/* category widget */
	}
	.widget_categories .level-3 {
		/* recent-comments widget */
	}
	.widget_recent_comments {
		/* search widget */
	}
	.screen-reader-text {
		/* text widget */
	}
	.textwidget p {
		/*********************
FOOTER STYLES
*********************/
		/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
	}
	.footer_column {
		padding-right: 30px;
		padding-right: 3rem;
		/*********************
ROTATE    @include rotate(-90deg);
*********************/
	}
	.footer-links-wrapper {
		display: inline-block;
	}
	.footer nav {
		margin-left: 20px;
		margin-left: 2rem;
		/*********************
ROTATE    @include rotate(-90deg);
*********************/
		margin-top: 0;
	}
	.footer-links {
		/* end .footer-links */
	}
	.footer-links ul li a {
		line-height: 1;
		/*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/
	}
}
@media only screen and (min-width: 1000px) {
	/******************************************************************
Stylesheet: Desktop Stylsheet 
******************************************************************/
	/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
	body.kwonlocation,
	body.kw-onlocation {
		background: url(https://www.kw-berlin.de/files/KW_on_location_BG_desktop.png) no-repeat;
		background-size: 100.6%;
		background-position: 50% 0.07%;
	}
	body.kwonlocation #content,
	body.kw-onlocation #content {
		margin-top: 0.4vh;
	}
	body.kwonlocation .wrap,
	body.kw-onlocation .wrap {
		margin: 0 auto 0 0px;
	}
	#container {
		padding: 6px 11px 0 0;
		padding: 0.6vh 1.1vh 0 0;
	}
	header .nav li,
	.page-title,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-additional-content a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
	#responsive-menu-pro-additional-content input,
	#responsive-menu-pro-container .nav.newsletter input,
	.slide-info.big_slider,
	.project-popup li,
	.digital-home {
		font-size: 38px !important;
		font-size: 5vh !important;
	}
	.project-popup {
		margin-top: 0;
	}
	.project-popup li {
		display: block;
		color: #00f;
		text-decoration: underline;
		font-weight: bold;
		line-height: 1.02;
		padding: 0;
		letter-spacing: -0.02em;
		background-color: transparent;
	}
	button#responsive-menu-pro-button {
		top: 3px !important;
		right: 6px !important;
	}
	#responsive-menu-pro-container {
		max-width: 40vw !important;
	}
	.wrap {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 0 2px;
	}
	body.home .right_column,
	#post-15971 .right_column,
	#post-16012 .right_column {
		padding: 0 0vh 0 16px;
	}
	#post-15971 .right_column,
	#post-16012 .right_column {
		margin-top: -1px;
	}
	#content {
		margin-left: 10px;
	}
	.bg-image {
		display: block;
		padding: 12px;
		padding: 1.5vh 1.57vh;
		position: absolute;
	}
	.overview-tile.ascending {
		min-height: 210px;
		min-height: 21rem;
		/*********************
ROTATE    @include rotate(-90deg);
*********************/
	}
	.overview-tile.ascending:last-child {
		min-height: 0;
	}
	.left_column {
		width: 60%;
		padding-right: 15px;
	}
	.right_column {
		padding: 180px 0px 0 16px;
		padding: 20.5vh 0vh 0 16px;
		width: 40%;
	}
	body.home.page .left_column,
	.events-page .left_column {
		width: 50%;
	}
	body.home.page .right_column,
	.events-page .right_column {
		width: 50%;
	}
	.right_column.top {
		padding-top: 0;
	}
	.pagetext {
		max-width: 580px;
		width: 97.5%;
		width: calc(100% - 0.35vh);
	}
	body.single .pagetext {
		max-width: 97.5%;
		max-width: calc(100% - 0.35vh);
	}
	.grid-padding-x > .cell {
		padding-right: 15px;
		padding-left: 0;
	}
	.grid-padding-x > .cell:nth-child(2n) {
		padding-right: 0;
		padding-left: 15px;
	}
	.lightbox-slider .page_image_caption {
		width: 780px;
		max-width: 780px;
	}
	.lb-dataContainer,
	.lb-details {
		min-width: 500px;
	}
	.slick-slider,
	.slide-info {
		max-width: 780px;
	}
	.sticky-helper {
		margin: 0;
		-webkit-transform: translate3d(0, 0, 0);
	}
	.pagetext.simple,
	.anchor-block:last-child {
		margin-bottom: 30px;
		margin-bottom: 3rem;
		/*********************
ROTATE    @include rotate(-90deg);
*********************/
	}
	.cookies-not-set .footer {
		margin-bottom: 3em;
	}
	.cookies-not-set header nav .newsletter {
		margin-bottom: 5.6vh;
	}
	.not_mob {
		display: block;
	}
	.mob_only {
		display: none !important;
	}
}
@media only screen and (min-width: 1140px) {
	/******************************************************************
Stylesheet: Super Large Monitor Stylesheet
******************************************************************/
	/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
	/******************************************************************
Stylesheet: Retina Screens & Devices Stylesheet
******************************************************************/
	/* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/
}
@media all and (max-width: 999px) {
	.large-6 {
		order: 1;
	}
	.large-6:nth-child(2n) {
		order: 2;
	}
}
@media (min-height: 769px) and (min-width: 1025px) {
	#responsive-menu-pro-container {
		max-width: 60vw !important;
	}
}
@media all and (min-width: 1025px) {
	body.kwonlocation,
	body.kw-onlocation {
		background-size: 101.5%;
		background-position: 50% 0.15%;
	}
	body.kwonlocation #content,
	body.kw-onlocation #content {
		margin-top: 0.3vh;
	}
	.lightbox-slider-wrapper:hover {
		cursor: pointer;
	}
	.lightbox-slider-wrapper .slide img:hover {
		cursor: default;
	}
	.slick-next img,
	.slick-prev img {
		opacity: 0;
	}
	.slick-next:hover img,
	.slick-prev:hover img {
		opacity: 1;
	}
}
@media all and (min-width: 1200px) {
	body.quad header .nav li,
	body.quad .page-title,
	body.quad #responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	body.quad #responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	body.quad #responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	body.quad #responsive-menu-pro-additional-content a,
	body.quad #responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
	body.quad #responsive-menu-pro-additional-content input,
	body.quad #responsive-menu-pro-container .nav.newsletter input,
	body.quad .slide-info.big_slider,
	body.quad .digital-home {
		font-size: 38px !important;
		font-size: 2.6vw !important;
	}
	body.quad #content {
		margin-left: 28vw;
	}
	header nav {
		display: block;
		display: box;
		display: flexbox;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-direction: normal;
		-webkit-box-orient: vertical;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	header nav .main-nav {
		flex: 1;
		-webkit-box-flex: 1;
		-webkit-flex-grow: 1;
		-moz-flex-grow: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
	header nav .newsletter {
		margin-bottom: 12px;
		margin-bottom: 1.6vh;
	}
	header nav.lang-switcher {
		display: block;
	}
	.bg-image {
		position: absolute;
		padding: 1.5vh 1.57vh;
	}
	.wrap {
		width: calc(100% - 3vh);
		margin: 0 auto;
	}
	#content {
		margin-left: 510px;
		margin-left: 49.5vh;
	}
	.left_column {
		width: 56%;
		padding-right: 15px;
	}
	.right_column {
		padding: 180px 0px 0 16px;
		padding: 22.6vh 0vh 0 16px;
		width: 44%;
	}
	.pagetext {
		margin-left: 0px;
	}
}
@media all and (min-width: 1350px) {
	.left_column {
		width: 50%;
	}
	.right_column {
		width: 50%;
	}
}
@media all and (min-width: 1600px) {
	body.kwonlocation,
	body.kw-onlocation {
		background-size: 101.3%;
		background-position: 50% 0.14%;
	}
	#content {
		margin-top: 0.3vh;
	}
	.lightbox-slider .page_image_caption {
		width: 780px;
		max-width: 1000px;
	}
	.slick-slider,
	.slide-info {
		max-width: 1000px;
	}
}
@media all and (min-width: 2900px) {
	/*------------------------------------
    IPAD
------------------------------------*/
	header .nav li,
	.page-title,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-additional-content a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
	#responsive-menu-pro-additional-content input,
	#responsive-menu-pro-container .nav.newsletter input,
	.slide-info.big_slider,
	.digital-home {
		font-size: 38px !important;
		font-size: 2.6vw !important;
	}
	#content {
		margin-left: 29vw;
	}
}
@media only screen and (device-width: 768px) and (orientation: portrait) {
	html {
		text-rendering: optimizeLegibility !important;
		-webkit-font-smoothing: antialiased !important;
	}
	body {
		-webkit-text-stroke: 0.4px;
	}
	A:link,
	A:hover,
	A:active,
	A:visited {
		border-bottom: 0px solid white !important;
	}
}
@media only screen and (device-width: 768px) and (orientation: landscape) {
	html {
		text-rendering: optimizeLegibility !important;
		-webkit-font-smoothing: antialiased !important;
	}
	body {
		-webkit-text-stroke: 0.4px;
	}
	A:link,
	A:hover,
	A:active,
	A:visited {
		border-bottom: 0px solid white !important;
	}
}
.digital-home {
	display: none;
	background-color: #000;
	position: fixed;
	z-index: 2;
	top: 0;
	right: 0;
	height: 100%;
	width: 1.16em;
	text-decoration: none;
}
.digital-home-title {
	color: #fff;
	font-weight: bold;
	display: block;
	margin-top: 52vh;
	margin-top: calc(50vh + 0.26em);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.digital-home-mob {
	margin-top: 35px !important;
	margin-bottom: 34px !important;
}
#responsive-menu-pro-container .nav.newsletter .digital-home-mob a {
	color: #000;
	background-color: #feff00 !important;
	text-decoration: none !important;
}
.hand-cursor {
	position: absolute;
	right: 1vh;
	bottom: 20vh;
	width: 6vh;
}
@media (max-width: 1199px) {
	.hand-cursor {
		display: none !important;
	}
}
body.page-template-page-template-digital .digital-content > .digital-image img {
	max-height: none;
}
body.page-template-page-template-digital .page-section,
body.page-template-page-template-digital .page_image,
body.page-template-page-template-digital .slider {
	max-width: none;
}
body.page-template-page-template-digital footer {
	margin-top: 9vh;
}
body.page-template-page-template-digital .footer_column:first-child,
body.page-template-page-template-digital .footer-links li:not(:last-child) {
	display: none;
}
body.page-template-page-template-digital .digital-content > div:not(.grid2),
body.page-template-page-template-digital .grid2-column > div {
	margin: 0 auto 1em auto;
}
body.page-template-page-template-digital .grid2-column > div {
	margin-left: 0;
}
body.page-template-page-template-digital .digital-content > div:not(.grid2).digital-title,
body.page-template-page-template-digital .grid2-column > div.digital-title {
	margin-bottom: 0.35em;
	margin-top: 1.4em;
}
body.page-template-page-template-digital .digital-content > div:not(.grid2).digital-image,
body.page-template-page-template-digital .grid2-column > div.digital-image {
	margin: 0.2em auto 1.3em auto;
}
body.page-template-page-template-digital .grid2-column > div.digital-image {
	margin-left: 0;
}
body.page-template-page-template-digital .digital-content > div:not(.grid2).digital-title:first-child {
	margin-top: 0;
}
body.page-template-page-template-digital .digital-caption,
body.page-template-page-template-digital .digital-embed p:first-of-type {
	margin-top: 0.27em;
	/*.digital-text {
		max-width: 580px!important;
	}*/
}
body.page-template-page-template-digital iframe,
body.page-template-page-template-digital embed,
body.page-template-page-template-digital video,
body.page-template-page-template-digital audio {
	width: 100%;
}
@media (min-width: 768px) {
	#responsive-menu-pro-container .nav.newsletter .digital-home-mob a {
		font-size: 38px !important;
		font-size: 4vh !important;
	}
	.digital-home-mob {
		margin-top: 55px !important;
		margin-bottom: 54px !important;
	}
}
@media (min-width: 1000px) {
	.digital-home-mob {
		margin-top: 40px !important;
		margin-bottom: 0px !important;
	}
	body.home .right_column,
	body.home-test .right_column {
		padding-right: 5vh;
		padding-top: 0;
	}
	body.page-template-page-template-digital .digital-content > div:not(.grid2) {
		max-width: 71%;
	}
	body.page-template-page-template-digital .grid2 {
		display: box;
		display: flexbox;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}
	body.page-template-page-template-digital .grid2-column {
		width: 50%;
	}
	body.page-template-page-template-digital .grid2-column:first-child {
		padding-right: 0.75vh;
	}
	body.page-template-page-template-digital .grid2-column:last-child {
		padding-left: 0.75vh;
		padding-right: 1vh;
	}
	body.page-template-page-template-digital .digital-image {
		display: table;
	}
	body.page-template-page-template-digital .digital-caption {
		display: table-caption;
		caption-side: bottom;
	}
	body.page-template-page-template-digital audio {
		max-width: 80%;
	}
}
@media (min-width: 1200px) {
	.digital-home-mob {
		display: none !important;
	}
	body.home .digital-home,
	body.home-test .digital-home {
		display: block;
		background-color: #feff00;
		white-space: nowrap;
	}
	body.home .digital-home-title,
	body.home-test .digital-home-title {
		color: #000;
		margin-top: calc(50vh + 0.9em);
		letter-spacing: -0.02em;
	}
	body.home .digital-home-title2,
	body.home-test .digital-home-title2 {
		display: none;
		margin-top: calc(50vh + 0.82em);
	}
	body.home .digital-home.active .digital-home-title,
	body.home-test .digital-home.active .digital-home-title {
		display: none;
	}
	body.home .digital-home.active .digital-home-title2,
	body.home-test .digital-home.active .digital-home-title2 {
		display: block;
	}
	body.home header nav.lang-switcher,
	body.home-test header nav.lang-switcher {
		right: 7.8vh;
	}
	body.home .right_column,
	body.home-test .right_column {
		padding-right: 5vh;
	}
	body.page-template-page-template-digital .digital-home {
		display: block;
		/*.bg-image {
		    padding: 1.5vh 5.6vh 1.57vh 1.5vh;
		}*/
	}
	body.page-template-page-template-digital header nav.lang-switcher {
		right: 7.8vh;
	}
	body.page-template-page-template-digital #content {
		margin-left: 0;
	}
	body.page-template-page-template-digital #inner-content {
		padding-left: 0;
		padding-right: 5vh;
	}
	body.page-template-page-template-digital .grid2-column:last-child {
		padding-right: 0;
	}
	body.page-template-page-template-digital audio {
		max-width: 35em;
	}
	body.page-template-page-template-digital .footer,
	body.page-template-page-template-digital .footer nav {
		margin-left: 29vw;
		margin-left: 0;
	}
}
@media (min-width: 1400px) {
	body.page-template-page-template-digital .digital-content {
		max-width: 1400px;
		margin: 0 auto;
	}
	body.page-template-page-template-digital .grid2-column:first-child {
		padding-right: 2%;
	}
	body.page-template-page-template-digital .grid2-column:last-child {
		padding-left: 2%;
	}
}
@media print {
	/******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
	* {
		background: transparent !important;
		color: black !important;
		text-shadow: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}
	html,
	body {
		height: 99% !important;
		overflow: visible !important;
		border: 1px solid white;
		page-break-after: avoid;
		page-break-before: avoid;
	}
	body {
		margin: 0 0 0 0 !important;
		min-height: 0 !important;
	}
	body,
	h1,
	h2,
	h3,
	ol,
	ul,
	div {
		width: auto;
		float: none;
		position: static;
		overflow: visible;
	}
	#container {
		min-height: 1px !important;
	}
	#content {
		margin-left: 0 !important;
		display: block !important;
		padding: 20px 0 20px 0 !important;
	}
	header .nav li,
	.page-title,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a,
	#responsive-menu-pro-additional-content a,
	#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item input,
	#responsive-menu-pro-additional-content input,
	#responsive-menu-pro-container .nav.newsletter input {
		font-size: 24px !important;
	}
	.kite__item {
		display: inline !important;
	}
	.page-section {
		max-width: 90%;
		display: inline !important;
	}
	.right_column,
	.sticky-helper {
		position: static !important;
		padding: 0 !important;
		width: 100% !important;
	}
	.footer {
		margin-top: 30px !important;
		margin-bottom: 0 !important;
		top: 0 !important;
	}
	a,
	a:visited {
		color: #000 !important;
		text-decoration: underline;
	}
	a:after,
	a:visited:after {
		content: " (" attr(href) ")";
		display: none !important;
	}
	a abbr[title]:after,
	a:visited abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
	.sidebar,
	.page-navigation,
	.wp-prev-next,
	.respond-form,
	nav {
		display: none;
	}
	header,
	.social_links a,
	#lang_sel_list,
	.bg-image,
	#responsive-menu-pro-container {
		display: none !important;
	}
	img {
		position: static !important;
		opacity: 1 !important;
	}
	.entry-content img {
		margin: 0px;
		width: 60% !important;
		max-width: 100%;
		height: auto;
	}
	#logo {
		max-width: 30% !important;
	}
	[class*="cute-"],
	#logo {
		float: none !important;
		position: static !important;
		padding: 1px;
		width: 100%;
	}
	img {
		/* 'always,' 'avoid,' 'left,' 'inherit,' or 'right' */
		page-break-before: auto;
		/* 'always,' 'avoid,' 'left,' 'inherit,' or 'right' */
		page-break-after: auto;
		/* or 'auto' */
		page-break-inside: avoid;
	}
	.read-more-link {
		display: none !important;
	}
	.js_hidden {
		display: block !important;
	}
	a {
		text-decoration: none !important;
	}
}
