/*! 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/

******************************************************************/
/*********************
IMAGE-REPLACEMENT     @include image-replace("xxx.jpg");
*********************/
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

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

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

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


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

******************************************************************/
/*
*
* Cute Grids v1.0.1
* Copyright 2014 Darren Newberry
* http://www.cutegrids.com
* Free to use under the MIT Licence
* http://www.opensource.org/licenses/mit-license.php
*
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

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

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

Stylesheet: Button Styles

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

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

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

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

*********************/
/*********************
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.
*********************/
/******************************************************************
Site Name:
Author: Web3000.tv

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* html element 62.5% font-size for REM use */
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;
  /*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
}
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  /*
 * 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: 1em 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: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}
.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;
}
*, *:after, *:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Set the width of the row to what you like */
}
.row {
  width: 100%;
  max-width: 100%;
  /* max Width of row, Change to what you like */
  margin: 0 auto;
  /* Nested row 1 level down */
  /* Change the gutter if you like, currently set as 0.65em */
}
.row .row {
  /* minus left gutter for nested rows */
  margin-left: -0.05rem;
  /* minus Right gutter for nested rows */
  margin-right: -0.05rem;
  width: auto;
}
[class*='cute-'] {
  float: left;
  position: relative;
  /* top, bottom, left and right padding for columns */
  padding: 0.05rem;
  width: 100%;
  /* Remove this if you want the columns to float left when they overflow the row */
}
[class*='cute-']:last-of-type {
  float: right;
  /* Clearfix */
}
.row:after, .group:after, .clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.container:before, .container:after {
  display: table;
  content: " ";
}
.container:after {
  clear: both;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
  /* Grid classes for phone screen widths  */
}
@media only screen {
  /* Grid classes for tablet screen widths  */  .cute-1-phone {
    width: 8.33333%;
  }
  .cute-2-phone {
    width: 16.66667%;
  }
  .cute-3-phone {
    width: 25%;
  }
  .cute-4-phone {
    width: 33.33333%;
  }
  .cute-5-phone {
    width: 41.66667%;
  }
  .cute-6-phone {
    width: 50%;
  }
  .cute-7-phone {
    width: 58.33333%;
  }
  .cute-8-phone {
    width: 66.66667%;
  }
  .cute-9-phone {
    width: 75%;
  }
  .cute-10-phone {
    width: 83.33333%;
  }
  .cute-11-phone {
    width: 91.66667%;
  }
  .cute-12-phone {
    width: 100%;
    /* offset for phone size */
  }
  .cute-0-phone-offset {
    margin: 0;
  }
  .cute-1-phone-offset {
    margin-left: 8.33333%;
  }
  .cute-2-phone-offset {
    margin-left: 16.66667%;
  }
  .cute-3-phone-offset {
    margin-left: 25%;
  }
  .cute-4-phone-offset {
    margin-left: 33.33333%;
  }
  .cute-5-phone-offset {
    margin-left: 41.66667%;
  }
  .cute-6-phone-offset {
    margin-left: 50%;
  }
  .cute-7-phone-offset {
    margin-left: 58.33333%;
  }
  .cute-8-phone-offset {
    margin-left: 66.66667%;
  }
  .cute-9-phone-offset {
    margin-left: 75%;
  }
  .cute-10-phone-offset {
    margin-left: 83.33333%;
  }
  .cute-11-phone-offset {
    margin-left: 91.66667%;
  }
  .cute-1-phone-push {
    left: 8.33333%;
  }
  .cute-2-phone-push {
    left: 16.66667%;
  }
  .cute-3-phone-push {
    left: 25%;
  }
  .cute-4-phone-push {
    left: 33.33333%;
  }
  .cute-5-phone-push {
    left: 41.66667%;
  }
  .cute-6-phone-push {
    left: 50%;
  }
  .cute-7-phone-push {
    left: 58.33333%;
  }
  .cute-8-phone-push {
    left: 66.66667%;
  }
  .cute-9-phone-push {
    left: 75%;
  }
  .cute-10-phone-push {
    left: 83.33333%;
  }
  .cute-11-phone-push {
    left: 91.66667%;
  }
  .cute-1-phone-pull {
    right: 8.33333%;
  }
  .cute-2-phone-pull {
    right: 16.66667%;
  }
  .cute-3-phone-pull {
    right: 25%;
  }
  .cute-4-phone-pull {
    right: 33.33333%;
  }
  .cute-5-phone-pull {
    right: 41.66667%;
  }
  .cute-6-phone-pull {
    right: 50%;
  }
  .cute-7-phone-pull {
    right: 58.33333%;
  }
  .cute-8-phone-pull {
    right: 66.66667%;
  }
  .cute-9-phone-pull {
    right: 75%;
  }
  .cute-10-phone-pull {
    right: 83.33333%;
  }
  .cute-11-phone-pull {
    right: 91.66667%;
  }
  .center-phone {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
  .uncenter-phone {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }
  .uncenter-phone.right {
    float: right !important;
  }
  [class*='cute-'].phone-reset {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
}
@media only screen and (min-width: 48em) {
  /* Grid classes for wide Tablet / Laptop to Small Desktop Size */  .cute-1-tablet {
    width: 8.33333%;
  }
  .cute-2-tablet {
    width: 16.66667%;
  }
  .cute-3-tablet {
    width: 25%;
  }
  .cute-4-tablet {
    width: 33.33333%;
  }
  .cute-5-tablet {
    width: 41.66667%;
  }
  .cute-6-tablet {
    width: 50%;
  }
  .cute-7-tablet {
    width: 58.33333%;
  }
  .cute-8-tablet {
    width: 66.66667%;
  }
  .cute-9-tablet {
    width: 75%;
  }
  .cute-10-tablet {
    width: 83.33333%;
  }
  .cute-11-tablet {
    width: 91.66667%;
  }
  .cute-12-tablet {
    width: 100%;
    /* offset for tablet screen widths */
  }
  .cute-0-tablet-offset {
    margin: 0;
  }
  .cute-1-tablet-offset {
    margin-left: 8.33333%;
  }
  .cute-2-tablet-offset {
    margin-left: 16.66667%;
  }
  .cute-3-tablet-offset {
    margin-left: 25%;
  }
  .cute-4-tablet-offset {
    margin-left: 33.33333%;
  }
  .cute-5-tablet-offset {
    margin-left: 41.66667%;
  }
  .cute-6-tablet-offset {
    margin-left: 50%;
  }
  .cute-7-tablet-offset {
    margin-left: 58.33333%;
  }
  .cute-8-tablet-offset {
    margin-left: 66.66667%;
  }
  .cute-9-tablet-offset {
    margin-left: 75%;
  }
  .cute-10-tablet-offset {
    margin-left: 83.33333%;
  }
  .cute-11-tablet-offset {
    margin-left: 91.66667%;
  }
  .cute-1-tablet-push {
    left: 8.33333%;
  }
  .cute-2-tablet-push {
    left: 16.66667%;
  }
  .cute-3-tablet-push {
    left: 25%;
  }
  .cute-4-tablet-push {
    left: 33.33333%;
  }
  .cute-5-tablet-push {
    left: 41.66667%;
  }
  .cute-6-tablet-push {
    left: 50%;
  }
  .cute-7-tablet-push {
    left: 58.33333%;
  }
  .cute-8-tablet-push {
    left: 66.66667%;
  }
  .cute-9-tablet-push {
    left: 75%;
  }
  .cute-10-tablet-push {
    left: 83.33333%;
  }
  .cute-11-tablet-push {
    left: 91.66667%;
  }
  .cute-1-tablet-pull {
    right: 8.33333%;
  }
  .cute-2-tablet-pull {
    right: 16.66667%;
  }
  .cute-3-tablet-pull {
    right: 25%;
  }
  .cute-4-tablet-pull {
    right: 33.33333%;
  }
  .cute-5-tablet-pull {
    right: 41.66667%;
  }
  .cute-6-tablet-pull {
    right: 50%;
  }
  .cute-7-tablet-pull {
    right: 58.33333%;
  }
  .cute-8-tablet-pull {
    right: 66.66667%;
  }
  .cute-9-tablet-pull {
    right: 75%;
  }
  .cute-10-tablet-pull {
    right: 83.33333%;
  }
  .cute-11-tablet-pull {
    right: 91.66667%;
  }
  .center-tablet {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
  .uncenter-tablet {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }
  .uncenter-tablet.right {
    float: right !important;
  }
  [class*='cute-'].tablet-reset {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
}
@media only screen and (min-width: 62em) {
  /* Grid Classes for Large Desktop Size */  .cute-1-laptop {
    width: 8.33333%;
  }
  .cute-2-laptop {
    width: 16.66667%;
  }
  .cute-3-laptop {
    width: 25%;
  }
  .cute-4-laptop {
    width: 33.33333%;
  }
  .cute-5-laptop {
    width: 41.66667%;
  }
  .cute-6-laptop {
    width: 50%;
  }
  .cute-7-laptop {
    width: 58.33333%;
  }
  .cute-8-laptop {
    width: 66.66667%;
  }
  .cute-9-laptop {
    width: 75%;
  }
  .cute-10-laptop {
    width: 83.33333%;
  }
  .cute-11-laptop {
    width: 91.66667%;
  }
  .cute-12-laptop {
    width: 100%;
    /* offset for tablet laptop widths */
  }
  .cute-0-laptop-offset {
    margin: 0;
  }
  .cute-1-laptop-offset {
    margin-left: 8.33333%;
  }
  .cute-2-laptop-offset {
    margin-left: 16.66667%;
  }
  .cute-3-laptop-offset {
    margin-left: 25%;
  }
  .cute-4-laptop-offset {
    margin-left: 33.33333%;
  }
  .cute-5-laptop-offset {
    margin-left: 41.66667%;
  }
  .cute-6-laptop-offset {
    margin-left: 50%;
  }
  .cute-7-laptop-offset {
    margin-left: 58.33333%;
  }
  .cute-8-laptop-offset {
    margin-left: 66.66667%;
  }
  .cute-9-laptop-offset {
    margin-left: 75%;
  }
  .cute-10-laptop-offset {
    margin-left: 83.33333%;
  }
  .cute-11-laptop-offset {
    margin-left: 91.66667%;
  }
  .cute-1-laptop-push {
    left: 8.33333%;
  }
  .cute-2-laptop-push {
    left: 16.66667%;
  }
  .cute-3-laptop-push {
    left: 25%;
  }
  .cute-4-laptop-push {
    left: 33.33333%;
  }
  .cute-5-laptop-push {
    left: 41.66667%;
  }
  .cute-6-laptop-push {
    left: 50%;
  }
  .cute-7-laptop-push {
    left: 58.33333%;
  }
  .cute-8-laptop-push {
    left: 66.66667%;
  }
  .cute-9-laptop-push {
    left: 75%;
  }
  .cute-10-laptop-push {
    left: 83.33333%;
  }
  .cute-11-laptop-push {
    left: 91.66667%;
  }
  .cute-1-laptop-pull {
    right: 8.33333%;
  }
  .cute-2-laptop-pull {
    right: 16.66667%;
  }
  .cute-3-laptop-pull {
    right: 25%;
  }
  .cute-4-laptop-pull {
    right: 33.33333%;
  }
  .cute-5-laptop-pull {
    right: 41.66667%;
  }
  .cute-6-laptop-pull {
    right: 50%;
  }
  .cute-7-laptop-pull {
    right: 58.33333%;
  }
  .cute-8-laptop-pull {
    right: 66.66667%;
  }
  .cute-9-laptop-pull {
    right: 75%;
  }
  .cute-10-laptop-pull {
    right: 83.33333%;
  }
  .cute-11-laptop-pull {
    right: 91.66667%;
  }
  .center-laptop {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
  .uncenter-laptop {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }
  .uncenter-laptop.right {
    float: right !important;
  }
  [class*='cute-'].laptop-reset {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
}
.show-desktop {
  display: none;
}
@media only screen and (min-width: 75em) {
  .cute-1-desktop {
    width: 8.33333%;
  }
  .cute-2-desktop {
    width: 16.66667%;
  }
  .cute-3-desktop {
    width: 25%;
  }
  .cute-4-desktop {
    width: 33.33333%;
  }
  .cute-5-desktop {
    width: 41.66667%;
  }
  .cute-6-desktop {
    width: 50%;
  }
  .cute-7-desktop {
    width: 58.33333%;
  }
  .cute-8-desktop {
    width: 66.66667%;
  }
  .cute-9-desktop {
    width: 75%;
  }
  .cute-10-desktop {
    width: 83.33333%;
  }
  .cute-11-desktop {
    width: 91.66667%;
  }
  .cute-12-desktop {
    width: 100%;
    /* offset for tablet laptop widths */
  }
  .cute-0-desktop-offset {
    margin: 0;
  }
  .cute-1-desktop-offset {
    margin-left: 8.33333%;
  }
  .cute-2-desktop-offset {
    margin-left: 16.66667%;
  }
  .cute-3-desktop-offset {
    margin-left: 25%;
  }
  .cute-4-desktop-offset {
    margin-left: 33.33333%;
  }
  .cute-5-desktop-offset {
    margin-left: 41.66667%;
  }
  .cute-6-desktop-offset {
    margin-left: 50%;
  }
  .cute-7-desktop-offset {
    margin-left: 58.33333%;
  }
  .cute-8-desktop-offset {
    margin-left: 66.66667%;
  }
  .cute-9-desktop-offset {
    margin-left: 75%;
  }
  .cute-10-desktop-offset {
    margin-left: 83.33333%;
  }
  .cute-11-desktop-offset {
    margin-left: 91.66667%;
  }
  .cute-1-desktop-push {
    left: 8.33333%;
  }
  .cute-2-desktop-push {
    left: 16.66667%;
  }
  .cute-3-desktop-push {
    left: 25%;
  }
  .cute-4-desktop-push {
    left: 33.33333%;
  }
  .cute-5-desktop-push {
    left: 41.66667%;
  }
  .cute-6-desktop-push {
    left: 50%;
  }
  .cute-7-desktop-push {
    left: 58.33333%;
  }
  .cute-8-desktop-push {
    left: 66.66667%;
  }
  .cute-9-desktop-push {
    left: 75%;
  }
  .cute-10-desktop-push {
    left: 83.33333%;
  }
  .cute-11-desktop-push {
    left: 91.66667%;
  }
  .cute-1-desktop-pull {
    right: 8.33333%;
  }
  .cute-2-desktop-pull {
    right: 16.66667%;
  }
  .cute-3-desktop-pull {
    right: 25%;
  }
  .cute-4-desktop-pull {
    right: 33.33333%;
  }
  .cute-5-desktop-pull {
    right: 41.66667%;
  }
  .cute-6-desktop-pull {
    right: 50%;
  }
  .cute-7-desktop-pull {
    right: 58.33333%;
  }
  .cute-8-desktop-pull {
    right: 66.66667%;
  }
  .cute-9-desktop-pull {
    right: 75%;
  }
  .cute-10-desktop-pull {
    right: 83.33333%;
  }
  .cute-11-desktop-pull {
    right: 91.66667%;
  }
  .center-desktop {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
  .uncenter-desktop {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }
  .uncenter-desktop.right {
    float: right !important;
  }
  [class*='cute-'].desktop-reset {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }
}
@media only screen and (max-width: 30em) {
  /* Make visible or hidden block elements */  .cute-100 {
    width: 100%;
  }
}
.show-phone, .show-tablet, .show-laptop, .show-desktop {
  display: none !important;
}
.hide-phone {
  display: block !important;
}
@media only screen and (max-width: 47.938em) {
  .phone {
    width: 100%;
  }
  .hide-phone {
    display: none !important;
  }
  .show-phone {
    display: block !important;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.938em) {
  .hide-tablet {
    display: none !important;
  }
  .show-tablet {
    display: block !important;
  }
}
@media only screen and (min-width: 62em) and (max-width: 74.938em) {
  .hide-laptop {
    display: none !important;
  }
  .show-laptop {
    display: block !important;
  }
}
@media only screen and (min-width: 75em) {
  /* make images responsive */  .hide-desktop {
    display: none !important;
  }
  .show-desktop {
    display: block !important;
  }
}
.responsive-img {
  display: block;
  height: auto;
  max-width: 100%;
  /* Optional Extras */
  /* something to keep tables horizontal with scroll when on small screen 
*  Useful if table is wide. Set media query to point where table needs it
*/
  /*
@media only screen and (max-width: 47.938em) {
  .table-respond {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}
}
*/
}
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}
.blue-btn, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #020202;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  -moz-transition: background-color 0.14s ease-in-out;
  -ms-transition: background-color 0.14s ease-in-out;
  -o-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  /*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
  /* @include css-gradient(#dfdfdf,#f8f8f8); */
  /*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
}
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  color: #020202;
  text-decoration: none;
}
.blue-btn:active, .comment-reply-link:active, #submit:active {
  top: 1px;
}
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9;
}
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  background-color: #2574a8;
}
.blue-btn:active, .comment-reply-link:active, #submit:active {
  background-color: #2472a4;
}
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #a2a2a2;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  -moz-transition: background-color 0.24s ease-in-out;
  -ms-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
  /*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
  /* @include css-gradient(#dfdfdf,#f8f8f8); */
}
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 {
  background-color: #f7f8fa;
  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: #020202;
  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: #020202;
  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;
  /* 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: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #a2a2a2;
  background-color: #020202;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
iframe {
  background: transparent;
  /* Reset default border */
  border: none;
  overflow: 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;
}
a {
  color: #d9d9d9;
  text-decoration: none;
}
a:hover {
  color: #d9d9d9;
  border-bottom: 0px solid #d9d9d9;
  text-decoration: underline;
}
a:focus, a:active, a:visited {
  outline: 0;
  border-bottom: 0px solid #d9d9d9 !important;
  text-decoration: none !important;
}
a:hover, a:active {
  outline: 0;
}
input:focus {
  outline: 0;
  border: 1px solid #04a4cc;
}
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: 1000px;
  margin: 0 auto;
  /*********************
LINK STYLES
*********************/
}
a, a:visited {
  /* on hover */
  color: #d9d9d9;
  /******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
}
a:hover, a:visited:hover, a:focus, a:visited:focus, a:active, a:visited:active {
  color: #c2c2c2;
  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 {
  text-rendering: optimizelegibility;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */
  font-weight: 500;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}
h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}
h3, .h3 {
  font-size: 1.125em;
}
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
  /*********************
HEADER STYLES
*********************/
}
.header {
  background-color: #020202;
  padding-top: 15px;
}
#logo {
  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: #d9d9d9;
  line-height: 1;
}
header nav {
  margin: 0 auto;
  padding: 0 15px;
}
header .nav, #characters, .prevnext {
  border-bottom: 0;
  margin: 0;
  padding: 0;
  /* end .nav */
}
header .nav li, #characters li, .prevnext li {
  text-align: left;
  margin: 0;
  display: inline-block;
  z-index: 9;
  /* end .menu li */
  /* highlight current page */
}
header .nav li a, #characters li a, .prevnext li a {
  display: block;
  color: #d9d9d9;
  text-decoration: none;
  line-height: 1;
  padding: 0;
  /*
			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!
			*/
  white-space: nowrap;
}
header .nav li a:hover, #characters li a:hover, .prevnext li a:hover, header .nav li a:focus, #characters li a:focus, .prevnext li a:focus {
  outline: 0;
}
header .nav li:first-child, #characters li:first-child, .prevnext li:first-child {
  padding: 0;
}
header .nav li:last-child, #characters li:last-child, .prevnext li:last-child {
  float: right;
  /*
		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 a, #characters li ul.sub-menu li a, .prevnext li ul.sub-menu li a, header .nav li ul.children li a, #characters li ul.children li a, .prevnext li ul.children li a {
  padding-left: 30px;
}
header .nav li ul.sub-menu li a:hover, #characters li ul.sub-menu li a:hover, .prevnext li ul.sub-menu li a:hover, header .nav li ul.children li a:hover, #characters li ul.children li a:hover, .prevnext li ul.children li a:hover, header .nav li ul.sub-menu li a:focus, #characters li ul.sub-menu li a:focus, .prevnext li ul.sub-menu li a:focus, header .nav li ul.children li a:focus, #characters li ul.children li a:focus, .prevnext li ul.children li a:focus {
  outline: 0;
}
header .nav li.current-menu-item, #characters li.current-menu-item, .prevnext li.current-menu-item, header .nav li.current_page_item, #characters li.current_page_item, .prevnext li.current_page_item, header .nav li.current_page_ancestor, #characters li.current_page_ancestor, .prevnext li.current_page_ancestor {
  /* end current highlighters */
}
.menu-item a.menu-image-hovered img.hovered-image, .menu-item a.menu-image-hovered:hover img.menu-image {
  opacity: 0;
  transition: none;
  z-index: 1;
  position: relative;
}
a.menu-image-hovered img.hovered-image {
  opacity: 1;
  z-index: 99999;
}
li.current-menu-item a.menu-image-hovered img.menu-image {
  transition: none 0s ease 0s;
  opacity: 0;
}
li.current-menu-item a.menu-image-hovered img.hovered-image {
  opacity: 1;
}
.user-logged-in {
  color: #b6b6b6;
  padding-top: 13px;
  /*********************
POSTS & CONTENT STYLES
*********************/
}
#content {
  margin-top: 0px;
  margin-top: 0rem;
  /*********************
ROTATE    @include rotate(-90deg);
*********************/
  min-height: 78.3vh;
}
.hentry {
  background-color: transparent;
  border: 0px solid #d9d9d9;
  /* end .hentry */
}
.hentry header {
  border-bottom: 0px solid #f8f9fa;
}
.hentry footer {
  padding: 0rem;
  border-top: 0px solid #f8f9fa;
}
.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 {
  padding: 20px 0 0;
  padding: 2rem 0 0;
  /*********************
ROTATE    @include rotate(-90deg);
*********************/
  padding: 20px 20px 15px 20px;
  /* end .entry-content */
}
.entry-content p {
  margin: 0px 0 0;
  margin: 0rem 0 0;
  /*********************
ROTATE    @include rotate(-90deg);
*********************/
}
.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 tr:nth-child(even) {
  background-color: transparent;
}
.entry-content td {
  padding: 7px;
  border-right: 0px solid #eaedf2;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: transparent;
  border-bottom: 0px solid #eaedf2;
  border-right: 0px solid #eaedf2;
}
.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: #a2a2a2;
  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;
}
body.single .entry-content {
  padding: 20px 20px 0 20px;
}
img {
  color: transparent !important;
  /******************************************************************
PAGE NAVI STYLES
******************************************************************/
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  background-color: black;
  color: #fff;
  border: none;
}
.disclaimer-button-wrapper {
  margin: 20px auto 0 auto;
  text-align: center;
}
.disclaimer-button {
  display: inline-block;
}
.reveal .hidehover {
  display: block !important;
  visibility: visible !important;
}
.reveal:hover img {
  opacity: 1;
  cursor: pointer;
}
.reveal {
  position: relative;
}
.reveal .hidehover {
  position: absolute;
  z-index: -1;
  top: 0;
  width: auto;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.013s ease-in-out;
  -moz-transition: opacity 0.013s ease-in-out;
  -o-transition: opacity 0.013s ease-in-out;
  transition: opacity 0.013s ease-in-out;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
nav .reveal .hidehover, #characters .reveal .hidehover {
  top: 0px;
  left: 0px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: opacity 0s ease-in-out;
  -moz-transition: opacity 0s ease-in-out;
  -o-transition: opacity 0s ease-in-out;
  transition: opacity 0s ease-in-out;
}
.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: #020202;
  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: #020202;
}
.pagination .current {
  cursor: default;
  color: #a2a2a2;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #020202;
  color: #a2a2a2;
}
.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: #020202;
}
.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: 0px solid #f8f9fa;
}
#reply-title {
  margin: 0;
}
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #a2a2a2;
}
.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;
}
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.3;
  padding: 0px;
  margin: 0;
  font-size: 1em;
  color: #fff;
  border-radius: 0;
  vertical-align: baseline;
  box-shadow: none;
  border: 1px #fff solid;
  width: 100%;
  max-width: 400px;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #000;
  transition: background-color 0.24s ease-in-out 0s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
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 {
  background-color: #000;
  outline: none;
}
select {
  background-position: 98.5% 49.7% !important;
  background-image: url(../images/select-arrow.png) !important;
  background-repeat: no-repeat;
  padding: 0 0 1px 4px;
}
.home.page select {
  background-size: 30% 73%;
  /*********************
SIDEBARS & ASIDES
*********************/
}
.widget ul li a {
  /* deep nesting */
}
.no-widgets {
  background-color: #020202;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  margin-bottom: 1.5em;
  /*********************
FOOTER STYLES
*********************/
}
.footer {
  clear: both;
  background-color: #232323;
  color: #a2a2a2;
  width: 100%;
  min-width: 1008px;
  position: relative;
  z-index: 0;
}
body.home.page footer {
  position: absolute;
  bottom: 0;
}
#inner-footer {
  height: 76px;
  border-top: 1px solid #393939;
  width: 100%;
  min-width: 1000px;
}
.footer nav {
  vertical-align: middle;
  width: 1000px;
  margin: 0px auto;
  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 {
  padding-right: 20px;
  /* end .footer-links */
}
.footer .nav li {
  float: right;
  margin-top: 19px;
}
.copyright {
  display: inline-block;
  vertical-align: baseline;
}
#menu-footer_menu {
  vertical-align: middle;
  float: right;
  width: 1000px;
  margin: 0px auto;
}
#red-shadow, .front-box, .logreg {
  box-shadow: 0px 0px 14px #941717;
  box-shadow: 0px 0px 10px #841000;
  box-shadow: 0px 0px 36px #500301;
  margin: 0px auto 30px auto;
  z-index: 1;
  position: relative;
}
body {
  background-color: #111;
}
#wrapper {
  background-color: #020202;
}
#menu-item-179a {
  margin-top: 1px;
}
body.home.page #red-shadow {
  box-shadow: none;
  width: 50%;
}
body.home.page #wrapper {
  background: url('http://lexlydia.net/wp-content/uploads/Disclaimer_BackgroundSimpleASCII_1920.png') no-repeat;
  background: none;
  background-size: cover;
  height: calc(100% - 33px);
  height: calc(100vh - 33px);
}
.front-image {
  margin: 60px auto 30px auto;
  margin: 5vh auto 30px auto;
  display: table;
}
body.home.page #content {
  width: 80%;
  margin: 0 auto;
}
.front-box {
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  max-height: 400px;
  max-height: 45vh;
  overflow: auto;
  padding: 20px 20px 0 20px;
}
.front-text {
  letter-spacing: 2px;
  color: #9f0606;
  padding: 10px 0 20px 0px;
  text-align: center;
}
.front-date {
  margin: 30px auto 10px auto;
  display: table;
  white-space: nowrap;
}
.front-date-elem, .front-date-elem label, .front-date-elem select {
  display: inline-block;
  width: 32px;
}
.front-date-elem label {
  font-style: italic;
}
.front-date-elem select {
  width: 52px;
  margin-right: 20px;
  box-shadow: 0px 0px 14px #941717;
}
.front-date-elem select:last-child {
  margin-right: 0px;
}
.front-date-elem {
  width: 120px;
}
.logreg {
  background-color: #181818;
  padding: 12px 12px 4px 12px;
  width: 297px;
  float: right;
  margin-right: 16px;
  position: absolute;
  right: 0;
  margin-top: -4px;
  display: none;
  z-index: 999;
  border: 1px solid #262626;
}
.logreg-spacer {
  margin: 10px 0;
}
.login-form, .reg-form {
  padding: 0;
  position: relative;
  border-radius: 0;
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.login-form:before {
  display: none;
}
.login-column.c1 {
  width: 65px;
}
.login-column.c1 h3 {
  border-bottom: 1px solid #fff;
  display: inline;
}
.login-column.c3 {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  align-self: flex-end;
  width: 20px;
  padding-bottom: 9px;
}
.login-column input[type="text"], .login-column input[type="password"] {
  display: block;
  height: auto;
  line-height: 1.3;
  padding: 0px;
  margin: 0px;
  font-size: 1.1em;
  color: #626262;
  border-radius: 0px;
  vertical-align: baseline;
  box-shadow: none;
  border: 0px solid #fff;
  width: 100%;
  max-width: 400px;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #202020;
  transition: background-color 0.24s ease-in-out 0s;
  -moz-appearance: none;
  font-style: italic;
  margin: 3px 0 7px 0;
  padding: 0 0 1px 4px;
  width: 184px;
  letter-spacing: 0;
}
.login-column.c3 input[type=submit] {
  background: url(http://lexlydia.net/wp-content/uploads/StoryPage_LoginRegisterForm_Arrow.png) no-repeat left -4px;
  border: 0;
  display: block;
  height: _the_image_height;
  width: _the_image_width;
  color: transparent;
  width: 37px;
  height: 15px;
  margin: 0;
  padding: 0;
}
.login-column.c3 input[type=submit]:hover {
  background: url(http://lexlydia.net/wp-content/uploads/StoryPage_LoginRegisterForm_Arrow_HoverState.png) no-repeat left -4px;
}
.profilepress-login-status a {
  display: none !important;
}
.profilepress-login-status {
  background-color: #202020 !important;
  color: #fff !important;
  border: medium none;
  border-radius: 0px !important;
  font-size: 1.1em !important;
  font-weight: normal;
  line-height: 1.4;
  padding: 2px 5px !important;
  margin-bottom: 16px !important;
}
body.the-story .entry-content {
  padding-left: 5px;
  padding-right: 5px;
}
body.the-story .breadcrumb {
  padding-left: 18px;
}
#story-wrapper {
  margin-top: 70px;
  position: relative;
  text-align: center;
  font-size: 113%;
}
.column {
  width: 33.33%;
  text-align: justify;
  position: relative;
  padding: 0 20px;
  float: left;
}
#cola1, #cola3 {
  top: -110px;
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 8px;
  display: inline;
  float: left;
  margin-top: 6px;
}
#white-tribe, #black-tribe {
  text-align: center;
  margin-top: -410px;
  font-size: 12px;
}
.tribe-title {
  display: inline-block;
  color: #9f0606;
}
#white-tribe p, #black-tribe p {
  display: inline-block;
  line-height: 0;
}
#white-tribe p.tribe-new, #black-tribe p.tribe-new {
  display: block;
  margin-bottom: 10px;
}
.line, .text {
  clear: both;
}
.line.red, .text.red {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #9f0606;
  padding: 30px 0;
}
#after-rules-text {
  font-size: 123%;
  text-align: justify;
}
.zitat {
  font-style: italic;
  font-size: 17px;
}
#text1 {
  padding-bottom: 15px;
}
#text1 p {
  padding-bottom: 29px;
}
#text2 {
  padding: 10px 0;
  text-align: left;
}
#text2 .zitat {
  width: 33%;
  margin: 0 auto;
}
#text3 {
  padding: 60px 0 120px 0;
}
#characters {
  width: 900px;
  margin: auto;
}
.char-posts {
  height: 1244px;
}
#char-background {
  position: absolute;
  top: 120px;
  z-index: 0;
  width: 900px;
}
.char-line.nr1 {
  margin-top: 174px;
}
.char-line.nr2 {
  margin-top: 13px;
}
.char-line.nr3 {
  margin-top: 14px;
}
#characters .char-line li {
  background-color: transparent;
  margin-left: 80px;
  width: 225px;
  padding-top: 10px;
}
#characters .char-line li:nth-of-type(2) {
  margin-left: 30px;
}
#characters .char-line li:nth-of-type(3) {
  margin-left: 27px;
}
#characters .char-line li:last-child {
  float: none;
}
#characters .char-line:last-child li:last-child {
  margin-left: 338px;
}
body.single-post #content {
  min-height: 1200px !important;
}
.char-image {
  min-height: 1000px;
  width: 900px;
  width: 1000px;
  margin: 0px auto;
}
.char-description {
  position: absolute;
  top: 670px;
  z-index: 0;
  width: 385px;
  left: 50%;
  font-size: 84%;
  background-color: #000;
  padding-bottom: 5px;
  margin-left: -172px;
}
#prev, #next {
  position: absolute;
  top: 187px;
}
#prev {
  left: 45px;
}
#next {
  right: 45px;
}
body.single .wp-post-image {
  margin-top: 30px;
}
.char-skills {
  font-weight: bold;
  color: #9f0606;
  text-align: center;
  margin-top: 2px;
}
.char-skills-title {
  text-decoration: underline;
}
#rules {
  width: 1000px;
  height: 1870px;
  margin: auto;
}
.rules {
  position: absolute;
  margin: 0;
  left: 310px;
  font-size: 14px;
  width: 688px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
#rule1 {
  top: 227px;
}
#rule2 {
  top: 486px;
}
#rule3 {
  top: 745px;
}
#rule4 {
  top: 1005px;
}
#rule5 {
  top: 1262px;
}
#rule6 {
  top: 1558px;
  color: #a10606;
  font-size: 22px;
}
.rule_paragraph {
  width: 60px;
  display: inline-block;
  /*------------------------------------*\
    MISC
\*------------------------------------*/
}
img {
  -ms-interpolation-mode: bicubic;
}
.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;
  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;
  /**
 * bbPress specific CSS
 *
 * @package bbPress
 * @subpackage Theme
 */
  /* =bbPress Style
-------------------------------------------------------------- */
}
#bbpress-forums hr {
  margin: 0 0 24px 0;
}
#bbpress-forums {
  background: transparent;
  clear: both;
  overflow: hidden;
  padding: 0 0px;
}
#bbpress-forums div.even, #bbpress-forums ul.even {
  background-color: #020202;
}
#bbpress-forums div.odd, #bbpress-forums ul.odd {
  background-color: #020202;
}
body.reply-edit .reply {
  float: none;
}
#bbpress-forums div.reply {
  height: auto;
  width: 100%;
}
#bbpress-forums div.bbp-forum-header, #bbpress-forums div.bbp-topic-header, #bbpress-forums div.bbp-reply-header {
  background-color: #020202;
}
#bbpress-forums .status-trash.even, #bbpress-forums .status-spam.even {
  background-color: #020202;
}
#bbpress-forums .status-trash.odd, #bbpress-forums .status-spam.odd {
  background-color: #020202;
}
#bbpress-forums .status-closed, #bbpress-forums .status-closed a {
  color: #ccc;
}
#bbpress-forums ul {
  background: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
#bbpress-forums ul.bbp-threaded-replies {
  margin-left: 50px;
}
#bbpress-forums li {
  background: none;
  margin: 0;
  list-style: none;
}
#bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results {
  font-size: 12px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
  clear: both;
}
#bbpress-forums li.bbp-header, #bbpress-forums li.bbp-body, #bbpress-forums li.bbp-footer {
  clear: both;
}
#bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer {
  background: #020202;
  border-top: 0px solid #d9d9d9;
  font-weight: bold;
  padding: 8px;
  text-align: center;
}
#bbpress-forums li.bbp-header {
  background: #020202;
}
#bbpress-forums li.bbp-header ul {
  overflow: hidden;
}
#bbpress-forums .bbp-forums-list {
  margin: 0 0 0 5px;
  padding-left: 15px;
  border-left: 1px solid #ddd;
}
#bbpress-forums .bbp-forums-list li {
  display: inline;
  font-size: 11px;
}
#bbpress-forums li.bbp-footer {
  display: none;
}
#bbpress-forums li.bbp-footer p {
  margin: 0;
  line-height: 1em;
}
li.bbp-forum-info, li.bbp-topic-title {
  float: left;
  text-align: left;
  width: 58%;
  text-transform: uppercase;
}
li.bbp-forum-topic-count, li.bbp-topic-voice-count, li.bbp-forum-reply-count, li.bbp-topic-reply-count {
  float: left;
  text-align: center;
  width: 10%;
}
li.bbp-forum-freshness, li.bbp-topic-freshness {
  text-align: center;
  float: left;
  width: 22%;
}
#bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic {
  border-top: 1px solid #d9d9d9;
  overflow: hidden;
  padding: 8px;
  text-transform: uppercase;
}
li.bbp-header div.bbp-topic-content span#subscription-toggle, li.bbp-header div.bbp-topic-content span#favorite-toggle, li.bbp-header div.bbp-reply-content span#subscription-toggle, li.bbp-header div.bbp-reply-content span#favorite-toggle {
  float: right;
}
#bbpress-forums div.bbp-forum-title h3, #bbpress-forums div.bbp-topic-title h3, #bbpress-forums div.bbp-reply-title h3 {
  background: none;
  border: none;
  font-size: 16px;
  line-height: 1em;
  margin: 8px 0;
  padding: 0;
  text-transform: none;
}
#bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author {
  float: left;
  text-align: center;
  width: 115px;
}
#bbpress-forums div.bbp-forum-author img.avatar, #bbpress-forums div.bbp-topic-author img.avatar, #bbpress-forums div.bbp-reply-author img.avatar {
  border: none;
  max-width: 80px;
  padding: 0;
  margin: 12px auto 0 auto;
  float: none;
}
#bbpress-forums div.bbp-forum-author a.bbp-author-name, #bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name {
  margin: 0 12px;
  word-break: break-word;
  display: inline-block;
}
#bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name {
  clear: left;
  display: block;
}
#bbpress-forums div.bbp-forum-author .bbp-author-role, #bbpress-forums div.bbp-topic-author .bbp-author-role, #bbpress-forums div.bbp-reply-author .bbp-author-role {
  font-size: 11px;
  font-style: italic;
}
#bbpress-forums li.bbp-header .bbp-search-author, #bbpress-forums li.bbp-footer .bbp-search-author, #bbpress-forums li.bbp-header .bbp-forum-author, #bbpress-forums li.bbp-footer .bbp-forum-author, #bbpress-forums li.bbp-header .bbp-topic-author, #bbpress-forums li.bbp-footer .bbp-topic-author, #bbpress-forums li.bbp-header .bbp-reply-author, #bbpress-forums li.bbp-footer .bbp-reply-author {
  float: left;
  margin: 0;
  padding: 0;
  width: 120px;
}
#bbpress-forums li.bbp-header .bbp-search-content, #bbpress-forums li.bbp-footer .bbp-search-content, #bbpress-forums li.bbp-header .bbp-forum-content, #bbpress-forums li.bbp-footer .bbp-forum-content, #bbpress-forums li.bbp-header .bbp-topic-content, #bbpress-forums li.bbp-footer .bbp-topic-content, #bbpress-forums li.bbp-header .bbp-reply-content, #bbpress-forums li.bbp-footer .bbp-reply-content {
  margin-left: 140px;
  padding: 0;
  text-align: left;
}
div.bbp-forum-header, div.bbp-topic-header, div.bbp-reply-header, li.bbp-body div.hentry {
  margin-bottom: 0;
  overflow: hidden;
  padding: 8px;
}
div.bbp-forum-header, div.bbp-topic-header, div.bbp-reply-header {
  border-top: 1px solid #ddd;
  clear: both;
}
span.bbp-author-ip {
  font-family: 'Helvetica Neue', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: #aaa;
  /* =Topic and reply content
-------------------------------------------------------------- */
}
#bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content {
  margin-left: 130px;
  padding: 12px 12px 12px 0;
  text-align: left;
  /* Clearing hack */
}
#bbpress-forums div.bbp-forum-content:after, #bbpress-forums div.bbp-topic-content:after, #bbpress-forums div.bbp-reply-content:after {
  clear: both;
  content: ".";
  display: block;
  float: none;
  height: 0;
  font-size: 0;
  visibility: hidden;
}
#bbpress-forums div.bbp-topic-content a, #bbpress-forums div.bbp-reply-content a {
  background: none;
  border: none;
  display: inline;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
#bbpress-forums div.bbp-topic-content h1, #bbpress-forums div.bbp-reply-content h1, #bbpress-forums div.bbp-topic-content h2, #bbpress-forums div.bbp-reply-content h2, #bbpress-forums div.bbp-topic-content h3, #bbpress-forums div.bbp-reply-content h3, #bbpress-forums div.bbp-topic-content h4, #bbpress-forums div.bbp-reply-content h4, #bbpress-forums div.bbp-topic-content h5, #bbpress-forums div.bbp-reply-content h5, #bbpress-forums div.bbp-topic-content h6, #bbpress-forums div.bbp-reply-content h6 {
  clear: none;
  line-height: 1em;
  margin: 24px 0;
  padding: 0;
}
#bbpress-forums div.bbp-topic-content img, #bbpress-forums div.bbp-reply-content img {
  max-width: 100%;
}
#bbpress-forums div.bbp-topic-content ul, #bbpress-forums div.bbp-reply-content ul, #bbpress-forums div.bbp-topic-content ol, #bbpress-forums div.bbp-reply-content ol {
  margin: 0 15px 15px;
  padding: 0;
}
#bbpress-forums div.bbp-topic-content ul li, #bbpress-forums div.bbp-reply-content ul li {
  list-style-type: disc;
}
#bbpress-forums div.bbp-topic-content ol li, #bbpress-forums div.bbp-reply-content ol li {
  list-style-type: decimal;
}
#bbpress-forums div.bbp-topic-content ol li li, #bbpress-forums div.bbp-reply-content ol li li {
  list-style-type: lower-alpha;
}
#bbpress-forums div.bbp-topic-content ol li li li, #bbpress-forums div.bbp-reply-content ol li li li {
  list-style-type: upper-roman;
}
#bbpress-forums div.bbp-topic-content code, #bbpress-forums div.bbp-reply-content code, #bbpress-forums div.bbp-topic-content pre, #bbpress-forums div.bbp-reply-content pre {
  font-family: Inconsolata, Consolas, Monaco, Lucida Console, monospace;
  display: inline-block;
  background-color: #020202;
  border: 1px solid #ddd;
  padding: 0 5px;
  max-width: 95%;
  vertical-align: middle;
  margin-top: -3px;
}
#bbpress-forums div.bbp-topic-content pre, #bbpress-forums div.bbp-reply-content pre {
  display: block;
  line-height: 18px;
  margin: 0 0 24px;
  padding: 5px 10px;
  white-space: pre;
  overflow: auto;
}
#bbpress-forums div.bbp-topic-content pre code, #bbpress-forums div.bbp-reply-content pre code {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  overflow-wrap: normal;
  overflow: auto;
  max-width: 100%;
  /* =Reply to
-------------------------------------------------------------- */
}
#bbpress-forums div.bbp-reply-to {
  margin-left: 130px;
  padding: 12px 12px 12px 0;
  text-align: right;
}
#bbpress-forums div#bbp-cancel-reply-to {
  text-align: right;
  /* =Breadcrumb and Tags
-------------------------------------------------------------- */
}
div.bbp-breadcrumb {
  float: left;
}
div.bbp-breadcrumb, div.bbp-topic-tags {
  font-size: 12px;
}
#bbpress-forums div.bbp-breadcrumb p, #bbpress-forums div.bbp-topic-tags p {
  margin-bottom: 10px;
}
#bbpress-forums div.bbp-topic-tags {
  float: right;
}
#bbp-topic-hot-tags {
  clear: both;
}
#bbpress-forums .bbp-breadcrumb-home, #bbpress-forums .bbp-breadcrumb-sep:nth-child(1) {
  display: none !important;
  /* =Search
-------------------------------------------------------------- */
}
#bbpress-forums #bbp-search-form {
  clear: left;
}
#bbpress-forums #bbp-search-form .hidden {
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  background: none;
  left: -999em;
}
#bbpress-forums #bbp-search-form #bbp_search {
  display: inline-block;
  width: auto;
}
#bbpress-forums div.bbp-search-form {
  float: right;
  /* =Admin Links
-------------------------------------------------------------- */
}
span.bbp-admin-links {
  float: right;
  color: #ddd;
}
span.bbp-admin-links a {
  color: #bbb;
  font-weight: normal;
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
}
fieldset span.bbp-admin-links {
  float: left;
}
tr td span.bbp-admin-links a:hover {
  color: #ff4b33;
}
td.bbp-topic-admin-links, td.bbp-topic-counts {
  width: 50%;
}
.bbp-forum-header a.bbp-forum-permalink, .bbp-topic-header a.bbp-topic-permalink, .bbp-reply-header a.bbp-reply-permalink {
  float: right;
  margin-left: 10px;
  color: #ccc;
  /* =Toggles
-------------------------------------------------------------- */
}
.bbp-row-actions #favorite-toggle a {
  text-decoration: none;
  padding: 0 3px 1px;
  color: #7c7;
  border: 1px solid #aca;
  background-color: #020202;
  font-weight: bold;
  font-size: 13px;
}
.bbp-row-actions #favorite-toggle a:hover {
  color: #5a5;
  border-color: #7c7;
  background-color: #020202;
}
.bbp-row-actions #favorite-toggle span.is-favorite a {
  color: #faa;
  border: 1px solid #faa;
  background-color: #020202;
}
.bbp-row-actions #favorite-toggle span.is-favorite a:hover {
  color: #c88;
  border-color: #c88;
  background-color: #020202;
}
.bbp-row-actions #subscription-toggle a {
  text-decoration: none;
  padding: 0 3px 1px;
  color: #7c7;
  border: 1px solid #aca;
  background-color: #020202;
  font-weight: bold;
  font-size: 13px;
}
.bbp-row-actions #subscription-toggle a:hover {
  color: #5a5;
  border-color: #7c7;
  background-color: #020202;
}
.bbp-row-actions #subscription-toggle span.is-subscribed a {
  color: #faa;
  border: 1px solid #faa;
  background-color: #020202;
}
.bbp-row-actions #subscription-toggle span.is-subscribed a:hover {
  color: #c88;
  border-color: #c88;
  background-color: #020202;
}
#bbpress-forums .bbp-forum-info .bbp-forum-content, #bbpress-forums p.bbp-topic-meta {
  font-size: 11px;
  margin: 5px 0 5px;
  padding: 0;
  word-wrap: break-word;
}
#bbpress-forums p.bbp-topic-meta {
  font-size: 11px;
  margin: 5px 0 -5px;
  padding: 0;
  word-wrap: break-word;
  padding-top: 3px;
}
#bbpress-forums p.bbp-topic-meta span {
  white-space: nowrap;
  /* =Pagination
-------------------------------------------------------------- */
}
.bbp-pagination-count {
  float: left;
  border: 1px solid transparent;
}
.bbp-pagination-links {
  float: right;
  list-style: none;
  display: inline;
}
.bbp-pagination-links a, .bbp-pagination-links span.current {
  display: block;
  float: left;
  padding: 0px 5px;
  margin-left: 5px;
  border: 1px solid #efefef;
  text-decoration: none;
}
.bbp-pagination-links a:hover, .bbp-pagination-links span.current {
  background: #020202;
  opacity: 0.8;
  border: 1px solid #ddd;
}
.bbp-pagination-links span.dots {
  display: block;
  float: left;
  padding: 1px 4px;
  margin-left: 5px;
}
.bbp-pagination {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
.bbp-topic-pagination {
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 2px;
}
.bbp-topic-pagination a {
  font-size: 10px;
  line-height: 10px;
  padding: 1px 3px;
  border: 1px solid #ddd;
  text-decoration: none;
  /* =Forms
-------------------------------------------------------------- */
}
#bbpress-forums fieldset.bbp-form {
  clear: left;
}
#bbpress-forums fieldset.bbp-form {
  border: 1px solid #d9d9d9;
  padding: 10px 20px;
  margin-bottom: 10px;
}
#bbpress-forums fieldset.bbp-form legend {
  padding: 5px;
}
#bbpress-forums fieldset.bbp-form label {
  margin: 0;
  display: inline-block;
}
#bbp-edit-topic-tag.bbp-form fieldset.bbp-form label, #bbp-login fieldset label, #bbp-register fieldset label, #bbp-lost-pass fieldset label {
  width: 100px;
}
#bbpress-forums fieldset.bbp-form p, #bbpress-forums fieldset.bbp-form textarea, #bbpress-forums fieldset.bbp-form select, #bbpress-forums fieldset.bbp-form input {
  margin: 0 0 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea#bbp_reply_content, textarea#bbp_topic_content, textarea#bbp_forum_content {
  width: 97%;
  box-sizing: border-box;
}
textarea#bbp_forum_content {
  height: 210px;
}
#bbpress-forums fieldset.bbp-forum-form-attributes {
  width: 200px;
  float: right;
  clear: none;
  margin-left: 25px;
  /**
 * Fix for too-long forum names, usually from conversion
 */
}
#bbpress-forums fieldset select#bbp_forum_id {
  max-width: 200px;
}
.bbp-topic-form, .bbp-reply-form, .bbp-topic-tag-form {
  clear: left;
}
body.topic-edit .bbp-topic-form div.avatar img, body.reply-edit .bbp-reply-form div.avatar img, body.single-forum .bbp-topic-form div.avatar img, body.single-reply .bbp-reply-form div.avatar img {
  margin-right: 0;
  padding: 10px;
  border: 1px solid #ddd;
  line-height: 0;
  background-color: #020202;
  display: none;
}
body.page .bbp-reply-form code, body.page .bbp-topic-form code, body.single-topic .bbp-reply-form code, body.single-forum .bbp-topic-form code, body.topic-edit .bbp-topic-form code, body.reply-edit .bbp-reply-form code {
  font-size: 10px;
  background-color: #020202;
  border: 1px solid #ceefe1;
  display: block;
  padding: 8px;
  margin-top: 5px;
  width: 369px;
}
#merge_tag, #delete_tag {
  display: inline;
}
div.bbp-submit-wrapper {
  margin-top: 15px;
  float: right;
  clear: both;
}
p.form-allowed-tags {
  max-width: 100%;
  display: none;
  /* =TinyMCE in themes
-------------------------------------------------------------- */
}
#bbpress-forums div.bbp-the-content-wrapper {
  margin-bottom: 10px;
}
#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
  width: 100%;
  margin: 0;
  font-size: 12px;
}
#bbpress-forums div.bbp-the-content-wrapper table, #bbpress-forums div.bbp-the-content-wrapper tbody, #bbpress-forums div.bbp-the-content-wrapper tr, #bbpress-forums div.bbp-the-content-wrapper td {
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
  line-height: 1em;
}
#bbpress-forums div.bbp-the-content-wrapper input {
  font-size: 12px;
  padding: 5px;
  margin: 0 2px 0 0;
  line-height: 1em;
}
#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
  padding: 5px;
  min-height: 26px;
}
#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
  padding: 4px 4px 8px;
}
#bbpress-forums div.wp-editor-container {
  margin: 0;
  padding: 0;
  line-height: 0;
}
#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar {
  line-height: 16px;
  /* =Edit User
-------------------------------------------------------------- */
}
#bbpress-forums #bbp-your-profile fieldset {
  padding: 20px 20px 0 20px;
}
#bbpress-forums #bbp-your-profile fieldset div {
  margin-bottom: 20px;
  float: left;
  width: 100%;
  clear: left;
}
#bbpress-forums #bbp-your-profile fieldset select {
  margin-bottom: 0;
}
#bbpress-forums #bbp-your-profile fieldset input, #bbpress-forums #bbp-your-profile fieldset textarea {
  margin-bottom: 0;
  width: 60%;
  background: #020202;
  border: 1px solid #ddd;
  box-shadow: none;
  padding: 5px 8px;
  border-radius: 0;
}
#bbpress-forums #bbp-your-profile fieldset input:focus, #bbpress-forums #bbp-your-profile fieldset textarea:focus {
  border: 1px solid #ccc;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  outline-color: rgba(240, 255, 240, 0.1);
}
#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox {
  width: auto;
}
#bbpress-forums #bbp-your-profile fieldset legend {
  display: none;
}
#bbpress-forums #bbp-your-profile fieldset label[for] {
  float: left;
  width: 20%;
  padding: 5px 20px 5px 0;
  text-align: right;
  cursor: pointer;
}
#bbpress-forums #bbp-your-profile fieldset dl label[for] {
  text-align: left;
  width: 60%;
}
#bbpress-forums #bbp-your-profile fieldset span.description {
  margin: 5px 0 0 20%;
  font-size: 12px;
  font-style: italic;
  float: left;
  clear: left;
  width: 60%;
  padding: 5px 8px;
  border: #cee1ef 1px solid;
  background-color: #020202;
}
#bbpress-forums #bbp-your-profile fieldset fieldset {
  margin: 0;
  border: none;
  padding: 0;
  clear: none;
  float: none;
}
#bbpress-forums #bbp-your-profile fieldset fieldset.password {
  width: 60%;
  display: inline;
}
#bbpress-forums #bbp-your-profile fieldset fieldset.password input, #bbpress-forums #bbp-your-profile fieldset fieldset.password span {
  width: 100%;
}
#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl {
  margin: 0;
}
#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description {
  margin-left: 0;
  margin-bottom: 20px;
}
#bbpress-forums #bbp-your-profile fieldset.submit button {
  float: right;
  /* =Notices
-------------------------------------------------------------- */
}
div.bbp-template-notice, div.indicator-hint {
  border-width: 1px;
  border-style: solid;
  padding: 0 0.6em;
  margin: 5px 0 15px;
  border-radius: 3px;
  background-color: #020202;
  border-color: #fff;
  color: #fff;
  clear: both;
}
div.bbp-template-notice a {
  color: #fff;
  text-decoration: none;
}
div.bbp-template-notice a:hover {
  color: #fff;
}
div.bbp-template-notice.info {
  border: #cee1ef 1px solid;
  background-color: #020202;
}
div.bbp-template-notice.important {
  border: #e6db55 1px solid;
  background-color: #020202;
}
div.bbp-template-notice.error, div.bbp-template-notice.warning {
  background-color: #020202;
  border-color: #c00;
}
div.bbp-template-notice.error a, div.bbp-template-notice.warning a {
  color: #c00;
}
div.bbp-template-notice p {
  margin: 0.5em 0 6px 0 !important;
  padding: 2px;
  font-size: 12px;
  line-height: 140%;
  /* =Stickies
-------------------------------------------------------------- */
}
.bbp-topics-front ul.super-sticky, .bbp-topics ul.super-sticky, .bbp-topics ul.sticky, .bbp-forum-content ul.sticky {
  background-color: #020202 !important;
  font-size: 1.1em;
  /* =Revisions
-------------------------------------------------------------- */
}
#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log, #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log, #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
  border-top: 1px dotted #ddd;
  width: 100%;
  margin: 0;
  padding: 8px 0 0 0;
  font-size: 11px;
  color: #aaa;
  margin-top: 20px;
}
#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li, #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li, #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li {
  list-style-type: none;
  /* =Widgets
-------------------------------------------------------------- */
}
.bbp-login-form fieldset legend {
  display: none;
}
.bbp-login-form .bbp-username input, .bbp-login-form .bbp-email input, .bbp-login-form .bbp-password input {
  padding: 5px;
}
.bbp-login-form label {
  width: 140px;
  display: inline-block;
}
#sidebar .bbp-login-form label {
  width: 70px;
}
.bbp-login-form .bbp-username, .bbp-login-form .bbp-email, .bbp-login-form .bbp-password, .bbp-login-form .bbp-remember-me, .bbp-login-form .bbp-submit-wrapper {
  margin-top: 10px;
}
.bbp-login-form .bbp-submit-wrapper {
  text-align: right;
}
.bbp-login-form .bbp-login-links a {
  float: left;
  clear: left;
}
.bbp-logged-in img.avatar {
  float: left;
  margin: 0 15px 0 0;
}
.bbp-logged-in h4 {
  font-weight: bold;
  font-size: 1.3em;
  clear: none;
  margin-bottom: 10px;
  /* =Avatars
-------------------------------------------------------------- */
}
#bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums .widget_display_replies img.avatar {
  float: none;
  margin-bottom: 0px;
  border: 1px double #ddd;
  display: none;
}
fieldset div.avatar {
  float: right;
  /* =BuddyPress Activity Streams
-------------------------------------------------------------- */
}
.activity-list li.bbp_topic_create .activity-content .activity-inner, .activity-list li.bbp_reply_create .activity-content .activity-inner {
  border-left: 2px solid #eaeaea;
  margin-left: 5px;
  padding-left: 10px;
  /* =User Pages
-------------------------------------------------------------- */
}
#bbpress-forums h1 {
  clear: none;
  font-size: 1.8em;
  line-height: 1em;
  padding-bottom: 10px;
}
#bbpress-forums #bbp-user-wrapper {
  float: left;
  width: 100%;
}
#bbpress-forums .bbp-user-section {
  overflow: auto;
}
#bbpress-forums #bbp-user-wrapper h2.entry-title {
  font-size: 1.4em;
  margin: 0;
  padding-bottom: 10px;
  padding-top: 0;
  clear: none;
}
#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic, #bbpress-forums #bbp-user-wrapper ul.bbp-topics, #bbpress-forums #bbp-user-wrapper ul.bbp-forums, #bbpress-forums #bbp-user-wrapper ul.bbp-replies, #bbpress-forums #bbp-user-wrapper fieldset.bbp-form {
  clear: none;
}
#bbpress-forums #bbp-single-user-details {
  margin: 0;
  width: 150px;
  float: left;
  overflow: hidden;
}
#bbpress-forums #bbp-single-user-details #bbp-user-avatar {
  margin: 0;
  width: 150px;
}
#bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar {
  border: none;
  height: 150px;
  padding: 0;
  margin: 0 0 20px 0;
  width: 150px;
}
#bbpress-forums #bbp-single-user-details #bbp-user-description {
  float: none;
  margin-left: 180px;
}
#bbpress-forums #bbp-single-user-details #bbp-user-navigation {
  float: none;
  margin: 0;
}
#bbpress-forums #bbp-single-user-details #bbp-user-navigation li {
  margin: 0;
}
#bbpress-forums #bbp-single-user-details #bbp-user-navigation a {
  padding: 5px 8px;
  display: block;
  border: 1px solid transparent;
  text-decoration: none;
}
#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a {
  background: #020202;
  opacity: 0.8;
}
#bbpress-forums #bbp-user-body {
  margin-left: 180px;
}
body.my-account #bbpress-forums {
  border-top: none;
  padding-top: 0;
  margin-bottom: 0;
  /* =User Capabilities
-------------------------------------------------------------- */
}
#bbpress-forums dl.bbp-user-capabilities {
  display: inline-block;
  vertical-align: top;
}
#bbpress-forums dl.bbp-user-capabilities dt {
  margin: 0 0 10px;
  text-transform: capitalize;
}
#bbpress-forums dl.bbp-user-capabilities dd {
  margin: 0;
  padding: 0;
  /* =BuddyPress Group Forums
-------------------------------------------------------------- */
}
#bbpress-forums div.row-actions {
  font-size: 11px;
  visibility: hidden;
}
#bbpress-forums li:hover > div.row-actions {
  visibility: visible;
  /*--------------------------------------------------------------
 Media Queries
--------------------------------------------------------------*/
  /* =Standard Mobile Landscape
-------------------------------------------------------------- */
}
@media screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
  -webkit-text-size-adjust: none;}
@media only screen and (max-width: 480px) {
  /* =Standard Mobile Portrait
-------------------------------------------------------------- */  #bbpress-forums div.bbp-topic-tags {
    clear: left;
    float: left;
  }
  div.bbp-search-form input, div.bbp-search-form button {
    font-size: 11px;
    padding: 2px;
  }
  li.bbp-forum-info, li.bbp-topic-title {
    width: 45%;
  }
  li.bbp-forum-topic-count, li.bbp-forum-reply-count, li.bbp-topic-voice-count, li.bbp-topic-reply-count {
    width: 15%;
  }
  span.bbp-reply-post-date {
    float: left;
  }
  span.bbp-admin-links {
    clear: left;
    float: left;
  }
  #bbpress-forums .bbp-forums-list li {
    display: block;
    font-size: 11px;
  }
  #bbpress-forums .bbp-body div.bbp-reply-author {
    margin: -15px 10px 10px;
    min-height: 100px;
    padding-left: 80px;
    position: relative;
    text-align: left;
    width: 100%;
  }
  #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    clear: none;
    display: inline-block;
    margin-left: 0;
    word-wrap: break-word;
  }
  #bbpress-forums div.bbp-reply-author img.avatar {
    position: absolute;
    top: 15px;
    left: 0;
    width: 60px;
    height: auto;
  }
  #bbpress-forums div.bbp-reply-author .bbp-author-role {
    font-size: 12px;
    font-style: normal;
  }
  #bbpress-forums .bbp-body div.bbp-reply-content {
    clear: both;
    margin: 10px;
    padding: 0;
  }
  #bbpress-forums div.bbp-reply-content p {
    margin-bottom: 1em;
  }
  div.bbp-submit-wrapper {
    float: left;
  }
  #bbpress-forums fieldset.bbp-form {
    padding: 0 10px 10px;
  }
  #bbpress-forums #bbp-user-body {
    clear: both;
    margin-left: 0;
    word-wrap: break-word;
  }
}
@media only screen and (max-width: 320px) {
  /* =Extra Small Mobile
-------------------------------------------------------------- */  #bbpress-forums div.bbp-search-form {
    margin-bottom: 10px;
  }
  #bbpress-forums li.bbp-header li.bbp-forum-info, #bbpress-forums li.bbp-body li.bbp-forum-info, #bbpress-forums li.bbp-header li.bbp-topic-title, #bbpress-forums li.bbp-body li.bbp-topic-title {
    width: 100%;
  }
  #bbpress-forums li.bbp-header li.bbp-forum-info, #bbpress-forums li.bbp-header li.bbp-topic-title {
    text-align: center;
    text-transform: uppercase;
  }
  #bbpress-forums li.bbp-header li.bbp-forum-topic-count, #bbpress-forums li.bbp-header li.bbp-forum-reply-count, #bbpress-forums li.bbp-body li.bbp-forum-topic-count, #bbpress-forums li.bbp-body li.bbp-forum-reply-count, #bbpress-forums li.bbp-header li.bbp-topic-voice-count, #bbpress-forums li.bbp-header li.bbp-topic-reply-count, #bbpress-forums li.bbp-body li.bbp-topic-voice-count, #bbpress-forums li.bbp-body li.bbp-topic-reply-count {
    width: 20%;
  }
  #bbpress-forums li.bbp-header li.bbp-forum-freshness, #bbpress-forums li.bbp-body li.bbp-forum-freshness, #bbpress-forums li.bbp-header li.bbp-topic-freshness, #bbpress-forums li.bbp-body li.bbp-topic-freshness {
    width: 58%;
  }
  #bbpress-forums li.bbp-body li.bbp-forum-topic-count, #bbpress-forums li.bbp-body li.bbp-forum-reply-count, #bbpress-forums li.bbp-body li.bbp-forum-freshness, #bbpress-forums li.bbp-body li.bbp-topic-voice-count, #bbpress-forums li.bbp-body li.bbp-topic-reply-count, #bbpress-forums li.bbp-body li.bbp-topic-freshness {
    margin-top: 7px;
  }
  #bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer {
    font-size: 10px;
  }
  #bbpress-forums li.bbp-header div.bbp-reply-author {
    text-align: left;
    width: 25%;
  }
  #bbpress-forums li.bbp-header div.bbp-reply-content {
    margin-left: 25%;
  }
  #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums p.bbp-topic-meta img.avatar {
    width: 14px;
    height: auto;
  }
  #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
    padding: 1px;
  }
  #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td {
    width: 20px;
    height: 20px;
  }
  #bbpress-forums div.wp-editor-container {
    width: 100%;
    overflow: auto;
  }
  #bbpress-forums input#bbp_topic_title, #bbpress-forums input#bbp_topic_tags {
    width: 95%;
  }
}
@media only screen and (max-width: 240px) {
  #bbpress-forums li.bbp-header li.bbp-forum-topic-count, #bbpress-forums li.bbp-header li.bbp-forum-reply-count, #bbpress-forums li.bbp-body li.bbp-forum-topic-count, #bbpress-forums li.bbp-body li.bbp-forum-reply-count, #bbpress-forums li.bbp-header li.bbp-topic-voice-count, #bbpress-forums li.bbp-header li.bbp-topic-reply-count, #bbpress-forums li.bbp-body li.bbp-topic-voice-count, #bbpress-forums li.bbp-body li.bbp-topic-reply-count, #bbpress-forums li.bbp-footer div.bbp-reply-author, #bbpress-forums li.bbp-footer div.bbp-reply-content {
    width: 45%;
  }
  #bbpress-forums li.bbp-header li.bbp-forum-freshness, #bbpress-forums li.bbp-body li.bbp-forum-freshness, #bbpress-forums li.bbp-header li.bbp-topic-freshness, #bbpress-forums li.bbp-body li.bbp-topic-freshness, #bbpress-forums li.bbp-header div.bbp-reply-author, #bbpress-forums li.bbp-header div.bbp-reply-content {
    clear: both;
    width: 100%;
  }
  #bbpress-forums li.bbp-header li.bbp-forum-freshness, #bbpress-forums li.bbp-header li.bbp-topic-freshness {
    text-align: center;
  }
  #bbpress-forums li.bbp-body li.bbp-topic-freshness, #bbpress-forums li.bbp-header div.bbp-reply-content {
    margin-left: 0;
    text-align: left;
  }
  #bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta {
    display: inline-block;
  }
  #bbpress-forums li.bbp-header {
    overflow: hidden;
  }
  #bbpress-forums li.bbp-footer div.bbp-reply-content {
    display: inline-block;
    margin-left: 0;
  }
  #bbpress-forums li.bbp-body div.bbp-reply-author {
    min-height: 60px;
    padding-left: 60px;
  }
  #bbpress-forums div.bbp-reply-author img.avatar {
    width: 40px;
    height: auto;
  }
}
#bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic {
  border-top: 1px solid #d9d9d9;
  overflow: hidden;
  padding: 0px;
  text-transform: uppercase;
  display: -webkit-flex;
  display: flex;
}
.bbp-header li {
  text-transform: uppercase;
}
#bbpress-forums li {
  background: transparent none repeat scroll 0% 0%;
  margin: 0px;
  list-style: outside none none;
  border-right: 1px solid #afafaf;
}
#bbpress-forums .forum-titles li {
  border-right: 1px solid transparent;
}
a.bbp-forum-title, a.bbp-forum-title:visited, a.bbp-forum-title:focus, a.bbp-topic-permalink, a.bbp-topic-permalink:visited, a.bbp-topic-permalink:focus {
  color: #870606;
  text-decoration: underline;
  font-weight: 800;
  padding: 8px;
  display: block;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 12px;
}
nav.breadcrumb, nav.breadcrumb a:hover, nav.breadcrumb a:focus, nav.breadcrumb a:visited, nav.breadcrumb .current-page {
  color: #870606;
}
nav.breadcrumb {
  position: absolute;
  width: 100%;
  padding-left: 3px;
}
.bbp-forum-info, .bbp-forum-topic-count, .bbp-forum-reply-count, .bbp-header .bbp-forum-freshness, .bbp-topic-title, .bbp-topic-voice-count, .bbp-topic-reply-count, .bbp-topic-freshness {
  vertical-align: middle;
  line-height: 42px;
  height: 60px;
}
#story-wrapper a, .mapplic-tooltip-description a, .mapplic-element a {
  color: #a10606 !important;
  text-decoration: underline !important;
}
a.bbp-forum-title:hover, a.bbp-topic-permalink:hover, nav.breadcrumb a:hover, #story-wrapper a:hover, .mapplic-tooltip-description a:hover {
  text-shadow: 0 0 1px #f00;
  color: #a10606;
  background: url(http://lexlydia.net/wp-content/uploads/Forum_TopicPost_HoverState-Background-large2.png) 100% 100%;
  background-size: 100% 100%;
}
nav.breadcrumb a:hover, #story-wrapper a:hover, .mapplic-tooltip-description a:hover {
  background: none;
}
.quicktags-toolbar {
  padding: 3px;
  border-bottom: 0px solid #dedede !important;
  background: #000 none repeat scroll 0% 0% !important;
  min-height: 30px;
}
#bbpress-forums li.bbp-header {
  background: #020202 none repeat scroll 0% 0%;
  padding: 0px;
}
#bbpress-forums .forum-titles li, .bbp-body li {
  padding: 8px;
}
.bbp-body li.bbp-forum-info, ul.type-topic li.bbp-topic-title {
  padding: 0px;
}
.wp-core-ui .button, .wp-core-ui .button-primary, .wp-core-ui .button-secondary {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  line-height: 26px;
  height: 28px;
  margin: 0px;
  padding: 0px 10px 1px;
  cursor: pointer;
  border-width: 0px !important;
  border-style: solid;
  border-radius: 0px !important;
  white-space: nowrap;
  box-sizing: border-box;
}
#bbpress-forums .bbp-attachments ol li.bbp-atthumb .wp-caption p.wp-caption-text, #bbpress-forums .bbp-attachments ol li.bbp-atthumb .wp-caption p.wp-caption-text a {
  margin: 5px 0px !important;
  word-wrap: break-word;
  line-height: 1.3em;
  color: #000 !important;
}
.entry-content .login-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.entry-content .login-form .form-group {
  display: block;
}
.entry-content .login-form .form-group:nth-child(3), .entry-content .login-form .form-group:last-child, .entry-content .login-form .login-field-icon, .bbp-template-notice, .bbp-author-ip {
  display: none;
}
.entry-content .login-form .login-field:focus {
  border-color: #fff;
}
.entry-content .login-form input.btn-block[type="submit"] {
  width: 100%;
  max-width: 104px;
  background-color: transparent !important;
}
#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
  padding: 5px;
  min-height: 26px;
  background-color: transparent !important;
}
.mce-container, .mce-container *, .mce-widget, .mce-widget *, .mce-reset {
  background: #000 none repeat scroll 0px 0px !important;
}
.bbp_reply_content_ifr html, .bbp_reply_content_ifr body {
  background-color: #000 !important;
  color: #fff !important;
}
.bbp_reply_content_ifr html {
  border: 1px solid #d9d9d9 !important;
}
.bbp_reply_content_ifr .mce-statusbar {
  display: none !important;
}
#bbp-your-profile .entry-title:nth-of-type(1), #bbp-your-profile .entry-title:nth-of-type(2), #bbp-your-profile .entry-title:nth-of-type(3), #bbp-your-profile .entry-title:nth-of-type(4) {
  display: none;
}
#bbp-your-profile > fieldset.bbp-form:nth-of-type(1), #bbp-your-profile fieldset:nth-of-type(2), #bbp-your-profile fieldset:nth-of-type(4) {
  display: none !important;
}
#bbp-your-profile > fieldset.bbp-form:nth-of-type(3) .description {
  display: none !important;
}
#bbp-your-profile > fieldset.bbp-form:nth-of-type(3) img {
  margin-bottom: 15px;
}
#bbp-your-profile > fieldset.submit {
  border: none;
}
#bbpress-forums fieldset.bbp-form p, #bbpress-forums fieldset.bbp-form textarea, #bbpress-forums fieldset.bbp-form select, #bbpress-forums fieldset.bbp-form input {
  padding: 3px;
}
#bbpress-forums #bbp-your-profile fieldset {
  padding: 13px 0 0 0;
}
div.bbp-breadcrumb, div.bbp-breadcrumb a {
  text-transform: uppercase;
  color: #870606 !important;
  font-weight: 800;
}
#bbpress-forums .bbp-attachments-count, .bbp-reply-revision-log, #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log, #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log, #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
  background: transparent url(../gfx/icons.png);
  display: none !important;
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 4px;
}
#bbpress-forums li.bbp-header .bbp-reply-content {
  margin-left: 180px;
}
#bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content {
  margin-left: 180px;
  padding: 12px 12px 12px 0;
  text-align: left;
}
.bbp-author-role {
  visibility: hidden;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  background-color: #fff;
  color: #000;
  border: medium none;
  padding: 8px 10px;
}
.button.submit {
  min-width: 110px;
}
.mapplic-element {
  height: 583px !important;
  height: 85vh !important;
  max-height: 1100px !important;
  background-color: transparent !important;
}
.mapplic-container {
  background-color: transparent !important;
}
.mapplic-zoom-buttons {
  bottom: 15px !important;
}
.mapplic-clear-button {
  display: none !important;
}
.mapplic-zoom-buttons {
  box-shadow: 0px 0px 14px #941717 !important;
}
.mapplic-zoom-buttons a {
  background-color: #101313 !important;
  background-repeat: no-repeat;
  background-position: center center;
  border-width: 1px !important;
  border-style: solid;
  border-color: #252d2d !important;
  -moz-border-top-colors: none;
  -moz-border-right-colors: none;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  border-image: none;
  color: #fff !important;
  display: block;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  line-height: 24px;
  width: 28px;
  height: 28px;
}
a.mapplic-zoomin-button {
  background-image: url("../images/plus.png") !important;
  background-size: 10px 10px;
  border-radius: 3px 3px 0px 0px;
}
a.mapplic-zoomout-button {
  background-image: url("../images/minus.png") !important;
  background-size: 10px 10px;
  border-radius: 0px 0px 3px 3px;
  border-top: medium none;
}
.mapplic-zoom-buttons a.mapplic-disabled, .mapplic-levels a.mapplic-disabled {
  background-color: #101313 !important;
  cursor: default;
}
.mapplic-levels {
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 14px #941717 !important;
}
.mapplic-levels-select {
  width: 140px !important;
  height: 27px !important;
  padding: 0 0 0 5px !important;
  background-position: 98.5% 58.7% !important;
}
.mapplic-levels-select {
  background-color: #101313 !important;
  border-top: medium none;
  color: #fff !important;
  margin: 0px;
  padding: 6px 2px;
  font-size: 14px;
  outline: medium none;
  background-image: url("../images/select-arrow-map.png") !important;
}
.mapplic-levels .mapplic-levels-up {
  background-image: url("../images/arrow-up.png") !important;
  background-size: 8px 4px;
  border-radius: 3px 3px 0px 0px;
  background-color: #101313 !important;
}
.mapplic-levels .mapplic-levels-down {
  background-image: url("../images/arrow-down.png") !important;
  background-size: 8px 4px;
  border-top: medium none;
  border-radius: 0px 0px 3px 3px;
  background-color: #101313 !important;
}
.mapplic-levels > * {
  border: 0px solid #252d2d !important;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.mapplic-levels a, .mapplic-levels a:hover {
  border: 1px solid #252d2d !important;
}
.mapplic-levels-select {
  border-left: 1px solid #252d2d !important;
  border-right: 1px solid #252d2d !important;
}
.mapplic-pin {
  background-image: url(../images/pin.png) !important;
  background-size: 28px 31px !important;
  background-repeat: no-repeat;
  background-position: center;
  width: 28px !important;
  height: 31px !important;
  margin-top: -28px !important;
  margin-left: -14px !important;
  border: none !important;
  position: absolute;
  background-color: transparent !important;
  box-shadow: none !important;
}
body.not_logged.live-stream .logreg {
  display: block !important;
}
body.live-stream .entry-content {
  min-height: 800px !important;
}
body.the-story header, body.the-story footer {
  display: none;
}
.opener {
  position: fixed;
  left: 0;
  width: 50%;
  top: 0;
  height: 100%;
  height: 100vh;
  z-index: 999999;
  background-size: contain;
  background-color: #0c0c0c !important;
}
#opener_left {
  background: url('http://lexlydia.net/wp-content/uploads/CellarDoor_LexLydia-Illu_Final1_left.jpg') no-repeat center right;
  background-size: contain;
}
#opener_right {
  background: url('http://lexlydia.net/wp-content/uploads/CellarDoor_LexLydia-Illu_Final1_right.jpg') no-repeat center left;
  background-size: contain;
  left: auto;
  right: 0;
}
.numbers {
  text-align: right;
  font-family: Arial;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  color: #a10606;
}
.title {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: left;
  font-family: Arial;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  color: #a10606;
}
#table {
  margin: auto;
  position: relative;
  top: 400px;
  top: 150px;
  top: 20vh;
  display: block;
  margin: 0px auto;
  text-align: center;
}
tbody {
  margin: 0px auto;
  text-align: center;
  display: inline;
}
.mapplic-tooltip-content {
  max-height: 60vh !important;
  overflow-y: auto;
}
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
  /*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
  /*********************
NAVIGATION STYLES
*********************/
  /*********************
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 .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) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /*iPad Portrait orientation styles */
  /*iPad landscape orientation styles */
  /*********************
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 {
    /*********************
LAYOUT & GRID STYLES
*********************/
  }
  .wrap {
    /*********************
HEADER STYLES
*********************/
  }
  #logo {
    /*********************
NAVIGATION STYLES
*********************/
  }
  .nav {
    border: 0;
    /* end .nav */
    /*********************
SIDEBARS & ASIDES
*********************/
  }
  .nav ul {
    background: #a2a2a2;
    margin-top: 0;
  }
  .nav li {
    float: left;
    position: relative;
    /* end .menu ul li */
    /* highlight current page */
  }
  .nav li a {
    /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
    border-bottom: 0;
  }
  .nav li a:hover, .nav li a:focus {
    color: #a2a2a2;
    text-decoration: underline;
  }
  .nav li:last-child {
    /*
		plan your menus and drop-downs wisely.
		*/
  }
  .nav li ul.sub-menu, .nav li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* showing sub-menus */
  }
  .nav li ul.sub-menu li, .nav li ul.children li {
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li a, .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  .nav li ul.sub-menu li:last-child, .nav li ul.children li:last-child {
    /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
  }
  .nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul, .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  .nav li.current-menu-item, .nav li.current_page_item, .nav li.current_page_ancestor {
    /* end current highlighters */
  }
  .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-links {
    /* end .footer-links */
    /*------------------------------------*\
    IPAD
\*------------------------------------*/
  }
  .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: 768px) 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 {
    text-decoration: none !important;
    border-bottom: 0px solid white !important;
  }
}
@media only screen and (min-width: 768px) 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 {
    text-decoration: none !important;
    border-bottom: 0px solid white !important;
  }
}
@media only screen and (min-width: 1000px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
  /*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/  html, body {
    overflow-x: hidden;
  }
  #container {
    max-width: 100%;
  }
  .reveal:hover .hidehover {
    z-index: 100000;
    opacity: 1;
  }
  body.single .wp-post-image {
    margin-top: 30px;
  }
  .footer, #inner-footer {
    width: 100%;
    width: 100vw;
    width: calc(100vw - 1px);
  }
  .footer-links {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 1230px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  /*********************
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.
*********************/  #container, .footer nav {
    width: 90%;
    max-width: 1300px;
  }
  body.home.page #container, body.home.page .footer nav {
    width: 100%;
    max-width: 100%;
  }
  .wrap {
    width: 100%;
    min-width: 1000px;
  }
  #logo {
    margin: 2rem auto;
    max-width: 30%;
  }
  #red-shadow {
    padding: 0 30px;
  }
  .char-image {
    width: 1000px;
  }
  .char-description {
    position: absolute;
    top: 760px;
    top: 670px;
    z-index: 0;
    width: 384px;
    left: 50%;
    font-size: 88%;
    background-color: #000;
    padding-bottom: 5px;
    margin-left: -172px;
  }
  #white-tribe, #black-tribe {
    text-align: center;
    margin-top: -450px;
    font-size: 12px;
  }
  body.single .char-imagexxx {
    min-height: 1150px;
  }
  .char-descriptionxxx {
    position: absolute;
    top: 784px;
    z-index: 0;
    width: 35%;
    left: 32.5%;
    font-size: 88%;
  }
  .char-description {
    margin-left: -192px;
  }
  .char-imagexxx {
    max-width: 1136px;
    margin: 0px auto;
  }
  .footer nav {
    padding: 0 65px 0 0;
  }
}
@media only screen and (min-width: 1230px) and (min-width: 1180px) {
  #white-tribe, #black-tribe {
    margin-top: -428px;
  }
}
@media only screen and (min-width: 1230px) and (min-width: 1380px) {
  #white-tribe, #black-tribe {
    text-align: center;
    margin-top: -508px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1230px) and (min-width: 130000px) {
  .char-image {
    width: 1100px;
  }
  .char-description {
    top: 818px;
    font-size: 92%;
  }
}
@media only screen and (min-width: 1230px) and (min-width: 136000px) {
  .char-description {
    top: 868px;
    font-size: 96%;
  }
}
@media only screen and (min-width: 1230px) and (min-width: 1200px) {
}
@media only screen and (min-width: 1230px) and (min-width: 1435px) {
  #characters {
    width: auto;
    margin: auto;
  }
  .char-posts {
    height: 1650px;
  }
  #char-background {
    width: auto;
  }
  #characters .char-line li {
    width: 296px;
  }
  #characters .char-line li {
    max-width: 100%;
    padding-top: 0px;
  }
  #characters .char-line:last-child li:last-child {
    margin-left: 450px;
  }
  .char-image {
    width: 100%;
  }
  .char-description {
    position: absolute;
    top: 875px;
    top: 786px;
    z-index: 0;
    width: 446px;
    left: 415px;
    font-size: 100%;
    margin-left: 0;
  }
  html.webkit .char-description {
    top: 888px;
    top: 786px;
    width: 459px;
    left: 421px;
  }
  .char-line.nr1 {
    margin-top: 227px;
  }
  .char-line.nr2 {
    margin-top: 31px;
  }
  .char-line.nr3 {
    margin-top: 31px;
  }
  #characters .char-line li {
    background-color: transparent;
    margin-left: 110px;
    padding-top: 10px;
  }
  #characters .char-line li:nth-of-type(2) {
    margin-left: 45px;
  }
  #characters .char-line li:nth-of-type(3) {
    margin-left: 44px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  /* 

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

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

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

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

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

*/
  /*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/}
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

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

******************************************************************/  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  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;
  }
  .social_links a, #lang_sel_list {
    display: none;
  }
  img {
    position: static !important;
    opacity: 1 !important;
  }
  .entry-content img {
    margin: 0px;
    width: 33% !important;
    max-width: 100%;
    height: auto;
  }
  #logo {
    max-width: 30% !important;
  }
  [class*='cute-'], #logo {
    float: none !important;
    position: static !important;
    padding: 1px;
    width: 100%;
  }
  .soliloquy-container {
    position: static !important;
    background: transparent url("images/preloader.gif") no-repeat scroll 50% 50%;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    opacity: 0;
  }
  .soliloquy-container .soliloquy-wrapper {
    width: 100%;
    position: static !important;
    margin: 0px;
    padding: 0px;
    list-style: outside none none !important;
  }
  .soliloquy-container .soliloquy-viewport {
    width: 100%;
    position: static !important;
    height: auto !important;
    transform: translateZ(0px);
  }
  .soliloquy-container .soliloquy-wrap {
    width: 100%;
    position: static !important;
    margin: 0px;
    padding: 0px;
    list-style: outside none none !important;
    height: 100%;
  }
  .soliloquy-container .soliloquy-item {
    min-height: 1px;
    min-width: 1px;
    float: none !important;
    visibility: visible !important;
    position: static !important;
    margin: 0px !important;
    display: block !important;
    transform: none !important;
    margin-bottom: 30px !important;
  }
  .soliloquy-container .soliloquy-image {
    max-width: 100%;
    width: 100% !important;
    height: auto;
    margin: 0px auto;
    -moz-user-select: none;
    visibility: visible !important;
    display: block !important;
  }
  .soliloquy-container .soliloquy-controls {
    display: none !important;
  }
  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;
  }
  a {
    text-decoration: none !important;
  }
}
