/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

.cf {
  *zoom: 1; }
  .cf:before, .cf:after {
    display: table;
    content: "";
    line-height: 0; }
  .cf:after {
    clear: both; }

/******************************************************************
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)
*********************/
@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?-f9jgfk");
  src: url("fonts/icomoon.eot?#iefix-f9jgfk") format("embedded-opentype"), url("fonts/icomoon.woff?-f9jgfk") format("woff"), url("fonts/icomoon.ttf?-f9jgfk") format("truetype"), url("fonts/icomoon.svg?-f9jgfk#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*
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.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-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"; }

/******************************************************************
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);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
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/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
VENDOR PREFIXING
*********************/
/********************************

GENERAL STYLES!

*********************************/
.hidden {
  display: none; }

::-moz-selection {
  background: #ff2c2a !important;
  color: #fff !important;
  text-shadow: none !important; }

::selection {
  background: #ff2c2a !important;
  color: #fff !important;
  text-shadow: none !important; }

html,
body {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: normal;
  line-height: 1.5em;
  letter-spacing: .03em;
  color: #ff2c2a;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  position: relative;
  text-align: center; }

.big-text p a.color-blue {
  color: blue !important;
  background-image: linear-gradient(90deg, #f6f6f6 0px, transparent 0px), linear-gradient(to left, #f6f6f6 0px, transparent 0px), linear-gradient(bottom, transparent, transparent 0px, blue 0px, blue 3px, transparent 3px); }

.border {
  display: block;
  background: #ff2c2a;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0; }

.border-top,
.border-bottom {
  height: 20px;
  width: 100%; }

.border-bottom {
  top: auto;
  bottom: 0; }

.border-left,
.border-right {
  width: 20px;
  height: 100%;
  z-index: 10; }

.border-right {
  left: auto;
  right: 0; }

.home .footer {
  visibility: hidden; }

.home-link {
  display: block;
  z-index: 3; }

.home .slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

.home-info {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 2; }

.home-info p {
  margin: 0px auto;
  padding: 0 30px; }

em {
  font-style: italic; }

.site-title {
  font-weight: normal;
  width: 100%;
  position: absolute;
  z-index: 301;
  top: 30px;
  left: 30px;
  width: 200px;
  height: 0;
  margin: 0;
  padding-bottom: 100px; }

.home .site-title {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  padding-bottom: 25%;
  margin: 0 0 50px 0; }

.icon-logo:before {
  content: "\e600"; }

.icon-logo {
  position: relative;
  z-index: 4;
  font-size: 8em;
  display: inline-block; }

.home .content {
  height: 100%; }

.home .home-link {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin-top: -30px;
  max-width: 670px; }

.archive .home-link {
  margin: 0 0 60px 0; }

.home .logos {
  display: none; }

.logos {
  padding: 60px 0 60px 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8); }

.logo {
  background-image: url("../images/graphics.png");
  background-repeat: no-repeat;
  background-size: 400px 400px;
  margin: 0 20px 20px 20px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-indent: -9999px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .logo {
    background-image: url("../images/graphics@2x.png"); } }
.logo.nng {
  width: 185px;
  height: 33px;
  background-position: 0px -40px; }

.logo.udk {
  width: 237px;
  height: 30px; }

.site-title .text {
  display: none; }

.content {
  z-index: 3; }

.hero-slider {
  position: relative;
  margin: 0px;
  background: #ccc;
  display: none; }

a {
  color: inherit;
  text-decoration: none;
  position: relative; }

a:hover {
  color: inherit; }

a.button {
  display: inline-block;
  padding: 0 4px 0 4px; }

h1 {
  letter-spacing: 0em;
  font-size: 36px;
  line-height: 1em;
  margin: 0 0 10px 0;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    h1 {
      font-size: 90px;
      text-indent: .25em; } }

.grid h2 {
  font-size: 24px;
  line-height: 1.1em;
  margin: 0 0 10px 0; }
  @media only screen and (min-width: 768px) {
    .grid h2 {
      font-size: 34px;
      text-indent: .25em; } }

.big-terms-list {
  font-size: 24px;
  line-height: 1.1em;
  line-height: 1.2em; }
  @media only screen and (min-width: 768px) {
    .big-terms-list {
      font-size: 34px;
      text-indent: .25em; } }

h3 span {
  font-size: inherit;
  letter-spacing: .03em;
  letter-spacing: inherit;
  text-transform: uppercase;
  font-weight: bold; }

#container {
  padding: 40px;
  background: #fff; }

.content {
  padding: 40px 0 80px 0; }

.single #container {
  padding: 80px 20px 0 20px; }

.centered {
  margin: 0 auto;
  text-align: center; }

.menu {
  z-index: 100;
  position: fixed;
  width: 100%;
  z-index: 300;
  top: 0;
  left: 0; }

.sidr-open .menu {
  display: none; }

.menu-inner {
  margin: 20px auto;
  padding: 0 20px; }

.menu-item {
  font-size: inherit;
  letter-spacing: .03em;
  letter-spacing: inherit;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  display: inline-block;
  position: relative;
  margin: 0 -4px 0 0; }

.menu-item a {
  display: inline-block;
  padding: 10px 12px 10px 12px; }

.only-big-screen {
  display: none !important; }

.main-menu .menu-item {
  display: inline-block; }

.main-menu-visible .main-menu {
  display: block !important; }

.main-menu-visible .home-link {
  display: none !important; }

.mobile-menu .menu-item {
  display: block; }

.searchinput {
  border: 0px none;
  outline: 0;
  background: transparent;
  padding: 0;
  line-height: 1;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: normal;
  line-height: 1.5em;
  letter-spacing: .03em;
  color: #ff2c2a;
  transition: width .5s ease;
  visibility: hidden;
  z-index: -1;
  border: 3px solid;
  padding: 1px 3px 0 3px;
  position: absolute;
  width: 120px;
  top: 7px;
  left: 50%;
  margin-left: -50px;
  letter-spacing: .05em;
  color: inherit;
  border-color: inherit; }

.searching .search-toggle {
  visibility: hidden; }

.searching .searchinput {
  display: block;
  visibility: visible;
  z-index: 2; }

a,
strong,
h2 span,
.current span {
  position: relative; }

.no-touch .grid .permalink h2,
.no-touch .big-terms-list a {
  text-shadow: 0 -2px #fff, 2px 0 #fff, 0 2px #fff, -2px 0 #fff; }

.no-touch .grid .permalink:hover h2 span {
  background-image: linear-gradient(90deg, #f6f6f6 0px, transparent 0px), linear-gradient(to left, #f6f6f6 0px, transparent 0px), linear-gradient(bottom, transparent, transparent 0px, #ff2c2a 0px, #ff2c2a 5px, transparent 5px); }

.no-touch .big-terms-list a:hover {
  background-image: linear-gradient(90deg, #f6f6f6 0px, transparent 0px), linear-gradient(to left, #f6f6f6 0px, transparent 0px), linear-gradient(bottom, transparent, transparent 3px, #ff2c2a 3px, #ff2c2a 8px, transparent 8px); }

.search-everything-highlight-color {
  text-shadow: none !important;
  background: #ff2c2a !important;
  color: #fff; }

p a:hover,
.big-text p a,
.no-touch .menu-item a:hover span.text,
.menu-item.current a span.text {
  padding-bottom: 3px;
  background-image: linear-gradient(90deg, #f6f6f6 0px, transparent 0px), linear-gradient(to left, #f6f6f6 0px, transparent 0px), linear-gradient(bottom, transparent, transparent 0px, #ff2c2a 0px, #ff2c2a 3px, transparent 3px); }

.big-text p a:before {
  bottom: -2px;
  right: 0; }

.big-text p a:hover:before {
  border-bottom: 4px solid; }

/*.no-touch .grid .post.with_single_view:hover h2 span:after {
	bottom: -2px;
}*/
p {
  margin: 0 0 20px 0; }

#mfPreviewBar {
  display: none !important; }

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

Pointer Events

*********************************/
a,
.b09-player .big-play-btn,
.b09-player.active-player,
.textblock p,
img {
  pointer-events: all; }

.b09-player .ui {
  color: #ff2c2a; }

.b09-player .background-colored {
  background-color: #ff2c2a !important; }

.b09-player .fullscreen-btn {
  right: 25px; }

.b09-player .volume-container {
  right: 70px; }

.b09-player .controls {
  background: transparent; }

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

Mobile Menu

*********************************/
.mobile-menu-toggle .close-text,
.main-menu-visible .open-text {
  visibility: hidden;
  position: absolute;
  top: -1000px; }

.main-menu-visible .close-text {
  visibility: visible;
  position: relative;
  top: 0; }

.sidr {
  display: none;
  position: absolute;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 200px;
  overflow-x: none;
  overflow-y: auto;
  color: #222;
  border-right: 1px solid #dadada;
  background: #f6f6f6; }
  .sidr .sidr-inner {
    padding: 70px 0 0 20px; }
  .sidr.right {
    left: auto;
    right: -200px; }
  .sidr.left {
    left: -200px;
    right: auto; }

.overlay {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
  background: #f6f6f6; }

.menu-hover .overlay {
  opacity: .85;
  display: block;
  z-index: 5; }

.spacer {
  position: relative; }

.spacer:before {
  content: " ";
  width: 35px;
  display: inline-block;
  margin: 0 3px 0 0; }

.spacer:after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 3px solid;
  width: 35px;
  top: 50%;
  margin-top: -3px; }

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

Entry Nav

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

Footer

*********************************/
.footer {
  text-align: center;
  font-size: inherit;
  letter-spacing: .03em;
  letter-spacing: inherit;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  margin: 0 20px 30px 20px; }

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

RESPONSIVE IMAGES AND VIDEOS

*********************************/
.responsive-media {
  position: relative;
  height: 0;
  background: #e6e6e6; }

* html .responsive-media {
  margin-bottom: 45px;
  margin-bot\tom: 0; }

.responsive-media img,
.responsive-media .inner-wrap {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.image {
  margin-top: 3px; }

.single .media {
  margin: 0 auto; }

.media-figure .caption {
  width: 100%;
  left: 0;
  margin-top: 20px;
  text-align: center;
  font-size: .9em; }

.video-player {
  position: relative;
  height: 0; }

body.loading {
  cursor: url(../images/cursor-loading-1.png) 20 20, progress; }
  body.loading div, body.loading p, body.loading a, body.loading li, body.loading ul, body.loading span, body.loading h2, body.loading h1, body.loading .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-1.png) 20 20, progress; }

body.loading.state-2 {
  cursor: url(../images/cursor-loading-2.png) 20 20, progress; }
  body.loading.state-2 div, body.loading.state-2 p, body.loading.state-2 a, body.loading.state-2 li, body.loading.state-2 ul, body.loading.state-2 span, body.loading.state-2 h2, body.loading.state-2 h1, body.loading.state-2 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-2.png) 20 20, progress; }

body.loading.state-3 {
  cursor: url(../images/cursor-loading-3.png) 20 20, progress; }
  body.loading.state-3 div, body.loading.state-3 p, body.loading.state-3 a, body.loading.state-3 li, body.loading.state-3 ul, body.loading.state-3 span, body.loading.state-3 h2, body.loading.state-3 h1, body.loading.state-3 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-3.png) 20 20, progress; }

body.loading.state-4 {
  cursor: url(../images/cursor-loading-4.png) 20 20, progress; }
  body.loading.state-4 div, body.loading.state-4 p, body.loading.state-4 a, body.loading.state-4 li, body.loading.state-4 ul, body.loading.state-4 span, body.loading.state-4 h2, body.loading.state-4 h1, body.loading.state-4 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-4.png) 20 20, progress; }

body.loading.state-5 {
  cursor: url(../images/cursor-loading-5.png) 20 20, progress; }
  body.loading.state-5 div, body.loading.state-5 p, body.loading.state-5 a, body.loading.state-5 li, body.loading.state-5 ul, body.loading.state-5 span, body.loading.state-5 h2, body.loading.state-5 h1, body.loading.state-5 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-5.png) 20 20, progress; }

body.loading.state-6 {
  cursor: url(../images/cursor-loading-6.png) 20 20, progress; }
  body.loading.state-6 div, body.loading.state-6 p, body.loading.state-6 a, body.loading.state-6 li, body.loading.state-6 ul, body.loading.state-6 span, body.loading.state-6 h2, body.loading.state-6 h1, body.loading.state-6 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-6.png) 20 20, progress; }

body.loading.state-7 {
  cursor: url(../images/cursor-loading-7.png) 20 20, progress; }
  body.loading.state-7 div, body.loading.state-7 p, body.loading.state-7 a, body.loading.state-7 li, body.loading.state-7 ul, body.loading.state-7 span, body.loading.state-7 h2, body.loading.state-7 h1, body.loading.state-7 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-7.png) 20 20, progress; }

body.loading.state-8 {
  cursor: url(../images/cursor-loading-8.png) 20 20, progress; }
  body.loading.state-8 div, body.loading.state-8 p, body.loading.state-8 a, body.loading.state-8 li, body.loading.state-8 ul, body.loading.state-8 span, body.loading.state-8 h2, body.loading.state-8 h1, body.loading.state-8 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-8.png) 20 20, progress; }

body.loading.state-9 {
  cursor: url(../images/cursor-loading-9.png) 20 20, progress; }
  body.loading.state-9 div, body.loading.state-9 p, body.loading.state-9 a, body.loading.state-9 li, body.loading.state-9 ul, body.loading.state-9 span, body.loading.state-9 h2, body.loading.state-9 h1, body.loading.state-9 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-9.png) 20 20, progress; }

body.loading.state-10 {
  cursor: url(../images/cursor-loading-10.png) 20 20, progress; }
  body.loading.state-10 div, body.loading.state-10 p, body.loading.state-10 a, body.loading.state-10 li, body.loading.state-10 ul, body.loading.state-10 span, body.loading.state-10 h2, body.loading.state-10 h1, body.loading.state-10 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-10.png) 20 20, progress; }

body.loading.state-11 {
  cursor: url(../images/cursor-loading-11.png) 20 20, progress; }
  body.loading.state-11 div, body.loading.state-11 p, body.loading.state-11 a, body.loading.state-11 li, body.loading.state-11 ul, body.loading.state-11 span, body.loading.state-11 h2, body.loading.state-11 h1, body.loading.state-11 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-11.png) 20 20, progress; }

body.loading.state-12 {
  cursor: url(../images/cursor-loading-12.png) 20 20, progress; }
  body.loading.state-12 div, body.loading.state-12 p, body.loading.state-12 a, body.loading.state-12 li, body.loading.state-12 ul, body.loading.state-12 span, body.loading.state-12 h2, body.loading.state-12 h1, body.loading.state-12 .grid .post.with_single_view {
    cursor: url(../images/cursor-loading-12.png) 20 20, progress; }

body[data-direction~="up"] {
  cursor: url(../images/cursor-n-resize.png) 20 20, e-resize; }
  body[data-direction~="up"] div, body[data-direction~="up"] p, body[data-direction~="up"] h1, body[data-direction~="up"] h2, body[data-direction~="up"] img, body[data-direction~="up"] li, body[data-direction~="up"] ul {
    cursor: url(../images/cursor-n-resize.png) 20 20, e-resize; }
    body[data-direction~="up"] div a, body[data-direction~="up"] div .big-play-btn div, body[data-direction~="up"] p a, body[data-direction~="up"] p .big-play-btn div, body[data-direction~="up"] h1 a, body[data-direction~="up"] h1 .big-play-btn div, body[data-direction~="up"] h2 a, body[data-direction~="up"] h2 .big-play-btn div, body[data-direction~="up"] img a, body[data-direction~="up"] img .big-play-btn div, body[data-direction~="up"] li a, body[data-direction~="up"] li .big-play-btn div, body[data-direction~="up"] ul a, body[data-direction~="up"] ul .big-play-btn div {
      cursor: pointer; }

body[data-direction~="down"] {
  cursor: url(../images/cursor-s-resize.png) 20 20, e-resize; }
  body[data-direction~="down"] div, body[data-direction~="down"] p, body[data-direction~="down"] h1, body[data-direction~="down"] h2, body[data-direction~="down"] img, body[data-direction~="down"] li, body[data-direction~="down"] ul {
    cursor: url(../images/cursor-s-resize.png) 20 20, e-resize; }
    body[data-direction~="down"] div a, body[data-direction~="down"] div .big-play-btn div, body[data-direction~="down"] p a, body[data-direction~="down"] p .big-play-btn div, body[data-direction~="down"] h1 a, body[data-direction~="down"] h1 .big-play-btn div, body[data-direction~="down"] h2 a, body[data-direction~="down"] h2 .big-play-btn div, body[data-direction~="down"] img a, body[data-direction~="down"] img .big-play-btn div, body[data-direction~="down"] li a, body[data-direction~="down"] li .big-play-btn div, body[data-direction~="down"] ul a, body[data-direction~="down"] ul .big-play-btn div {
      cursor: pointer; }

body[data-direction~="next"] {
  cursor: url(../images/cursor-e-resize.png) 20 20, e-resize; }
  body[data-direction~="next"] div, body[data-direction~="next"] p, body[data-direction~="next"] h1, body[data-direction~="next"] h2, body[data-direction~="next"] img, body[data-direction~="next"] li, body[data-direction~="next"] ul {
    cursor: url(../images/cursor-e-resize.png) 20 20, e-resize; }
    body[data-direction~="next"] div a, body[data-direction~="next"] div .big-play-btn div, body[data-direction~="next"] p a, body[data-direction~="next"] p .big-play-btn div, body[data-direction~="next"] h1 a, body[data-direction~="next"] h1 .big-play-btn div, body[data-direction~="next"] h2 a, body[data-direction~="next"] h2 .big-play-btn div, body[data-direction~="next"] img a, body[data-direction~="next"] img .big-play-btn div, body[data-direction~="next"] li a, body[data-direction~="next"] li .big-play-btn div, body[data-direction~="next"] ul a, body[data-direction~="next"] ul .big-play-btn div {
      cursor: pointer; }

body[data-direction~="prev"] {
  cursor: url(../images/cursor-w-resize.png) 20 20, w-resize; }
  body[data-direction~="prev"] div, body[data-direction~="prev"] p, body[data-direction~="prev"] h1, body[data-direction~="prev"] h2, body[data-direction~="prev"] img, body[data-direction~="prev"] li, body[data-direction~="prev"] ul {
    cursor: url(../images/cursor-w-resize.png) 20 20, w-resize; }
    body[data-direction~="prev"] div a, body[data-direction~="prev"] div .big-play-btn div, body[data-direction~="prev"] p a, body[data-direction~="prev"] p .big-play-btn div, body[data-direction~="prev"] h1 a, body[data-direction~="prev"] h1 .big-play-btn div, body[data-direction~="prev"] h2 a, body[data-direction~="prev"] h2 .big-play-btn div, body[data-direction~="prev"] img a, body[data-direction~="prev"] img .big-play-btn div, body[data-direction~="prev"] li a, body[data-direction~="prev"] li .big-play-btn div, body[data-direction~="prev"] ul a, body[data-direction~="prev"] ul .big-play-btn div {
      cursor: pointer; }

.indicator {
  position: fixed;
  bottom: 50%;
  left: 50%;
  margin-top: -120px;
  margin-left: -120px;
  width: 240px;
  height: 240px;
  pointer-events: none;
  z-index: -1000;
  opacity: 0;
  display: none; }

.loading.ajax .indicator {
  bottom: 50px; }

.indicator .loader {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  background: url(../images/shapes@2x.png);
  background-size: 400px 400px;
  background-position: -21px -154px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%; }

.indicator:after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  margin-left: -2px;
  background: red;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  display: none; }

body.loading .indicator {
  z-index: 1000 !important;
  opacity: 1; }

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

B09Player custom styles

*********************************/
.big-play-btn {
  position: relative;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  display: table; }

.big-play-btn .label {
  display: table-cell;
  vertical-align: middle;
  height: 200px; }

.big-play-btn .label-inner {
  position: relative; }

.big-play-btn .label-inner:before {
  content: "Play Video";
  font-family: inherit;
  color: #ff2c2a;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: inherit;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  font-size: 2.7em;
  opacity: inherit;
  white-space: nowrap; }

.big-play-btn:hover .label-inner:after {
  content: "";
  position: absolute;
  background: #ff2c2a;
  height: 5px;
  left: 0;
  bottom: -5px;
  width: 100%;
  z-index: 2;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); }

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

PAGE SPECIFIC STYLES: GRID

*********************************/
.js .pagination {
  display: none; }

.js .grid {
  visibility: hidden;
  position: relative; }

.grid .grid-sizer {
  height: 20px;
  position: absolute;
  top: 0;
  left: 0; }

.grid .grid-sizer,
.grid .post {
  width: 100%;
  box-sizing: border-box;
  /*background: yellow;
  outline: 1px solid;*/ }

.grid .post.full-width {
  width: 100% !important; }

.grid .permalink {
  display: block; }

.grid .post .permalink,
.big-terms-list a {
  background-image: url(../images/transparent.gif);
  cursor: url(../images/cursor-crosshair-1.png) 20 20, crosshair; }

.home .home-link {
  cursor: url(../images/cursor-crosshair-1.png) 20 20, crosshair !important; }

.grid .image {
  margin: 0 auto 20px auto; }

.grid .post-inner {
  position: relative;
  z-index: 3;
  margin: 30px 10px;
  text-align: center;
  padding-top: 1px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  /*background: green;*/ }

.grid .text-content {
  margin: 0 20px 0 20px; }

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

PAGE SPECIFIC STYLES: SINGLE PAGE

*********************************/
.single .module {
  margin: 0px auto 0px auto; }

.article-header {
  pointer-events: none;
  z-index: 3;
  width: 100%;
  padding: 70px 0 50px 0; }

.textblock {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; }

.module.article-footer {
  margin: 0;
  width: 100%;
  display: table; }

.article-footer .module-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 80px 0 0 0; }

.article-footer .textblock {
  margin-bottom: 80px; }

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

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.

*********************************/
@media only screen and (min-width: 481px) {
  #container {
    padding-right: 60px;
    padding-left: 60px; }

  .grid {
    margin: 0 -15px 80px -15px; } }
/*********************************

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.

*********************************/
@media only screen and (min-width: 768px) {
  h1 {
    letter-spacing: 0em;
    font-size: 36px;
    line-height: 1em; } }
  @media only screen and (min-width: 768px) and (min-width: 768px) {
    h1 {
      font-size: 90px;
      text-indent: .25em; } }

@media only screen and (min-width: 768px) {
  .icon-logo {
    font-size: 12em; }

  .home .icon-logo {
    font-size: 18em; }

  #container {
    padding-top: 50px; }

  .single #container {
    padding: 0px 20px; }

  .grid {
    margin: 0 -20px 80px -20px; }

  .grid .grid-sizer,
  .grid .post {
    float: left;
    width: 50%; }

  /*.menu.archive-menu {
  	top: 60px;
  }*/
  .main-menu .menu-item {
    display: inline-block; }

  .only-small-screen {
    display: none; }

  .only-big-screen {
    display: inline-block !important; }

  .no-touch .grid .permalink .visuals {
    transition: -webkit-transform 0.15s ease;
    transition: transform 0.15s ease;
    -webkit-transform: perspective(150px) rotateZ(0deg);
            transform: perspective(150px) rotateZ(0deg); }

  .no-touch .grid .permalink:hover .visuals {
    -webkit-transform: perspective(150px) translateZ(0px);
            transform: perspective(150px) translateZ(0px); }

  .grid .post-inner {
    -webkit-perspective: 1000px;
            perspective: 1000px; }

  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0; }

  .fixed-header .article-header-inner {
    margin: 100px auto 30px auto;
    padding: 0 30px 0 30px;
    max-width: 1200px; }

  .entry-meta {
    margin: 0 0 30px 0; }

  .grid .post-inner {
    margin: 0px 20px 60px 20px; }

  .footer {
    position: relative;
    height: 1px;
    width: 1px;
    margin: 0;
    position: fixed;
    right: 20px;
    bottom: 30px;
    padding: 0;
    z-index: 5;
    text-align: left; }
    .footer .inner-footer {
      white-space: nowrap;
      position: absolute;
      width: 350px;
      height: 30px;
      line-height: 30px;
      left: -30px;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
      -webkit-transform-origin: 0% 0%;
              transform-origin: 0% 0%; } }
/********************************

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.

*********************/
@media only screen and (min-width: 1030px) {
  .menu-item a {
    padding-right: 30px;
    padding-left: 30px; } }
/********************************

LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.

*********************/
@media only screen and (min-width: 1240px) {
  .grid .grid-sizer,
  .grid .post {
    float: left;
    width: 33%; }
    .grid .grid-sizer.w2,
    .grid .post.w2 {
      width: 65%; } }
/********************************

LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.

*********************/
@media only screen and (min-width: 1540px) {
  /*.grid .grid-sizer,
  .grid .post {
  	float: left;
  	width: 25%;
  	&.w2 {
  		width: 49%;
  	}
  }*/ }
/********************************

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.

*********************/
/*********************
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;
    -webkit-filter: 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; } }
