@charset "UTF-8";
/*! 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.
*********************/
/******************************************************************
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
*/
/* line 68, ../scss/partials/_typography.scss */
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";
}

/* line 89, ../scss/partials/_typography.scss */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #ba1f25;
}

/******************************************************************
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? */
/******************************************************************
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.

******************************************************************/
/* line 35, ../scss/partials/_grid.scss */
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  /* line 49, ../scss/partials/_grid.scss */
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 55, ../scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 60, ../scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 65, ../scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 70, ../scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 75, ../scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 86, ../scss/partials/_grid.scss */
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 92, ../scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 97, ../scss/partials/_grid.scss */
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 102, ../scss/partials/_grid.scss */
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 107, ../scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 112, ../scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 117, ../scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 122, ../scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 127, ../scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 132, ../scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 142, ../scss/partials/_grid.scss */
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 148, ../scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 153, ../scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 158, ../scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 163, ../scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 168, ../scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 173, ../scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 178, ../scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 183, ../scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 188, ../scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  /* line 193, ../scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }

  /* line 198, ../scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }

  /* line 203, ../scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }

  /* line 208, ../scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }

  /* line 213, ../scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }

  /* line 218, ../scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }

  /* line 223, ../scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }

  /* line 228, ../scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }

  /* line 233, ../scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  /* line 238, ../scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  /* line 243, ../scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }

  /* line 248, ../scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*********************
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: 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
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
html {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* line 24, ../scss/breakpoints/_base.scss */
body {
  color: #000000;
  background-color: #000000;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
}

/* line 32, ../scss/breakpoints/_base.scss */
#site {
  background: url(../img/circle_bg.png) center top no-repeat;
}

/* line 36, ../scss/breakpoints/_base.scss */
.cleared, .clr {
  clear: both;
}

/* line 40, ../scss/breakpoints/_base.scss */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* line 46, ../scss/breakpoints/_base.scss */
:focus {
  outline-color: transparent;
  outline-style: none;
}

/* line 51, ../scss/breakpoints/_base.scss */
.grey-gradient {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #d1d1d1 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #d1d1d1));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #d1d1d1 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #d1d1d1 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #d1d1d1 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #d1d1d1 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d1d1d1',GradientType=0 );
  /* IE6-9 */
}

/* line 62, ../scss/breakpoints/_base.scss */
.dark-grey-gradient {
  background: #f0f0f0;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f0f0f0 0%, #cacaca 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f0f0f0), color-stop(100%, #cacaca));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f0f0f0 0%, #cacaca 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f0f0f0 0%, #cacaca 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f0f0f0 0%, #cacaca 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f0f0f0 0%, #cacaca 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#cacaca',GradientType=0 );
  /* IE6-9 */
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 77, ../scss/breakpoints/_base.scss */
#content-wrapper {
  margin-top: 3px;
}
/* line 80, ../scss/breakpoints/_base.scss */
#content-wrapper article {
  padding: 1em 0;
  width: auto;
  box-shadow: none;
}
/* line 86, ../scss/breakpoints/_base.scss */
#content-wrapper #content, #content-wrapper > article {
  background: #ffffff;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0 0 1.25em;
}

/* line 96, ../scss/breakpoints/_base.scss */
.home #content-wrapper #content {
  padding-top: 1.25em;
}

/* line 100, ../scss/breakpoints/_base.scss */
#content-main {
  padding-bottom: 1.25em;
}
/* line 103, ../scss/breakpoints/_base.scss */
#content-main #content-main-inner {
  padding: 0 0.625em;
}

/*********************
LINK STYLES
*********************/
/* line 112, ../scss/breakpoints/_base.scss */
a, a:visited {
  color: #ba1f25;
  /* on hover */
  /* mobile tap color */
}
/* line 116, ../scss/breakpoints/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #000000;
  text-decoration: none;
}
/* line 122, ../scss/breakpoints/_base.scss */
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/* line 127, ../scss/breakpoints/_base.scss */
a.moretag {
  text-transform: uppercase;
  color: #ba1f25;
  font-size: 0.78571em;
  font-weight: bold;
}
/* line 133, ../scss/breakpoints/_base.scss */
a.moretag:visited {
  color: #ba1f25;
}
/* line 137, ../scss/breakpoints/_base.scss */
a.moretag:hover {
  color: #000000;
}

/*********************
HEADER STYLES
*********************/
/* line 146, ../scss/breakpoints/_base.scss */
#header-top-wrapper {
  padding: 0.9375em 0;
}

/* line 150, ../scss/breakpoints/_base.scss */
#logo-leader-wrapper {
  padding: 0;
}

/* line 154, ../scss/breakpoints/_base.scss */
#logo-leader {
  float: none;
  width: 350px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 164, ../scss/breakpoints/_base.scss */
#logo-leader a {
  display: block;
}

/* line 169, ../scss/breakpoints/_base.scss */
#leader-widget-wrapper {
  display: none;
}

/* line 173, ../scss/breakpoints/_base.scss */
#post-header {
  background: #000000 url(../img/title_bg.png) right no-repeat;
  border-bottom: none;
  padding: 0.9375em 3%;
  width: 94%;
  max-height: 129px;
  margin-bottom: 1.25em;
  float: none;
  position: relative;
}
/* line 183, ../scss/breakpoints/_base.scss */
#post-header img {
  display: none;
}
/* line 187, ../scss/breakpoints/_base.scss */
#post-header h1 {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1em;
}

/* line 195, ../scss/breakpoints/_base.scss */
#post-header img, .post-title {
  float: left;
}

/* line 199, ../scss/breakpoints/_base.scss */
h1.story-title {
  float: none;
  font-size: 2.875em;
}

/* line 204, ../scss/breakpoints/_base.scss */
.section-image {
  min-height: 150px;
  margin-top: -1.25em;
}
/* line 208, ../scss/breakpoints/_base.scss */
.section-image img {
  height: 100%;
  min-width: 100%;
  max-width: none;
}

/*********************
SLIDER STYLES
*********************/
/* line 219, ../scss/breakpoints/_base.scss */
#info-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  float: none;
  box-shadow: none;
}

/* line 226, ../scss/breakpoints/_base.scss */
.featured-items {
  font-family: "Bitter", "Georgia", Cambria, Times New Roman, Times, serif;
}

/* line 230, ../scss/breakpoints/_base.scss */
.featured-small {
  position: relative;
  height: 100%;
}
/* line 234, ../scss/breakpoints/_base.scss */
.featured-small .featured-text {
  background: #000000;
  background-color: rgba(80, 80, 80, 0.7);
  position: static;
  width: 100%;
  height: 100%;
  padding: 0.9375em;
  box-sizing: border-box;
}
/* line 243, ../scss/breakpoints/_base.scss */
.featured-small .featured-text h3 {
  color: #ffcc33;
  font-size: 1.125em;
  text-shadow: none;
  letter-spacing: 0.5px;
}
/* line 250, ../scss/breakpoints/_base.scss */
.featured-small .featured-text .featured-headline, .featured-small .featured-text .standard-headline {
  font-size: 1.5em;
  text-transform: none;
  text-shadow: none;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2;
}
/* line 259, ../scss/breakpoints/_base.scss */
.featured-small .featured-text .featured-headline, .featured-small .featured-text .standard-headline, .featured-small .featured-text .featured-cat-contain {
  text-align: left;
}

/* line 265, ../scss/breakpoints/_base.scss */
ul.featured-items .featured-small .featured-small-img {
  float: none;
  position: relative;
  width: 100%;
}
/* line 270, ../scss/breakpoints/_base.scss */
ul.featured-items .featured-small .featured-small-img img {
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
}

/* line 278, ../scss/breakpoints/_base.scss */
.prev, .next, .flex-next, .flex-prev {
  text-indent: -9999px;
  width: 1.1875em;
  height: 2em;
  font-size: 1em;
  padding: 0.625em;
  margin-top: 0;
}

/* line 288, ../scss/breakpoints/_base.scss */
.flex-direction-nav a.flex-prev, .flex-direction-nav a.flex-next {
  font-size: 16px;
}

/* line 293, ../scss/breakpoints/_base.scss */
.prev, .flex-prev {
  background: url(../img/left_arrow.png) center center no-repeat;
}

/* line 297, ../scss/breakpoints/_base.scss */
.next, .flex-next {
  background: url(../img/right_arrow.png) center center no-repeat;
}

/*********************
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.
*/
/* line 313, ../scss/breakpoints/_base.scss */
#nav-wrapper {
  float: none;
  background: #ba1f25 !important;
  margin: 0 auto 3px;
  max-width: 1000px;
}

/* line 320, ../scss/breakpoints/_base.scss */
nav {
  max-width: 100%;
}
/* line 323, ../scss/breakpoints/_base.scss */
nav ul {
  margin: 0;
}
/* line 327, ../scss/breakpoints/_base.scss */
nav .menu > li {
  margin-right: -3px;
}
/* line 331, ../scss/breakpoints/_base.scss */
nav .menu > li a {
  color: #ffffff;
  padding-left: 0;
  padding-right: 16px;
  font-size: 15px;
  line-height: 14px;
  font-weight: normal;
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}
/* line 342, ../scss/breakpoints/_base.scss */
nav .menu > li a:before {
  content: '|';
  color: #993333;
  padding-right: 13px;
}
/* line 349, ../scss/breakpoints/_base.scss */
nav .menu > li:nth-child(2) a {
  border-left: none;
  padding-left: 13px;
}
/* line 353, ../scss/breakpoints/_base.scss */
nav .menu > li:nth-child(2) a:before {
  content: none;
}
/* line 359, ../scss/breakpoints/_base.scss */
nav .menu > li:hover > a {
  background-color: #993333;
  color: #ffffff !important;
}
/* line 364, ../scss/breakpoints/_base.scss */
nav .menu > li .sub-menu {
  background-color: #ba1f25;
}
/* line 367, ../scss/breakpoints/_base.scss */
nav .menu > li .sub-menu li a:before {
  content: none;
}
/* line 372, ../scss/breakpoints/_base.scss */
nav .menu > li.current-menu-item {
  background-color: #993333;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 383, ../scss/breakpoints/_base.scss */
#content {
  margin-top: 1.5em;
}

/* line 387, ../scss/breakpoints/_base.scss */
.hentry {
  background-color: #ffffff;
  border-radius: 3px;
  margin-bottom: 1.5em;
}
/* line 392, ../scss/breakpoints/_base.scss */
.hentry header {
  border-bottom: 1px solid #cccccc;
  padding: 1.5em;
}
/* line 397, ../scss/breakpoints/_base.scss */
.hentry footer {
  padding: 1.5em;
  border-top: 1px solid #cccccc;
}
/* line 401, ../scss/breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}

/* line 408, ../scss/breakpoints/_base.scss */
#bio-image {
  width: 75%;
  border: 1px solid #ccc;
  line-height: 0;
  margin: 0 auto;
}
/* line 414, ../scss/breakpoints/_base.scss */
#bio-image img {
  width: 100%;
}

/* line 419, ../scss/breakpoints/_base.scss */
#bio-metabox {
  margin-top: 1em;
}
/* line 422, ../scss/breakpoints/_base.scss */
#bio-metabox h3 {
  font-size: 1.875em;
  font-family: 'Bitter', Garamond, serif;
  line-height: 1em;
  margin-bottom: 0.325em;
}
/* line 429, ../scss/breakpoints/_base.scss */
#bio-metabox h6 {
  font-size: 1.1875em;
  font-weight: 600;
  line-height: 1.3em;
  margin: 0.325em 0;
}

/* line 437, ../scss/breakpoints/_base.scss */
.social-sharing-bio {
  display: none;
}

/* line 441, ../scss/breakpoints/_base.scss */
#bio-metabox p, .bio-downloads p {
  line-height: 2em;
  font-size: 0.875em;
  font-style: italic;
  font-weight: 500;
}

.twitter-name:before, .facebook-url:before {
  content: '';
  border-radius: 15px;
  height: 30px;
  width: 30px;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  line-height: 30px;
  background: #ccc url(../../../osage/images/social-buttons.png);
}
/* line 458, ../scss/breakpoints/_base.scss */
.twitter-name a, .facebook-url a {
  color: #ba1f25;
  padding-left: 5px;
}

/* line 446, ../scss/breakpoints/_base.scss */
.twitter-name:before {
  background-position: -30px 0;
}
.facebook-url:before {
  background-position: 0 0;
}

/* line 469, ../scss/breakpoints/_base.scss */
.bio-downloads {
  margin-right: 10px;
}

/* line 475, ../scss/breakpoints/_base.scss */
.print-link a, .print-link a:visited, .hi-res-link a, .hi-res-link a:visited {
  color: #666666;
}
/* line 479, ../scss/breakpoints/_base.scss */
.print-link a:hover, .hi-res-link a:hover {
  color: #ba1f25;
}
/* line 483, ../scss/breakpoints/_base.scss */
.print-link:before, .hi-res-link:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 29px;
  vertical-align: middle;
}

/* line 491, ../scss/breakpoints/_base.scss */
.print-link:before {
  background: url(../img/share_links.png) no-repeat;
}

/* line 495, ../scss/breakpoints/_base.scss */
.hi-res-link:before {
  background: url(../img/share_links.png) 0 -29px no-repeat;
}

/* line 499, ../scss/breakpoints/_base.scss */
#twitter-feed {
  margin: 1.25em 0;
  padding: 0.625em 0;
  border-top: 1px dashed #cccccc;
  border-bottom: 1px dashed #cccccc;
  color: #000000;
}
/* line 506, ../scss/breakpoints/_base.scss */
#twitter-feed img {
  width: 10%;
  max-width: 55px;
  max-height: 55px;
  margin-right: 0.625em;
}
/* line 513, ../scss/breakpoints/_base.scss */
#twitter-feed img, #twitter-feed .twitter-meta {
  float: left;
}

/* line 518, ../scss/breakpoints/_base.scss */
.twitter-meta {
  width: 85%;
  font-weight: 600;
}

/* line 523, ../scss/breakpoints/_base.scss */
.twitter-nicename {
  font-size: 0.9375em;
}

/* line 527, ../scss/breakpoints/_base.scss */
.twitter-handle, .twitter-date {
  color: #999;
  font-size: 0.875em;
}

/* line 532, ../scss/breakpoints/_base.scss */
.twitter-tweet {
  font-weight: normal;
  font-size: 0.8125em;
}

/*********************
HOME TEMPLATE
*********************/
/* line 543, ../scss/breakpoints/_base.scss */
.home-widget-header {
  font-family: "Bitter", "Georgia", Cambria, Times New Roman, Times, serif;
  line-height: 1.3em;
}

/* line 548, ../scss/breakpoints/_base.scss */
.widget-home-wrapper {
  margin-top: 0;
  margin-bottom: 2em;
  padding-left: 0;
  width: 100%;
}
/* line 554, ../scss/breakpoints/_base.scss */
.widget-home-wrapper.widget_recent_entries ul li {
  padding: 5px 0;
  line-height: 140%;
  font-size: 0.9em;
}
/* line 559, ../scss/breakpoints/_base.scss */
.widget-home-wrapper.widget_recent_entries ul li a {
  color: #000000;
}
/* line 562, ../scss/breakpoints/_base.scss */
.widget-home-wrapper.widget_recent_entries ul li a:hover {
  color: #ba1f25;
}
/* line 567, ../scss/breakpoints/_base.scss */
.widget-home-wrapper.widget_recent_entries ul li + li {
  border-top: 1px dotted #cccccc;
}

/* line 573, ../scss/breakpoints/_base.scss */
.related-items .header, .home-widget-header, .section-header {
  color: #ba1f25;
  font-size: 1.5625em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5em 0;
  border-bottom: 1px dashed #cccccc;
  font-family: "Bitter", "Georgia", Cambria, Times New Roman, Times, serif;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 587, ../scss/breakpoints/_base.scss */
#sidebar-wrapper {
  border: none;
  padding: 0 0.625em;
  width: auto;
  min-width: 300px;
  float: none;
}

/* line 595, ../scss/breakpoints/_base.scss */
.no-widgets {
  background-color: #ffffff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/* line 604, ../scss/breakpoints/_base.scss */
.sidebar-widget, .media-kit-sidebar {
  margin-top: 1.25em;
  border-left: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

/* line 611, ../scss/breakpoints/_base.scss */
.sidebar-widget-wrap {
  width: 100%;
  background: #333333;
}

/* line 616, ../scss/breakpoints/_base.scss */
.sidebar-widget-header {
  line-height: 2em;
  padding-left: .9375em;
  color: #ffcc33;
}

/* line 622, ../scss/breakpoints/_base.scss */
.sidebar-widget-content {
  padding: 0.625em;
}

/* line 628, ../scss/breakpoints/_base.scss */
.media-kit-sidebar a, .media-kit-sidebar a:visited {
  color: #ba1f25;
}
/* line 632, ../scss/breakpoints/_base.scss */
.media-kit-sidebar a:hover {
  color: #000000;
}
/* line 636, ../scss/breakpoints/_base.scss */
.media-kit-sidebar ul {
  clear: both;
}
/* line 640, ../scss/breakpoints/_base.scss */
.media-kit-sidebar p, .media-kit-sidebar li {
  padding: 0.625em 0;
  font-size: 0.875em;
  line-height: 1.3em;
}
/* line 646, ../scss/breakpoints/_base.scss */
.media-kit-sidebar li {
  background-image: url(../img/widget_bullet.png);
  background-repeat: no-repeat;
  background-position: 0px center;
  padding-left: 1.25em;
}

/* line 656, ../scss/breakpoints/_base.scss */
.media-kit-contact h5 {
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
/* line 661, ../scss/breakpoints/_base.scss */
.media-kit-contact p {
  font-style: italic;
  line-height: 26px;
  padding: 0;
  margin-bottom: 0.625em;
}
/* line 667, ../scss/breakpoints/_base.scss */
.media-kit-contact p:before {
  content: '';
  background: url(../img/sidebar_sprites.png) no-repeat;
  width: 26px;
  height: 26px;
  margin-right: 0.625em;
  float: left;
  display: block;
}
/* line 678, ../scss/breakpoints/_base.scss */
.media-kit-contact p.email-link:before {
  background-position: 0 0;
}
/* line 682, ../scss/breakpoints/_base.scss */
.media-kit-contact p.twitter-link:before {
  background-position: -26px 0;
}

/*********************
POST STYLES
*********************/
/* line 694, ../scss/breakpoints/_base.scss */
.post-title h4 {
  color: #ffcc33;
  font-size: 1.75em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.3125em;
  line-height: 1em;
}

/* line 704, ../scss/breakpoints/_base.scss */
#post-byline {
  float: none;
  width: auto;
  padding-bottom: 15px;
  margin-top: 0;
  border-bottom: 1px dashed #ccc;
}

/* line 714, ../scss/breakpoints/_base.scss */
#post-title-wrap h2 {
  font-size: 1.875em;
  font-family: 'Bitter', Garamond, serif;
  font-weight: bold;
  line-height: 1.2em;
  padding: 0 0 0.3em;
}
/* line 722, ../scss/breakpoints/_base.scss */
#post-title-wrap h5 {
  color: #ba1f25;
  text-transform: uppercase;
  font-weight: 300;
}

/* line 729, ../scss/breakpoints/_base.scss */
#author {
  margin-top: 1em;
}
/* line 732, ../scss/breakpoints/_base.scss */
#author img {
  margin-right: 0.5em;
  float: left;
}

/* line 738, ../scss/breakpoints/_base.scss */
.author-contain, span.post-author, .date-contain, time.post-date {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  float: none;
  color: #666666;
  margin: 0;
}

/* line 748, ../scss/breakpoints/_base.scss */
span.post-author {
  font-weight: normal;
}

/* line 752, ../scss/breakpoints/_base.scss */
span.post-author a, span.post-author a:visited, .post-meta-info a:hover, span.byline-twitter a {
  color: #ba1f25;
}

/* line 756, ../scss/breakpoints/_base.scss */
span.post-author a:hover, span.byline-twitter a:hover {
  color: #000000;
}

/* line 760, ../scss/breakpoints/_base.scss */
.byline-twitter:before {
  content: url(../img/byline_twitter.png);
  padding-right: 0.3em;
}

/* line 765, ../scss/breakpoints/_base.scss */
#post-meta-box {
  float: none;
  padding: 0.9375em 0;
  border-bottom: 1px dashed #cccccc;
  margin-bottom: 1em;
}

/* line 773, ../scss/breakpoints/_base.scss */
.post-meta-info {
  width: 100%;
  font-size: 0.8125em;
  font-style: italic;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
  line-height: 1.4em;
}
/* line 782, ../scss/breakpoints/_base.scss */
.post-meta-info a {
  color: #000000;
}

/* line 787, ../scss/breakpoints/_base.scss */
.post-tags-lead {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}

/* line 793, ../scss/breakpoints/_base.scss */
#post-area {
  float: none;
}

/* line 797, ../scss/breakpoints/_base.scss */
#featured-image {
  float: none;
  margin-bottom: 1em;
}

/* line 802, ../scss/breakpoints/_base.scss */
.social-sharing {
  padding: 0;
  margin: 0.625em auto 0;
}
/* line 806, ../scss/breakpoints/_base.scss */
.social-sharing a {
  float: left;
  display: block;
}
/* line 810, ../scss/breakpoints/_base.scss */
.social-sharing a div p {
  font-weight: 600;
  padding-left: 5px;
}
/* line 816, ../scss/breakpoints/_base.scss */
.social-sharing.social-sharing-sidebar {
  margin: 0 auto 0.625em;
  float: none;
}

/* line 824, ../scss/breakpoints/_base.scss */
.facebook-share, .twitter-share, .pinterest-share, .google-share {
  float: left;
  margin: 0 5px 5px 0;
  width: 70px;
}

/* line 830, ../scss/breakpoints/_base.scss */
#content-area {
  margin-left: 0;
  font-size: 0.875em;
  float: none;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*********************
WIDGET STYLES
*********************/
/* line 844, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-main-text h2 a {
  font-family: "Bitter", "Georgia", Cambria, Times New Roman, Times, serif;
}
/* line 847, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-main-text h2 a:hover {
  color: #ba1f25;
}
/* line 851, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-main-text p {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 858, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-list h3 {
  font-family: "Bitter", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 1.5625em;
}
/* line 863, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-list ul li {
  border-top: 1px dashed #cccccc;
}
/* line 867, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-list ul li:first-child {
  border: none;
}
/* line 871, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-list ul li p a {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 0.75em;
  color: #000000;
}
/* line 877, ../scss/breakpoints/_base.scss */
.mvp_headlines_widget .headlines-list ul li p a:hover {
  color: #ba1f25;
}

/* line 885, ../scss/breakpoints/_base.scss */
.media-kit-content .sidebar-widget-wrap {
  background: #333333 url(../img/widget_info.png) right no-repeat;
}

/* line 890, ../scss/breakpoints/_base.scss */
.dynamic_twitter_widget .sidebar-widget-wrap, .media-kit-contact .sidebar-widget-wrap {
  background: #333333 url(../img/widget_twitter.png) right no-repeat;
}

/* line 895, ../scss/breakpoints/_base.scss */
.espn_images_widget .sidebar-widget-wrap {
  background: #333333 url(../img/widget_images.png) right no-repeat;
}

/* line 900, ../scss/breakpoints/_base.scss */
.espn_weekly_updates_widget .sidebar-widget-wrap, .sidebar-widget.widget_recent_entries .sidebar-widget-wrap, .espn_featured_widget .sidebar-widget-wrap {
  background: #333333 url(../img/widget_news.png) right no-repeat;
}

/* line 905, ../scss/breakpoints/_base.scss */
.dynamic_twitter_widget iframe {
  max-height: 500px;
}

/* line 911, ../scss/breakpoints/_base.scss */
.espn_featured_widget .see-all-link {
  margin: 0 0.9375em 0.9375em;
}

/* line 916, ../scss/breakpoints/_base.scss */
.week-module {
  margin-top: 0.9375em;
}
/* line 919, ../scss/breakpoints/_base.scss */
.week-module h3 {
  padding-bottom: 0.3125em;
}
/* line 923, ../scss/breakpoints/_base.scss */
.week-module p {
  font-size: 0.75em;
}

/* line 928, ../scss/breakpoints/_base.scss */
.sidebar-widget .week-module {
  font-size: 0.83em;
}

/* line 934, ../scss/breakpoints/_base.scss */
.week-module a, .week-module a:visited, .see-all-link a, .see-all-link a:visited {
  color: #ba1f25;
}
/* line 938, ../scss/breakpoints/_base.scss */
.week-module a:hover, .see-all-link a:hover {
  color: #000000;
}

/* line 943, ../scss/breakpoints/_base.scss */
.see-all-link {
  text-align: right;
  padding-top: 0.9375em;
  font-weight: bold;
}
/* line 948, ../scss/breakpoints/_base.scss */
.see-all-link:before {
  content: '\00bb';
  position: relative;
  top: -2px;
  right: 5px;
  font-weight: normal;
  font-size: 0.8em;
}

/* line 958, ../scss/breakpoints/_base.scss */
.sidebar-widget.widget_recent_entries ul li {
  padding: 0.9375em 0 0.9375em 1.25em;
  margin: 0 0.9375em;
  background-image: url(../img/widget_bullet.png);
  background-repeat: no-repeat;
  background-position: 0px center;
  font-weight: normal;
  font-size: 0.875em;
  line-height: 1.3em;
}
/* line 968, ../scss/breakpoints/_base.scss */
.sidebar-widget.widget_recent_entries ul li a {
  color: #000000;
}
/* line 971, ../scss/breakpoints/_base.scss */
.sidebar-widget.widget_recent_entries ul li a:hover {
  color: #ba1f25;
}
/* line 976, ../scss/breakpoints/_base.scss */
.sidebar-widget.widget_recent_entries ul li + li {
  border-top: 1px solid #cccccc;
}

/* line 981, ../scss/breakpoints/_base.scss */
.widget-gallery-wrapper {
  margin-top: 0.9375em;
}

/* line 985, ../scss/breakpoints/_base.scss */
.kit-module {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  float: left;
  border: 1px solid #cccccc;
  overflow: hidden;
  margin-top: 0.9375em;
}
/* line 995, ../scss/breakpoints/_base.scss */
.kit-module.media_kit {
  height: 180px;
}
/* line 999, ../scss/breakpoints/_base.scss */
.kit-module img {
  min-width: 100%;
}

/* line 1004, ../scss/breakpoints/_base.scss */
.kit-module-link {
  display: block;
  line-height: 0;
}

/* line 1009, ../scss/breakpoints/_base.scss */
.kit-title-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #ffffff;
  text-transform: uppercase;
  background-color: rgba(80, 80, 80, 0.8);
  display: block;
}
/* line 1018, ../scss/breakpoints/_base.scss */
.kit-title-wrap h3 {
  padding: 0.625em 0.9375em;
  color: inherit;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* line 1027, ../scss/breakpoints/_base.scss */
.sidebar-widget .kit-module {
  margin: 3.125% 3.125% 0;
  width: 45.3125%;
  font-size: 0.8em;
}
/* line 1032, ../scss/breakpoints/_base.scss */
.sidebar-widget .kit-module.no-margin {
  margin-left: 0;
}

/*********************
RELATED ITEMS STYLES
*********************/
/* line 1041, ../scss/breakpoints/_base.scss */
.related-items {
  width: 100%;
  margin-bottom: 2em;
}

/* line 1047, ../scss/breakpoints/_base.scss */
.related-posts > article {
  padding: 1.25em 0 2.5em;
  border-bottom: 1px dashed #cccccc;
}
/* line 1052, ../scss/breakpoints/_base.scss */
.related-posts .last {
  border: none;
}
/* line 1056, ../scss/breakpoints/_base.scss */
.related-posts .article-entry {
  width: 100%;
  line-height: 1.6em;
  font-size: 0.8725em;
  color: #000000;
}
/* line 1062, ../scss/breakpoints/_base.scss */
.related-posts .article-entry h1 {
  font-family: "Bitter", "Georgia", Cambria, Times New Roman, Times, serif;
  font-weight: 700;
  font-size: 1.2em;
  padding: 0.3em 0;
  line-height: 1.6em;
}
/* line 1069, ../scss/breakpoints/_base.scss */
.related-posts .article-entry h1 a, .related-posts .article-entry h1 a:visited {
  color: #000000;
}
/* line 1073, ../scss/breakpoints/_base.scss */
.related-posts .article-entry h1 a:hover {
  color: #ba1f25;
}
/* line 1079, ../scss/breakpoints/_base.scss */
.related-posts .posted-by {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 500;
  color: #666666;
}
/* line 1085, ../scss/breakpoints/_base.scss */
.related-posts .posted-by a, .related-posts .posted-by a:hover {
  color: #ba1f25;
}
/* line 1090, ../scss/breakpoints/_base.scss */
.related-posts .split-left {
  margin: 0.9375em 0;
  letter-spacing: 0.1px;
}
/* line 1095, ../scss/breakpoints/_base.scss */
.related-posts .article-image {
  border: 1px solid #cccccc;
  line-height: 0;
  overflow: hidden;
  margin: 0 auto;
  width: 300px;
  max-height: 200px;
}
/* line 1103, ../scss/breakpoints/_base.scss */
.related-posts .article-image img {
  width: 100%;
}
/* line 1108, ../scss/breakpoints/_base.scss */
.related-posts .gallery .article-image {
  width: 99%;
  height: auto;
  max-height: 400px;
}

/* line 1115, ../scss/breakpoints/_base.scss */
.bio, .related-gallery .gallery {
  width: 100%;
  margin-top: 1.25em;
  border: 1px solid #cccccc;
  background-color: #666666;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 47.5%;
  float: left;
}
/* line 1125, ../scss/breakpoints/_base.scss */
.bio img, .related-gallery .gallery img {
  min-width: 100%;
}
/* line 1129, ../scss/breakpoints/_base.scss */
.bio h3, .related-gallery .gallery h3 {
  color: #ffcc33;
  text-transform: uppercase;
  padding: 0.2em 0.625em 0.3125em 0.625em;
  font-weight: 500;
}
/* line 1136, ../scss/breakpoints/_base.scss */
.bio p, .related-gallery .gallery p {
  font-size: 0.8125em;
  color: #ffffff;
  font-style: italic;
  letter-spacing: 0.1px;
  padding: 0 0.625em 1em;
  font-weight: 300;
}
/* line 1145, ../scss/breakpoints/_base.scss */
.bio.second, .related-gallery .gallery.second {
  float: right;
}
/* line 1148, ../scss/breakpoints/_base.scss */
.bio.second + .bio, .related-gallery .gallery.second + .bio, .bio.second + .related-gallery .gallery, .related-gallery .gallery.second + .related-gallery .gallery {
  clear: both;
}

/* line 1154, ../scss/breakpoints/_base.scss */
.section-header {
  line-height: 1.2em;
}

/*********************
ARCHIVE STYLES
*********************/
/* line 1164, ../scss/breakpoints/_base.scss */
.archive #featured-wrapper {
  height: 400px;
}

/* line 1168, ../scss/breakpoints/_base.scss */
.split-sidebars {
  margin: 4em 0;
}

/* line 1172, ../scss/breakpoints/_base.scss */
.kit-set {
  border: none;
  height: auto;
}
/* line 1176, ../scss/breakpoints/_base.scss */
.kit-set ul {
  border-left: 1px solid #c1c1c1;
  border-right: 1px solid #c1c1c1;
}
/* line 1182, ../scss/breakpoints/_base.scss */
.kit-set ul li:first-child a {
  border-top: 1px solid #c1c1c1;
}
/* line 1186, ../scss/breakpoints/_base.scss */
.kit-set ul li a {
  padding: 0.75em;
  border-bottom: 1px solid #c1c1c1;
  display: block;
  font-weight: bold;
  color: #000000;
}
/* line 1193, ../scss/breakpoints/_base.scss */
.kit-set ul li a:before {
  content: url(../img/widget_bullet.png);
  padding-right: 0.5em;
}
/* line 1198, ../scss/breakpoints/_base.scss */
.kit-set ul li a:hover {
  color: #ba1f25;
}
/* line 1205, ../scss/breakpoints/_base.scss */
.kit-set h3 {
  font-size: 1.125em;
  line-height: 1.7em;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 1211, ../scss/breakpoints/_base.scss */
.kit-set h3 .view-all a {
  float: right;
  font-size: 0.6875em;
  font-weight: bold;
  color: #ba1f25;
}
/* line 1217, ../scss/breakpoints/_base.scss */
.kit-set h3 .view-all a:hover {
  color: #000000;
}

/* line 1226, ../scss/breakpoints/_base.scss */
.post-type-archive-media_kit .filter-container, .related-kits .filter-container, .related-posts .filter-container {
  top: 44px;
  right: 0;
}

/* line 1233, ../scss/breakpoints/_base.scss */
.post-type-archive-media_kit .filter-container, .post-type-archive-media_kit .filter-container ul, .related-kits .filter-container, .related-kits .filter-container ul, .related-posts .filter-container, .related-posts .filter-container ul, .related-bios .filter-container, .related-bios .filter-container ul {
  width: 100%;
}

/* line 1239, ../scss/breakpoints/_base.scss */
.post-type-archive-biography .filter-button, .tax-personnel-type .filter-button {
  margin-top: 0;
}
/* line 1243, ../scss/breakpoints/_base.scss */
.post-type-archive-biography .filter-container, .tax-personnel-type .filter-container {
  top: 33px !important;
}
/* line 1246, ../scss/breakpoints/_base.scss */
.post-type-archive-biography .filter-container ul, .tax-personnel-type .filter-container ul {
  width: 210px;
}
/* line 1251, ../scss/breakpoints/_base.scss */
.post-type-archive-biography .sorts .dropdown, .tax-personnel-type .sorts .dropdown {
  width: auto;
}
.blog .filter-button, 
.category .filter-button, 
.post-type-archive-biography .filter-button,
.tax-personnel-type .filter-button {
  margin-left: 0;
}

/* line 1259, ../scss/breakpoints/_base.scss */
#author-meta img {
  width: 40%;
  max-width: 150px;
  float: left;
}
/* line 1265, ../scss/breakpoints/_base.scss */
#author-meta #bio-metabox {
  box-sizing: border-box;
  padding-left: 1em;
  margin-top: 0;
  width: 60%;
  float: left;
}

/*********************
FILTER STYLES
*********************/
/* line 1280, ../scss/breakpoints/_base.scss */
.filter-button {
  display: block;
  padding: 0.5em 0.75em 0.6em;
  background-color: #7f7f7f;
  color: #ffffff;
  font-size: 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.325em;
}
/* line 1293, ../scss/breakpoints/_base.scss */
.filter-button:after {
  padding-left: 0.5em;
  content: '▾';
  color: #ffcc33;
  font-style: normal;
  font-size: 1.7em;
}

/* line 1302, ../scss/breakpoints/_base.scss */
.sorts .dropdown {
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
}
/* line 1308, ../scss/breakpoints/_base.scss */
.sorts .dropdown .filter-container {
  visibility: hidden;
  position: absolute;
  top: 79px;
  left: 0;
  z-index: 200;
}
/* line 1316, ../scss/breakpoints/_base.scss */
.sorts .dropdown .filter-container ul {
  background: rgba(0, 0, 0, 0.85);
  padding: 8px 0;
  margin: 0;
  font-family: 'Maven Pro';
  font-size: 0.875em;
}
/* line 1324, ../scss/breakpoints/_base.scss */
.sorts .dropdown .filter-container ul li {
  width: 190px;
  padding: 3px 0;
  margin-top: 0;
  list-style-type: none;
  margin: 0 10px;
}
/* line 1331, ../scss/breakpoints/_base.scss */
.sorts .dropdown .filter-container ul li a {
  color: #ffffff;
}
/* line 1334, ../scss/breakpoints/_base.scss */
.sorts .dropdown .filter-container ul li a:hover {
  color: #ffcc33;
}

/* line 1343, ../scss/breakpoints/_base.scss */
.bio-search {
  width: 50%;
  float: left;
  margin-left: 1.5em;
}
/* line 1348, ../scss/breakpoints/_base.scss */
.bio-search input[type=text] {
  height: 24px;
  padding: 2px 4px;
  border: 1px solid #cccccc;
  width: 100%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 1357, ../scss/breakpoints/_base.scss */
.pagination .current, .pagination a:hover {
  background: #cccccc;
  color: #ffffff;
  border: none;
}

/* line 1363, ../scss/breakpoints/_base.scss */
.pagination span, .pagination a {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #7f7f7f;
  color: #ffffff;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-weight: normal;
}

/*********************
FOOTER STYLES
*********************/
/* line 1377, ../scss/breakpoints/_base.scss */
#footer-wrapper, #copyright {
  background: #000000;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 1382, ../scss/breakpoints/_base.scss */
#footer-nav {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
}
/* line 1387, ../scss/breakpoints/_base.scss */
#footer-nav .menu li {
  display: block;
}
/* line 1391, ../scss/breakpoints/_base.scss */
#footer-nav .menu li a {
  font-family: "Bitter", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.5px;
  float: none;
}

/* line 1401, ../scss/breakpoints/_base.scss */
#footer-widget-wrapper {
  margin-top: 20px;
}

/* line 1405, ../scss/breakpoints/_base.scss */
.footer-widget {
  width: 100%;
  padding-left: 0;
}

/* line 1410, ../scss/breakpoints/_base.scss */
#footer-widget-text {
  float: left;
}
/* line 1413, ../scss/breakpoints/_base.scss */
#footer-widget-text p {
  margin: 0;
}

/* line 1418, ../scss/breakpoints/_base.scss */
.footer-links p {
  float: none;
  color: #ffffff;
}
/* line 1422, ../scss/breakpoints/_base.scss */
.footer-links p a {
  color: inherit;
}
/* line 1425, ../scss/breakpoints/_base.scss */
.footer-links p a:hover {
  color: #ba1f25;
}

/* line 1431, ../scss/breakpoints/_base.scss */
#copyright p {
  font-style: normal;
}

/* line 1435, ../scss/breakpoints/_base.scss */
#footer-social ul {
  left: -15px;
  position: relative;
}

/*********************
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) {
  /******************************************************************
  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
  *********************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* line 36, ../scss/breakpoints/_481up.scss */
  .kit-module {
    width: 48.4375%;
    margin-right: 3.125%;
  }
  /* line 40, ../scss/breakpoints/_481up.scss */
  .kit-module.no-margin {
    margin-right: 0;
  }

  /* line 49, ../scss/breakpoints/_481up.scss */
  .related-posts .article-entry h1 {
    padding-top: 0;
  }
  /* line 54, ../scss/breakpoints/_481up.scss */
  .related-posts .article-image {
    float: left;
    margin: 0 0.9375em 0 0;
  }

  /* line 60, ../scss/breakpoints/_481up.scss */
  .bio, .related-gallery .gallery {
    width: 31.25%;
    margin-right: 3.125%;
    float: left;
  }
  /* line 65, ../scss/breakpoints/_481up.scss */
  .bio.second, .related-gallery .gallery.second {
    float: left;
  }
  /* line 68, ../scss/breakpoints/_481up.scss */
  .bio.second + .bio, .related-gallery .gallery.second + .bio, .bio.second + .related-gallery .gallery, .related-gallery .gallery.second + .related-gallery .gallery {
    clear: none;
  }
  /* line 72, ../scss/breakpoints/_481up.scss */
  .bio.third, .related-gallery .gallery.third {
    margin-right: 0;
    float: right;
  }
  /* line 76, ../scss/breakpoints/_481up.scss */
  .bio.third + .bio, .related-gallery .gallery.third + .bio, .bio.third + .related-gallery .gallery, .related-gallery .gallery.third + .related-gallery .gallery {
    clear: both;
  }

  /* line 81, ../scss/breakpoints/_481up.scss */
  #featured-wrapper.iosslider {
    height: 400px;
  }

  /*********************
  FOOTER 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.
*********************/
@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
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 27, ../scss/breakpoints/_768up.scss */
  #content-main {
    padding-bottom: 1.25em;
  }
  /* line 30, ../scss/breakpoints/_768up.scss */
  #content-main #content-main-inner {
    padding: 0 0 0 1.25em;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 39, ../scss/breakpoints/_768up.scss */
  #logo-leader {
    float: left;
    padding: 1em 2em;
  }

  /* line 44, ../scss/breakpoints/_768up.scss */
  #leader-widget-wrapper {
    display: block;
    float: right;
    line-height: 1em;
    text-align: right;
  }

  /* line 51, ../scss/breakpoints/_768up.scss */
  #social-header-wrapper {
    position: relative;
    right: initial;
    width: auto;
    margin-bottom: 0.625em;
  }
  /* line 58, ../scss/breakpoints/_768up.scss */
  #social-header-wrapper ul li {
    float: right;
    margin-left: 0.3125em;
    box-shadow: none;
    background: transparent !important;
  }

  /* line 66, ../scss/breakpoints/_768up.scss */
  #leader-links-wrapper {
    margin-right: 0.5em;
  }
  /* line 70, ../scss/breakpoints/_768up.scss */
  #leader-links-wrapper ul li {
    display: inline-block;
    padding: 0 20px;
    font-family: 'Maven Pro', Verdana, Helvetica, sans-serif;
    font-size: 0.875em;
    letter-spacing: 0.5px;
    color: #fc3;
    border-left: 1px solid #999;
  }
  /* line 79, ../scss/breakpoints/_768up.scss */
  #leader-links-wrapper ul li.first {
    border-left: none;
  }
  /* line 83, ../scss/breakpoints/_768up.scss */
  #leader-links-wrapper ul li.last {
    padding-right: 0;
  }
  /* line 87, ../scss/breakpoints/_768up.scss */
  #leader-links-wrapper ul li a {
    text-decoration: none;
    color: inherit;
  }
  /* line 91, ../scss/breakpoints/_768up.scss */
  #leader-links-wrapper ul li a::hover {
    color: #fff;
  }

  /* line 98, ../scss/breakpoints/_768up.scss */
  .region {
    margin-top: 10px;
  }

  /* line 102, ../scss/breakpoints/_768up.scss */
  #city_menu {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
  }

  /* line 109, ../scss/breakpoints/_768up.scss */
  #city_menu-button, #city_menu-menu li {
    letter-spacing: 0.5px;
    font-size: 0.8em;
  }

  /* line 114, ../scss/breakpoints/_768up.scss */
  #city_menu-button {
    text-transform: uppercase;
  }

  /* line 118, ../scss/breakpoints/_768up.scss */
  .section-image {
    margin-top: 0;
  }
  /* line 121, ../scss/breakpoints/_768up.scss */
  .section-image img {
    margin: 0 2% 2%;
    width: 95.8%;
    border: 1px solid #ccc;
    min-width: initial;
  }

  /* line 130, ../scss/breakpoints/_768up.scss */
  #post-header img {
    display: block;
    width: auto;
    max-height: 129px;
    margin-left: 10%;
  }

  /*********************
  SLIDER STYLES
  *********************/
  /* line 144, ../scss/breakpoints/_768up.scss */
  .featured-small .featured-text {
    position: absolute;
    top: auto;
    bottom: 0;
    height: auto;
    padding: 1.5em;
    max-height: none;
  }
  /* line 152, ../scss/breakpoints/_768up.scss */
  .featured-small .featured-text h3 {
    font-size: 1.125em;
  }
  /* line 156, ../scss/breakpoints/_768up.scss */
  .featured-small .featured-text .featured-headline, .featured-small .featured-text .standard-headline {
    font-size: 1.75em;
    margin: 0;
  }

  /* line 163, ../scss/breakpoints/_768up.scss */
  ul.featured-items .featured-small .featured-small-img {
    height: 100%;
  }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* line 171, ../scss/breakpoints/_768up.scss */
  .post-title {
    vertical-align: middle;
    margin-left: 10%;
  }

  /* line 176, ../scss/breakpoints/_768up.scss */
  #bio-header {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  /* line 182, ../scss/breakpoints/_768up.scss */
  #bio-metabox {
    margin-top: 0;
  }

  /* line 186, ../scss/breakpoints/_768up.scss */
  #bio-image, #bio-info {
    position: relative;
    display: table-cell;
    vertical-align: top;
  }

  /* line 192, ../scss/breakpoints/_768up.scss */
  #bio-image {
    width: 48%;
    border: 1px solid #ccc;
    line-height: 0;
    margin: 0;
  }

  /* line 199, ../scss/breakpoints/_768up.scss */
  #bio-info {
    padding-left: 3.125%;
  }

  /* line 203, ../scss/breakpoints/_768up.scss */
  #bio-share {
    position: absolute;
    bottom: 0;
  }
  /* line 207, ../scss/breakpoints/_768up.scss */
  #bio-share div {
    float: left;
  }

  /* line 212, ../scss/breakpoints/_768up.scss */
  .post-meta-info {
    float: left;
    width: 65%;
  }

  /* line 217, ../scss/breakpoints/_768up.scss */
  .social-sharing {
    float: right;
    width: 170px;
    margin: 0;
  }

  /* line 223, ../scss/breakpoints/_768up.scss */
  .facebook-share, .twitter-share, .pinterest-share, .google-share {
    width: 80px;
  }

  /*********************
  RELATED ITEMS STYLES
  *********************/
  /* line 231, ../scss/breakpoints/_768up.scss */
  .kit-module {
    width: 100%;
  }

  /* line 237, ../scss/breakpoints/_768up.scss */
  .related-posts .article-image {
    float: left;
    max-width: 200px;
  }
  /* line 244, ../scss/breakpoints/_768up.scss */
  .related-posts .article-entry h1 {
    padding-top: 0;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 260, ../scss/breakpoints/_768up.scss */
  #sidebar-wrapper {
    padding: 0;
    width: 300px;
    float: right;
  }

  /* line 266, ../scss/breakpoints/_768up.scss */
  .sidebar {
    margin-top: 2.2em;
  }

  /* line 270, ../scss/breakpoints/_768up.scss */
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }

  /* line 275, ../scss/breakpoints/_768up.scss */
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  /* line 280, ../scss/breakpoints/_768up.scss */
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  /* line 288, ../scss/breakpoints/_768up.scss */
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }

  /* line 296, ../scss/breakpoints/_768up.scss */
  #sidebar-wrapper {
    padding: 0 1.25em 1.25em;
  }

  /*********************
  FILTER STYLES
  *********************/
  /* line 304, ../scss/breakpoints/_768up.scss */
  .section-title {
    line-height: 1em;
    vertical-align: bottom;
  }

  /* line 309, ../scss/breakpoints/_768up.scss */
  .filter-button {
    display: inline-block;
    margin-top: 0;
    margin-left: 2em;
  }

  /* line 315, ../scss/breakpoints/_768up.scss */
  .sorts .dropdown .filter-container {
    top: 44px;
  }

  /*********************
  FOOTER STYLES
  *********************/
  /* line 325, ../scss/breakpoints/_768up.scss */
  #footer-nav .menu li {
    display: inline-block;
    padding: 0.625em 0 0.3125em 0.625em;
  }
  /* line 329, ../scss/breakpoints/_768up.scss */
  #footer-nav .menu li a:before {
    content: '|';
    color: #999999;
    padding-right: 0.8125em;
  }
  /* line 335, ../scss/breakpoints/_768up.scss */
  #footer-nav .menu li:nth-child(2) {
    padding-left: 0;
  }
  /* line 338, ../scss/breakpoints/_768up.scss */
  #footer-nav .menu li:nth-child(2) a:before {
    content: none;
  }

  /* line 346, ../scss/breakpoints/_768up.scss */
  #logo-footer {
    margin-right: 30px;
  }
}
/*********************
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: 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.
  
  ******************************************************************/
  /* line 14, ../scss/breakpoints/_1000up.scss */
  #content-wrapper #content, #content-wrapper > article {
    width: 1000px;
  }

  /* line 19, ../scss/breakpoints/_1000up.scss */
  .social-sharing-bio {
    display: block;
  }

  /*********************
  WIDGET STYLES
  *********************/
  /* line 29, ../scss/breakpoints/_1000up.scss */
  .related-posts .article-entry {
    float: left;
    width: 50%;
  }
  /* line 34, ../scss/breakpoints/_1000up.scss */
  .related-posts .article-image {
    max-width: 300px;
  }

  /* line 40, ../scss/breakpoints/_1000up.scss */
  .section-image img {
    min-width: auto;
  }

  /* line 45, ../scss/breakpoints/_1000up.scss */
  .kit-module {
    width: 48.4375%;
    margin-right: 3.125%;
  }
  /* line 49, ../scss/breakpoints/_1000up.scss */
  .kit-module.no-margin {
    margin-right: 0;
  }
  /* line 53, ../scss/breakpoints/_1000up.scss */
  .kit-module.media_kit {
    height: 180px;
  }

  /* line 58, ../scss/breakpoints/_1000up.scss */
  .archive .bio {
    width: 31.25%;
    margin-right: 3.125%;
    float: left;
  }
  /* line 63, ../scss/breakpoints/_1000up.scss */
  .archive .bio.second {
    float: left;
  }
  /* line 66, ../scss/breakpoints/_1000up.scss */
  .archive .bio.second + .archive .bio {
    clear: none;
  }
  /* line 70, ../scss/breakpoints/_1000up.scss */
  .archive .bio.third {
    margin-right: 0;
    float: right;
  }
  /* line 74, ../scss/breakpoints/_1000up.scss */
  .archive .bio.third + .archive .bio {
    clear: both;
  }

  /* line 81, ../scss/breakpoints/_1000up.scss */
  .related-items .bio, .related-items.related-gallery .gallery {
    width: 144px;
    margin-right: 3.125%;
    float: left;
    clear: none !important;
  }
  /* line 87, ../scss/breakpoints/_1000up.scss */
  .related-items .bio.last, .related-items.related-gallery .gallery.last {
    margin-right: 0;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  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.
*********************/
@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.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
