@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, basic classes, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *	user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *	and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *	`input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *	(include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf, .comment-respond {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
    content: "";
    display: block; }
  .clearfix:after, .cf:after, .comment-respond:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
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('../fonts/font-name.eot');
		src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
			 url('../fonts/font-name.woff') format('woff'),
			 url('../fonts/font-name.ttf') format('truetype'),
			 url('../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
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: 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: Accessibility Stylesheet

******************************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0; }

/******************************************************************
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? */
/*********************
WINDOW WIDTH SIZING
*********************/
/*********************
ANIMATION
*********************/
/*********************
CIRCLE & TRIANGLE
*********************/
/******************************************************************
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.

******************************************************************/
.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) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of2, .m-2of4, .m-3of6, .m-4of8, .m-5of10, .m-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3, .m-2of6, .m-3of9, .m-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3, .m-4of6, .m-6of9, .m-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4, .m-2of8, .m-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4, .m-6of8, .m-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .m-1of5, .m-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .m-2of5, .m-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .m-3of5, .m-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .m-4of5, .m-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .m-1of6, .m-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .m-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .m-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .m-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .m-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .m-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .m-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .m-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .m-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .m-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .m-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .m-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .m-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .m-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .m-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .m-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .m-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .m-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .m-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .m-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .m-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .m-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .m-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .m-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .m-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .m-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .m-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .m-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .m-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .m-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .m-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .m-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .m-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .m-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .m-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .m-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

@media (min-width: 481px) and (max-width: 768px) {
  .h-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .h-1of2, .h-2of4, .h-3of6, .h-4of8, .h-5of10, .h-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .h-1of3, .h-2of6, .h-3of9, .h-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .h-2of3, .h-4of6, .h-6of9, .h-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .h-1of4, .h-2of8, .h-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .h-3of4, .h-6of8, .h-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .h-1of5, .h-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .h-2of5, .h-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .h-3of5, .h-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .h-4of5, .h-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .h-1of6, .h-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .h-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .h-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .h-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .h-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .h-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .h-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .h-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .h-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .h-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .h-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .h-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .h-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .h-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .h-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .h-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .h-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .h-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .h-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .h-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .h-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .h-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .h-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .h-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .h-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .h-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .h-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .h-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .h-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .h-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .h-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .h-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .h-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .h-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .h-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .h-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1079px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of2, .t-2of4, .t-3of6, .t-4of8, .t-5of10, .t-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3, .t-2of6, .t-3of9, .t-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3, .t-4of6, .t-6of9, .t-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4, .t-2of8, .t-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4, .t-6of8, .t-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5, .t-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5, .t-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5, .t-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5, .t-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .t-1of6, .t-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .t-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .t-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .t-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .t-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .t-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .t-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .t-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .t-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .t-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .t-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .t-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .t-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .t-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .t-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .t-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .t-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .t-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .t-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .t-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .t-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .t-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .t-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .t-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .t-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .t-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .t-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .t-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .t-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .t-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .t-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .t-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .t-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .t-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .t-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

/* Landscape to small desktop */
@media (min-width: 1080px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of2, .d-2of4, .d-3of6, .d-4of8, .d-5of10, .d-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3, .d-2of6, .d-3of9, .d-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3, .d-4of6, .d-6of9, .d-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4, .d-2of8, .d-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4, .d-6of8, .d-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5, .d-2of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5, .d-4of10 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5, .d-6of10 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5, .d-8of10 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6, .d-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .d-5of8 {
    float: left;
    padding-right: 0.75em;
    width: 62.5%; }
  .d-7of8 {
    float: left;
    padding-right: 0.75em;
    width: 87.5%; }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-2of9 {
    float: left;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .d-4of9 {
    float: left;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .d-5of9 {
    float: left;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .d-7of9 {
    float: left;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .d-8of9 {
    float: left;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .d-3of10 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-7of10 {
    float: left;
    padding-right: 0.75em;
    width: 70%; }
  .d-9of10 {
    float: left;
    padding-right: 0.75em;
    width: 90%; }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-2of11 {
    float: left;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .d-3of11 {
    float: left;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .d-4of11 {
    float: left;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .d-5of11 {
    float: left;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .d-6of11 {
    float: left;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .d-7of11 {
    float: left;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .d-8of11 {
    float: left;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .d-9of11 {
    float: left;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .d-10of11 {
    float: left;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .d-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.65%; }
  .d-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.1%; }
  .d-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.3%; }
  .d-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.63%; } }

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

Stylesheet: Basic Classes

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

******************************************************************/
/*********************
TEXT ALIGNS
*********************/
.text-center {
  text-align: center; }

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

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

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

/*********************
NO MARGINS
*********************/
.no-margin, .no-margins {
  margin: 0 !important; }

.no-margin-top, .no-top-margin {
  margin-top: 0 !important; }

.no-margin-right, .no-right-margin {
  margin-right: 0 !important; }

.no-margin-bottom, .no-bottom-margin {
  margin-bottom: 0 !important; }

.no-margin-left, .no-left-margin {
  margin-left: 0 !important; }

/*********************
FLOATS
*********************/
.float-right {
  float: right; }

.float-left {
  float: left; }

.float-none {
  float: none; }

.clear-both {
  clear: both; }

hr.clear-both {
  height: 0px;
  overflow: hidden;
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0; }

/*********************
STICKY
*********************/
.sticky {
  position: fixed; }
  .sticky.sticky-fixed {
    position: fixed; }

.mobile .sticky, .tablet .sticky, .firefox .sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky; }
  .mobile .sticky.sticky-fixed, .tablet .sticky.sticky-fixed, .firefox .sticky.sticky-fixed {
    position: fixed; }

/*********************
DISPLAYS
*********************/
.display-none {
  display: none; }

.display-block {
  display: block; }

.display-inline-block {
  display: inline-block; }

.display-inline {
  display: inline; }

.mobile-show, .m-show {
  display: block; }

@media screen and (min-width: 768px) {
  .mobile-show, .m-show {
    display: none; } }

@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important; }
  .m-hide {
    display: none; } }

.flex-wrap, .flex, .flex-stretch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch; }

.flex-nowrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch; }

.flex-center, .flex-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-left, .flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.flex-right, .flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.flex-centre, .flex-middle {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-around, .flex-saround, .flex-space-around, .flex-sparound {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.flex-space-between, .flex-sbetween, .flex-between, .flex-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.flex-vert, .flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

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

Stylesheet: Alert Styles

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

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

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

Stylesheet: Button Styles

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

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

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

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

*********************/
.blue-btn, .comment-reply-link, #submit, .btn--red, .blue-btn:visited, .comment-reply-link:visited, #submit:visited, .btn--red:visited,
input.button,
input.button:visited,
.button,
.button:visited,
.btn,
.btn:visited,
button,
button:visited,
input[type=image],
input[type=image]:visited,
input[type=submit],
input[type=submit]:visited,
input[type=button],
input[type=button]:visited {
  display: inline-block;
  position: relative;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  text-decoration: none;
  background-color: #333;
  color: #fff;
  font-weight: normal;
  padding: 0.25em 1em;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: background-color 0.25s ease-in-out;
  -moz-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .btn--red:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus, .btn--red:focus, .blue-btn:visited:hover, .comment-reply-link:visited:hover, #submit:visited:hover, .btn--red:visited:hover, .blue-btn:visited:focus, .comment-reply-link:visited:focus, #submit:visited:focus, .btn--red:visited:focus,
  input.button:hover,
  input.button:focus,
  input.button:visited:hover,
  input.button:visited:focus,
  .button:hover,
  .button:focus,
  .button:visited:hover,
  .button:visited:focus,
  .btn:hover,
  .btn:focus,
  .btn:visited:hover,
  .btn:visited:focus,
  button:hover,
  button:focus,
  button:visited:hover,
  button:visited:focus,
  input[type=image]:hover,
  input[type=image]:focus,
  input[type=image]:visited:hover,
  input[type=image]:visited:focus,
  input[type=submit]:hover,
  input[type=submit]:focus,
  input[type=submit]:visited:hover,
  input[type=submit]:visited:focus,
  input[type=button]:hover,
  input[type=button]:focus,
  input[type=button]:visited:hover,
  input[type=button]:visited:focus {
    color: #fff;
    text-decoration: none;
    outline: none; }
  .blue-btn:active, .comment-reply-link:active, #submit:active, .btn--red:active, .blue-btn:visited:active, .comment-reply-link:visited:active, #submit:visited:active, .btn--red:visited:active,
  input.button:active,
  input.button:visited:active,
  .button:active,
  .button:visited:active,
  .btn:active,
  .btn:visited:active,
  button:active,
  button:visited:active,
  input[type=image]:active,
  input[type=image]:visited:active,
  input[type=submit]:active,
  input[type=submit]:visited:active,
  input[type=button]:active,
  input[type=button]:visited:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    background-color: #2574a8; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    background-color: #2472a4; }

.btn--red {
  background-color: #CA0000;
  color: #fff; }
  .btn--red:hover, .btn--red:focus {
    background-color: #b60000; }
  .btn--red:active {
    background-color: #b10000; }

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

Stylesheet: Form Styles

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

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

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #444444;
  border-radius: 3px;
  vertical-align: middle;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "capitolium-news-2", Arial, Helvetica, sans-serif;
  background-color: #F7F7F7;
  -webkit-transition: background-color 0.24s ease-in-out;
  -moz-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: #ededed;
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: 97.5% center; }

/*********************
GRAVITY FORMS
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Owl Carousel

******************************************************************/
/* 
 *	Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *	Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

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

Stylesheet: fancyBox

******************************************************************/
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url("../images/fancybox/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/fancybox/fancybox_overlay.png"); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@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) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url("../images/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

/*********************
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
*********************/
body {
  font-family: "capitolium-news-2", Arial, Helvetica, sans-serif;
  font-size: 110%;
  line-height: 1.5;
  color: #444444;
  background-color: #F7F7F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body img {
    max-width: 100%;
    height: auto;
    font-size: 12PX; }

html.wf-loading #inner-header a.nav-link {
  font-size: 15px !important;
  padding: 0px; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute !important; }

.uppercase {
  text-transform: uppercase; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
.archive .each-category-description {
  margin-bottom: 35px; }

.archive .each-city-description {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  background: #fff;
  margin-bottom: 35px; }

.archive .each-city-description-padder {
  padding: 10px 25px; }

.archive #category-page-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.archive .city-photo-credit {
  text-align: center;
  font-size: 14px;
  margin-top: -5px; }

.archive .single-post-thumbnail-wrapper {
  position: relative;
  float: left;
  width: 100%; }
  .archive .single-post-thumbnail-wrapper .post-main-term {
    position: absolute;
    top: 10px;
    left: -5px;
    padding: 4px;
    text-transform: uppercase;
    color: #fff;
    background: #CA0000;
    z-index: 1;
    font-family: "Oswald", Arial, Helvetica, sans-serif; }

.archive .single-post-thumbnail {
  height: 200px;
  width: 100%;
  margin-left: 0%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden; }
  .archive .single-post-thumbnail img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    min-height: 100%;
    width: 100%;
    height: auto;
    min-width: 100%;
    max-width: none; }

.author .each-city-description-padder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.single #content {
  padding: 45px 0 0 0; }

.single #disqus_thread {
  float: left;
  width: 100%;
  padding: 15px; }

.single .hentry {
  background-color: #fff;
  border-radius: 3px; }

.single #recent-posts-bar {
  margin-top: 45px;
  padding: 0 10px; }

.single .entry-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.single .single-social-sharing {
  text-align: left; }
  .single .single-social-sharing .social {
    display: inline-block; }
    .single .single-social-sharing .social a:link, .single .single-social-sharing .social a:visited {
      padding: 5px; }
  .single .single-social-sharing.social-sharing-large {
    font-size: 2rem;
    text-align: center; }
    .single .single-social-sharing.social-sharing-large a:link, .single .single-social-sharing.social-sharing-large a:visited {
      padding: 10px; }

.single .post-thumb-credit {
  text-align: right;
  font-size: 14px; }

.single .acf-map {
  height: 250px;
  margin-bottom: 35px; }

.single .sponsor-post {
  text-align: center; }
  .single .sponsor-post img {
    max-width: 30px;
    margin: 0px;
    margin-bottom: -12px; }

.single #inner-content {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  background-color: #fff;
  float: none;
  margin: auto; }

.single .single-post-thumbnail-wrapper {
  position: relative;
  float: left;
  width: 100%; }
  .single .single-post-thumbnail-wrapper .post-main-term {
    position: absolute;
    top: 10px;
    left: -5px;
    padding: 4px;
    text-transform: uppercase;
    color: #fff;
    background: #CA0000;
    z-index: 1;
    font-family: "Oswald", Arial, Helvetica, sans-serif; }

.single .single-post-thumbnail {
  position: relative;
  height: 170px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 2px solid #CA0000;
  background: #333;
  overflow: hidden; }
  .single .single-post-thumbnail img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    min-height: 100%;
    width: auto;
    height: auto;
    min-width: 100%;
    max-width: none;
    -webkit-transition: opacity ease-in-out 0.2s;
    -o-transition: opacity ease-in-out 0.2s;
    transition: opacity ease-in-out 0.2s;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

.single .load-more-wrapper {
  margin-bottom: 35px; }

.single .signup-connect {
  border-top: 1px solid #444444;
  border-bottom: 1px solid #444444;
  padding: 25px 15px;
  margin: 25px 0; }
  .single .signup-connect .text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .single .signup-connect label {
    display: none; }
  .single .signup-connect #mc_embed_signup_scroll {
    position: relative; }
  .single .signup-connect .mc-field-group {
    float: left;
    width: 80%; }
    .single .signup-connect .mc-field-group.input-group.slide-down {
      display: none; }
      .single .signup-connect .mc-field-group.input-group.slide-down label {
        display: block; }
      .single .signup-connect .mc-field-group.input-group.slide-down li {
        list-style: none;
        float: right;
        text-align: center;
        margin-left: 19px; }
  .single .signup-connect .form-submit-div {
    float: right;
    width: 20%;
    position: absolute;
    right: 0px;
    top: 0px; }
    .single .signup-connect .form-submit-div input {
      padding: 10px 20px; }
  .single .signup-connect h4 {
    text-transform: uppercase;
    margin: 0px;
    float: left;
    font-size: 19px; }
  .single .signup-connect p {
    font-size: 12px;
    margin: 0px;
    float: left; }
  .single .signup-connect .mc-embed p {
    display: none; }

.single .large-leaderboard.inline {
  width: 120%;
  margin-left: -10%; }

.single .skyscraper-inline {
  float: none;
  margin: auto; }

.single .sjnow-recent-posts-shortcode-wrapper {
  float: left;
  width: 100%;
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .single .sjnow-recent-posts-shortcode-wrapper h4 {
    margin: 10px 0; }
  .single .sjnow-recent-posts-shortcode-wrapper .each-recent-post-shortcode .post-excerpt {
    display: none; }

.single #recent-posts-bar .each-post .post-excerpt {
  display: none !important; }

.single #recent-posts-bar .each-post.first-large-post {
  height: auto; }
  .single #recent-posts-bar .each-post.first-large-post .post-thumbnail {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 2px solid #CA0000;
    -webkit-transition: -webkit-box-shadow ease-in-out 0.2s;
    transition: -webkit-box-shadow ease-in-out 0.2s;
    -o-transition: box-shadow ease-in-out 0.2s;
    transition: box-shadow ease-in-out 0.2s;
    transition: box-shadow ease-in-out 0.2s, -webkit-box-shadow ease-in-out 0.2s; }
    .single #recent-posts-bar .each-post.first-large-post .post-thumbnail .post-main-term {
      position: absolute;
      top: 10px;
      left: -5px;
      padding: 4px;
      text-transform: uppercase;
      color: #fff;
      background: #CA0000;
      z-index: 1;
      font-family: "Oswald", Arial, Helvetica, sans-serif; }
  .single #recent-posts-bar .each-post.first-large-post .post-information {
    padding: 15px;
    font-size: 14px;
    position: relative;
    background: #fff;
    display: block; }
    .single #recent-posts-bar .each-post.first-large-post .post-information a:link, .single #recent-posts-bar .each-post.first-large-post .post-information a:visited {
      color: #444444;
      text-decoration: none; }
      .single #recent-posts-bar .each-post.first-large-post .post-information a:link.author-link, .single #recent-posts-bar .each-post.first-large-post .post-information a:visited.author-link {
        color: #CA0000; }
    .single #recent-posts-bar .each-post.first-large-post .post-information a.event-save:link, .single #recent-posts-bar .each-post.first-large-post .post-information a.event-save:visited, .single #recent-posts-bar .each-post.first-large-post .post-information a.event-export:link, .single #recent-posts-bar .each-post.first-large-post .post-information a.event-export:visited, .single #recent-posts-bar .each-post.first-large-post .post-information a.event-saved:link, .single #recent-posts-bar .each-post.first-large-post .post-information a.event-saved:visited {
      background: #CA0000;
      color: #fff;
      padding: 2px;
      margin-left: 4px; }
    .single #recent-posts-bar .each-post.first-large-post .post-information h4 {
      text-transform: uppercase;
      margin: 0px;
      font-size: 18px; }
    .single #recent-posts-bar .each-post.first-large-post .post-information .post-excerpt {
      display: block; }
      .single #recent-posts-bar .each-post.first-large-post .post-information .post-excerpt p {
        margin-top: 0px; }
    .single #recent-posts-bar .each-post.first-large-post .post-information .post-additional-info {
      color: #808080;
      display: block; }

.single #sidebar1 .adrotate_widgets:last-child, .single #sidebar1 .bsaProCarousel:last-child {
  position: -webkit-sticky;
  position: sticky;
  top: 100px; }

.logged-in.single #content {
  padding: 0; }

.bsaProCarousel {
  margin: 0 auto;
  float: none; }

.signup-connect .text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.signup-connect label {
  display: none; }

.signup-connect #mc_embed_signup_scroll {
  position: relative; }

.signup-connect .mc-field-group {
  float: left;
  width: 80%; }
  .signup-connect .mc-field-group.input-group.slide-down {
    display: none; }
    .signup-connect .mc-field-group.input-group.slide-down ul {
      text-align: center; }
    .signup-connect .mc-field-group.input-group.slide-down label {
      display: block; }
    .signup-connect .mc-field-group.input-group.slide-down li {
      list-style: none;
      float: none;
      text-align: center;
      margin: 0 5%;
      display: inline-block; }

.signup-connect .form-submit-div {
  float: right;
  width: 20%;
  position: absolute;
  right: 0px;
  top: 0px; }
  .signup-connect .form-submit-div input {
    padding: 10px 20px; }

.signup-connect h4 {
  text-transform: uppercase;
  margin: 0px;
  float: left;
  font-size: 19px; }

.signup-connect p {
  font-size: 12px;
  margin: 0px;
  float: left; }

.signup-connect .mc-embed p {
  display: none; }

.page-template-single-plain-php #content, .page-template-default:not(.home) #content, .error404 #content, .page-template-page-profile #content, .page-template-page-team #content, .page-template-page-sitemap #content {
  padding-top: 0px; }

.page-template-single-plain-php #inner-content, .page-template-default:not(.home) #inner-content, .error404 #inner-content, .page-template-page-profile #inner-content, .page-template-page-team #inner-content, .page-template-page-sitemap #inner-content {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  max-width: 95%;
  background-color: #fff;
  float: none;
  margin: auto;
  padding-top: 45px; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto; }

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.text-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto; }

.red-bg {
  background: #CA0000; }

.white-bg {
  background: #fff; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #CA0000;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #970000; }
  a:link, a:visited:link {
    /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-weight: 700;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em; }

h2, .h2 {
  font-size: 2em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

h3, .h3 {
  font-size: 1.75em; }

h4, .h4 {
  font-size: 1.55em;
  line-height: 1.25em; }

h5, .h5 {
  font-size: 1.25em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px; }

/*********************
HEADER STYLES
*********************/
#header, .header {
  float: left;
  width: 100%; }
  #header #inner-header, .header #inner-header {
    -webkit-transition: max-height ease-in-out 0.4s;
    -o-transition: max-height ease-in-out 0.4s;
    transition: max-height ease-in-out 0.4s;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 10;
    background: #CA0000;
    width: inherit; }
    #header #inner-header .header-wrapper, .header #inner-header .header-wrapper {
      padding-right: 0; }
  #header #search-toggle.active, .header #search-toggle.active {
    background: #CA0000;
    color: #fff; }
  #header #search-form-wrapper, .header #search-form-wrapper {
    position: relative;
    right: 0;
    top: 100%;
    background: #CA0000;
    width: 100%;
    max-width: 0px;
    overflow: hidden;
    -webkit-transition: width ease-in-out 0.2s;
    -o-transition: width ease-in-out 0.2s;
    transition: width ease-in-out 0.2s;
    display: none; }
    #header #search-form-wrapper.active, .header #search-form-wrapper.active {
      max-width: 100%;
      display: block; }
    #header #search-form-wrapper div, .header #search-form-wrapper div {
      margin: 5px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      float: right; }
      #header #search-form-wrapper div input, .header #search-form-wrapper div input {
        margin-bottom: 0px; }
  #header #social-toggle, .header #social-toggle {
    text-transform: uppercase;
    color: #fff;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    text-align: right;
    cursor: pointer;
    padding: 15px 0px;
    float: right;
    background: #CA0000;
    text-align: center;
    font-weight: 700;
    font-size: 16px; }
    #header #social-toggle:active, .header #social-toggle:active {
      background: #b10000; }
  #header .social-wrapper, .header .social-wrapper {
    text-align: center;
    max-height: 0px;
    overflow: hidden;
    background: #F7F7F7;
    border-bottom: 1px solid #ccc; }
    #header .social-wrapper.active, .header .social-wrapper.active {
      max-height: 100%; }
    #header .social-wrapper .social, .header .social-wrapper .social {
      display: inline-block;
      padding: 5px 10px;
      color: #CA0000;
      -webkit-transition: background ease-in-out 0.2s;
      -o-transition: background ease-in-out 0.2s;
      transition: background ease-in-out 0.2s; }
      #header .social-wrapper .social:hover, .header .social-wrapper .social:hover {
        background: #F7F7F7; }
      #header .social-wrapper .social.log-in, .header .social-wrapper .social.log-in {
        color: #fff;
        background: #CA0000; }
        #header .social-wrapper .social.log-in:hover, .header .social-wrapper .social.log-in:hover {
          background: #b10000; }
  #header a.header-advertise-link:link, #header a.header-advertise-link:visited, .header a.header-advertise-link:link, .header a.header-advertise-link:visited {
    color: #808080;
    text-transform: uppercase;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    text-decoration: none; }

#logo {
  background: #CA0000;
  width: 100%;
  text-align: center; }
  #logo img {
    max-height: 34px;
    float: left; }
  #logo a {
    color: #fff;
    padding: 10px;
    float: left;
    font-size: 23px;
    text-transform: uppercase;
    line-height: 34px;
    -webkit-transition: padding ease-in-out 0.10s;
    -o-transition: padding ease-in-out 0.10s;
    transition: padding ease-in-out 0.10s; }

/*********************
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.
*/
#active-nav {
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s; }
  #active-nav.active {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%; }

#toggle-navigation {
  position: relative;
  float: left;
  height: 40px;
  width: 45px;
  cursor: pointer;
  z-index: 10;
  left: 10px;
  top: 6px;
  margin-right: 10px; }
  #toggle-navigation span {
    width: 100%;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    border-radius: 2px; }
  #toggle-navigation::before, #toggle-navigation::after {
    width: 100%;
    height: 6px;
    background: #fff;
    content: '';
    position: absolute;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    border-radius: 2px; }
  #toggle-navigation::before {
    top: 5px; }
  #toggle-navigation::after {
    bottom: 5px; }
  #toggle-navigation.active span {
    display: none; }
  #toggle-navigation.active::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 19px; }
  #toggle-navigation.active::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 15px; }

nav[role="navigation"] {
  position: fixed;
  background: #fff;
  z-index: 10;
  left: -99999px;
  /* end .nav */ }
  nav[role="navigation"].show {
    visibility: visible;
    left: auto;
    max-height: 100%;
    overflow: scroll; }
  nav[role="navigation"] .nav {
    border-bottom: 0;
    margin: 0;
    /* end .menu li */
    /* highlight current page */
    /* end current highlighters */ }
    nav[role="navigation"] .nav li {
      width: 100%;
      border-bottom: 1px solid #F7F7F7;
      /*
			so you really have to rethink your dropdowns for mobile.
			you don't want to have it expand too much because the
			screen is so small. How you manage your menu should
			depend on the project. Here's some great info on it:
			http://www.alistapart.com/articles/organizing-mobile/
			*/ }
      nav[role="navigation"] .nav li.has-children .children-dropdown {
        float: right;
        -webkit-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s;
        padding: 10px 25px;
        cursor: pointer; }
        nav[role="navigation"] .nav li.has-children .children-dropdown.active {
          -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
      nav[role="navigation"] .nav li div.header-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
      nav[role="navigation"] .nav li a.nav-link {
        display: block;
        color: #444444;
        text-decoration: none;
        padding: 0.75em;
        text-transform: uppercase;
        font-family: "Oswald", Arial, Helvetica, sans-serif;
        font-size: 18px; }
        nav[role="navigation"] .nav li a.nav-link:active {
          color: #444444;
          background: #CA0000; }
      nav[role="navigation"] .nav li h4.uppercase {
        font-size: 24px;
        text-transform: uppercase;
        margin: 10px 0px;
        color: #444444; }
      nav[role="navigation"] .nav li div.sub-menu,
      nav[role="navigation"] .nav li ul.sub-menu,
      nav[role="navigation"] .nav li ul.children {
        max-height: 0px;
        overflow: hidden;
        -webkit-transition: max-height ease-in-out 0.2s;
        -o-transition: max-height ease-in-out 0.2s;
        transition: max-height ease-in-out 0.2s;
        background: #F7F7F7; }
        nav[role="navigation"] .nav li div.sub-menu.active,
        nav[role="navigation"] .nav li ul.sub-menu.active,
        nav[role="navigation"] .nav li ul.children.active {
          max-height: 100%; }
        nav[role="navigation"] .nav li div.sub-menu .wrap,
        nav[role="navigation"] .nav li ul.sub-menu .wrap,
        nav[role="navigation"] .nav li ul.children .wrap {
          padding: 15px; }
        nav[role="navigation"] .nav li div.sub-menu .popular-posts-wrapper .each-post,
        nav[role="navigation"] .nav li ul.sub-menu .popular-posts-wrapper .each-post,
        nav[role="navigation"] .nav li ul.children .popular-posts-wrapper .each-post {
          font-size: 14px; }
          nav[role="navigation"] .nav li div.sub-menu .popular-posts-wrapper .each-post:nth-child(3n),
          nav[role="navigation"] .nav li ul.sub-menu .popular-posts-wrapper .each-post:nth-child(3n),
          nav[role="navigation"] .nav li ul.children .popular-posts-wrapper .each-post:nth-child(3n) {
            display: none; }
          nav[role="navigation"] .nav li div.sub-menu .popular-posts-wrapper .each-post .each-post-information h4,
          nav[role="navigation"] .nav li ul.sub-menu .popular-posts-wrapper .each-post .each-post-information h4,
          nav[role="navigation"] .nav li ul.children .popular-posts-wrapper .each-post .each-post-information h4 {
            font-size: 14px; }
        nav[role="navigation"] .nav li div.sub-menu .city-wrapper,
        nav[role="navigation"] .nav li ul.sub-menu .city-wrapper,
        nav[role="navigation"] .nav li ul.children .city-wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
        nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post,
        nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post,
        nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post {
          width: 49%;
          margin-right: 2%; }
          nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post:nth-child(2n),
          nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post:nth-child(2n),
          nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post:nth-child(2n) {
            margin-right: 0px; }
          nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post .each-post-information h4,
          nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post .each-post-information h4,
          nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post .each-post-information h4 {
            font-size: 14px; }
          nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post .post-additional-info,
          nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post .post-additional-info,
          nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post .post-additional-info {
            font-size: 12px; }
          nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post .post-thumbnail,
          nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post .post-thumbnail,
          nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post .post-thumbnail {
            height: 115px; }
        nav[role="navigation"] .nav li div.sub-menu li a,
        nav[role="navigation"] .nav li ul.sub-menu li a,
        nav[role="navigation"] .nav li ul.children li a {
          padding-left: 30px; }
        nav[role="navigation"] .nav li div.sub-menu .button-list .btn,
        nav[role="navigation"] .nav li ul.sub-menu .button-list .btn,
        nav[role="navigation"] .nav li ul.children .button-list .btn {
          width: 100%;
          margin-bottom: 15px;
          font-family: "Oswald", Arial, Helvetica, sans-serif; }
        nav[role="navigation"] .nav li div.sub-menu .each-city-button,
        nav[role="navigation"] .nav li ul.sub-menu .each-city-button,
        nav[role="navigation"] .nav li ul.children .each-city-button {
          background-size: cover;
          background-position: center center;
          background-repeat: no-repeat;
          font-size: 18px;
          width: 100%;
          text-align: center;
          padding: 15px;
          margin-bottom: 20px;
          -webkit-transition: -webkit-box-shadow ease-in-out 0.2s;
          transition: -webkit-box-shadow ease-in-out 0.2s;
          -o-transition: box-shadow ease-in-out 0.2s;
          transition: box-shadow ease-in-out 0.2s;
          transition: box-shadow ease-in-out 0.2s, -webkit-box-shadow ease-in-out 0.2s;
          font-family: "Oswald", Arial, Helvetica, sans-serif;
          -webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2); }
          nav[role="navigation"] .nav li div.sub-menu .each-city-button:hover,
          nav[role="navigation"] .nav li ul.sub-menu .each-city-button:hover,
          nav[role="navigation"] .nav li ul.children .each-city-button:hover {
            -webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
            box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4); }

/*********************
POSTS & CONTENT STYLES
*********************/
#container {
  float: left;
  width: 100%; }

#content {
  float: left;
  width: 100%;
  padding: 45px 15px 0px 15px;
  overflow: hidden; }

.hentry header {
  padding: 1.5em; }

.hentry footer {
  padding: 1.5em; }
  .hentry footer p {
    margin: 0; }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
  text-transform: uppercase;
  font-size: 24px; }

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  margin: 0;
  padding: 15px 0; }
  .byline a:link, .byline a:visited {
    text-decoration: none; }

header .byline {
  padding: 15px 0 0 0;
  float: none; }

/* entry content */
.entry-content {
  padding: 0 1em 0;
  /*
	image alignment on a screen this size may be
	a bit difficult. It's set to start aligning
	and floating images at the next breakpoint,
	but it's up to you. Feel free to change it up.
	*/ }
  .entry-content .responsive-video {
    height: 0;
    margin: 0 0 1.5em;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative; }
    .entry-content .responsive-video iframe {
      height: 100%;
      left: 0;
      position: absolute;
      width: 100%; }
  .entry-content p {
    margin: 0 0 1.5em; }
  .entry-content ul {
    list-style-type: disc;
    list-style-position: outside; }
    .entry-content ul.none, .entry-content ul.none ul {
      list-style-type: none;
      list-style-position: outside; }
      .entry-content ul.none li, .entry-content ul.none ul li {
        margin-left: 0; }
    .entry-content ul.disc, .entry-content ul.disc ul {
      list-style-type: disc;
      list-style-position: outside; }
    .entry-content ul.circle, .entry-content ul.circle ul {
      list-style-type: circle;
      list-style-position: outside; }
    .entry-content ul.square, .entry-content ul.square ul {
      list-style-type: square;
      list-style-position: outside; }
    .entry-content ul ul {
      margin-top: 0; }
    .entry-content ul li {
      margin-bottom: 0em;
      margin-left: 18px; }
  .entry-content ol {
    list-style-type: decimal;
    list-style-position: outside; }
    .entry-content ol.none, .entry-content ol.none ol {
      list-style-type: none;
      list-style-position: outside; }
      .entry-content ol.none li, .entry-content ol.none ol li {
        margin-left: 0; }
    .entry-content ol.alpha, .entry-content ol.alpha ol {
      list-style-type: upper-alpha;
      list-style-position: outside; }
    .entry-content ol.num, .entry-content ol.num ol {
      list-style-type: decimal;
      list-style-position: outside; }
    .entry-content ol ol {
      margin-top: 0; }
    .entry-content ol li {
      margin-bottom: 0em;
      margin-left: 18px; }
  .entry-content table {
    width: 100%;
    border: 1px solid #808080;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #9fa6b4;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr {
    border-bottom: 1px solid #808080; }
    .entry-content tr:nth-child(even) {
      background-color: #F7F7F7; }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #808080; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    background-color: #F7F7F7;
    border-bottom: 1px solid #808080;
    border-right: 1px solid #808080; }
    .entry-content th:last-child {
      border-right: 0; }
  .entry-content blockquote {
    margin: 0 0 1.5em 0.75em;
    padding: 0.75em;
    border-left: 3px solid #444444;
    color: #444444;
    background: #F7F7F7; }
    .entry-content blockquote p:last-of-type {
      margin-bottom: 0px; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  .entry-content img {
    margin: 0 0 1.5em 0;
    max-width: 100%;
    height: auto; }
    .entry-content img.ui-datepicker-trigger {
      margin: 0px; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: #333;
    color: #F7F7F7;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: right; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0; }

video .cover, img .cover, .cover, video .bg, img .bg, .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  max-height: none;
  opacity: .5;
  z-index: 5;
  margin: 0; }

video .cover, img .cover, .cover {
  opacity: 1; }

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden; }
  .overlay.show {
    visibility: visible;
    opacity: 1; }
  .overlay.black {
    background-color: rgba(51, 51, 51, 0.8);
    color: #fff; }

.ui-datepicker-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .ui-datepicker-title select {
    margin-right: 5px; }

.toggle-terms h3:after {
  padding-left: .25em; }

.toggle-terms h3.up:after {
  content: "▴"; }

.toggle-terms h3.down:after {
  content: "▾"; }

#loader {
  text-align: center; }
  #loader img {
    max-width: 50px; }

#load-more {
  background: #CA0000;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  padding: 10px 15px;
  float: none;
  margin: auto;
  max-width: 250px;
  width: 100%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-size: 18px; }
  #load-more:hover {
    background: #b10000; }
  #load-more:active {
    background: #a60000; }

/*********************
SAVE POST TO PROFILE STYLE
*********************/
#post-save-profile {
  width: 100%;
  margin: 45px 0px;
  text-align: center; }
  #post-save-profile a:link, #post-save-profile a:visited, #post-save-profile a {
    width: 80%;
    margin: 10px 10%;
    float: left;
    color: #fff;
    background: #444444;
    padding: 10px 15px;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    text-decoration: none;
    border: 1px solid #fff;
    text-transform: none; }
    #post-save-profile a:link i, #post-save-profile a:visited i, #post-save-profile a i {
      position: relative;
      -webkit-transition: all ease-in-out 0.2s;
      -o-transition: all ease-in-out 0.2s;
      transition: all ease-in-out 0.2s;
      margin-left: 15px; }
    #post-save-profile a:link:hover, #post-save-profile a:visited:hover, #post-save-profile a:hover {
      background: #373737; }

/*********************
EVENT CALENDAR STYLES
*********************/
#event-calendar {
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5); }
  #event-calendar .fc-header-toolbar {
    display: none; }
  #event-calendar .fc-head table {
    margin-bottom: 0px;
    font-size: 12px;
    color: #808080; }
  #event-calendar .fc table {
    margin-bottom: 0px; }
  #event-calendar .fc-day-grid-event {
    height: 2px;
    border-radius: 0px;
    margin-bottom: 1px;
    background: #CA0000;
    border: none; }
    #event-calendar .fc-day-grid-event .fc-content {
      display: none; }
  #event-calendar .fc-unthemed thead {
    border-color: #F7F7F7; }
  #event-calendar th {
    background: none; }
  #event-calendar tr {
    border-bottom: 0px; }
    #event-calendar tr:nth-child(2n) {
      background: none; }
  #event-calendar td {
    border-right: 1px solid;
    border-color: #F7F7F7; }
    #event-calendar td.fc-day:hover {
      background: rgba(0, 0, 0, 0.05); }
    #event-calendar td.fc-today {
      background: none; }
    #event-calendar td.fc-state-highlight {
      background: rgba(0, 0, 0, 0.05); }
  #event-calendar .fc-scroller {
    overflow: visible !important;
    height: auto !important; }
  #event-calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    font-size: 12px; }
  #event-calendar .fc-row .fc-bg {
    z-index: 5; }

.page-template-page-calendar .each-city-description {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  background: #fff;
  margin-bottom: 35px;
  padding: 25px; }

.page-template-page-calendar .post-save-meta {
  float: right;
  text-align: right; }

.page-template-page-calendar .no-events {
  display: none; }

.page-template-page-calendar .event-data {
  display: none; }

.page-template-page-calendar .flex-event-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.page-template-page-calendar .updated-calendar-header {
  display: none; }

.page-template-page-calendar .calendar-header {
  background: #CA0000;
  color: #fff;
  text-align: center;
  font-size: 18px;
  float: left;
  width: 100%;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .page-template-page-calendar .calendar-header .last-month, .page-template-page-calendar .calendar-header .next-month {
    padding: 5px 15px;
    cursor: pointer; }
    .page-template-page-calendar .calendar-header .last-month:hover, .page-template-page-calendar .calendar-header .next-month:hover {
      background: #b10000; }
  .page-template-page-calendar .calendar-header .last-month {
    float: left; }
  .page-template-page-calendar .calendar-header .next-month {
    float: right; }
  .page-template-page-calendar .calendar-header span {
    padding: 5px 15px; }

.page-template-page-calendar .calendar-wrapper {
  margin-bottom: 35px; }

.page-template-page-calendar .month-calendar, .page-template-page-calendar .day-event-list, .page-template-page-calendar .months-event-list {
  position: relative; }
  .page-template-page-calendar .month-calendar .calendar-loader, .page-template-page-calendar .day-event-list .calendar-loader, .page-template-page-calendar .months-event-list .calendar-loader {
    background-color: rgba(255, 255, 255, 0.4);
    background-image: url(../images/ripple.svg);
    background-size: 50px 50px;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 9; }

.page-template-page-calendar .months-event-list .month-navi {
  padding-right: 0px;
  font-family: "Oswald", Arial, Helvetica, sans-serif; }

.page-template-page-calendar .months-event-list .each-month-nav {
  background: #CA0000;
  color: #fff;
  border-right: 1px solid #fff;
  padding: 15px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer; }
  .page-template-page-calendar .months-event-list .each-month-nav:last-of-type {
    border-right: 0px; }
  .page-template-page-calendar .months-event-list .each-month-nav:hover {
    background: #b10000; }

.page-template-page-calendar .months-event-list h2 {
  font-size: 45px;
  text-transform: uppercase;
  margin: 0px 0px 25px 0px; }

.page-template-page-calendar .day-event-list {
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  padding: 15px; }
  .page-template-page-calendar .day-event-list.no-events-wrapper div.no-events {
    display: block; }
  .page-template-page-calendar .day-event-list h4.uppercase {
    text-transform: uppercase;
    margin: 0px 0px 15px 0px; }
  .page-template-page-calendar .day-event-list .each-day-event {
    border-bottom: 1px solid #F7F7F7;
    padding-bottom: 10px;
    margin-bottom: 10px; }
    .page-template-page-calendar .day-event-list .each-day-event h4 {
      margin: 0px; }
    .page-template-page-calendar .day-event-list .each-day-event:last-of-type {
      border-bottom: 0px; }
    .page-template-page-calendar .day-event-list .each-day-event a:link, .page-template-page-calendar .day-event-list .each-day-event a:visited {
      color: #444444;
      text-decoration: none; }
    .page-template-page-calendar .day-event-list .each-day-event .post-save-profile {
      text-align: right; }
      .page-template-page-calendar .day-event-list .each-day-event .post-save-profile a:link, .page-template-page-calendar .day-event-list .each-day-event .post-save-profile a:visited {
        margin-left: 4px;
        text-decoration: none; }

/*********************
AD STYLES
*********************/
.large-leaderboard {
  text-align: center;
  margin-bottom: 35px; }
  .large-leaderboard img {
    margin-bottom: 0px; }
  .large-leaderboard .bsaProItemInner__html div {
    margin: auto;
    float: none; }

/*********************
BASIC EACH POST AD STYLES
*********************/
.each-post {
  position: relative;
  padding: 0px;
  float: left;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 35px; }
  .each-post.group-type {
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    overflow: visible; }
  .each-post a:link, .each-post a:visited {
    color: #444444; }
  .each-post:hover .post-thumbnail img {
    opacity: 0.8; }
  .each-post .post-thumbnail-wrapper .post-main-term {
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    position: absolute;
    top: 10px;
    left: -5px;
    padding: 4px;
    text-transform: uppercase;
    color: #fff;
    background: #CA0000;
    z-index: 9;
    font-size: 14px; }
  .each-post .post-thumbnail {
    position: relative;
    height: 170px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 2px solid #CA0000;
    background: #333;
    overflow: hidden; }
    .each-post .post-thumbnail img {
      position: absolute;
      margin: auto;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      min-height: 100%;
      width: auto;
      height: auto;
      min-width: 100%;
      max-width: 100%;
      -webkit-transition: opacity ease-in-out 0.2s;
      -o-transition: opacity ease-in-out 0.2s;
      transition: opacity ease-in-out 0.2s;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
  .each-post .post-information {
    padding: 15px;
    font-size: 14px; }
    .each-post .post-information a:link, .each-post .post-information a:visited {
      color: #444444;
      text-decoration: none; }
      .each-post .post-information a:link.author-link, .each-post .post-information a:visited.author-link {
        color: #CA0000; }
    .each-post .post-information .post-save-profile {
      text-align: right; }
    .each-post .post-information a.event-save:link, .each-post .post-information a.event-save:visited, .each-post .post-information a.event-export:link, .each-post .post-information a.event-export:visited, .each-post .post-information a.event-saved:link, .each-post .post-information a.event-saved:visited {
      background: #CA0000;
      color: #fff;
      padding: 1px 3px;
      margin-left: 4px; }
      .each-post .post-information a.event-save:link img, .each-post .post-information a.event-save:visited img, .each-post .post-information a.event-export:link img, .each-post .post-information a.event-export:visited img, .each-post .post-information a.event-saved:link img, .each-post .post-information a.event-saved:visited img {
        max-width: 20px; }
    .each-post .post-information h4 {
      text-transform: uppercase;
      margin: 0px; }
    .each-post .post-information .post-excerpt {
      display: none; }
      .each-post .post-information .post-excerpt p {
        margin-top: 0px; }
    .each-post .post-information .post-additional-info {
      color: #808080; }

/*********************
TEAM MEMBERS PAGE
*********************/
#team-members-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  #team-members-loop .each-team-member {
    background: #fff;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px; }
    #team-members-loop .each-team-member img {
      margin-bottom: 5px; }
    #team-members-loop .each-team-member .team-info {
      padding: 15px; }
    #team-members-loop .each-team-member h4.uppercase {
      margin-top: 0px;
      margin-bottom: 5px; }
    #team-members-loop .each-team-member .team-twitter {
      float: right; }
    #team-members-loop .each-team-member p {
      margin-bottom: 0px; }

/*********************
EVENT SUB NAV BAR
*********************/
#event-subnav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 45px; }

/*********************
FEATURED POSTS BAR
*********************/
#featured-posts-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  z-index: 9;
  position: relative; }
  #featured-posts-bar .featured-post-bg {
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    background-color: #333; }
  #featured-posts-bar .each-featured-post {
    display: none;
    position: relative;
    border: 1px solid #fff; }
    #featured-posts-bar .each-featured-post:first-child {
      display: block; }
    #featured-posts-bar .each-featured-post:hover .featured-post-bg {
      -webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
      box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4); }
    #featured-posts-bar .each-featured-post a:link, #featured-posts-bar .each-featured-post a:visited {
      color: #fff;
      text-decoration: none; }
    #featured-posts-bar .each-featured-post .post-information {
      position: absolute;
      bottom: -2px;
      left: 0px;
      right: 0px;
      top: auto;
      padding: 10px 15px;
      background-color: rgba(202, 0, 0, 0.5);
      -webkit-transition: all ease-in-out 0.2s;
      -o-transition: all ease-in-out 0.2s;
      transition: all ease-in-out 0.2s;
      text-transform: uppercase;
      min-height: 45%;
      color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      #featured-posts-bar .each-featured-post .post-information h4 {
        margin: 0px;
        position: relative;
        -webkit-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s;
        font-size: 18px; }
      #featured-posts-bar .each-featured-post .post-information .post-additional-info {
        -webkit-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s;
        color: #fff;
        text-transform: none;
        font-size: 14px;
        position: relative; }

/*********************
POPULAR POSTS SUB MENU
*********************/
.each-popular-post::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #808080;
  background-image: url(../images/trending.png);
  background-size: 10px auto;
  width: 15px;
  height: 15px;
  background-position: center center;
  background-repeat: no-repeat; }

.popular-posts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .popular-posts-wrapper .each-post {
    width: 48%;
    margin-right: 2%; }
    .popular-posts-wrapper .each-post:nth-child(2n) {
      margin-right: 0px; }
    .popular-posts-wrapper .each-post .post-thumbnail {
      height: 115px; }
    .popular-posts-wrapper .each-post .post-information {
      padding: 10px; }
    .popular-posts-wrapper .each-post .post-additional-info {
      display: none; }
    .popular-posts-wrapper .each-post .post-excerpt {
      display: none; }
    .popular-posts-wrapper .each-post h4 {
      font-size: 18px; }

/*********************
RECENT POSTS BAR
*********************/
#recent-posts-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  #recent-posts-bar .each-post .post-thumbnail .post-main-term {
    position: absolute;
    top: 10px;
    left: -5px;
    padding: 4px;
    text-transform: uppercase;
    color: #fff;
    background: #CA0000;
    font-family: "Oswald", Arial, Helvetica, sans-serif; }
  #recent-posts-bar .each-post.first-large-post {
    height: 365px; }
    #recent-posts-bar .each-post.first-large-post .post-thumbnail-wrapper {
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      right: 0; }
    #recent-posts-bar .each-post.first-large-post .post-thumbnail {
      height: 100%;
      border-top: 2px solid #CA0000; }
    #recent-posts-bar .each-post.first-large-post .post-information {
      position: absolute;
      bottom: 0px;
      background: #CA0000; }
      #recent-posts-bar .each-post.first-large-post .post-information a:link, #recent-posts-bar .each-post.first-large-post .post-information a:visited {
        color: #444444;
        text-decoration: none; }
      #recent-posts-bar .each-post.first-large-post .post-information h4 {
        text-transform: uppercase;
        font-size: 34px;
        padding: 0px 5px;
        margin: 0px;
        color: #fff; }
        #recent-posts-bar .each-post.first-large-post .post-information h4 span {
          background: #fff;
          float: left;
          margin: 0 0 5px 0;
          padding: 0px  7px; }
      #recent-posts-bar .each-post.first-large-post .post-information .post-additional-info, #recent-posts-bar .each-post.first-large-post .post-information .post-excerpt {
        display: none; }

/*********************
FEATURED AD
*********************/
#featured-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  #featured-event .each-post {
    height: 365px;
    margin-bottom: 35px; }
    #featured-event .each-post.first-large-post {
      width: 100%;
      margin-right: 0px; }
    #featured-event .each-post .post-thumbnail {
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      right: 0; }
      #featured-event .each-post .post-thumbnail .post-main-term {
        position: absolute;
        top: 10px;
        left: -5px;
        padding: 4px;
        text-transform: uppercase;
        color: #fff;
        font-family: "Oswald", Arial, Helvetica, sans-serif;
        background: #CA0000; }
    #featured-event .each-post .post-information {
      position: absolute;
      bottom: 0px; }
      #featured-event .each-post .post-information a:link, #featured-event .each-post .post-information a:visited {
        color: #444444;
        text-decoration: none; }
      #featured-event .each-post .post-information h4 {
        text-transform: uppercase;
        font-size: 24px;
        max-width: 70%;
        padding: 0px 5px;
        margin: 0px; }
        #featured-event .each-post .post-information h4 span {
          background: #fff;
          float: left;
          margin: 0 0 15px 0;
          padding: 0px  7px; }

/*********************
RECENT NEWS BAR
*********************/
#news-box-wrapper {
  position: relative;
  float: left;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  border-top: 2px solid #CA0000;
  margin-bottom: 35px;
  padding-bottom: 15px; }
  #news-box-wrapper:hover .load-more-wrapper {
    max-height: 999px; }
  #news-box-wrapper .load-more-wrapper {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s; }
  #news-box-wrapper h3.box-tab {
    color: #fff;
    background: #CA0000;
    padding: 10px 15px;
    margin-top: 0px;
    position: relative;
    float: left;
    left: 25px;
    text-transform: uppercase;
    font-size: 21px; }
  #news-box-wrapper .news-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px 25px; }
  #news-box-wrapper .each-news-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
    -webkit-box-shadow: none;
    box-shadow: none; }
    #news-box-wrapper .each-news-post::after {
      content: '';
      border-bottom: 1px solid #F7F7F7;
      width: 80%;
      margin-left: 10%;
      margin-top: 10px; }
    #news-box-wrapper .each-news-post a:link, #news-box-wrapper .each-news-post a:visited {
      color: #444444;
      text-decoration: none; }
    #news-box-wrapper .each-news-post .author-info {
      font-size: 14px; }
    #news-box-wrapper .each-news-post h4 {
      margin: 0px;
      font-size: 24px; }

/*********************
EVENTS BOX WRAPPER
*********************/
#events-box-wrapper {
  background-image: url(../images/604-now-events-bar.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 35px;
  font-family: "Oswald", Arial, Helvetica, sans-serif; }
  #events-box-wrapper .each-events {
    border: 1px solid #fff;
    color: #fff;
    position: relative;
    text-align: center;
    text-transform: uppercase; }
    #events-box-wrapper .each-events a:link, #events-box-wrapper .each-events a:visited {
      padding: 25px;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      -webkit-transition: all ease-in-out 0.2s;
      -o-transition: all ease-in-out 0.2s;
      transition: all ease-in-out 0.2s;
      color: #fff;
      text-decoration: none;
      background: rgba(0, 0, 0, 0.25);
      font-size: 24px; }
      #events-box-wrapper .each-events a:link span, #events-box-wrapper .each-events a:visited span {
        margin-right: 3px; }
      #events-box-wrapper .each-events a:link:hover, #events-box-wrapper .each-events a:visited:hover {
        background: rgba(0, 0, 0, 0.5); }

/*********************
RECENT CATEGORY WRAPPER
*********************/
.recent-category-wrapper, #category-page-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 2px solid;
  position: relative; }
  .recent-category-wrapper h3.box-tab, #category-page-index h3.box-tab {
    position: absolute;
    margin: 0px;
    padding: 5px 15px;
    text-transform: uppercase;
    color: #fff;
    background: #CA0000;
    z-index: 9;
    left: 15px;
    right: 15px;
    font-size: 1.35rem; }
  .recent-category-wrapper .each-post .post-thumbnail .post-main-term, #category-page-index .each-post .post-thumbnail .post-main-term {
    position: absolute;
    top: 10px;
    left: -5px;
    padding: 4px;
    text-transform: uppercase;
    color: #fff;
    background: #CA0000;
    font-family: "Oswald", Arial, Helvetica, sans-serif; }
  .recent-category-wrapper .each-post.first-large-post, #category-page-index .each-post.first-large-post {
    height: 365px; }
    .recent-category-wrapper .each-post.first-large-post .post-thumbnail, #category-page-index .each-post.first-large-post .post-thumbnail {
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      right: 0; }
    .recent-category-wrapper .each-post.first-large-post .post-information, #category-page-index .each-post.first-large-post .post-information {
      position: absolute;
      bottom: 0px;
      position: absolute;
      bottom: 0px;
      background: #CA0000;
      max-width: 70%; }
      .recent-category-wrapper .each-post.first-large-post .post-information a:link, .recent-category-wrapper .each-post.first-large-post .post-information a:visited, #category-page-index .each-post.first-large-post .post-information a:link, #category-page-index .each-post.first-large-post .post-information a:visited {
        color: #444444;
        text-decoration: none; }
      .recent-category-wrapper .each-post.first-large-post .post-information h4, #category-page-index .each-post.first-large-post .post-information h4 {
        text-transform: uppercase;
        font-size: 24px;
        color: #fff;
        padding: 0px 5px;
        margin: 0px; }
        .recent-category-wrapper .each-post.first-large-post .post-information h4 span, #category-page-index .each-post.first-large-post .post-information h4 span {
          background: #fff;
          float: left;
          margin: 0 0 15px 0;
          padding: 0px  7px; }
      .recent-category-wrapper .each-post.first-large-post .post-information .post-additional-info, .recent-category-wrapper .each-post.first-large-post .post-information .post-excerpt, #category-page-index .each-post.first-large-post .post-information .post-additional-info, #category-page-index .each-post.first-large-post .post-information .post-excerpt {
        display: none; }

/*********************
UPCOMING PROMOTED EVENTS WRAPPER
*********************/
#upcoming-events-wrapper {
  border-top: 2px solid #CA0000; }

/*********************
CITIES BOX
*********************/
#cities-box-wrapper {
  margin-bottom: 35px; }
  #cities-box-wrapper h3 {
    text-align: center; }
  #cities-box-wrapper .cities-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 2px solid #CA0000; }
    #cities-box-wrapper .cities-wrap .each-city {
      height: 150px;
      position: relative;
      text-transform: uppercase;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      border: 1px solid #fff;
      border-top: 0px; }
      #cities-box-wrapper .cities-wrap .each-city a:link, #cities-box-wrapper .cities-wrap .each-city a:visited {
        font-family: "Oswald", Arial, Helvetica, sans-serif;
        color: #fff;
        text-align: center;
        position: absolute;
        top: 0;
        height: 100%;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.25);
        -webkit-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-decoration: none; }
        #cities-box-wrapper .cities-wrap .each-city a:link:hover, #cities-box-wrapper .cities-wrap .each-city a:visited:hover {
          background: rgba(0, 0, 0, 0.45); }
      #cities-box-wrapper .cities-wrap .each-city h3 {
        font-size: 30px;
        margin: 0px; }

/*********************
CONTRIBUTERS PAGE
*********************/
.page-template-page-team .each-contributer {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #F7F7F7; }
  .page-template-page-team .each-contributer:last-of-type {
    border-bottom: 0px; }
  .page-template-page-team .each-contributer h4 {
    margin-top: 0px;
    margin-bottom: 10px; }

/*********************
CITY MAP BAR
*********************/
#city-map-bar {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  float: left;
  width: 100%;
  margin-bottom: 35px;
  position: relative; }
  #city-map-bar .large-map-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9; }
    #city-map-bar .large-map-overlay::after {
      font-family: FontAwesome;
      color: #fff;
      content: "\f279";
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      float: none;
      font-size: 4em;
      text-align: center;
      top: 50%;
      -webkit-transform: translateY(-85%);
      -ms-transform: translateY(-85%);
      transform: translateY(-85%); }
  #city-map-bar .map-bar-wrapper {
    position: relative; }
  #city-map-bar #landmarks-markers {
    display: none; }
  #city-map-bar .acf-map {
    height: 300px;
    margin-bottom: 0px; }
  #city-map-bar .each-post {
    margin-bottom: 0px; }
  #city-map-bar .gm-style-iw {
    top: 1px !important;
    left: 1px !important;
    width: 100% !important; }
  #city-map-bar #landmarks-filter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff; }
    #city-map-bar #landmarks-filter-wrapper span {
      padding: 20px; }
    #city-map-bar #landmarks-filter-wrapper .filter-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
    #city-map-bar #landmarks-filter-wrapper .each-filter {
      padding: 20px;
      cursor: pointer;
      -webkit-transition: all ease-in-out 0.2s;
      -o-transition: all ease-in-out 0.2s;
      transition: all ease-in-out 0.2s; }
      #city-map-bar #landmarks-filter-wrapper .each-filter:hover {
        background: #CA0000;
        color: #fff; }
      #city-map-bar #landmarks-filter-wrapper .each-filter.active {
        background: #CA0000;
        color: #fff; }

/*********************
LANDMARKS PAGE
*********************/
.page-template-page-landmarks #content {
  padding-top: 0px; }

.page-template-page-landmarks .each-city-description {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  background: #fff;
  margin-bottom: 35px;
  padding: 25px; }

.page-template-page-landmarks .large-map-wrapper {
  position: relative; }
  .page-template-page-landmarks .large-map-wrapper .acf-map {
    height: 300px;
    margin-bottom: 0px; }
  .page-template-page-landmarks .large-map-wrapper .large-map-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9; }
    .page-template-page-landmarks .large-map-wrapper .large-map-overlay::after {
      font-family: FontAwesome;
      color: #fff;
      content: "\f279";
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      float: none;
      font-size: 4em;
      text-align: center;
      top: 50%;
      -webkit-transform: translateY(-85%);
      -ms-transform: translateY(-85%);
      transform: translateY(-85%); }

.page-template-page-landmarks #landmarks-region-toggler {
  -ms-flex-item-align: end;
  align-self: flex-end;
  float: right;
  padding: 20px; }
  .page-template-page-landmarks #landmarks-region-toggler:hover {
    background: #CA0000;
    color: #fff; }
  .page-template-page-landmarks #landmarks-region-toggler.active {
    background: #CA0000;
    color: #fff; }

.page-template-page-landmarks #landmarks-region-filter-wrapper {
  width: 95%;
  max-width: 400px;
  padding: 20px;
  background: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5); }
  .page-template-page-landmarks #landmarks-region-filter-wrapper.active {
    display: block; }
  .page-template-page-landmarks #landmarks-region-filter-wrapper #landmarks-region-close {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 5px;
    cursor: pointer; }
  .page-template-page-landmarks #landmarks-region-filter-wrapper .each-filter {
    padding: 10px;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s; }
    .page-template-page-landmarks #landmarks-region-filter-wrapper .each-filter:hover {
      background: #CA0000;
      color: #fff; }
    .page-template-page-landmarks #landmarks-region-filter-wrapper .each-filter.active {
      background: #CA0000;
      color: #fff; }

.page-template-page-landmarks #landmarks-filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff; }
  .page-template-page-landmarks #landmarks-filter-wrapper span {
    padding: 20px; }
  .page-template-page-landmarks #landmarks-filter-wrapper .filter-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .page-template-page-landmarks #landmarks-filter-wrapper .each-filter {
    padding: 20px;
    cursor: pointer;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s; }
    .page-template-page-landmarks #landmarks-filter-wrapper .each-filter:hover {
      background: #CA0000;
      color: #fff; }
    .page-template-page-landmarks #landmarks-filter-wrapper .each-filter.active {
      background: #CA0000;
      color: #fff; }

.page-template-page-landmarks #landmarks-wrapper {
  margin-bottom: 35px; }
  .page-template-page-landmarks #landmarks-wrapper .gm-style-iw {
    top: 1px !important;
    left: 1px !important;
    width: 100% !important; }
  .page-template-page-landmarks #landmarks-wrapper .each-post {
    margin-bottom: 0px; }

.page-template-page-landmarks #landmarks-search-wrapper input {
  width: 130px;
  -webkit-transition: width 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out; }
  .page-template-page-landmarks #landmarks-search-wrapper input:focus {
    width: 10%; }

/*********************
PROFILE PAGE
*********************/
.acf-map {
  height: 250px;
  margin-bottom: 35px; }

.page-template-page-profile a.css-fbl {
  max-width: 350px; }
  .page-template-page-profile a.css-fbl div {
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    width: 250px; }

.page-template-page-profile a.btn.g-apps-signin {
  background: #CA0000;
  max-width: 350px;
  margin: 5px auto;
  float: none;
  -webkit-transition: background ease-in-out 0.2s;
  -o-transition: background ease-in-out 0.2s;
  transition: background ease-in-out 0.2s;
  display: block; }
  .page-template-page-profile a.btn.g-apps-signin::before {
    content: "\f1a0";
    font-family: FontAwesome;
    color: #fff;
    float: left;
    margin-right: 5px; }
  .page-template-page-profile a.btn.g-apps-signin:hover {
    background: #b10000; }

.page-template-page-profile .acf-map {
  height: 250px;
  margin-bottom: 35px; }

.page-template-page-profile .updated-calendar-header {
  display: none; }

.page-template-page-profile div.warning {
  padding: 10px;
  background: #F7F7F7;
  border-left: 3px solid #CA0000;
  margin-bottom: 1.5em; }

.page-template-page-profile div.success {
  padding: 10px;
  background: #F7F7F7;
  border-left: 3px solid #444444;
  margin-bottom: 1.5em; }

.page-template-page-profile div.my-toggle {
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  max-width: 0px;
  max-height: 0px;
  overflow: hidden; }
  .page-template-page-profile div.my-toggle.active {
    max-width: 100%;
    max-height: none; }
  .page-template-page-profile div.my-toggle div.width-wrapper {
    min-width: 380px; }

.page-template-page-profile div#my-account input {
  max-width: 100%; }

.page-template-page-profile ul#my-cities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .page-template-page-profile ul#my-cities li {
    width: 50%;
    margin-left: 0px;
    float: left;
    clear: none;
    list-style: none; }

.page-template-page-profile div.my-604-select {
  background: #F7F7F7;
  color: #444444;
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  text-align: center;
  border-right: 1px solid #fff;
  cursor: pointer; }
  .page-template-page-profile div.my-604-select:last-child {
    border-right: 0px; }
  .page-template-page-profile div.my-604-select.active {
    background: #CA0000;
    color: #fff; }

.page-template-page-profile #loginform {
  width: 90%;
  margin: 25px 5%; }
  .page-template-page-profile #loginform input, .page-template-page-profile #loginform submit {
    width: 100%;
    max-width: 100%; }
    .page-template-page-profile #loginform input#rememberme, .page-template-page-profile #loginform submit#rememberme {
      width: auto; }
    .page-template-page-profile #loginform input#wp-submit, .page-template-page-profile #loginform submit#wp-submit {
      padding: 10px;
      font-size: 18px; }

.page-template-page-profile .sidebar-connect {
  background: #444444;
  color: #fff;
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  text-align: center;
  padding: 5px;
  margin-bottom: 10px; }
  .page-template-page-profile .sidebar-connect.active {
    background: #CA0000; }

.page-template-page-profile .content-connect-wrapper {
  position: relative; }

.page-template-page-profile .content-connect {
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  max-height: 0px; }
  .page-template-page-profile .content-connect.active {
    opacity: 1;
    max-height: none;
    padding: 15px; }
  .page-template-page-profile .content-connect h3 {
    margin-top: 0px;
    background: #F7F7F7;
    padding: 7px;
    margin-bottom: 10px;
    float: left;
    width: 100%; }

.page-template-page-profile .event-data {
  display: none; }

.page-template-page-profile .calendar-header {
  background: #CA0000;
  color: #fff;
  text-align: center;
  font-size: 18px;
  float: left;
  width: 100%;
  font-family: "Oswald", Arial, Helvetica, sans-serif; }
  .page-template-page-profile .calendar-header .last-month, .page-template-page-profile .calendar-header .next-month {
    padding: 5px 15px;
    cursor: pointer; }
    .page-template-page-profile .calendar-header .last-month:hover, .page-template-page-profile .calendar-header .next-month:hover {
      background: #b10000; }
  .page-template-page-profile .calendar-header .last-month {
    float: left; }
  .page-template-page-profile .calendar-header .next-month {
    float: right; }
  .page-template-page-profile .calendar-header span {
    padding: 5px 15px; }

#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none; }

#signup-now {
  background: #fff;
  display: none;
  max-height: 80%;
  overflow: scroll;
  max-width: 90%; }
  #signup-now .text-wrapper {
    max-width: 100%;
    width: 450px; }
  #signup-now div.my-604-select {
    background: #F7F7F7;
    color: #444444;
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    text-align: center;
    border-right: 1px solid #fff;
    cursor: pointer; }
    #signup-now div.my-604-select:last-child {
      border-right: 0px; }
    #signup-now div.my-604-select.active {
      background: #CA0000;
      color: #fff; }
  #signup-now #loginform {
    width: 90%;
    margin: 25px 5%; }
    #signup-now #loginform input, #signup-now #loginform submit {
      width: 100%;
      max-width: 100%; }
      #signup-now #loginform input#rememberme, #signup-now #loginform submit#rememberme {
        width: auto; }
      #signup-now #loginform input#wp-submit, #signup-now #loginform submit#wp-submit {
        padding: 10px;
        font-size: 18px; }
  #signup-now #gform_4 input {
    width: 100%;
    max-width: 100%; }
  #signup-now div.my-toggle {
    -webkit-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    max-width: 0px;
    max-height: 400px;
    overflow: hidden; }
    #signup-now div.my-toggle.active {
      max-width: 100%;
      max-height: none; }
    #signup-now div.my-toggle div.width-wrapper {
      padding: 15px;
      max-width: 100%; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

.pagination {
  text-align: center; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #808080; }
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #2980b9; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #2980b9;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #444444; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #444444; }

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left; }

.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #F7F7F7;
  /* number of comments span */ }

.commentlist {
  margin: 0;
  list-style-type: none; }

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #F7F7F7;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */ }
  .comment .comment-author {
    padding: 7px;
    border: 0; }
  .comment .vcard {
    margin-left: 50px; }
    .comment .vcard cite.fn {
      font-weight: 700;
      font-style: normal; }
    .comment .vcard time {
      display: block;
      font-size: 0.9em;
      font-style: italic; }
      .comment .vcard time a {
        color: #9fa6b4;
        text-decoration: none; }
        .comment .vcard time a:hover {
          text-decoration: underline; }
    .comment .vcard .avatar {
      position: absolute;
      left: 16px;
      border-radius: 50%; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment .children {
    margin: 0;
    /* variations */
    /* change number for different depth */ }
  .comment[class*=depth-] {
    margin-top: 1.1em; }
  .comment.depth-1 {
    margin-left: 0;
    margin-top: 0; }
  .comment:not(.depth-1) {
    margin-top: 0;
    margin-left: 7px;
    padding: 7px; }
  .comment.odd {
    background-color: #fff; }
  .comment.even {
    background: #F7F7F7; }

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right; }

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em; }

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #F7F7F7; }

#reply-title {
  margin: 0; }

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }
  .logged-in-as a {
    color: #444444; }

.comment-form-comment {
  margin: 1.5em 0 0.75em; }

.form-allowed-tags {
  padding: 1.5em;
  background-color: #F7F7F7;
  font-size: 0.9em; }

/* comment submit button */
#submit {
  float: right;
  font-size: 1em; }

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em; }

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

/* no comments */
.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.weather-widget .awesome-weather-wrap {
  background: #fff;
  text-shadow: none;
  color: #333 !important; }
  .weather-widget .awesome-weather-wrap .awesome-weather-header {
    display: none; }

.weather-widget h3 {
  margin-top: 0px; }

.widget ul li {
  /* deep nesting */ }

.widget.adrotate_widgets {
  overflow: hidden; }

.widget.sjnow_popular_posts_widget h4.uppercase {
  text-transform: uppercase; }

.widget.sjnow_popular_posts_widget .each-post {
  margin-bottom: 35px; }
  .widget.sjnow_popular_posts_widget .each-post .post-excerpt {
    display: none; }

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

/*********************
FOOTER STYLES
*********************/
#footer, .footer {
  clear: both;
  background-color: #fff;
  color: #F7F7F7;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  float: left;
  width: 100%;
  margin-top: 45px; }
  #footer nav[role="navigation"], .footer nav[role="navigation"] {
    position: static; }
  #footer .social-wrapper, .footer .social-wrapper {
    text-align: center;
    padding: 15px; }
    #footer .social-wrapper .social, .footer .social-wrapper .social {
      padding: 7px; }
  #footer .privacy-policy, .footer .privacy-policy {
    color: #444444;
    padding: 15px; }
    #footer .privacy-policy a:link, #footer .privacy-policy a:visited, .footer .privacy-policy a:link, .footer .privacy-policy a:visited {
      color: #444444; }
  #footer .red-bg, .footer .red-bg {
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    #footer .red-bg a:link, #footer .red-bg a:visited, .footer .red-bg a:link, .footer .red-bg a:visited {
      color: #fff; }
      #footer .red-bg a:link:hover, #footer .red-bg a:visited:hover, .footer .red-bg a:link:hover, .footer .red-bg a:visited:hover {
        color: #F7F7F7; }
      #footer .red-bg a:link:active, #footer .red-bg a:visited:active, .footer .red-bg a:link:active, .footer .red-bg a:visited:active {
        color: #f2f2f2; }
  #footer nav[role="navigation"], .footer nav[role="navigation"] {
    background: none; }
    #footer nav[role="navigation"] li, .footer nav[role="navigation"] li {
      border-bottom: 0px; }
  #footer .privacy-policy-links, .footer .privacy-policy-links {
    margin: 0px;
    text-align: center; }
    #footer .privacy-policy-links a:link, #footer .privacy-policy-links a:visited, .footer .privacy-policy-links a:link, .footer .privacy-policy-links a:visited {
      text-decoration: none;
      padding: 10px; }
  #footer .footer-links a:link, #footer .footer-links a:visited, .footer .footer-links a:link, .footer .footer-links a:visited {
    text-decoration: none;
    padding: 10px; }
  #footer .footer-links li:last-child a:link::after, #footer .footer-links li:last-child a:visited::after, .footer .footer-links li:last-child a:link::after, .footer .footer-links li:last-child a:visited::after {
    content: '';
    float: right;
    color: #fff; }

#inner-footer .site-tagline {
  padding: 50px 25px;
  color: #444444;
  border-bottom: 1px solid #808080;
  margin-bottom: 25PX; }

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
/*********************
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.
*/
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  /*********************
HEADER STYLES
*********************/
  #logo {
    float: left;
    width: auto; }
  /*********************
NAVIGATION STYLES
*********************/
  .nav {
    /* end .nav ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav li {
      /*
		plan your menus and drop-downs wisely.
		*/ }
      .nav li a {
        /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
  /* end .nav */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }
  /* end .entry-content */
  .single .large-leaderboard.inline {
    width: 110%;
    margin-left: -5%; }
  /*********************
FEATURED POSTS BAR
*********************/
  #featured-posts-bar .each-featured-post {
    height: 200px; }
    #featured-posts-bar .each-featured-post:first-child, #featured-posts-bar .each-featured-post:nth-child(2) {
      display: block; }
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  #footer .footer-links, .footer .footer-links {
    background: none; }
    #footer .footer-links li, .footer .footer-links li {
      display: inline-block;
      width: auto; }
      #footer .footer-links li a:link, #footer .footer-links li a:visited, .footer .footer-links li a:link, .footer .footer-links li a:visited {
        text-decoration: none;
        color: #fff; }
        #footer .footer-links li a:link::after, #footer .footer-links li a:visited::after, .footer .footer-links li a:link::after, .footer .footer-links li a:visited::after {
          content: '|';
          float: right;
          color: #fff; } }

/*********************
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
*********************/
  /*********************
HEADER STYLES
*********************/
  #header #inner-header, .header #inner-header {
    border-bottom: 2px solid #CA0000;
    background: #fff; }
  #header .social-wrapper, .header .social-wrapper {
    text-align: right;
    border-bottom: 0px; }
  #header #toggle-navigation, .header #toggle-navigation {
    background: #CA0000;
    margin-right: 0px;
    padding: 10px;
    top: 0px;
    left: 0px;
    height: 54px; }
    #header #toggle-navigation span, #header #toggle-navigation::before, #header #toggle-navigation::after, .header #toggle-navigation span, .header #toggle-navigation::before, .header #toggle-navigation::after {
      width: 80%; }
    #header #toggle-navigation::before, .header #toggle-navigation::before {
      top: 10px; }
    #header #toggle-navigation::after, .header #toggle-navigation::after {
      bottom: 10px; }
    #header #toggle-navigation.active::before, .header #toggle-navigation.active::before {
      top: 25px; }
    #header #toggle-navigation.active::after, .header #toggle-navigation.active::after {
      bottom: 24px; }
  body.admin-bar #header #inner-header, body.admin-bar .header #inner-header {
    top: 46px; } }

@media only screen and (min-width: 768px) and (min-width: 783px) {
  body.admin-bar #header #inner-header, body.admin-bar .header #inner-header {
    top: 32px; } }

@media only screen and (min-width: 768px) {
  nav[role="navigation"] {
    /* end .nav*/ }
    nav[role="navigation"] .nav {
      /* end li*/ }
      nav[role="navigation"] .nav li {
        /* end div.sub-menu*/ }
        nav[role="navigation"] .nav li div.sub-menu .popular-posts-wrapper .each-post:nth-child(3n),
        nav[role="navigation"] .nav li ul.sub-menu .popular-posts-wrapper .each-post:nth-child(3n),
        nav[role="navigation"] .nav li ul.children .popular-posts-wrapper .each-post:nth-child(3n) {
          display: block; }
        nav[role="navigation"] .nav li div.sub-menu .popular-posts-wrapper .each-post:nth-child(2n),
        nav[role="navigation"] .nav li ul.sub-menu .popular-posts-wrapper .each-post:nth-child(2n),
        nav[role="navigation"] .nav li ul.children .popular-posts-wrapper .each-post:nth-child(2n) {
          margin-right: 2%; }
        nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post,
        nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post,
        nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post {
          width: 23%;
          margin-right: 2%; }
          nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post:nth-child(2n),
          nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post:nth-child(2n),
          nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post:nth-child(2n) {
            margin-right: 2%; }
          nav[role="navigation"] .nav li div.sub-menu #event-subnav-bar .each-post:nth-child(4),
          nav[role="navigation"] .nav li ul.sub-menu #event-subnav-bar .each-post:nth-child(4),
          nav[role="navigation"] .nav li ul.children #event-subnav-bar .each-post:nth-child(4) {
            margin-right: 0px; }
  /* end nav*/
  .entry-content {
    padding: 0 1.5em 0; }
  /*********************
CALENDAR PAGE
*********************/
  .months-event-list .each-post {
    width: 49%;
    margin-right: 2%; }
    .months-event-list .each-post:nth-of-type(even) {
      margin-right: 0px; }
  /*********************
RECENT NEWS BAR
*********************/
  #news-box-wrapper .each-news-post {
    width: 50%; }
  /*********************
CITY MAP BAR
*********************/
  #city-map-bar .acf-map {
    height: 500px;
    margin-bottom: 0px; }
  /*********************
LANDMARKS PAGE
*********************/
  .page-template-page-landmarks .large-map-wrapper {
    position: relative; }
    .page-template-page-landmarks .large-map-wrapper .acf-map {
      height: 500px; }
  .page-template-page-landmarks #landmarks-markers .marker {
    width: 49%;
    float: left;
    margin-right: 2%; }
    .page-template-page-landmarks #landmarks-markers .marker:nth-child(2n) {
      margin-right: 0px; }
  /*********************
PROFILE PAGE
*********************/
  #my-saved-events .each-post, #my-saved-landmarks .each-post, #my-saved-posts .each-post {
    width: 49%;
    margin-right: 2%; }
    #my-saved-events .each-post:nth-child(2n), #my-saved-landmarks .each-post:nth-child(2n), #my-saved-posts .each-post:nth-child(2n) {
      margin-right: 0px; }
  #field_4_4 li {
    width: 50%;
    float: left;
    clear: none; }
  .page-template-page-profile ul#my-cities li {
    width: 33%;
    float: left; }
  /*********************
EVENTS BOX WRAPPER
*********************/
  #events-box-wrapper {
    height: 280px; }
    #events-box-wrapper .each-events a:link, #events-box-wrapper .each-events a:visited {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-line-pack: center;
      align-content: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      font-size: 56px;
      line-height: 56px; }
      #events-box-wrapper .each-events a:link span, #events-box-wrapper .each-events a:visited span {
        font-size: 18px;
        float: left;
        width: 100%;
        margin-right: 0px; }
  /*********************
SINGLE POST
*********************/
  #post-save-profile a:link, #post-save-profile a:visited, #post-save-profile a {
    width: 50%;
    margin: 0 auto 10px auto;
    float: none; }
  .single-title,
  .page-title,
  .entry-title {
    font-size: 45px; }
  .single .signup-connect {
    padding: 50px 0px; }
  .single .single-post-thumbnail {
    height: 353px; }
    .single .single-post-thumbnail img {
      max-width: 100%; }
  .single .sjnow-recent-posts-shortcode-wrapper .each-recent-post-shortcode {
    width: 32%;
    margin-right: 2%; }
    .single .sjnow-recent-posts-shortcode-wrapper .each-recent-post-shortcode:last-child {
      margin-right: 0; }
  .single .skyscraper-inline {
    margin-bottom: 1.5em; }
    .single .skyscraper-inline.align-left {
      float: left;
      margin-right: 1.5em; }
    .single .skyscraper-inline.align-right {
      float: right;
      margin-left: 1.5em; }
  .single .single-social-sharing.social-sharing-large {
    font-size: 3rem;
    text-align: center; }
    .single .single-social-sharing.social-sharing-large a:link, .single .single-social-sharing.social-sharing-large a:visited {
      padding: 15px; }
  .single #recent-posts-bar .each-post {
    width: 49%;
    margin-right: 2%; }
    .single #recent-posts-bar .each-post:nth-child(5) .post-excerpt, .single #recent-posts-bar .each-post:nth-child(6) .post-excerpt, .single #recent-posts-bar .each-post:nth-child(7) .post-excerpt {
      display: block; }
    .single #recent-posts-bar .each-post:nth-child(2n) {
      margin-right: 0px; }
    .single #recent-posts-bar .each-post:nth-child(5), .single #recent-posts-bar .each-post:nth-child(7) {
      width: 49%;
      margin-right: 2%; }
    .single #recent-posts-bar .each-post:nth-child(6) {
      width: 49%;
      margin-right: 0px; }
    .single #recent-posts-bar .each-post.first-large-post {
      width: 49%;
      margin-right: 2%; }
      .single #recent-posts-bar .each-post.first-large-post .post-information h4 span {
        margin-bottom: 15px; }
  #signup-now div.my-toggle div.width-wrapper {
    min-width: 380px;
    max-width: 100%; }
  /*********************
SEARCH RESULTS PAGE
*********************/
  .search-results #recent-posts-bar .each-post {
    width: 32%;
    margin-right: 2%; }
    .search-results #recent-posts-bar .each-post .post-excerpt {
      display: block; }
    .search-results #recent-posts-bar .each-post:nth-child(2), .search-results #recent-posts-bar .each-post:nth-child(3), .search-results #recent-posts-bar .each-post:nth-child(4) {
      width: 32%; }
    .search-results #recent-posts-bar .each-post:nth-child(2n), .search-results #recent-posts-bar .each-post:nth-child(7) {
      margin-right: 2%; }
    .search-results #recent-posts-bar .each-post:nth-child(3n) {
      margin-right: 0; }
  /*********************
SIDEBARS & ASIDES
*********************/
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em; }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0 0 0;
    float: left; }
    .widget:first-of-type {
      margin-top: 0px; }
    .widget ul li {
      margin-bottom: 0.75em;
      /* deep nesting */ }
      .widget ul li ul {
        margin-top: 0.75em;
        padding-left: 1em; }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
ARCHIVE PAGE
*********************/
  .archive .each-category-description {
    margin-bottom: 35px; }
  .archive .single-post-thumbnail {
    height: 350px; }
  .archive .city-photo-credit {
    text-align: right; }
  .archive #category-page-index .each-post {
    margin-bottom: 35px;
    width: 32%;
    float: left;
    margin-right: 2%; }
    .archive #category-page-index .each-post:nth-child(1) {
      width: 100%; }
    .archive #category-page-index .each-post:nth-child(3), .archive #category-page-index .each-post:nth-child(4) {
      width: 49%;
      margin-right: 2%; }
    .archive #category-page-index .each-post:nth-child(3n+1) {
      margin-right: 0px; }
  /*********************
FEATURED POSTS BAR
*********************/
  #featured-posts-bar .each-featured-post {
    height: 200px; }
    #featured-posts-bar .each-featured-post:first-child, #featured-posts-bar .each-featured-post:nth-child(2), #featured-posts-bar .each-featured-post:nth-child(3) {
      display: block; }
  /*********************
BASIC EACH POST AD STYLES
*********************/
  .each-post .post-thumbnail img {
    max-width: 100%; }
  /*********************
RECENT POSTS BAR
*********************/
  #recent-posts-bar .each-post {
    margin-bottom: 35px; }
    #recent-posts-bar .each-post.first-large-post {
      width: 100%; }
      #recent-posts-bar .each-post.first-large-post .post-information {
        max-width: 65%; }
    #recent-posts-bar .each-post:nth-child(3), #recent-posts-bar .each-post:nth-child(4) {
      width: 49%;
      float: left; }
      #recent-posts-bar .each-post:nth-child(3) .post-thumbnail, #recent-posts-bar .each-post:nth-child(4) .post-thumbnail {
        height: 200px; }
      #recent-posts-bar .each-post:nth-child(3) .post-excerpt, #recent-posts-bar .each-post:nth-child(4) .post-excerpt {
        display: block; }
    #recent-posts-bar .each-post:nth-child(3) {
      margin-right: 2%; }
    #recent-posts-bar .each-post:nth-child(5), #recent-posts-bar .each-post:nth-child(6), #recent-posts-bar .each-post:nth-child(7) {
      width: 32%;
      float: left;
      margin-right: 2%; }
    #recent-posts-bar .each-post:nth-child(7) {
      margin-right: 0px; }
  /*********************
POPULAR POSTS SUB MENU
*********************/
  .popular-posts-wrapper .each-post {
    margin-bottom: 35px;
    width: 32%;
    float: left;
    margin-right: 2%; }
    .popular-posts-wrapper .each-post:last-child {
      margin-right: 0px; }
  /*********************
CITIES HOME PAGE BOX
*********************/
  #cities-box-wrapper h3 {
    font-size: 36px;
    text-align: left;
    text-transform: uppercase;
    line-height: 36px; }
  #cities-box-wrapper .cities-wrap .each-city {
    height: 280px; }
    #cities-box-wrapper .cities-wrap .each-city h3 {
      font-size: 42px;
      text-align: center;
      line-height: 42px; }
  /*********************
RECENT CATEGORY BAR
*********************/
  .recent-category-wrapper h3.box-tab {
    right: auto; }
  .recent-category-wrapper .each-post {
    margin-bottom: 35px;
    width: 32%;
    float: left;
    margin-right: 2%; }
    .recent-category-wrapper .each-post:nth-child(2) {
      width: 100%;
      margin-right: 0px; }
    .recent-category-wrapper .each-post:last-child {
      margin-right: 0px; }
    .recent-category-wrapper .each-post:first-of-type .post-information {
      max-width: 65%; }
  /*********************
UPCOMING PROMOTED EVENTS WRAPPER
*********************/
  #upcoming-events-wrapper .each-post:first-of-type .post-information {
    max-width: 100%; }
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
  .footer-links ul li {
    /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/ }
  /* end .footer-links */
  #footer .red-bg .left-align, .footer .red-bg .left-align {
    text-align: left; }
  #footer .red-bg .right-align, .footer .red-bg .right-align {
    text-align: right; }
  #footer .social-wrapper, .footer .social-wrapper {
    text-align: right; }
  #footer .privacy-policy-links, .footer .privacy-policy-links {
    text-align: left; }
    #footer .privacy-policy-links ul, .footer .privacy-policy-links ul {
      margin: 0; }
    #footer .privacy-policy-links li, .footer .privacy-policy-links li {
      display: inline-block; }
      #footer .privacy-policy-links li a:link, #footer .privacy-policy-links li a:visited, .footer .privacy-policy-links li a:link, .footer .privacy-policy-links li a:visited {
        text-decoration: none;
        color: #CA0000; } }

/*********************
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: 1080px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylesheet

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

******************************************************************/
  /*********************
NAVIGATION STYLES
*********************/
  header #social-toggle, .header #social-toggle, #header #social-toggle {
    display: none; }
  header #toggle-navigation, .header #toggle-navigation, #header #toggle-navigation {
    display: none; }
  header .social-wrapper, .header .social-wrapper, #header .social-wrapper {
    max-height: 100%;
    padding: 14px 9px;
    background: none; }
    header .social-wrapper .social, .header .social-wrapper .social, #header .social-wrapper .social {
      color: #CA0000; }
  header #search-form-wrapper, .header #search-form-wrapper, #header #search-form-wrapper {
    position: absolute; }
  header #logo img, .header #logo img, #header #logo img {
    max-height: 44px;
    float: left; }
  header .header-wrapper, .header .header-wrapper, #header .header-wrapper {
    padding-right: 0px; }
  header.nav-up #logo a, .header.nav-up #logo a, #header.nav-up #logo a {
    padding: 5px; }
  header.nav-up #logo img, .header.nav-up #logo img, #header.nav-up #logo img {
    max-height: 34px; }
  header.nav-up .social-wrapper, .header.nav-up .social-wrapper, #header.nav-up .social-wrapper {
    padding: 4px; }
  header.nav-up nav[role="navigation"] .nav li.has-children a.nav-link, .header.nav-up nav[role="navigation"] .nav li.has-children a.nav-link, #header.nav-up nav[role="navigation"] .nav li.has-children a.nav-link {
    padding: 7px 10px; }
  header.nav-up nav[role="navigation"] .nav li.has-children .children-dropdown, .header.nav-up nav[role="navigation"] .nav li.has-children .children-dropdown, #header.nav-up nav[role="navigation"] .nav li.has-children .children-dropdown {
    padding: 9px 5px 9px 0; }
  body.admin-bar header #inner-header, body.admin-bar .header #inner-header, body.admin-bar #header #inner-header {
    top: 32px; }
  /*dropdown navigation styling */
  nav[role="navigation"] {
    position: static;
    /* end .nav */ }
    nav[role="navigation"].show {
      max-height: auto;
      overflow: scroll; }
    nav[role="navigation"] .nav {
      border: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      nav[role="navigation"] .nav li.has-children, nav[role="navigation"] .nav li {
        float: left;
        width: auto;
        border-bottom: 0px;
        /*
			plan your menus and drop-downs wisely.
			*/
        /* showing sub-menus */ }
        nav[role="navigation"] .nav li.has-children.last-entry, nav[role="navigation"] .nav li.last-entry {
          -webkit-box-ordinal-group: 1000;
          -ms-flex-order: 999;
          order: 999; }
        nav[role="navigation"] .nav li.has-children:hover, nav[role="navigation"] .nav li:hover {
          color: #fff;
          background: #CA0000; }
          nav[role="navigation"] .nav li.has-children:hover a.nav-link, nav[role="navigation"] .nav li:hover a.nav-link {
            color: #fff; }
        nav[role="navigation"] .nav li.has-children .children-dropdown, nav[role="navigation"] .nav li .children-dropdown {
          float: right;
          padding: 0 5px 0 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
        nav[role="navigation"] .nav li.has-children div.header-flex, nav[role="navigation"] .nav li div.header-flex {
          -webkit-transition: all ease-in-out 0.2s;
          -o-transition: all ease-in-out 0.2s;
          transition: all ease-in-out 0.2s; }
        nav[role="navigation"] .nav li.has-children a.nav-link, nav[role="navigation"] .nav li a.nav-link {
          border-bottom: 0;
          padding: 19px 10px 18px 10px;
          -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
          -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
          transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
          /*
				you can use hover styles here even though this size
				has the possibility of being a mobile device.
				*/ }
          nav[role="navigation"] .nav li.has-children a.nav-link:hover, nav[role="navigation"] .nav li.has-children a.nav-link:focus, nav[role="navigation"] .nav li.has-children a.nav-link:active, nav[role="navigation"] .nav li a.nav-link:hover, nav[role="navigation"] .nav li a.nav-link:focus, nav[role="navigation"] .nav li a.nav-link:active {
            color: #fff;
            background: #CA0000; }
        nav[role="navigation"] .nav li.has-children div.sub-menu,
        nav[role="navigation"] .nav li.has-children ul.sub-menu,
        nav[role="navigation"] .nav li.has-children ul.children, nav[role="navigation"] .nav li div.sub-menu,
        nav[role="navigation"] .nav li ul.sub-menu,
        nav[role="navigation"] .nav li ul.children {
          background: #fff;
          padding: 0px;
          max-height: none;
          margin-top: 0;
          border-top: 0;
          width: 100%;
          position: absolute;
          left: 0;
          right: 0;
          visibility: hidden;
          z-index: 8999;
          background: #fff;
          -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
          border-top: 2px solid #CA0000;
          overflow: visible;
          /* highlight sub-menu current page */ }
          nav[role="navigation"] .nav li.has-children div.sub-menu .wrap,
          nav[role="navigation"] .nav li.has-children ul.sub-menu .wrap,
          nav[role="navigation"] .nav li.has-children ul.children .wrap, nav[role="navigation"] .nav li div.sub-menu .wrap,
          nav[role="navigation"] .nav li ul.sub-menu .wrap,
          nav[role="navigation"] .nav li ul.children .wrap {
            padding: 0px; }
        nav[role="navigation"] .nav li.has-children:hover > ul, nav[role="navigation"] .nav li.has-children:hover > div.sub-menu, nav[role="navigation"] .nav li:hover > ul, nav[role="navigation"] .nav li:hover > div.sub-menu {
          top: auto;
          visibility: visible; }
  /* end navigation */
  /*********************
EVENTS SUB NAVIGATION
*********************/
  #event-subnav-bar .each-subnav-post {
    width: 24%;
    margin-right: 1%; }
    #event-subnav-bar .each-subnav-post:last-of-type {
      margin-right: 0px; }
  /*********************
RECENT POSTS BAR
*********************/
  #recent-posts-bar .each-post.first-large-post {
    height: 365px; }
    #recent-posts-bar .each-post.first-large-post .post-information h4 {
      font-size: 42px; }
  /*********************
RECENT CATEGORY BAR
*********************/
  .recent-category-wrapper .each-post.first-large-post, #category-page-index .each-post.first-large-post {
    height: 365px; }
    .recent-category-wrapper .each-post.first-large-post .post-information h4, #category-page-index .each-post.first-large-post .post-information h4 {
      font-size: 42px; }
  /*********************
EVENTS PAGE
*********************/
  .page-template-page-calendar .months-event-list .each-post {
    margin-bottom: 35px;
    width: 32%;
    float: left;
    margin-right: 2%; }
    .page-template-page-calendar .months-event-list .each-post:nth-of-type(odd) {
      margin-right: 2%; }
    .page-template-page-calendar .months-event-list .each-post:nth-of-type(3n) {
      margin-right: 0%; }
  #featured-event .each-post .post-information h4 {
    font-size: 45px; }
  /*********************
ARCHIVE PAGE
*********************/
  .archive #category-page-index .each-post:nth-of-type(4) {
    margin-right: 0px; }
  /*********************
PROFILE PAGE
*********************/
  #field_4_4 li {
    width: 25%;
    float: left;
    clear: none; }
  .page-template-page-profile ul#my-cities li {
    width: 25%;
    float: left; }
  /*********************
POST AND EVENT SINGLE
*********************/
  #disqus_thread {
    float: left;
    width: 100%;
    padding: 0px; }
  .single #inner-content {
    max-width: 95%; }
  .single .single-post-thumbnail-wrapper {
    width: 110%;
    margin-left: -5%;
    float: left; }
  .single .large-leaderboard.inline {
    width: 140%;
    margin-left: -20%;
    margin-bottom: 1.5em;
    max-width: 970px;
    overflow: hidden; }
  .single .sjnow-recent-posts-shortcode-wrapper {
    width: 140%;
    margin-left: -20%;
    margin-bottom: 1.5em; }
    .single .sjnow-recent-posts-shortcode-wrapper .each-recent-post-shortcode {
      display: block;
      width: 32%;
      margin-right: 2%; }
      .single .sjnow-recent-posts-shortcode-wrapper .each-recent-post-shortcode:nth-child(2) {
        margin-right: 2%; }
      .single .sjnow-recent-posts-shortcode-wrapper .each-recent-post-shortcode:last-child {
        margin-right: 0px; }
  .single .news-post-wrapper .large-leaderboard.inline {
    width: 100%;
    margin-left: 0%; }
  .single .news-post-wrapper .sjnow-recent-posts-shortcode-wrapper {
    width: 100%;
    margin-left: 0%; }
  .single #recent-posts-bar .each-post {
    margin-bottom: 35px;
    width: 32%;
    float: left;
    margin-right: 2%; }
    .single #recent-posts-bar .each-post:nth-child(2n) {
      margin-right: 2%; }
    .single #recent-posts-bar .each-post:nth-child(3n) {
      margin-right: 0px; }
    .single #recent-posts-bar .each-post:nth-child(5), .single #recent-posts-bar .each-post:nth-child(7) {
      width: 32%;
      margin-right: 2%; }
    .single #recent-posts-bar .each-post:nth-child(6) {
      width: 32%;
      margin-right: 0px; }
    .single #recent-posts-bar .each-post.first-large-post {
      margin-bottom: 35px;
      width: 32%;
      float: left;
      margin-right: 2%; }
      .single #recent-posts-bar .each-post.first-large-post .post-information h4 {
        font-size: 18px; }
  /*********************
SEARCH RESULTS PAGE
*********************/
  .search-results #recent-posts-bar .each-post {
    width: 32%;
    margin-right: 2%; }
    .search-results #recent-posts-bar .each-post .post-excerpt {
      display: block; }
    .search-results #recent-posts-bar .each-post:nth-child(2), .search-results #recent-posts-bar .each-post:nth-child(3) {
      width: 32%; }
    .search-results #recent-posts-bar .each-post:nth-child(2n) {
      margin-right: 2%; }
    .search-results #recent-posts-bar .each-post:nth-child(3n) {
      margin-right: 0; }
  /*********************
LANDMARKS PAGE
*********************/
  .page-template-page-landmarks #landmarks-markers .marker {
    width: 32%;
    float: left;
    margin-right: 2%; }
    .page-template-page-landmarks #landmarks-markers .marker:nth-child(2n) {
      margin-right: 2%; }
    .page-template-page-landmarks #landmarks-markers .marker:nth-child(3n) {
      margin-right: 0; }
  .page-template-page-landmarks .large-map-wrapper .acf-map {
    height: 700px; }
  /*********************
FOOTER STYLES
*********************/
  footer #inner-footer .site-tagline {
    padding: 50px 0px; } }

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

******************************************************************/
  /*********************
FEATURED POSTS BAR
*********************/
  #featured-posts-bar .each-featured-post {
    display: block; } }

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

******************************************************************/
  * {
    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; } }
