@charset "UTF-8";
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* Sizes */
/* Colors */
/* Fonts */
/* Header */
/* Layout */
/* Menu */
/* Borders */
/* Bullets */
@-webkit-keyframes bouncedelay {
  0%,
	80%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
	80%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents 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/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

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

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

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

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

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

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

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
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;
}

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

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

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

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
  display: table;
  content: ' ';
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
  display: table;
  clear: both;
  content: ' ';
}

.wrap,
.site-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

.header-image .site-title, .header-image
.site-description, .social-icons a, .search-contrast .search-header .search-button, .social-share .ico, .search-main .search-button, .inspirations .site-inner .scroll-to, .newsletter .newsletter-button, .flexslider a.scroll-to,
.about-content a.scroll-to {
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}

.content-sidebar-wrap, .genesis-nav-menu, .comment-header, .comment-respond .form-submit, .footer-widgets {
  zoom: 1;
}
.content-sidebar-wrap:before, .genesis-nav-menu:before, .comment-header:before, .comment-respond .form-submit:before, .footer-widgets:before, .content-sidebar-wrap:after, .genesis-nav-menu:after, .comment-header:after, .comment-respond .form-submit:after, .footer-widgets:after {
  display: table;
  content: '';
}
.content-sidebar-wrap:after, .genesis-nav-menu:after, .comment-header:after, .comment-respond .form-submit:after, .footer-widgets:after {
  clear: both;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
}

.no-js .hide-no-js {
  display: none !important;
}

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

.entry-content, .comment-content, .entry-content p, .comment-content p, .entry-content ol, .comment-content ol,
.entry-content ul,
.comment-content ul, .comment-notes,
.logged-in-as,
.form-allowed-tags {
  margin-bottom: 1em;
  text-overflow: ellipsis;
  word-break: break-word;
  letter-spacing: .01rem;
  line-height: 1.5;
}
.entry-content:last-child, .comment-content:last-child, .entry-content p:last-child, .comment-content p:last-child, .entry-content ol:last-child, .comment-content ol:last-child,
.entry-content ul:last-child,
.comment-content ul:last-child, .comment-notes:last-child,
.logged-in-as:last-child,
.form-allowed-tags:last-child {
  margin-bottom: 0;
}

.gform_wrapper .spinner {
  display: block;
  padding: .25em;
  width: 100%;
  text-align: center;
}
.gform_wrapper .spinner > div {
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  vertical-align: middle;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
          animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.gform_wrapper .spinner .bounce1 {
  -webkit-animation-delay: -.32s;
          animation-delay: -.32s;
}
.gform_wrapper .spinner .bounce2 {
  -webkit-animation-delay: -.16s;
          animation-delay: -.16s;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.one-fifth,
.two-fifths,
.three-fifths,
.four-fifths,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
  float: left;
  margin-left: 2.564102564102564%;
  min-height: 1px;
}
@media (max-width: 1023px) {
  .entry-content .five-sixths, .comment-content .five-sixths, .entry-content
  .four-sixths, .comment-content
  .four-sixths, .entry-content
  .one-fourth, .comment-content
  .one-fourth, .entry-content
  .one-half, .comment-content
  .one-half, .entry-content
  .one-sixth, .comment-content
  .one-sixth, .entry-content
  .one-third, .comment-content
  .one-third, .entry-content
  .one-fifth, .comment-content
  .one-fifth, .entry-content
  .two-fifths, .comment-content
  .two-fifths, .entry-content
  .three-fifths, .comment-content
  .three-fifths, .entry-content
  .four-fifths, .comment-content
  .four-fifths, .entry-content
  .three-fourths, .comment-content
  .three-fourths, .entry-content
  .three-sixths, .comment-content
  .three-sixths, .entry-content
  .two-fourths, .comment-content
  .two-fourths, .entry-content
  .two-sixths, .comment-content
  .two-sixths, .entry-content
  .two-thirds, .comment-content
  .two-thirds {
    float: none;
    margin-left: 0;
    width: 100% !important;
  }
}

.one-half,
.three-sixths,
.two-fourths {
  width: 48.717948717948715%;
}

.one-third,
.two-sixths {
  width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
  width: 65.81196581196582%;
}

.one-fourth {
  width: 23.076923076923077%;
}

.three-fourths {
  width: 74.35897435897436%;
}

.one-fifth {
  width: 17.9487179487179488%;
}

.two-fifths {
  width: 38.4615384615384616%;
}

.three-fifths {
  width: 58.9743589743589744%;
}

.four-fifths {
  width: 79.4871794871794872%;
}

.one-sixth {
  width: 14.52991452991453%;
}

.five-sixths {
  width: 82.90598290598291%;
}

.first {
  clear: both;
  margin-left: 0;
}

.wrap,
.site-inner {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .wrap,
  .site-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1023px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.site-inner {
  overflow: hidden;
}
.has-featured-image .site-inner, .network .site-inner {
  padding-right: 0;
}

/* Responsive hidden */
@media (max-width: 767px) {
  .hidden.mobile-tak {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hidden.tablet-tak {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .hidden.desktop-tak {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .visible.mobile-tak {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .visible.mobile-tak {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .visible.mobile-tak {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .visible.tablet-tak {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .visible.tablet-tak {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible.tablet-tak {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .visible.desktop-tak {
    display: block !important;
  }
}
@media (max-width: 1023px) {
  .visible.desktop-tak {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
/* Contrast */
img.aligncenter.show-for-contrast,
.show-for-contrast {
  display: none;
}
.contrast img.aligncenter.show-for-contrast, .contrast
.show-for-contrast {
  display: block;
}
.contrast img.aligncenter.show-for-contrast.inline, .contrast
.show-for-contrast.inline {
  display: inline;
}

img.aligncenter.hide-for-contrast,
.hide-for-contrast {
  display: block;
}
img.aligncenter.hide-for-contrast.inline,
.hide-for-contrast.inline {
  display: inline;
}
.contrast img.aligncenter.hide-for-contrast, .contrast
.hide-for-contrast {
  display: none;
}

@font-face {
  font-family: 'gotham_narrowbold';
  src: url("../../fonts/gothamnarrow-bold-webfont.eot");
  src: url("../../fonts/gothamnarrow-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/gothamnarrow-bold-webfont.woff2") format("woff2"), url("../../fonts/gothamnarrow-bold-webfont.woff") format("woff"), url("../../fonts/gothamnarrow-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gotham_narrowbook';
  src: url("../../fonts/gothamnarrow-book-webfont.eot");
  src: url("../../fonts/gothamnarrow-book-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/gothamnarrow-book-webfont.woff2") format("woff2"), url("../../fonts/gothamnarrow-book-webfont.woff") format("woff"), url("../../fonts/gothamnarrow-book-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gotham_narrowmedium';
  src: url("../../fonts/gothamnarrow-medium-webfont.eot");
  src: url("../../fonts/gothamnarrow-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/gothamnarrow-medium-webfont.woff2") format("woff2"), url("../../fonts/gothamnarrow-medium-webfont.woff") format("woff"), url("../../fonts/gothamnarrow-medium-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "gotham_narrowbook";
  font-size: 14px;
}
@media (min-width: 1200px) {
  body {
    padding-top: 100px;
    background: white;
  }
}
body.contrast {
  background-color: #000;
  color: #fff;
}

a,
button,
input:focus,
input[type='button'],
input[type='reset'],
input[type='submit'],
textarea:focus,
.button {
  -webkit-transition: all .1s ease-in-out, background-position 1ms;
          transition: all .1s ease-in-out, background-position 1ms;
}

a {
  color: #ff0000;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: underline;
}

p {
  margin: 0;
  padding: 0;
}

strong {
  font-weight: "gotham_narrowbold";
}

pre {
  overflow: scroll;
  white-space: pre;
}

code {
  overflow: hidden;
  word-break: break-word;
}

iframe {
  border: none;
}

.clear {
  clear: both;
  visibility: hidden;
  height: 0;
  width: 0;
  font-size: 0;
  line-height: 0;
}

.hr {
  background-color: #f6f6f6;
  clear: both;
  margin: 50px 0 40px;
  height: 4px;
}
.contrast .hr {
  background-color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gotham_narrowbold";
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

img {
  width: auto;
  height: auto;
}

img.aligncenter,
.aligncenter {
  display: block;
  margin: 0 auto 1.5em auto;
}

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

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

img.alignleft,
.wp-caption.alignleft {
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

img.alignright,
.wp-caption.alignright {
  margin-bottom: 1.5em;
  margin-left: 1.5em;
}

.wp-caption {
  width: auto !important;
}
.wp-caption p {
  margin-bottom: 0;
}

.wp-caption-text {
  margin: 0;
  text-align: center;
}

.gallery {
  *zoom: 1;
  margin-bottom: 40px;
}
.gallery:before, .gallery:after {
  content: '';
  display: table;
}
.gallery:after {
  clear: both;
}

.gallery-item {
  margin: 1%;
  text-align: center;
}
@media (max-width: 767px) {
  .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-item:before, .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-item:after {
    clear: both;
  }
  .gallery-item:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-item:nth-child(2n + 1) {
    clear: both;
  }
}
.gallery-item .gallery-icon {
  text-align: center;
}
@media (min-width: 768px) {
  .gallery-columns-2 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-columns-2 .gallery-item:before, .gallery-columns-2 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-2 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-2 .gallery-item:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-2 .gallery-item:nth-child(2n + 1) {
    clear: both;
  }
  .gallery-columns-3 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-columns-3 .gallery-item:before, .gallery-columns-3 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-3 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-3 .gallery-item:nth-child(3n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-3 .gallery-item:nth-child(3n + 1) {
    clear: both;
  }
  .gallery-columns-4 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-columns-4 .gallery-item:before, .gallery-columns-4 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-4 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-4 .gallery-item:nth-child(4n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-4 .gallery-item:nth-child(4n + 1) {
    clear: both;
  }
  .gallery-columns-5 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-columns-5 .gallery-item:before, .gallery-columns-5 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-5 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-5 .gallery-item:nth-child(5n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-5 .gallery-item:nth-child(5n + 1) {
    clear: both;
  }
  .gallery-columns-6 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 14.167%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-columns-6 .gallery-item:before, .gallery-columns-6 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-6 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-6 .gallery-item:nth-child(6n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-6 .gallery-item:nth-child(6n + 1) {
    clear: both;
  }
  .gallery-columns-7 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 12.571%;
    margin-left: 0%;
    margin-right: 2%;
  }
  .gallery-columns-7 .gallery-item:before, .gallery-columns-7 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-7 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-7 .gallery-item:nth-child(7n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-7 .gallery-item:nth-child(7n + 1) {
    clear: both;
  }
  .gallery-columns-8 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 9.875%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-columns-8 .gallery-item:before, .gallery-columns-8 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-8 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-8 .gallery-item:nth-child(8n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-8 .gallery-item:nth-child(8n + 1) {
    clear: both;
  }
  .gallery-columns-9 .gallery-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 8.444%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .gallery-columns-9 .gallery-item:before, .gallery-columns-9 .gallery-item:after {
    content: '';
    display: table;
  }
  .gallery-columns-9 .gallery-item:after {
    clear: both;
  }
  .gallery-columns-9 .gallery-item:nth-child(9n) {
    margin-right: 0%;
    float: right;
  }
  .gallery-columns-9 .gallery-item:nth-child(9n + 1) {
    clear: both;
  }
}

.btn, button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ff0000;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 18px 40px;
  text-align: center;
  width: auto;
}
.btn:hover, button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover, .btn:focus, button:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus, .btn:active, button:active,
input[type='button']:active,
input[type='reset']:active,
input[type='submit']:active {
  opacity: 0.8;
  text-decoration: none;
}
.btn.block, button.block,
input.block[type='button'],
input.block[type='reset'],
input.block[type='submit'] {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.btn.small, button.small,
input.small[type='button'],
input.small[type='reset'],
input.small[type='submit'] {
  padding: 9px 20px;
}

input[type='text'],
input[type='password'],
input[type='search'],
input[type='email'],
input[type='url'],
input[type='tel'],
input[type='number'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
textarea {
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  resize: vertical;
}

select {
  width: 100%;
}

.placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  text-overflow: ellipsis;
}

::-moz-placeholder {
  text-overflow: ellipsis;
}

:-ms-input-placeholder {
  text-overflow: ellipsis;
}

::placeholder {
  text-overflow: ellipsis;
}

input[type='search'] {
  box-sizing: border-box;
}

.gform_wrapper .gform_ajax_spinner {
  display: none !important;
}
.gform_wrapper .spinner {
  display: inline-block;
  margin-left: .5em;
  width: auto;
  vertical-align: middle;
}

.search-form,
.post-password-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-form input[type='submit'],
.post-password-form input[type='submit'] {
  margin-left: .25em;
}

.search-form input[type='search'] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.post-password-form input[type='password'] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.site-header {
  background-color: #fff;
  min-height: 100px;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 999;
}
@media (min-width: 1200px) {
  .site-header {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .site-header {
    min-height: 0;
  }
}
.admin-bar .site-header {
  top: 32px;
}
.site-header.header-scroll {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.site-header > .wrap {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .site-header > .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.contrast .site-header {
  background-color: #000;
}

.title-area {
  float: right;
}

.site-title,
.site-description {
  margin: 0;
  line-height: 1;
}
.header-image .site-title, .header-image
.site-description {
  display: block;
}

.site-title {
  line-height: 1;
}
.site-title a {
  background: url("../images/logo.png") no-repeat 0 0;
  display: block;
  height: 61px;
  width: 212px;
}
@media (max-width: 767px) {
  .site-title a {
    background-size: cover !important;
    height: 50px !important;
    width: 174px !important;
  }
}
.contrast .site-title a {
  background: url("../images/logo-contrast.png") no-repeat 0 0;
}

.header-widget-area {
  float: right;
}

.header-tools {
  float: right;
  margin-right: 40px;
}
@media (min-width: 1200px) {
  .header-tools {
    margin-right: 80px;
  }
}
@media (max-width: 1023px) {
  .header-tools {
    float: left;
  }
}

.social-icons {
  background: url("../images/social-icons-bg.png") no-repeat right 0;
  float: left;
  padding-right: 10px;
  width: 80px;
}
@media (max-width: 767px) {
  .social-icons {
    background: none;
    border-bottom: 1px solid #f5f5f6;
    float: none;
    padding: 8px 0;
    text-align: center;
    width: 100%;
  }
}
.social-icons a {
  background: url("../images/social-icons-full-fix.png") no-repeat 0 0;
  display: block;
  float: left;
  height: 25px;
  margin: 0 10px 10px 0;
  width: 25px;
}
@media (max-width: 767px) {
  .social-icons a {
    display: inline-block;
    float: none;
    margin: 0 10px 0;
  }
}
.social-icons a:hover {
  background-position: -27px 0;
}
.social-icons a.twitter {
  background-position: 0 -25px;
}
.social-icons a.twitter:hover {
  background-position: -27px -25px;
}
.social-icons a.youtube {
  background-position: 0 -50px;
}
.social-icons a.youtube:hover {
  background-position: -27px -50px;
}
.social-icons a.mail {
  background-position: 0 -75px;
}
.social-icons a.mail:hover {
  background-position: -27px -75px;
}
.social-icons a.search {
  background-position: 0 -100px;
}
.social-icons a.make-contrast {
  background-position: 0 -125px;
}
.contrast .social-icons a {
  background-position: -54px 0;
}
.contrast .social-icons a:hover {
  background-position: 0 0;
}
.contrast .social-icons a.twitter {
  background-position: -54px -25px;
}
.contrast .social-icons a.twitter:hover {
  background-position: 0 -25px;
}
.contrast .social-icons a.youtube {
  background-position: -54px -50px;
}
.contrast .social-icons a.youtube:hover {
  background-position: 0 -50px;
}
.contrast .social-icons a.mail {
  background-position: -54px -75px;
}
.contrast .social-icons a.mail:hover {
  background-position: 0 -75px;
}
.contrast .social-icons a.search {
  background: url("../images/social-icons-contrast.png") no-repeat 0 0;
}
.contrast .social-icons a.make-contrast {
  background: url("../images/social-icons-contrast.png") no-repeat 0 -35px;
}

.search-contrast {
  float: left;
  padding-left: 20px;
}
.search-contrast .search-header {
  margin-bottom: 10px;
}
.search-contrast .search-header .search-button {
  background: url("../images/social-icons.png") no-repeat 0 -100px;
  display: block;
  float: left;
  height: 25px;
  margin: 0 15px 0 0;
  padding: 0;
  width: 25px;
}
.search-contrast .search-header .search-input {
  background: transparent;
  border: 0;
  font-family: "gotham_narrowbold";
  font-size: 12px;
  max-width: 60px;
}
.search-contrast .search-header ::-webkit-input-placeholder {
  opacity: 1;
}
.search-contrast .search-header :-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
}
.search-contrast .search-header ::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
}
.search-contrast .search-header :-ms-input-placeholder {
  opacity: 1;
}
.search-contrast .make-contrast {
  background: url("../images/social-icons.png") no-repeat 0 -125px;
  color: #000;
  display: inline-block;
  font-family: "gotham_narrowbold";
  font-size: 12px;
  line-height: 25px;
  padding-left: 40px;
}
.contrast .search-contrast .search-button {
  background: url("../images/social-icons-contrast.png") no-repeat 0 0;
}
.contrast .search-contrast .make-contrast {
  background: url("../images/social-icons-contrast.png") no-repeat 0 -35px;
  color: #fff;
}

.genesis-nav-menu {
  width: 100%;
}
.genesis-nav-menu .menu-item {
  line-height: 1.5;
}
.genesis-nav-menu .menu-item a {
  display: block;
  font-family: "gotham_narrowmedium";
  font-size: 14px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.genesis-nav-menu > .menu-item {
  display: block;
  float: left;
  min-width: 72px;
  position: relative;
  text-align: left;
}
@media (min-width: 1200px) {
  .genesis-nav-menu > .menu-item {
    min-width: 118px;
  }
}
@media (min-width: 1200px) and (max-width: 1279px) {
  .genesis-nav-menu > .menu-item {
    min-width: 100px;
  }
}
@media (max-width: 1023px) {
  .genesis-nav-menu > .menu-item {
    float: none;
    background-color: #ff0000;
    margin-bottom: 2px;
  }
}
@media (max-width: 1023px) {
  .genesis-nav-menu > .menu-item br {
    display: none;
  }
}
.genesis-nav-menu > .menu-item:after {
  background: url("../images/menu-arrow.png") no-repeat 0 0;
  bottom: 10px;
  content: "";
  display: block;
  height: 8px;
  left: 20px;
  position: absolute;
  width: 9px;
}
@media (max-width: 1023px) {
  .genesis-nav-menu > .menu-item:after {
    background-position: 0 bottom;
    bottom: auto;
    left: 165px;
    top: 17px;
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.genesis-nav-menu > .menu-item:hover, .genesis-nav-menu > .menu-item.sfHover {
  background-color: #ff0000;
}
.genesis-nav-menu > .menu-item:hover:after, .genesis-nav-menu > .menu-item.sfHover:after {
  background-position: center bottom;
}
.genesis-nav-menu > .menu-item:hover > .sub-menu, .genesis-nav-menu > .menu-item.sfHover > .sub-menu {
  left: auto;
  opacity: 1;
}
.genesis-nav-menu > .menu-item:hover > a, .genesis-nav-menu > .menu-item.sfHover > a {
  color: #fff;
}
@media (max-width: 1023px) {
  .genesis-nav-menu > .menu-item.activated:after {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
}
.genesis-nav-menu > .menu-item > a {
  color: #000;
  height: 80px;
  padding: 10px 10px 0 10px;
}
@media (min-width: 1200px) {
  .genesis-nav-menu > .menu-item > a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1023px) {
  .genesis-nav-menu > .menu-item > a {
    color: #fff;
    height: auto;
    padding: 10px 20px;
  }
}
.genesis-nav-menu > .menu-item > a:hover {
  color: #fff;
}
.genesis-nav-menu .sub-menu {
  background-color: #ff0000;
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 99;
  opacity: 0;
  padding: 20px 20px 0;
  -webkit-transition: opacity .4s ease-in-out;
          transition: opacity .4s ease-in-out;
  width: 250px;
}
@media (max-width: 1023px) {
  .genesis-nav-menu .sub-menu {
    background-color: #fff;
    border-top: 2px solid #fff;
    display: none;
    opacity: 1;
    padding: 0;
    position: static;
    width: auto;
  }
}
.genesis-nav-menu .sub-menu > .menu-item {
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .genesis-nav-menu .sub-menu > .menu-item {
    margin-bottom: 2px;
  }
}
.genesis-nav-menu .sub-menu > .menu-item.current-menu-item > a {
  color: #000;
}
.genesis-nav-menu .sub-menu > .menu-item > a {
  color: #fff;
  position: relative;
}
@media (max-width: 1023px) {
  .genesis-nav-menu .sub-menu > .menu-item > a {
    background-color: #919191;
    padding: 10px 20px;
  }
}
.genesis-nav-menu .sub-menu > .menu-item > a:hover, .genesis-nav-menu .sub-menu > .menu-item > a:focus, .genesis-nav-menu .sub-menu > .menu-item > a:active {
  color: #000;
}
.contrast .genesis-nav-menu > .menu-item:after {
  background-position: center bottom;
}
.contrast .genesis-nav-menu > .menu-item a {
  color: #fff;
}

.nav-primary {
  margin-left: -20px;
}
@media (min-width: 1200px) {
  .nav-primary {
    float: left;
  }
}
@media (max-width: 1023px) {
  .nav-primary {
    clear: both;
    display: none;
    margin-right: -40px;
  }
}

.menu-toggle {
  background: url("../images/menu-toggle.png") no-repeat 0 0;
  display: none;
  float: left;
  height: 60px;
  margin-right: 20px;
  padding: 0;
  width: 60px;
}
@media (max-width: 1023px) {
  .menu-toggle {
    display: block;
  }
}
@media (max-width: 767px) {
  .menu-toggle {
    margin-bottom: 20px;
  }
}
.contrast .menu-toggle {
  background: url("../images/menu-toggle-contrast.png") no-repeat 0 0;
}

.content {
  *zoom: 1;
}
.content:before, .content:after {
  content: '';
  display: table;
}
.content:after {
  clear: both;
}

.breadcrumb {
  background-color: #ff0000;
  color: #fff;
  font-size: 13px;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb .wrap {
  line-height: 150%;
  padding-bottom: 15px;
  padding-top: 15px;
}
.breadcrumb .breadcrumbs-back {
  float: right;
}
@media (max-width: 1023px) {
  .breadcrumb .breadcrumbs-back {
    background: url("../images/breadcrumbs-back.png") no-repeat 0 0;
    background-size: 18px 18px;
    display: block;
    height: 18px;
    text-indent: -9999em;
    width: 18px;
  }
}
.breadcrumb br {
  display: none;
}

@media (max-width: 1023px) {
  .home.blog .entry:nth-child(n+5) {
    display: none;
  }
}

.entry {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .single .entry {
    min-height: 390px;
  }
}
.home .entry {
  /*border: 5px solid $brand-primary;*/
  border-radius: 10px;
  box-shadow: inset 0 0 0 5px #ff0000;
  margin-bottom: 3%;
  padding: 35px;
}
@media (min-width: 1024px) {
  .home .entry {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 30.333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .home .entry:before, .home .entry:after {
    content: '';
    display: table;
  }
  .home .entry:after {
    clear: both;
  }
  .home .entry:nth-child(3n) {
    margin-right: 3%;
    float: right;
  }
  .home .entry:nth-child(3n + 1) {
    clear: both;
  }
}
@media (max-width: 1023px) {
  .home .entry {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 46%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .home .entry:before, .home .entry:after {
    content: '';
    display: table;
  }
  .home .entry:after {
    clear: both;
  }
  .home .entry:nth-child(3n) {
    margin-right: 3%;
    float: left;
  }
  .home .entry:nth-child(3n + 1) {
    clear: none;
  }
  .home .entry:nth-child(2n) {
    margin-right: 5%;
    float: right;
  }
  .home .entry:nth-child(2n + 1) {
    clear: both;
  }
  .heading-01{
    padding: 8px 0;
  }
}
@media (max-width: 767px) {
  .home .entry {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin-left: -10px;
    padding: 20px;
  }
  .home .entry:before, .home .entry:after {
    content: '';
    display: table;
  }
  .home .entry:after {
    clear: both;
  }
  .home .entry:nth-child(2n) {
    float: left;
  }
  .home .entry:nth-child(2n + 1) {
    clear: none;
  }
}
.single.has-featured-image .content .entry, .page.has-featured-image .content .entry {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
}
.single.has-featured-image .content .entry:before, .single.has-featured-image .content .entry:after, .page.has-featured-image .content .entry:before, .page.has-featured-image .content .entry:after {
  content: '';
  display: table;
}
.single.has-featured-image .content .entry:after, .page.has-featured-image .content .entry:after {
  clear: both;
}
.single.has-featured-image .content .entry:last-child, .page.has-featured-image .content .entry:last-child {
  margin-right: 0%;
}
@media (max-width: 1023px) {
  .single.has-featured-image .content .entry, .page.has-featured-image .content .entry {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin-bottom: 40px;
    padding: 0 40px 40px 40px;
  }
  .single.has-featured-image .content .entry:before, .single.has-featured-image .content .entry:after, .page.has-featured-image .content .entry:before, .page.has-featured-image .content .entry:after {
    content: '';
    display: table;
  }
  .single.has-featured-image .content .entry:after, .page.has-featured-image .content .entry:after {
    clear: both;
  }
}
.search.has-featured-image .content .entry {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}
.search.has-featured-image .content .entry:before, .search.has-featured-image .content .entry:after {
  content: '';
  display: table;
}
.search.has-featured-image .content .entry:after {
  clear: both;
}
.media .entry.type-post {
  background-position: 90% 35px;
  background-repeat: no-repeat;
  border-color: #f5f5f6;
  border-style: solid;
  border-width: 0 4px 4px 0;
  color: #000;
  cursor: pointer;
  display: block;
  height: 160px;
  line-height: 30px;
  min-height: auto;
  padding: 20px 35px;
}
@media (min-width: 1024px) {
  .media .entry.type-post {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .media .entry.type-post:before, .media .entry.type-post:after {
    content: '';
    display: table;
  }
  .media .entry.type-post:after {
    clear: both;
  }
  .media .entry.type-post:last-child {
    margin-right: 0%;
  }
}
@media (max-width: 1023px) {
  .media .entry.type-post {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .media .entry.type-post:before, .media .entry.type-post:after {
    content: '';
    display: table;
  }
  .media .entry.type-post:after {
    clear: both;
  }
  .media .entry.type-post:last-child {
    margin-right: 0%;
  }
}
@media (max-width: 767px) {
  .media .entry.type-post {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .media .entry.type-post:before, .media .entry.type-post:after {
    content: '';
    display: table;
  }
  .media .entry.type-post:after {
    clear: both;
  }
}
@media (max-width: 767px) {
  .media .entry.type-post .entry-header {
    margin-bottom: 0;
  }
}
.media .entry.type-post:hover {
  background-color: #f5f5f6;
}
.media .entry.type-post.category-tekst {
  background-image: url("../images/ico-media-text.png");
}
.media .entry.type-post.category-audio {
  background-image: url("../images/ico-media-audio.png");
}
.media .entry.type-post.category-video {
  background-image: url("../images/ico-media-video.png");
}
.media.contrast .entry.type-post {
  border-color: #111;
  color: #fff;
}
.media.contrast .entry.type-post:hover {
  background-color: #111;
}
.actions .entry.type-post {
  height: auto;
}
.actions .entry.type-post img {
  float: right;
}
.search .entry {
  border-top: 2px solid #f5f5f6;
  margin-bottom: 40px;
  padding-top: 33.333px;
}
.entry:hover .full-box-image {
  opacity: 1;
}

@media (max-width: 1023px) {
  .entry-image-wrap {
    margin-left: -40px;
    text-align: center;
  }
}

.home .post-image {
  height: 100%;
  left: 0;
  position: absolute;
  opacity: 0;
  top: 0;
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  width: 100%;
  border-radius: 10px;
}

.entry-extra {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  font-size: 11px;
}
.entry-extra:before, .entry-extra:after {
  content: '';
  display: table;
}
.entry-extra:after {
  clear: both;
}
.entry-extra:last-child {
  margin-right: 0%;
}
@media (max-width: 1023px) {
  .entry-extra {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    border-top: 2px solid #f5f5f6;
    margin-left: -40px;
    width: calc(100% + 40px);
  }
  .entry-extra:before, .entry-extra:after {
    content: '';
    display: table;
  }
  .entry-extra:after {
    clear: both;
  }
}
.entry-extra a {
  color: #000;
}
.entry-extra .row {
  border-bottom: 2px solid #f5f5f6;
  height: 38px;
  padding: 10px 0;
}
@media (max-width: 1023px) {
  .entry-extra .row {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 20px;
  }
  .entry-extra .row:before, .entry-extra .row:after {
    content: '';
    display: table;
  }
  .entry-extra .row:after {
    clear: both;
  }
}
@media (max-width: 1023px) {
  .entry-extra .row.image-caption-row {
    float: right;
    padding-right: 20px;
    text-align: right;
    width: 100%;
    height: 50px;
  }
}
@media (max-width: 1023px) {
  .entry-extra .entry-image-wrap {
    display: none;
  }
}
@media (min-width: 1200px) {
  .entry-extra .affix {
    position: fixed;
    top: 101px;
    width: 601px;
  }
  .entry-extra .affix-bottom {
    position: absolute;
    width: 601px;
  }
}

.social-share .ico {
  background: url("../images/social-share.png") no-repeat 0 0;
  display: inline-block;
  height: 15px;
  width: 15px;
}
.social-share .ico:hover {
  background-position: 0 -15px;
}
.social-share .ico.twitter {
  background-position: -19px 0;
}
.social-share .ico.twitter:hover {
  background-position: -19px -15px;
}
.social-share .ico.youtube {
  background-position: -41px 0;
  margin-left: 2px;
}
.social-share .ico.print {
  background: url("../images/ico-print.png") no-repeat 0 0;
  margin-left: 4px;
  height: 14px;
  width: 18px;
}
.social-share .ico.print:hover {
  background-position: 0 -28px;
}
.social-share .ico.download {
  background: url("../images/ico-download.png") no-repeat 0 0;
  margin-left: 8px;
  width: 16px;
}
.social-share .ico.download:hover {
  background-position: 0 -15px;
}
.contrast .social-share .ico {
  background-image: url("../images/social-share-contrast.png");
}
.contrast .social-share .ico:hover {
  background-image: url("../images/social-share.png");
  background-position: 0 -15px;
}
.contrast .social-share .ico.twitter:hover {
  background-position: -19px -15px;
}
.contrast .social-share .ico.print {
  background: url("../images/ico-print.png") no-repeat 0 -14px;
}
.contrast .social-share .ico.print:hover {
  background-position: 0 -28px;
}

.entry-header {
  *zoom: 1;
}
.entry-header:before, .entry-header:after {
  content: '';
  display: table;
}
.entry-header:after {
  clear: both;
}
.single .entry-header, .page .entry-header, .content-sidebar-wrap .entry-header {
  margin-bottom: 40px;
  margin-top: 40px;
}
.home .entry-header, .search-results .entry-header {
  margin: 0 !important;
}
.media-posts .entry-header {
  margin: 0;
}

.entry-title {
  font-size: 20px;
  overflow: hidden;
  word-break: break-word;
}
.home article .entry-title, .search article .entry-title, .inspirations .type-inspiration .entry-title {
  width: auto;
}
.home article .entry-title:after, .search article .entry-title:after, .inspirations .type-inspiration .entry-title:after {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 30px 0;
  max-width: 220px;
}
@media (max-width: 767px) {
  .home article .entry-title:after, .search article .entry-title:after, .inspirations .type-inspiration .entry-title:after {
    display: none;
  }
}
.home article .entry-title a, .search article .entry-title a {
  display: block;
  height: 50px;
  overflow: hidden;
}
.inspirations .type-inspiration .entry-title:after {
  margin: 20px 0;
}
.single .entry-title, .page .type-page .entry-title {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.667%;
  margin-left: 0%;
  margin-right: 3%;
}
.single .entry-title:before, .single .entry-title:after, .page .type-page .entry-title:before, .page .type-page .entry-title:after {
  content: '';
  display: table;
}
.single .entry-title:after, .page .type-page .entry-title:after {
  clear: both;
}
.single .entry-title:last-child, .page .type-page .entry-title:last-child {
  margin-right: 0%;
}
.media-only .type-post .entry-title {
  font-family: "gotham_narrowbook";
  font-size: 14px;
  max-width: 280px;
  width: 100%;
}
@media (max-width: 1199px) {
  .media-only .type-post .entry-title {
    max-width: 215px;
  }
}
.media-only .type-post .entry-title:after, .media-only .type-post .entry-title:before {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 10px 0;
  max-width: 210px;
}
.media-only .type-post .entry-title a:after {
  content: " >>";
  display: inline;
}
.media-only.contrast .type-post .entry-title:after, .media-only.contrast .type-post .entry-title:before {
  border: 1px solid #fff;
}
.actions .type-post .entry-title {
  line-height: 50px;
}
.entry-title a {
  color: inherit;
  text-decoration: none;
}
.entry-title a:hover, .entry-title a:focus, .entry-title a:active {
  text-decoration: underline;
}

.contrast.home article .entry-title:after, .contrast.search article .entry-title:after, .contrast.inspirations .type-inspiration .entry-title:after {
  border-color: #fff;
}

.header-extra {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.333%;
  margin-left: 0%;
  margin-right: 3%;
  font-family: "gotham_narrowbold";
  line-height: 22px;
  margin-top: -5px;
}
.header-extra:before, .header-extra:after {
  content: '';
  display: table;
}
.header-extra:after {
  clear: both;
}
.header-extra:last-child {
  margin-right: 0%;
}
.header-extra a {
  color: #000;
}
.header-extra .font-resizer {
  float: right;
}
.header-extra .languages {
  float: right;
  margin-left: 40px;
  text-transform: uppercase;
}
.header-extra .languages li {
  display: inline;
}
.header-extra .languages li.lang-item-en:before {
  content: " / ";
}
.contrast .header-extra a {
  color: #fff;
}

.archive-title {
  font-size: 20px;
  margin-bottom: 33.333px;
  margin-top: 33.333px;
}

.entry-content, .comment-content {
  margin-bottom: 0;
}
.actions .type-post .entry-content, .actions .type-post .comment-content {
  display: none;
}
.entry-content h1, .comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
  margin-bottom: 10px;
}
.entry-content h2, .comment-content h2,
.entry-content h3,
.comment-content h3 {
  font-size: 20px;
}
.entry-content h2 a, .comment-content h2 a,
.entry-content h3 a,
.comment-content h3 a {
  color: #000;
}
.contrast .entry-content h2 a, .contrast .comment-content h2 a,
.contrast .entry-content h3 a,
.contrast .comment-content h3 a {
  color: #fff;
}
.entry-content ol, .comment-content ol,
.entry-content ul,
.comment-content ul {
  list-style-position: inside;
}
.entry-content ol ol, .comment-content ol ol,
.entry-content ol ul,
.comment-content ol ul,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ul ul,
.comment-content ul ul {
  margin-bottom: .5em;
  padding-left: 1.5em;
}
.entry-content ol li, .comment-content ol li {
  list-style-type: decimal;
}
.entry-content ul li, .comment-content ul li {
  list-style-image: url("../images/list-arrow.png");
}
.entry-content table, .comment-content table {
  margin-bottom: 1.5em;
}
.entry-content .red, .comment-content .red {
  color: #ff0000;
}
.entry-content .featured-text-01, .comment-content .featured-text-01 {
  font-family: "gotham_narrowbold";
  margin: 2em 20px;
}
.entry-content .featured-text-02:before, .comment-content .featured-text-02:before, .entry-content .featured-text-02:after, .comment-content .featured-text-02:after {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 10px 0;
  width: 210px;
}
.entry-content .featured-text-02 a, .comment-content .featured-text-02 a {
  color: #000;
}
.contrast .entry-content .featured-text-02:before, .contrast .comment-content .featured-text-02:before, .contrast .entry-content .featured-text-02:after, .contrast .comment-content .featured-text-02:after {
  border-color: #fff;
}
.contrast .entry-content .featured-text-02 a, .contrast .comment-content .featured-text-02 a {
  color: #fff;
}
.entry-content .featured-text-03, .comment-content .featured-text-03 {
  margin-bottom: 2em;
}
.entry-content .featured-text-03:before, .comment-content .featured-text-03:before, .entry-content .featured-text-03:after, .comment-content .featured-text-03:after {
  border: 1px solid #ff0000;
  content: "";
  display: block;
  margin: 10px 0;
}
.entry-content .featured-text-04:before, .comment-content .featured-text-04:before, .entry-content .featured-text-04:after, .comment-content .featured-text-04:after {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 10px 0;
}
.entry-content .featured-text-04 li, .comment-content .featured-text-04 li {
  border-bottom: 2px solid #000;
  list-style: none;
  padding: 10px 1px;
}
.entry-content .featured-text-04 li:first-child, .comment-content .featured-text-04 li:first-child {
  padding-top: 0;
}
.entry-content .featured-text-04 li:last-child, .comment-content .featured-text-04 li:last-child {
  border: 0;
  padding-bottom: 0;
}
.entry-content .featured-text-05 li, .comment-content .featured-text-05 li {
  list-style: none;
  padding: 0 1px;
}
.entry-content .featured-text-05 li:first-child, .comment-content .featured-text-05 li:first-child {
  margin-top: 20px;
}
.entry-content .featured-text-05 li:first-child:before, .comment-content .featured-text-05 li:first-child:before {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 10px 0;
  max-width: 230px;
}
.entry-content .featured-text-05 li:after, .comment-content .featured-text-05 li:after {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 10px 0;
  max-width: 230px;
}
.entry-content .featured-text-05 li a, .comment-content .featured-text-05 li a {
  color: #000;
}
.contrast .entry-content .featured-text-05 li:before, .contrast .comment-content .featured-text-05 li:before, .contrast .entry-content .featured-text-05 li:after, .contrast .comment-content .featured-text-05 li:after {
  border-color: #fff;
}
.contrast .entry-content .featured-text-05 a, .contrast .comment-content .featured-text-05 a {
  color: #fff;
}

.entry-meta {
  clear: both;
  font-family: "gotham_narrowbold";
  font-size: 20px;
  margin-bottom: 15px;
}
.media .type-post .entry-meta {
  margin-bottom: 5px;
}

.archive-pagination {
  clear: both;
  border-top: 2px solid #f5f5f6;
  font-size: 13px;
  margin-left: -40px;
  margin-right: -40px;
  padding-top: 10px;
}
.archive-pagination > div {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .archive-pagination > div {
    margin-right: 20px;
  }
}
.archive-pagination a {
  color: #000;
}
.archive-pagination li {
  display: inline;
}
.home.blog .archive-pagination {
  border-top: 0;
  position: relative;
  top: -30px;
}
@media (max-width: 767px) {
  .home.blog .archive-pagination {
    margin-right: -20px;
    top: -15px;
  }
}
@media (max-width: 767px) {
  .home.page .archive-pagination {
    border-top: 0;
  }
}
.media .archive-pagination {
  background-color: #fff;
  border-top: 0;
}
.media.contrast .archive-pagination {
  background-color: #000;
}
.media .content > .archive-pagination {
  display: none;
}
.contrast .archive-pagination {
  border-color: #111;
}
.contrast .archive-pagination a {
  color: #fff;
}

.alm-btn-wrap {
  clear: both;
  border-top: 2px solid #f5f5f6;
  font-size: 13px;
  padding-top: 10px;
  text-align: right;
}
.media .alm-btn-wrap {
  border-top: 0;
}
.alm-btn-wrap button {
  background-color: transparent;
  color: #ff0000;
  font-size: 15px;
  overflow: visible;
  padding: 0 0 5px;
  position: relative;
}
.alm-btn-wrap button.loading:before {
  background: url("../images/ajax-loader.gif") no-repeat left center;
  content: "";
  display: block;
  height: 24px;
  left: -30px;
  position: absolute;
  top: -5px;
  width: 24px;
}
.alm-btn-wrap button.done {
  display: none;
}

/* Home */
.about-content {
  *zoom: 1;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
}
.about-content:before, .about-content:after {
  content: '';
  display: table;
}
.about-content:after {
  clear: both;
}
@media (max-width: 1023px) {
  .about-content {
    margin-top: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .about-content {
    background: none;
    padding: 0;
  }
}
.about-content > .wrap {
  background: url("../images/about-content-graf.png") no-repeat 99.5% 70%;
}
@media (min-width: 1200px) {
  .about-content > .wrap {
    background-position: 85% 70%;
  }
}
@media (max-width: 1023px) {
  .about-content > .wrap {
    background: url("../images/about-content-graf-sm.png") no-repeat 40px 40px;
    padding-top: 280px;
  }
}
@media (max-width: 767px) {
  .about-content > .wrap {
    background: none;
    padding: 0;
  }
}
.about-content .title,
.about-content .entry-content,
.about-content .comment-content {
  background-color: #fff;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15);
  clear: both;
  float: left;
  font-size: 18px;
  line-height: 1;
  max-width: 640px;
  padding: 20px;
}
@media (max-width: 1023px) {
  .about-content .title,
  .about-content .entry-content,
  .about-content .comment-content {
    max-width: none;
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .about-content .title,
  .about-content .entry-content,
  .about-content .comment-content {
    box-shadow: none;
    border-color: #ff0000;
    border-style: solid;
    border-width: 0 8px 8px;
    float: none;
    font-size: 14px;
  }
}
.about-content .title p,
.about-content .entry-content p,
.about-content .comment-content p {
  margin-bottom: 1.5em;
}
.about-content .title p:last-of-type,
.about-content .entry-content p:last-of-type,
.about-content .comment-content p:last-of-type {
  margin-bottom: 0;
}
.about-content .title a,
.about-content .entry-content a,
.about-content .comment-content a {
  color: #000;
}
.about-content .title {
  font-family: "gotham_narrowbold";
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .about-content .title {
    border-width: 8px 8px 0;
    margin-bottom: 0;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.contrast .about-content .title,
.contrast .about-content .entry-content,
.contrast .about-content .comment-content {
  background-color: #000;
}
.contrast .about-content a {
  color: #fff;
}

/* People */
.people h2 {
  margin-bottom: 40px;
  margin-top: 10px;
}

.people-section {
  *zoom: 1;
}
.people-section:before, .people-section:after {
  content: '';
  display: table;
}
.people-section:after {
  clear: both;
}

.person {
  color: #000;
  margin-bottom: 33px;
}
@media (min-width: 1024px) {
  .person {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .person:before, .person:after {
    content: '';
    display: table;
  }
  .person:after {
    clear: both;
  }
  .person:nth-child(3n) {
    margin-right: 0%;
    float: right;
  }
  .person:nth-child(3n + 1) {
    clear: both;
  }
}
@media (max-width: 1023px) {
  .person {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .person:before, .person:after {
    content: '';
    display: table;
  }
  .person:after {
    clear: both;
  }
  .person:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  .person:nth-child(2n + 1) {
    clear: both;
  }
}
@media (max-width: 767px) {
  .person {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .person:before, .person:after {
    content: '';
    display: table;
  }
  .person:after {
    clear: both;
  }
}
.person:hover {
  text-decoration: none;
}
.person img {
  border: 7px solid #fff;
  border-radius: 80%;
  float: left;
  margin-right: 13px;
}
@media (min-width: 1024px) {
  .person img {
    height: 130px;
    width: 130px;
  }
}
@media (max-width: 767px) {
  .person img {
    border-width: 4.5px;
    height: 100px;
    width: 100px;
  }
}
.person:hover img {
  border-color: #ff0000 !important;
}
.person p {
  margin-bottom: 0;
}
.person p.name {
  font-family: "gotham_narrowmedium";
}
.person p.description {
  overflow: hidden;
}
.contrast .person {
  color: #fff;
}
.contrast .person img {
  border-color: #000;
}

.single-person .entry-time {
  display: none;
}

/* Search */
.search-main {
  padding-bottom: 40px;
  padding-top: 40px;
}
.search-main .search-button {
  background: url("../images/ico-search.png") no-repeat 0 0;
  border: none;
  height: 50px;
  margin-right: 20px;
  padding: 0;
  width: 50px;
}
.search-main .search-input {
  background-color: #ff0000;
  border: none;
  color: #fff;
  font-family: "gotham_narrowbold";
  font-size: 20px;
  padding: 12px 15px;
  max-width: 70%;
}

/* HIA Network - Page Template */
.network .site-inner {
  padding-left: 0;
}
@media (min-width: 1024px) {
  .network .entry {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.0%;
    margin-left: 0%;
    margin-right: 0%;
    max-width: 426px;
  }
  .network .entry:before, .network .entry:after {
    content: '';
    display: table;
  }
  .network .entry:after {
    clear: both;
  }
}
.network .entry-header {
  padding-left: 40px;
}
.network .entry-header .entry-title {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
}
.network .entry-header .entry-title:before, .network .entry-header .entry-title:after {
  content: '';
  display: table;
}
.network .entry-header .entry-title:after {
  clear: both;
}
.network .entry-header .entry-title:last-child {
  margin-right: 0%;
}
.network .country {
  border-color: #fff #f5f5f6 #f5f5f6 #f5f5f6;
  border-style: solid;
  border-width: 4px;
  color: #000;
  display: block;
  line-height: 30px;
  padding: 6px 35px;
}
.network .country:first-child {
  border-top-color: #f5f5f6;
}
.network .country:hover {
  border-color: #ff0000 !important;
  text-decoration: none;
}
.network .country .flag {
  float: right;
}
.network.contrast .country {
  border-color: #000 #111 #111 #111;
  color: #fff;
}
.network.contrast .country:first-child {
  border-top-color: #111;
}
.network .btn-network {
  float: right;
  margin: 30px 39px 0 0;
}
@media (max-width: 1023px) {
  .network .btn-network {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .network .btn-network {
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 155px;
  }
}

@media (min-width: 1024px) {
  .network-map {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 67%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    max-width: 858px;
  }
  .network-map:before, .network-map:after {
    content: '';
    display: table;
  }
  .network-map:after {
    clear: both;
  }
}
.network-map img {
  width: 100%;
}
@media (max-width: 767px) {
  .network-map img {
    display: none;
  }
}

/* Media */
@media (max-width: 1023px) {
  .media .type-page {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    padding-right: 40px;
  }
  .media .type-page:before, .media .type-page:after {
    content: '';
    display: table;
  }
  .media .type-page:after {
    clear: both;
  }
}
@media (max-width: 1023px) {
  .media .entry-extra {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    text-align: center;
  }
  .media .entry-extra:before, .media .entry-extra:after {
    content: '';
    display: table;
  }
  .media .entry-extra:after {
    clear: both;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .media .entry-extra img {
    margin-left: 40px;
  }
}

.media .media-posts {
  border-color: #f5f5f6;
  border-style: solid;
  border-width: 0 0 0 4px;
  margin-left: -40px;
}
.media .content > .media-posts {
  border-top-width: 4px;
  clear: both;
  margin-top: 40px;
}
.media.contrast .media-posts {
  border-color: #111;
}
.media .archive-pagination > div {
  margin-right: 80px;
}

.media-only .media-posts {
  margin-right: -40px;
}

/* Actions */
.actions .image-caption-row,
.actions .gallery-row {
  display: none;
}
@media (max-width: 1023px) {
  .actions .entry-extra {
    text-align: left;
  }
}

/* Prawa */
.post-30.type-page {
  min-height: 1318px;
}
@media (max-width: 1023px) {
  .post-30.type-page .one-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .post-30.type-page .one-half:before, .post-30.type-page .one-half:after {
    content: '';
    display: table;
  }
  .post-30.type-page .one-half:after {
    clear: both;
  }
}
.post-30.type-page img {
  position: absolute;
  right: 10%;
  top: 160px;
}
@media (max-width: 1023px) {
  .post-30.type-page img {
    top: 320px;
    opacity: 0.2;
  }
}

/* Model */
.page-id-5 .site-inner,
.page-id-5 .entry {
  overflow: visible;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .model-margin-fix {
    left: -10px;
    position: relative;
  }
}

.model {
  background: url("../images/model-lines.png") no-repeat 0 0;
  height: 1738px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 1202px;
}
@media (min-width: 768px) {
  .model {
    background: url("../images/model-lines-sm.png") no-repeat 0 0;
    height: 999px;
    margin-bottom: 40px;
    margin-top: 40px;
    width: 692px;
  }
}
.model .inside {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.model.education .inside {
  background: url("../images/model-education.png") no-repeat 140px 202px;
}
@media (min-width: 768px) {
  .model.education .inside {
    background: url("../images/model-education-sm.png") no-repeat 80px 117px;
  }
}
.model.action .inside {
  background: url("../images/model-action.png") no-repeat 99px 240px;
}
@media (min-width: 768px) {
  .model.action .inside {
    background: url("../images/model-action-sm.png") no-repeat 57px 138px;
  }
}
.model.inspiration .inside {
  background: url("../images/model-inspiration.png") no-repeat 133px 229px;
}
@media (min-width: 768px) {
  .model.inspiration .inside {
    background: url("../images/model-inspiration-sm.png") no-repeat 76px 131px;
  }
}
.model .elements {
  background: url("../images/model-elements.png") no-repeat 0 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .model .elements {
    background: url("../images/model-elements-sm.png") no-repeat 0 0;
  }
}
.model a {
  /*background: rgba(0,0,0,.5);*/
  display: block;
  height: 189px;
  left: 542px;
  position: absolute;
  top: 243px;
  width: 153px;
}
@media (min-width: 768px) {
  .model a {
    height: 108px;
    left: 311px;
    top: 140px;
    width: 88px;
  }
}
.model a.trigger-action {
  left: 105px;
  top: 756px;
}
@media (min-width: 768px) {
  .model a.trigger-action {
    left: 61px;
    top: 435px;
  }
}
.model a.trigger-inspiration {
  left: 739px;
  top: 703px;
}
@media (min-width: 768px) {
  .model a.trigger-inspiration {
    left: 424px;
    top: 404px;
  }
}
@media (min-width: 768px) {
  .contrast .model .elements {
    background: url("../images/model-elements-sm-contrast.png") no-repeat 0 0;
  }
}

/* Inspirations */
@media (min-width: 1024px) {
  .inspirations .content-sidebar-wrap {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 76.5%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .inspirations .content-sidebar-wrap:before, .inspirations .content-sidebar-wrap:after {
    content: '';
    display: table;
  }
  .inspirations .content-sidebar-wrap:after {
    clear: both;
  }
}
.inspirations .inspiration-image {
  float: right;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .inspirations .inspiration-image {
    display: none;
  }
}
.inspirations .search-input {
  max-width: 92%;
}
@media (max-width: 767px) {
  .inspirations .search-input {
    max-width: 72%;
  }
}
.inspirations .site-inner .scroll-to {
  background: url("../images/arrow-dot-down.png") no-repeat 0 0;
  display: inline-block;
  height: 50px;
  margin-bottom: 40px;
  width: 50px;
}
.inspirations .taxonomy {
  margin-bottom: 40px;
}
.inspirations .taxonomy h2 {
  border-bottom: 2px solid #000;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.inspirations .taxonomy ul {
  *zoom: 1;
}
.inspirations .taxonomy ul:before, .inspirations .taxonomy ul:after {
  content: '';
  display: table;
}
.inspirations .taxonomy ul:after {
  clear: both;
}
.inspirations .taxonomy ul li {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.333%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 5px;
}
.inspirations .taxonomy ul li:before, .inspirations .taxonomy ul li:after {
  content: '';
  display: table;
}
.inspirations .taxonomy ul li:after {
  clear: both;
}
.inspirations .taxonomy ul li:nth-child(3n) {
  margin-right: 0%;
  float: right;
}
.inspirations .taxonomy ul li:nth-child(3n + 1) {
  clear: both;
}
@media (max-width: 767px) {
  .inspirations .taxonomy ul li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .inspirations .taxonomy ul li:before, .inspirations .taxonomy ul li:after {
    content: '';
    display: table;
  }
  .inspirations .taxonomy ul li:after {
    clear: both;
  }
  .inspirations .taxonomy ul li:nth-child(3n) {
    margin-right: 3%;
    float: left;
  }
  .inspirations .taxonomy ul li:nth-child(3n + 1) {
    clear: none;
  }
  .inspirations .taxonomy ul li:last-child {
    margin-right: 0%;
  }
}
.inspirations .taxonomy ul li a {
  color: #000;
  font-family: "gotham_narrowmedium";
}
.inspirations .taxonomy ul li.active a {
  color: #ff0000;
}
.inspirations #inspirations.wrap {
  padding: 0;
}
.inspirations .content > .entry-extra {
  display: none;
}
.inspirations .type-inspiration {
  *zoom: 1;
  border-top: 4px solid #f5f5f6;
}
.inspirations .type-inspiration:before, .inspirations .type-inspiration:after {
  content: '';
  display: table;
}
.inspirations .type-inspiration:after {
  clear: both;
}
.inspirations .type-inspiration:last-child {
  border-bottom: 4px solid #f5f5f6;
}
.inspirations .inspiration-content {
  padding: 40px;
}
@media (min-width: 768px) {
  .inspirations .inspiration-content {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 80%;
    margin-left: 0%;
    margin-right: 0%;
    border-right: 4px solid #f5f5f6;
  }
  .inspirations .inspiration-content:before, .inspirations .inspiration-content:after {
    content: '';
    display: table;
  }
  .inspirations .inspiration-content:after {
    clear: both;
  }
}
@media (max-width: 1023px) {
  .inspirations .inspiration-content {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 70%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .inspirations .inspiration-content:before, .inspirations .inspiration-content:after {
    content: '';
    display: table;
  }
  .inspirations .inspiration-content:after {
    clear: both;
  }
}
@media (max-width: 767px) {
  .inspirations .inspiration-content {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    padding: 20px;
  }
  .inspirations .inspiration-content:before, .inspirations .inspiration-content:after {
    content: '';
    display: table;
  }
  .inspirations .inspiration-content:after {
    clear: both;
  }
}
.inspirations .inspiration-content .entry-header {
  margin: 0;
}
.inspirations .inspiration-content .entry-header a {
  display: inline-block;
  margin-bottom: 20px;
}
.inspirations .inspiration-meta {
  padding: 40px 20px;
}
@media (min-width: 1024px) {
  .inspirations .inspiration-meta {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 20%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .inspirations .inspiration-meta:before, .inspirations .inspiration-meta:after {
    content: '';
    display: table;
  }
  .inspirations .inspiration-meta:after {
    clear: both;
  }
}
@media (max-width: 1023px) {
  .inspirations .inspiration-meta {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 30%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .inspirations .inspiration-meta:before, .inspirations .inspiration-meta:after {
    content: '';
    display: table;
  }
  .inspirations .inspiration-meta:after {
    clear: both;
  }
}
@media (max-width: 767px) {
  .inspirations .inspiration-meta {
    display: none;
  }
}
.inspirations .inspiration-meta .date {
  font-family: "gotham_narrowbold";
  font-size: 20px;
}
.inspirations .inspiration-meta .date:after {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 20px 0;
  max-width: 40px;
}
@media (max-width: 767px) {
  .inspirations .inspiration-meta .author:after {
    border: 1px solid #000;
    content: "";
    display: block;
    margin: 20px 0;
    max-width: 40px;
  }
}
@media (min-width: 768px) {
  .inspirations .entry-header .inspiration-meta {
    display: none;
  }
}
@media (max-width: 767px) {
  .inspirations .entry-header .inspiration-meta {
    display: block;
    padding: 0;
    width: 100%;
  }
}
.inspirations.contrast .taxonomy ul li a {
  color: #fff;
}

/* Działania aktywistów */
@media (max-width: 1023px) {
  .page-id-35 .entry-extra {
    border: 0;
    margin-top: -80px;
  }
  .page-id-35 .entry-image-wrap {
    display: block !important;
  }
  .page-id-35 .entry-image-wrap-sm {
    display: none !important;
  }
}
.page-id-35 .entry-extra .row {
  border-bottom: none;
}
.page-id-35 .entry-extra .affix {
  position: static !important;
}
@media (min-width: 1200px) {
  .page-id-35 .post-image {
    margin-top: -25px;
  }
}
.page-id-35 .media-posts {
  border-top-width: 4px;
}

/* O fundacji */
.page-id-4 .social-share {
  clear: both;
}

.full-box-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  border-radius: 10px;
}

.attachment .header-extra {
  display: none;
}
.attachment .social-share {
  clear: both;
  float: left;
  margin-top: 15px;
}
.attachment .entry-content, .attachment .comment-content {
  margin-bottom: 40px;
}
.attachment .attachment-full {
  margin-bottom: 20px;
}

.sidebar .widgettitle {
  font-family: "gotham_narrowbold";
  font-size: 14px;
}

.footer-widgets {
  border-top: 2px solid #f5f5f6;
  font-size: 13px;
  margin-bottom: 40px;
  margin-top: 40px;
  padding-top: 40px;
}
@media (max-width: 1023px) {
  .footer-widgets {
    margin-bottom: 20px;
    padding-top: 20px;
  }
}
.contrast .footer-widgets {
  border-top-color: #111;
}
.home.blog .footer-widgets {
  border-top: 0;
  margin-top: 0;
}
.home.page .footer-widgets {
  margin-top: 10px;
}
@media (max-width: 1023px) {
  .has-featured-image .footer-widgets {
    border-top: 0;
    margin-top: 0;
  }
}
.search .footer-widgets, .media .footer-widgets {
  margin-top: 10px;
}
.network .footer-widgets {
  margin-top: 0;
}
.footer-widgets .one-third {
  background: url("../images/footer-sep.png") no-repeat right 0;
}
.footer-widgets .one-third:last-child {
  background: none;
}
@media (min-width: 1200px) {
  .footer-widgets .one-third {
    padding-right: 2.564102564102564%;
    width: auto;
  }
}
.footer-widgets .footer-widgets-1 {
  *zoom: 1;
}
.footer-widgets .footer-widgets-1:before, .footer-widgets .footer-widgets-1:after {
  content: '';
  display: table;
}
.footer-widgets .footer-widgets-1:after {
  clear: both;
}
@media (min-width: 1024px) {
  .footer-widgets .footer-widgets-1 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 69.1%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .footer-widgets .footer-widgets-1:before, .footer-widgets .footer-widgets-1:after {
    content: '';
    display: table;
  }
  .footer-widgets .footer-widgets-1:after {
    clear: both;
  }
  .footer-widgets .footer-widgets-1:last-child {
    margin-right: 0%;
  }
}
@media (max-width: 1023px) {
  .footer-widgets .footer-widgets-1 {
    border-bottom: 2px solid #f5f5f6;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-widgets .footer-widgets-1 {
    text-align: center;
  }
}
.footer-widgets .footer-widgets-1 .widget h3 {
  font-family: "gotham_narrowmedium";
}
@media (max-width: 767px) {
  .footer-widgets .footer-widgets-1 .widget h3 {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .footer-widgets .footer-widgets-2 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 27.9%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: right;
  }
  .footer-widgets .footer-widgets-2:before, .footer-widgets .footer-widgets-2:after {
    content: '';
    display: table;
  }
  .footer-widgets .footer-widgets-2:after {
    clear: both;
  }
  .footer-widgets .footer-widgets-2:last-child {
    margin-right: 0%;
  }
}
@media (max-width: 767px) {
  .footer-widgets .footer-widgets-2 {
    text-align: center;
  }
}
.footer-widgets .footer-widgets-2 .widget .textwidget {
  *zoom: 1;
}
.footer-widgets .footer-widgets-2 .widget .textwidget:before, .footer-widgets .footer-widgets-2 .widget .textwidget:after {
  content: '';
  display: table;
}
.footer-widgets .footer-widgets-2 .widget .textwidget:after {
  clear: both;
}
.footer-widgets .footer-widgets-2 .widget h3 {
  font-family: inherit;
  font-size: 11.5px;
  text-align: right;
}
@media (max-width: 1023px) {
  .footer-widgets .footer-widgets-2 .widget h3 {
    float: right;
    line-height: 1.625;
    margin-bottom: 0;
    width: 28%;
  }
}
@media (max-width: 767px) {
  .footer-widgets .footer-widgets-2 .widget h3 {
    float: none;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .footer-widgets .footer-widgets-2 .widget img {
    float: left;
  }
}
@media (max-width: 767px) {
  .footer-widgets .footer-widgets-2 .widget img {
    float: none;
  }
}
.footer-widgets .widget h3 {
  font-size: 14px;
  margin-bottom: 30px;
}
.footer-widgets .widget a {
  color: #000;
}
.footer-widgets .widget a:hover {
  color: #ff0000;
}
.contrast .footer-widgets .widget a {
  color: #fff;
}

.site-footer {
  border-top: 2px solid #f5f5f6;
  font-size: 11px;
  padding: 10px 0;
  text-align: right;
}
@media (max-width: 767px) {
  .site-footer {
    text-align: center;
  }
}
.contrast .site-footer {
  border-top-color: #111;
}
.site-footer a {
  color: #000;
}
.site-footer a:hover {
  color: #ff0000;
}
.contrast .site-footer a {
  color: #fff;
}

@media (min-width: 768px) {
  .newsletter {
    float: left;
  }
}
.newsletter form {
  *zoom: 1;
  width: 235px;
}
.newsletter form:before, .newsletter form:after {
  content: '';
  display: table;
}
.newsletter form:after {
  clear: both;
}
@media (max-width: 767px) {
  .newsletter form {
    margin: 20px auto;
  }
}
.newsletter .newsletter-button {
  background: url("../images/newsletter-ico.png") no-repeat 0 0;
  border-radius: 0;
  display: block;
  float: left;
  height: 15px;
  margin: 0 10px 0 0;
  padding: 0;
  width: 25px;
}
.newsletter .newsletter-input {
  background: transparent;
  border: 0;
  float: left;
  font-family: "gotham_narrowmedium";
  font-size: 12px;
  max-width: 200px;
}
.newsletter ::-webkit-input-placeholder {
  opacity: 1;
}
.newsletter :-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
}
.newsletter ::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
}
.newsletter :-ms-input-placeholder {
  opacity: 1;
}
.contrast .newsletter .newsletter-button {
  background-position: 0 bottom;
}

/* Global */
.type-course .entry-header:after {
  border: 1px solid #000;
  content: "";
  display: block;
  margin: 20px 0;
  max-width: 220px;
}
.type-course .entry-header .entry-subtitle {
  display: inline-block;
  font-size: 20px;
}

/* Archive */
.courses-page .type-page .entry-title {
  font-size: 30px;
}
.courses-page .type-page .entry-content, .courses-page .type-page .comment-content {
  margin-bottom: 40px;
}

.courses .type-course {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  border: 5px solid #ff0000;
  border-radius: 10px;
  margin-bottom: 3%;
  padding: 35px;
}
.courses .type-course:before, .courses .type-course:after {
  content: '';
  display: table;
}
.courses .type-course:after {
  clear: both;
}
.courses .type-course:nth-child(2n) {
  margin-right: 0%;
  float: right;
}
.courses .type-course:nth-child(2n + 1) {
  clear: both;
}
.courses .type-course .entry-header {
  margin-top: 10px;
}
.courses .type-course .entry-header .entry-subtitle {
  margin-bottom: 10px;
}
.courses .type-course .entry-header .entry-title {
  font-size: 22px;
  height: 72px;
  overflow: hidden;
}
.courses .type-course .entry-header img {
  float: left;
  margin-right: 40px;
}
@media (max-width: 1000px) {
.courses .type-course .entry-header .entry-title {
    height: auto;
    overflow: visible;
}
}
@media (max-width: 500px) {
.courses .type-course .entry-header .entry-title {
   font-size: 18px;
}
.courses .type-course {
		padding: 20px;
	}
.courses .type-course .entry-header img {
    float: none;
    margin: auto;
    display: block;
}
}
/* Single */
.single-course .entry-subtitle {
  float: left;
  font-family: "gotham_narrowbold";
  font-size: 26px !important;
  width: 66%;
}
.single-course .entry-title {
  font-family: "gotham_narrowmedium";
  font-size: 22px;
  margin-bottom: 40px;
}
.single-course.top-course .entry-title {
  font-family: "gotham_narrowbold";
  font-size: 26px;
}
.single-course .entry-content ol, .single-course .comment-content ol {
  counter-reset: course-counter;
  margin-top: 25px;
  padding-left: 49px;
}
.single-course .entry-content ol li, .single-course .comment-content ol li {
  list-style-type: none;
  margin-bottom: 25px;
  position: relative;
}
.single-course .entry-content ol li:before, .single-course .comment-content ol li:before {
  background-color: #ff0000;
  border-radius: 50%;
  color: #fff;
  content: counter(course-counter,decimal);
  counter-increment: course-counter;
  display: block;
  font-family: "gotham_narrowmedium";
  height: 34px;
  line-height: 34px;
  left: -49px;
  margin-right: 15px;
  position: absolute;
  text-align: center;
  top: -6px;
  width: 34px;
}
.single-course .module {
  border-top: 2px solid #000;
  margin-top: 40px;
  padding-top: 40px;
}
.single-course .module:last-child {
  border-bottom: 2px solid #000;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.single-course .module .module-title a {
  background: url("../images/module-toggle-up.png") no-repeat right center;
  display: block;
  padding-right: 20px;
}
.single-course .module .module-title a.collapsed {
  background-image: url("../images/module-toggle-down.png");
}
.single-course .module .module-title span {
  display: block;
  font-family: "gotham_narrowbook";
  margin-bottom: 5px;
}
.single-course .section {
  margin-top: 40px;
}
.single-course .section .section-title {
  display: table;
  font-size: 20px;
  margin-bottom: 15px;
  table-layout: fixed;
  width: 100%;
}
.single-course .section .section-title span {
  display: table-cell;
  vertical-align: middle;
}
.single-course .section .section-title img {
  margin-right: 26.667px;
}
.single-course .section .red {
  font-family: "gotham_narrowmedium";
  font-size: 20px;
  margin-right: 3px;
}

.back-course {
  display: inline-block;
  margin-bottom: 10px;
}
.back-course span {
  background: url("../images/ico-circle-arrow-left.png") no-repeat 0 0;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  margin-right: 7px;
  width: 25px;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

.collapsing {
  height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
  -webkit-transition-property: height, visibility;
          transition-property: height, visibility;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@media print {
  * {
    background: transparent !important;
    -webkit-filter: none !important;
            filter: none !important;
    color: black !important;
    text-shadow: none !important;
  }

  a:link,
  a:visited {
    color: black !important;
    text-decoration: underline;
  }

  pre,
  blockquote {
    border: 1px solid black;
    page-break-inside: avoid;
  }

  @page {
    margin-top: .75in;
    margin-bottom: .75in;
  }
  p,
  h2,
  h3 {
    orphans: 2;
    widows: 2;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .menu,
  .widget-area,
  .sidebar,
  .footer-widgets,
  .site-footer {
    display: none !important;
  }

  .hide-print {
    display: none !important;
  }

  .title-area {
    float: none;
  }

  .site-header .site-title img {
    display: block;
    margin: 0 auto 1em;
  }

  .content {
    width: 100% !important;
  }

  .entry-title a[href]:after,
  .entry-content a[href]:after,
  .comment-content a[href]:after {
    content: " (" attr(href) ")";
  }
  .entry-title abbr[title]:after,
  .entry-content abbr[title]:after,
  .comment-content abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .entry-title a[href^='#']:after,
  .entry-title a[href^='javascript']:after,
  .entry-content a[href^='#']:after,
  .comment-content a[href^='#']:after,
  .entry-content a[href^='javascript']:after,
  .comment-content a[href^='javascript']:after {
    content: '';
  }
}
html.lt-ie9 {
  min-width: 1280px;
}

.lt-ie9 body {
  min-width: 1280px;
}
.lt-ie9 .site-container {
  margin: 0 auto;
  width: 1280px;
}
.lt-ie9 input[type='password'] {
  font-family: monospace;
}

/* RESETS */
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* BASE STYLES */
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  /*max-height: 700px;*/
  position: relative;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 767px) {
  .flexslider .slides > li {
    background: transparent !important;
    height: auto !important;
  }
  .flexslider {
    max-height: 350px;
    margin-bottom: 85px;
  }
}
.flexslider .slides > li a {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .flexslider .slides > li a {
    position: static;
  }
}
.flexslider .slides > li a:hover {
  text-decoration: none;
}
.flexslider .slides > li iframe {
  height: 100%;
  width: 100%;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* DEFAULT THEME */
.flexslider {
  position: relative;
  margin: 0 auto 60px;
  /*max-width: $siteWidth;*/
  zoom: 1;
}
.flexslider.loading {
  background: url("../images/ajax-loader.gif") no-repeat center center;
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.flex-control-nav {
  left: 20px;
  margin-top: -47px;
  position: absolute;
  top: 50%;
  z-index: 9;
}
@media (max-width: 1023px) {
  .flex-control-nav {
    margin-top: 0;
    top: 40px;
  }
}
@media (max-width: 1023px) {
  .flex-control-nav {
    left: 10px;
    top: 10px;
  }
}

.flex-control-nav li {
  margin: 0 0 10px;
  zoom: 1;
}
@media (max-width: 767px) {
  .flex-control-nav li {
    float: left;
    margin-right: 6px;
  }
}

.flex-control-paging li a {
  width: 25px;
  height: 25px;
  display: block;
  border: 4px solid #fff;
  background: transparent;
  cursor: pointer;
  text-indent: -9999px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .flex-control-paging li a {
    border-width: 3px;
    height: 18px;
    width: 18px;
  }
}
.contrast .flex-control-paging li a {
  border-color: #000;
}

.flex-control-paging li a:hover,
.flex-control-paging li a.flex-active {
  background: #fff;
}
.contrast .flex-control-paging li a:hover, .contrast
.flex-control-paging li a.flex-active {
  background: #000;
}

.slide-content {
  bottom: 40px;
  left: 40px;
  position: absolute;
  width: 95%;
  z-index: 1;
}
@media (max-width: 1023px) {
  .slide-content {
    bottom: 20px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .slide-content {
    position: static;
    margin-bottom: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    border-width: 8px;
    border-color: #ff0000;
    border-style: solid;
  }
}
.slide-content p {
  background-color: #fff;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15);
  color: #000;
  clear: both;
  float: left;
  font-size: 20px;
  line-height: 1;
  max-width: 95%;
  padding: 20px;
}
@media (max-width: 1023px) {
  .slide-content p {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .slide-content p {
    box-shadow: none;
    float: none;
    font-size: 14px;
    padding-bottom: 20px;
    max-width: none;
  }
}
.slide-content p.title {
  font-family: "gotham_narrowbold";
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .slide-content p.title {
    font-size: 20px;
    margin-bottom: 0;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.contrast .slide-content p {
  background-color: #000;
  color: #fff;
}

.flexslider a.scroll-to,
.about-content a.scroll-to {
  background: url("../images/ico-page-scroll.png") no-repeat 0 0;
  height: 31px;
  display: none;
  margin-top: -16px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 31px;
  z-index: 9;
}
.flexslider a.scroll-to.up,
.about-content a.scroll-to.up {
  background-position: center bottom;
}

.flexslider:hover a.scroll-to,
.about-content:hover a.scroll-to {
  display: block;
}

/* ------------------------------------------------------------------------
	Pretty Photo
------------------------------------------------------------------------- */
/* ----------------------------------
	Theme
----------------------------------- */
div.pp_default .pp_content .ppt {
  display: inline;
  font-size: 11px;
}

div.pp_default .pp_content .ppt_copy {
  display: inline;
  font-size: 11px;
  margin-right: 10px;
}

div.pp_default .pp_close {
  width: 26px;
  height: 25px;
  background: url(../images/prettyPhoto/default/sprite.png) -73px 0 no-repeat;
  cursor: pointer;
  top: 8px;
}

/* Close button */
div.pp_default #pp_full_res .pp_inline {
  color: #000;
}

div.pp_default .pp_details {
  position: relative;
}

div.pp_default a.pp_arrow_previous,
div.pp_default a.pp_arrow_next {
  background: url(../images/prettyPhoto/default/sprite.png) 0 0 no-repeat;
  height: 25px;
  margin: 0 12px 0 0;
  width: 26px;
}

div.pp_default a.pp_arrow_next {
  left: 52px;
  background-position: -37px 0;
}

/* The next arrow in the bottom nav */
div.pp_default .pp_nav {
  clear: none;
  position: absolute;
  right: 25px;
  top: 8px;
}

div.pp_default .pp_close:hover, div.pp_default .pp_nav .pp_play:hover, div.pp_default .pp_nav .pp_pause:hover, div.pp_default .pp_arrow_next:hover, div.pp_default .pp_arrow_previous:hover {
  opacity: 0.8;
}

div.pp_default .pp_loaderIcon {
  background: url(../images/prettyPhoto/default/loader.gif) center center no-repeat;
}

/* Loader icon */
/* ------------------------------------------------------------------------
	Core
------------------------------------------------------------------------- */
div.pp_pic_holder a:focus {
  outline: none;
}

div.pp_overlay {
  background: #d7d7d7;
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9500;
}

div.pp_pic_holder {
  display: none;
  position: absolute;
  width: 100px;
  z-index: 10000;
}
@media (max-width: 767px) {
  div.pp_pic_holder {
    left: 0 !important;
    width: 100% !important;
  }
}

.pp_content {
  height: 40px;
  min-width: 40px;
}
@media (max-width: 767px) {
  .pp_content {
    height: auto !important;
    width: 100% !important;
  }
}

* html .pp_content {
  width: 40px;
}

@media (max-width: 767px) {
  #fullResImage {
    height: auto !important;
    max-width: 100%;
    width: 100% !important;
  }
}

.pp_fade {
  display: none;
}

.pp_content_container {
  position: relative;
  text-align: left;
  width: 100%;
}

.pp_content_container .pp_left {
  padding-left: 20px;
}

.pp_content_container .pp_right {
  padding-right: 20px;
}

.pp_content_container .pp_details {
  float: left;
  margin: 2px 0 4px 0;
}
@media (max-width: 767px) {
  .pp_content_container .pp_details {
    width: 100% !important;
  }
}

.pp_description {
  display: none;
  margin: 0;
}

.pp_social {
  float: left;
  margin-top: 2px;
}

.pp_nav {
  clear: right;
}

.pp_nav p {
  float: left;
  margin: 2px 4px;
  white-space: nowrap;
}

.pp_nav .pp_play,
.pp_nav .pp_pause {
  float: left;
  margin-right: 4px;
  text-indent: -10000px;
}

a.pp_arrow_previous,
a.pp_arrow_next {
  display: block;
  float: left;
  height: 15px;
  margin-top: 3px;
  overflow: hidden;
  text-indent: -10000px;
  width: 14px;
}

.pp_hoverContainer {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2000;
}

a.pp_next {
  display: block;
  float: right;
  height: 100%;
  text-indent: -10000px;
  width: 49%;
}

a.pp_previous {
  display: block;
  float: left;
  height: 100%;
  text-indent: -10000px;
  width: 49%;
}

a.pp_expand,
a.pp_contract {
  cursor: pointer;
  display: none;
  height: 20px;
  position: absolute;
  right: 30px;
  text-indent: -10000px;
  top: 10px;
  width: 20px;
  z-index: 20000;
}

a.pp_close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  line-height: 22px;
  text-indent: -10000px;
}

.pp_loaderIcon {
  display: block;
  height: 24px;
  left: 50%;
  margin: -12px 0 0 -12px;
  position: absolute;
  top: 50%;
  width: 24px;
}

#pp_full_res {
  line-height: 1 !important;
}

#pp_full_res .pp_inline {
  text-align: left;
}

#pp_full_res .pp_inline p {
  margin: 0 0 15px 0;
}

div.ppt {
  display: none;
  z-index: 9999;
}

/* poland map */
ul.poland li {
	list-style-image: none;
}

.ui-dialog .ui-dialog-titlebar{padding:0 !important;border:0;}
.ui-dialog .ui-dialog-title{height:0;margin:0 !important;}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{margin-top:5px !important;cursor: pointer;z-index: 1005;margin-right: -10px !important;}
.ui-dialog-content{min-height:90px !important;}
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text{padding:0 !important;}
.ui-dialog-content a {color:#ff0000 !important;text-decoration:none;border:0 !important;}
.ui-dialog-content a:hover{text-decoration:underline;}
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.mapDialog:before{
    width: 250px;
    content: '';
    height: 60px;
    background: url(../../../../uploads/2015/04/ogon2.png);
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    bottom: -50px;
    background-size: 230px
}