@charset "IBM437";
/* ============================================================================================ */
/* =====    PROJECT HealthCare

/* ============================================================================================ */
/*  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.
 */
/*  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.
 */
/*  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.
 */
.clearfix, .wrapper {
  zoom: 1; }
  .clearfix:before, .wrapper:before, .clearfix:after, .wrapper:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden; }
  .clearfix:after, .wrapper:after {
    clear: both; }

.wrapper {
  max-width: 76.25em;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  position: relative; }

.pull-left, .logo, .main-nav, .footer-copyright p {
  float: left; }

.pull-right, .header-actions, .footer-by {
  float: right; }

.margin-left {
  margin: 0 0 0 3%;
  width: 47%; }

.margin-right {
  margin: 0 3% 0 0;
  width: 47%; }

.wp-leftimage--50 {
  width: 50% !important;
  float: left !important;
  margin: 10px 20px 10px 0 !important; }

.wp-leftimage--30 {
  width: 30% !important;
  float: left !important;
  margin: 10px 20px 10px 0 !important; }

.wp-leftimage--15 {
  width: 15% !important;
  float: left !important;
  margin: 10px 20px 10px 0 !important; }

.wp-rightimage--50 {
  width: 50% !important;
  float: right !important;
  margin: 10px 0 10px 20px !important; }

.wp-rightimage--30 {
  width: 30% !important;
  float: right !important;
  margin: 10px 0 10px 20px !important; }

.wp-rightimage--15 {
  width: 15% !important;
  float: right !important;
  margin: 10px 0 10px 20px !important; }

.wp-centerimage--50 {
  width: 50% !important;
  float: none !important;
  margin: 10px 20px !important; }

.wp-centerimage--30 {
  width: 30% !important;
  float: none !important;
  margin: 10px 20px !important; }

.wp-centerimage--15 {
  width: 15% !important;
  float: none !important;
  margin: 10px 20px !important; }

/* normalize.scss 2.2.0+normalize.2.1.3 | MIT/GPLv2 License | bit.ly/normalize-with-compass */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: proxima-nova, sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
button,
input,
select,
textarea {
  font-family: proxima-nova, sans-serif; }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Set 1 unit of vertical rhythm on the top and bottom margin.
 */
p,
pre {
  margin: 1.5em 0; }

blockquote {
  /* Set 1 unit of vertical rhythm on the top and bottom margin. */
  margin: 1.5em 40px; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em; }

h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em; }

h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em; }

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em; }

h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em; }

h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * 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; }

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1.5em 0; }

dd {
  margin: 0 0 0 40px; }

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px; }

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.0625em;
  padding-top: 0.4625em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625em;
  padding-bottom: 0.9125em;
  border-left-style: solid;
  border-left-width: 0.0625em;
  padding-left: 0.875em;
  border-right-style: solid;
  border-right-width: 0.0625em;
  padding-right: 0.875em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  vertical-align: baseline;
  /* 4 */
  *vertical-align: middle;
  /* 4 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove 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 */
  *overflow: visible;
  /* 4 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

html, button {
  -webkit-font-smoothing: antialiased; }

h1 {
  font-size: 3em;
  font-weight: 400;
  color: #333333;
  line-height: 1.0; }

h2 {
  font-size: 2.5em;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2; }

h3 {
  font-size: 1.375em;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  margin: 50px 0 10px; }

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.5;
  padding: 0;
  margin: 0; }

p {
  font-size: 0.9375em;
  line-height: 1.5;
  font-weight: 300; }

a {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f38e59;
  text-decoration: none; }
  a:hover {
    color: #02202f; }

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto; }

body {
  font: 400 1em proxima-nova, sans-serif;
  background-color: #FAFAFA;
  color: #000; }

img {
  display: block;
  max-width: 100%;
  height: auto;
  outline: 0; }

strong {
  font-weight: 700; }

fieldset {
  border: none;
  padding: 0;
  margin: 0; }

blockquote {
  margin: 0; }

menu ol,
menu ul,
menu li,
nav ol,
nav ul,
nav li {
  margin: 0;
  padding: 0; }

hr {
  width: 100%;
  height: 20px;
  margin: 0 0 20px;
  border: none;
  border-bottom: 1px dashed #d7d6cf; }

button:focus {
  outline: none; }

iframe {
  width: 100%; }

.hide {
  display: none !important; }

/*  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.
 */
html, button {
  -webkit-font-smoothing: antialiased; }

h1 {
  font-size: 3em;
  font-weight: 400;
  color: #333333;
  line-height: 1.0; }

h2 {
  font-size: 2.5em;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2; }

h3 {
  font-size: 1.375em;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  margin: 50px 0 10px; }

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.5;
  padding: 0;
  margin: 0; }

p {
  font-size: 0.9375em;
  line-height: 1.5;
  font-weight: 300; }

a {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f38e59;
  text-decoration: none; }
  a:hover {
    color: #02202f; }

#main-header {
  height: 5em;
  z-index: 5000;
  width: 100%;
  position:fixed;
  padding-top: 0.3em;
  background-color: #f38e59;
  background-image: url(../images/bg-texture-2.png), -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: url(../images/bg-texture-2.png), -webkit-radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: url(../images/bg-texture-2.png), -moz-radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: url(../images/bg-texture-2.png), -o-radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: url(../images/bg-texture-2.png), radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  -webkit-transition: none 1s;
  -moz-transition: none 1s;
  -o-transition: none 1s;
  transition: none 1s; }
  #main-header .main-nav a {
    font-size: 1.125rem; }

.small-header {
  height: 5em !important; }
  .small-header .header-section {
    text-align: left;
    padding-top: 3em; }
    .small-header .header-section h1 {
      font-size: 2.5rem; }
    .small-header .header-section p {
      font-size: 1.25rem; }

.logo {
  display: block;
  width: 140px;
  height: 34px;
  -webkit-transition: none 1s;
  -moz-transition: none 1s;
  -o-transition: none 1s;
  transition: none 1s; }

.header-nav {
  font-size: 1.125em; }
  .header-nav li {
    display: inline-block; }
  .header-nav a {
    color: white;
    padding: 0.5rem .8rem;
    font-weight: 400; }
    .header-nav a:hover {
      color: #02202f; }
    .header-nav a.active {
      color: #02202f; }

.main-nav {
  padding: 1.7rem 0 0 2rem; }

.header-actions {
  padding: 1rem 0 0 0;
  font-size: .9375em; }
  .header-actions .btn {
    display: inline-block;
    margin: 0 2px 0 2px; }

.header-section {

  background-color: #f38e59;
  background-image: url(../images/bg-texture-2.png), -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: url(../images/bg-texture-2.png), -webkit-radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: url(../images/bg-texture-2.png), -moz-radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: url(../images/bg-texture-2.png), -o-radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: url(../images/bg-texture-2.png), radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  text-align: center;
  padding-top: 9em;
  padding-bottom:5em;
  line-height: 3.4em;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  .header-section h1, .header-section h2 {
    font-size: 6.25em;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    margin: 0;
    line-height: 1; }
    .header-section h1 a,
    .header-section h2 a {
      font-size: inherit;
      color: inherit }
  .header-section p {
    font-weight: 400;
    font-size: 1.5em;
    margin: 0; }

.header-visible {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s; }

.mobile-nav-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 910;
  background: rgba(244, 155, 108, 0.9) url(../images/bg-texture-2.png);
  visibility: hidden;
  overflow: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: opacity 0.5s, visibility 0.2s;
  -moz-transition: opacity 0.5s, visibility 0.2s;
  -o-transition: opacity 0.5s, visibility 0.2s;
  transition: opacity 0.5s, visibility 0.2s; }
  .mobile-nav-holder .wrapper {
    padding-top: 2.5em; }
  .mobile-nav-holder .btn {
    position: absolute;
    right: 21px; }
  .mobile-nav-holder .mobile-nav {
    width: 100%;
    text-align: center;
    padding-top: 15%; }
    .mobile-nav-holder .mobile-nav a {
      display: block;
      font-size: 5em;
      text-transform: uppercase;
      font-weight: 600;
      line-height: 100%;
      padding: 1rem 0;
      color: #FFFFFF; }

body.mobile-nav-open .mobile-nav-holder {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s; }

.categories--holder {
  background-color: #fff;
  border: 1px solid #dddddd;
  padding: 0;
  border-top: none; }
  .categories--holder nav.mobile--categories {
    display: none; }
    .categories--holder nav.mobile--categories select {
      width: 100%;
      border: none;
      background: #fff;
      font-size: 0.9375rem;
      color: #f38e59; }
  .categories--holder ul {
    display: inline-table;
    max-width: 53.75rem;
    padding: 0;
    margin: 0;
    float: left; }
    .categories--holder ul li {
      display: inline-block;
      vertical-align: middle;
      position: relative;
      padding: 1.4375rem 1.5625rem 1.125rem 0.3125rem;
      cursor: pointer;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s; }
      .categories--holder ul li:hover {
        background-color: #f38e59;
        padding: 1.4375rem 0.9375rem 1.125rem; }
        .categories--holder ul li:hover a {
          color: #fff; }
      .categories--holder ul li:hover ul {
        opacity: 1;
        visibility: visible; }
      .categories--holder ul li a {
        font-size: 1rem;
        color: #f38e59;
        margin: 0;
        display: block;
        float: left;
        font-weight: 400; }
        .categories--holder ul li a span.icon-arrow-more {
          font-size: 70%;
          margin-left: 3px; }
      .categories--holder ul li ul {
        padding: 0;
        position: absolute;
        top: 3.75rem;
        width: 285%;
        left: 0;
        opacity: 0;
        background-color: #f38e59;
        visibility: hidden;
        z-index: 10;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s; }
        .categories--holder ul li ul li {
          display: inline-block;
          width: 100%;
          padding: 1rem 1.5625rem 0.75rem 0.3125rem; }
          .categories--holder ul li ul li:hover {
            background-color: #f17e41;
            padding: 1rem 0.9375rem 0.75rem; }
          .categories--holder ul li ul li > a {
            float: none;
            color: #fff;
            padding-left: 10px; }
  .categories--holder form {
    width: 21.25rem;
    float: right;
    margin: 0.625rem 0; }
    .categories--holder form input {
      width: 100%;
      height: 2.5rem;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      font-size: 0.9375rem; }
    .categories--holder form ::-webkit-input-placeholder {
      color: #ccc; }
    .categories--holder form :-moz-placeholder {
      color: #ccc;
      opacity: 1; }
    .categories--holder form ::-moz-placeholder {
      color: #ccc;
      opacity: 1; }
    .categories--holder form :-ms-input-placeholder {
      color: #ccc; }

.invisible {
  display: none; }

.blog--post-list {
  width: 100%;
  max-width: 50em;
  float: left; }
  .blog--post-list article figure img {
    width: 100%; }

.blog--post-inner {
  width: 100%;
  max-width: 50em;
  float: left; }
  .blog--post-inner article {
    margin: 0; }
    .blog--post-inner article figure img {
      width: 100%; }

.authors--bio-inner {
  width: 100%;
  max-width: 50em;
  float: left; }
  .authors--bio-inner article {
    margin: 0 0 3.75rem 0; }
    .authors--bio-inner article figure img {
      width: 100%; }

nav.pagination {
  margin-top: 3.75em;
  text-align: center; }
  nav.pagination ol li, nav.pagination ul li {
    display: inline-block;
    padding: 0 0 1em 0; }
    nav.pagination ol li a, nav.pagination ol li span, nav.pagination ul li a, nav.pagination ul li span {
      width: 2.5rem;
      height: 2.5rem;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      border: 1px solid #333;
      display: inline-block;
      vertical-align: middle;
      color: #333;
      line-height: 40px;
      text-align: center;
      font-size: 0.8125em;
      font-weight: 700; }
      nav.pagination ol li a.conector, nav.pagination ol li span.conector, nav.pagination ul li a.conector, nav.pagination ul li span.conector {
        border: none; }
        nav.pagination ol li a.conector:hover, nav.pagination ol li span.conector:hover, nav.pagination ul li a.conector:hover, nav.pagination ul li span.conector:hover {
          background: none;
          color: #333; }
      nav.pagination ol li a:hover, nav.pagination ol li span:hover, nav.pagination ul li a:hover, nav.pagination ul li span:hover {
        background: #333;
        color: #fff; }
    nav.pagination ol li span.current, nav.pagination ul li span.current {
      background: #333;
      color: #fff; }
    nav.pagination ol li span.dots, nav.pagination ul li span.dots {
      border: none;
      background: inherit;
      color: inherit; }

article {
  margin: 3.75rem 0 0; }
  article .blog--post-content {
    background: #fff;
    border: 1px solid #dddddd;
    padding: 0 1.25em; }
    article .blog--post-content .nav-top {
      padding: 0.625em 0;
      color: #666666;
      border-bottom: 1px solid #dddddd; }
      article .blog--post-content .nav-top .author {
        font-size: 0.9375rem;
        width: 84%;
        float: left;
        border-right: 1px solid #dddddd; }
        article .blog--post-content .nav-top .author .entry_author_image {
          display: inline-block;
          width: 2.5em; }
        article .blog--post-content .nav-top .author img {
          width: 100%;
          -webkit-border-radius: 40px;
          -moz-border-radius: 40px;
          -ms-border-radius: 40px;
          -o-border-radius: 40px;
          border-radius: 40px;
          border: 1px solid #dddddd; }
        article .blog--post-content .nav-top .author p {
          display: inline-block;
          margin: 0;
          margin: 0.625rem 0 0 0.625rem;
          vertical-align: top; }
        article .blog--post-content .nav-top .author a {
          font-size: 0.9375rem; }
      article .blog--post-content .nav-top .comments {
        width: 16%;
        float: right;
        font-style: italic;
        font-size: 0.8125rem;
        margin: 0.8125rem 0 0;
        text-align: center;
        color: #ccc; }
        article .blog--post-content .nav-top .comments span {
          margin-right: 3px;
          font-size: 1.125em; }
      article .blog--post-content .nav-top.add-border-top {
        border-top: 1px solid #dddddd; }
    article .blog--post-content .nav-top--authors {
      padding: 0.625em 0;
      color: #666666; }
      article .blog--post-content .nav-top--authors .author {
        font-size: 0.9375rem;
        width: 84%;
        float: left;
        border-right: 1px solid #dddddd; }
        article .blog--post-content .nav-top--authors .author .entry_author_image {
          display: inline-block;
          width: 2.5em; }
        article .blog--post-content .nav-top--authors .author img {
          width: 100%;
          -webkit-border-radius: 40px;
          -moz-border-radius: 40px;
          -ms-border-radius: 40px;
          -o-border-radius: 40px;
          border-radius: 40px;
          border: 1px solid #dddddd; }
        article .blog--post-content .nav-top--authors .author p {
          display: inline-block;
          margin: 0;
          margin: 0.625rem 0 0 0.625rem;
          vertical-align: top; }
        article .blog--post-content .nav-top--authors .author a {
          font-size: 0.9375rem; }
      article .blog--post-content .nav-top--authors .comments {
        width: 16%;
        float: right;
        font-style: italic;
        font-size: 0.8125rem;
        margin: 0.8125rem 0 0;
        text-align: center;
        color: #ccc; }
        article .blog--post-content .nav-top--authors .comments span {
          margin-right: 3px;
          font-size: 1.125em; }
      article .blog--post-content .nav-top--authors.add-border-top {
        border-top: 1px solid #dddddd; }
    article .blog--post-content section {
      margin-top: 2.5rem; }
      article .blog--post-content section h2, article .blog--post-content section p {
        color: #333; }
      article .blog--post-content section a {
        font-size: inherit;
        color: inherit; }
        article .blog--post-content section a:hover {
          color: #f38e59; }
      article .blog--post-content section h2 {
        font-weight: 600;
        line-height: 1;
        margin: 0; }
      article .blog--post-content section p {
        margin: 1.25rem 0 1.875rem;
        font-size: 1.25rem;
        line-height: 1.5; }
    article .blog--post-content footer {
      border-top: 1px solid #dddddd;
      padding: 0.625em 0; }
    article .blog--post-content .main-blog-post {
      margin: 0 0 40px 0; }
      article .blog--post-content .main-blog-post a {
        color: #0000ee;
        font-weight: 700;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        font-size: 1.25rem; }
        article .blog--post-content .main-blog-post a:hover {
          background: #0000ee;
          color: #fff; }
      article .blog--post-content .main-blog-post h1 {
        font-size: 2.5rem;
        margin: 40px 0 10px;
        font-weight: 600; }
      article .blog--post-content .main-blog-post h2 {
        margin: 50px 0 10px;
        font-size: 1.75rem;
        font-weight: 700; }
      article .blog--post-content .main-blog-post blockquote {
        margin: 30px 0;
        padding: 0 0 0 20px;
        font-size: 1.25em;
        color: #47b0e2;
        border-left: 2px solid #47b0e2;
        line-height: 1.5;
        font-style: italic;
        font-weight: 300; }
      article .blog--post-content .main-blog-post p {
        margin: 10px 0; }
      article .blog--post-content .main-blog-post img {
        margin: 20px 0;
        width: 100%; }
      article .blog--post-content .main-blog-post ol, article .blog--post-content .main-blog-post ul {
        margin: 20px 0 40px 30px;
        padding: 0;
        list-style: none; }
        article .blog--post-content .main-blog-post ol li, article .blog--post-content .main-blog-post ul li {
          margin: 5px 0;
          font-size: 1.25rem;
          color: #333;
          font-weight: 300;
          line-height: 1.5; }
      article .blog--post-content .main-blog-post nav.pagination a {
        color: #333;
        line-height: 40px;
        font-size: 0.8125rem;
        font-weight: 700; }
        article .blog--post-content .main-blog-post nav.pagination a.conector {
          border: none; }
          article .blog--post-content .main-blog-post nav.pagination a.conector:hover {
            background: none;
            color: #333; }
        article .blog--post-content .main-blog-post nav.pagination a:hover {
          background: #333;
          color: #fff; }
    article .blog--post-content .posts-list .postslist-post h3 {
      margin: 0 0 0.625rem 0;
      height: 55px;
      overflow: hidden; }
      article .blog--post-content .posts-list .postslist-post h3 a {
        font-size: inherit;
        color: inherit; }
        article .blog--post-content .posts-list .postslist-post h3 a:hover {
          color: #f38e59;
          background: none; }
    article .blog--post-content .posts-list .postslist-post a {
      font-size: 0.8125rem; }
    article .blog--post-content .posts-list .postslist-post img {
      margin: 1.875rem 0 0.625rem 0; }
    article .blog--post-content nav {
      margin-bottom: 1.25em; }

.two-col {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 47.5%;
  margin-left: 0%;
  margin-right: 5%; }
  .two-col:before, .two-col:after {
    content: '';
    display: table; }
  .two-col:after {
    clear: both; }
  .two-col:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .two-col:nth-child(2n + 1) {
    clear: both; }

.two-col2 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 47.5%;
  margin-left: 0%;
  margin-right: 5%; }
  .two-col2:before, .two-col2:after {
    content: '';
    display: table; }
  .two-col2:after {
    clear: both; }
  .two-col2:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .two-col2:nth-child(2n + 1) {
    clear: both; }

.blogpost--footer, .blogpost--author {
  background: #fff;
  border: 1px solid #dddddd;
  padding: 1.25em;
  margin-top: 2.5rem; }
  .blogpost--footer header, .blogpost--author header {
    border-bottom: 1px solid #dddddd;
    padding: 5px 0 10px 0; }
    .blogpost--footer header h3, .blogpost--author header h3 {
      color: #333;
      display: inline-block;
      margin: 0;
      font-weight: 600;
      font-size: 1.75rem; }
    .blogpost--footer header > a, .blogpost--author header > a {
      float: right;
      font-size: 0.9375rem;
      font-weight: 600;
      margin-top: 10px; }
  .blogpost--footer.author--footer main, .blogpost--author.author--footer main {
    margin: 20px 0 10px; }
    .blogpost--footer.author--footer main figure, .blogpost--author.author--footer main figure {
      float: left;
      width: 20%; }
      .blogpost--footer.author--footer main figure img, .blogpost--author.author--footer main figure img {
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        width: 100%; }
    .blogpost--footer.author--footer main div.author-information, .blogpost--author.author--footer main div.author-information {
      float: left;
      width: 75%;
      margin-left: 5%; }
      .blogpost--footer.author--footer main div.author-information > a, .blogpost--author.author--footer main div.author-information > a {
        color: #f38e59;
        font-size: 0.8125rem;
        font-weight: bold;
        letter-spacing: 1px;
        padding: 1.25em 0;
        display: block; }
        .blogpost--footer.author--footer main div.author-information > a:hover, .blogpost--author.author--footer main div.author-information > a:hover {
          color: #333; }
    .blogpost--footer.author--footer main h3, .blogpost--footer.author--footer main p, .blogpost--author.author--footer main h3, .blogpost--author.author--footer main p {
      color: #333;
      margin: 0.3125em 0; }
    .blogpost--footer.author--footer main h3, .blogpost--author.author--footer main h3 {
      font-weight: 700;
      font-size: 1.25em; }
    .blogpost--footer.author--footer main ul, .blogpost--author.author--footer main ul {
      padding: 0;
      margin: 0; }
  .blogpost--footer .blogpost--more-posts, .blogpost--author .blogpost--more-posts {
    margin-top: 20px; }
    .blogpost--footer .blogpost--more-posts a, .blogpost--author .blogpost--more-posts a {
      color: #333; }
      .blogpost--footer .blogpost--more-posts a:hover, .blogpost--author .blogpost--more-posts a:hover {
        color: #f38e59; }
    .blogpost--footer .blogpost--more-posts img, .blogpost--author .blogpost--more-posts img {
      float: left;
      margin-right: 20px;
      max-width: 75px;
      height: 75px; }
    .blogpost--footer .blogpost--more-posts h3, .blogpost--footer .blogpost--more-posts p, .blogpost--author .blogpost--more-posts h3, .blogpost--author .blogpost--more-posts p {
      color: #333;
      font-size: 0.9375em;
      margin: 0; }
    .blogpost--footer .blogpost--more-posts h3, .blogpost--author .blogpost--more-posts h3 {
      font-weight: 600;
      padding-top: 10px; }
    .blogpost--footer .blogpost--more-posts p:after, .blogpost--author .blogpost--more-posts p:after {
      clear: both; }
  .blogpost--footer ul, .blogpost--author ul {
    padding: 0;
    margin: 15px 0 0 0;
    list-style-type: none; }
    .blogpost--footer ul li h3, .blogpost--author ul li h3 {
      padding: 0;
      margin: 0;
      color: #f38e59;
      font-weight: 200;
      line-height: 1.7; }

.blogpost--author {
  border: none;
  padding: 0;
  margin-top: 0; }
  .blogpost--author main .author-information p {
    font-size: 0.9375rem; }
    .blogpost--author main .author-information p.pre-title {
      font-weight: 600;
      color: #ccc;
      margin: 0; }
  .blogpost--author main .author-information h3 {
    margin: 0 0 5px; }

.blogpost--search h2 {
  color: #333333;
  padding: 2.5rem 0 0.625rem 0;
  margin: 0;
  font-size: 1.75em;
  font-weight: 600; }
.blogpost--search p {
  font-size: 1.25rem;
  padding: 0 0 2.5rem 0;
  margin: 0; }
.blogpost--search h4 {
  padding: 0 0 0.625rem 0; }
.blogpost--search input {
  width: 60%; }

.breadcrumb {
  margin: 2.5em 0 0.625em;
  width: 100%; }
  .breadcrumb a, .breadcrumb p {
    display: inline-block;
    font-size: 0.8125em;
    padding: 0 15px;
    margin: 0; }
  .breadcrumb a.undo-navigation {
    border-right: 1px solid #f38e59;
    font-weight: bold; }
    .breadcrumb a.undo-navigation:first-child {
      padding: 0 15px 0 0; }

h2.search-results {
  margin: 0 0 1.25rem 0;
  color: #333; }

main.search-results article:first-child, main.search-results aside {
  margin: 0; }

#disqus_thread {
  border: 1px solid #dddddd;
  background-color: #fff;
  margin-top: 2.5rem; }
  #disqus_thread #dsq-2 {
    padding: 1.25rem; }

#main-footer {
  background: #333333;
  margin-top: 3.75em; }
  #main-footer p {
    margin: 0;
    line-height: inherit;
    font-size: 1rem; }
  #main-footer li a:not(.btn), #main-footer a.footer-by, #main-footer p {
    color: rgba(255, 255, 255, 0.6); }

.pre-footer {
  min-height: 14.0625em;
  background: #404040;
  line-height: 100%;
  padding: 1.5em 0; }
  .pre-footer .btn {
    margin-top: 1.7em; }
  .pre-footer .align-1-5 {
     width: 22%;display: inline-block; vertical-align: top;}
  .pre-footer .align-1-6 {
    width: 18%;display: inline-block; vertical-align: top;}
  .pre-footer .align-1-7 {
    width: 12%;display: inline-block; vertical-align: top;}
  .pre-footer li {
    line-height: 1.6rem; }

.footer-copyright {
  line-height: 1.9em; }

.footer-socialmedia {
  margin-top: .5em; }
  .footer-socialmedia a[class*="icon-"] {
    font-size: 130%;
    margin-right: .4rem; }
    .footer-socialmedia ul {
      display: inline-block; }
  .footer-socialmedia li {
    display: block; }
  .footer-socialmedia li.socialmedia-icons {
    margin: .3em 0 0 -.3em; }

.footer-list-header {
  color: white;
  font-weight: 400; }

.landing-pages-section .footer-list-header a{color: #FFF !important;font-weight: 400;}

.footer-by {
  line-height: 4.7em;
  font-size: 1rem;
  font-weight: 300; }
  .footer-by img {
    display: inline-block;
    vertical-align: middle;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: 0.6;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease; }
    .footer-by img:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
      opacity: 1;
      -webkit-transition: all 0.15s ease;
      -moz-transition: all 0.15s ease;
      -o-transition: all 0.15s ease;
      transition: all 0.15s ease; }

/* =======================================
               MEDIAQUERIES
   ======================================= */
 @media screen and (max-width: 1024px) {
   .pre-footer ul{display: inline-block;width: 100% !important;text-align: center;}
   .pre-footer li:not(.footer-list-header){padding: 0 .6em;width: auto;display: inline-block;line-height: 100% !important;}
   .pre-footer a{font-size: 90% !important;}

   .landing-pages-section .footer-sitemap{width: 80% !important;}
   .footer-try-lander {display: none !important;}
   #main-footer p{text-align: center; width: 100%;}
   .footer-nav>ul .footer-socialmedia a[class*=icon-]{font-size: 2.2em !important;}
   .footer-nav>ul .footer-socialmedia li.socialmedia-icons{margin:1.3em 0 0 -.3em;}
 }
@media screen and (max-width: 1024px) {
  .footer-copyright--container {
    padding: 1.5625em 20px !important; } }
@media screen and (max-width: 800px) {
  .footer-nav > ul {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 1%;
    font-size: 90%;
    padding: 1em 0;
    text-align: center; }
    .footer-nav > ul:before, .footer-nav > ul:after {
      content: '';
      display: table; }
    .footer-nav > ul:after {
      clear: both; }
    .footer-nav > ul:last-child {
      margin-right: 0%; }
    .footer-nav > ul > li > ul.footer-sitemap > li {
      display: inline-block !important;
      padding: 0.1875rem .4em; }

  .footer-socialmedia {
    padding: 2em 0 0 0 !important; }
    .footer-socialmedia a {
      font-size: 240% !important;
      margin-right: .4rem; }

  .footer-try-lander {
    display: none !important; }

  .footer-copyright--container p, .footer-copyright--container > a {
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
    float: none !important;
    padding: .3em; } }
ul.shares {
  padding: 0;
  margin: 0; }
  ul.shares li {
    line-height: 17px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    border-right: 1px solid #dddddd;
    text-align: center;
    padding: 1.25rem 0;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8125rem;
    vertical-align: top; }
    ul.shares li a {
      font-weight: 700;
      font-size: 0.8125rem;
      margin-right: 5px;
      vertical-align: middle; }
      ul.shares li a.ms-icon {
        color: #ccc;
        font-weight: 300; }
        ul.shares li a.ms-icon:before {
          font-size: 1.125em;
          margin-right: 2px;
          vertical-align: inherit; }
        ul.shares li a.ms-icon.icon-twitter {
          color: #3cf; }
        ul.shares li a.ms-icon.icon-facebook {
          color: #627AAD; }
        ul.shares li a.ms-icon.icon-googleplus {
          color: #dd4b39; }
        ul.shares li a.ms-icon.icon-linkedin {
          color: #007bb6; }
      ul.shares li a:first-child {
        margin-left: 10px; }
      ul.shares li a:hover.ms-icon {
        color: #f49b6c; }
    ul.shares li.reading-time {
      font-weight: 100;
      font-style: italic; }
  ul.shares.home--footer-navigation li:nth-child(1) {
    width: 24%; }
    ul.shares.home--footer-navigation li:nth-child(1) a {
      margin-left: 0px; }
      ul.shares.home--footer-navigation li:nth-child(1) a:hover {
        margin-left: 10px; }
  ul.shares.home--footer-navigation li:nth-child(2) {
    width: 34%; }
  ul.shares.home--footer-navigation li:nth-child(3) {
    width: 40%;
    border-right: 0; }
  ul.shares.innerpost--footer-navigation li:nth-child(1) {
    width: 58%; }
  ul.shares.innerpost--footer-navigation li:last-child {
    width: 40%;
    border-right: 0;
    text-align: right; }
  ul.shares.innerpost--footer-navigation li nav .prev-post {
    float: left;
    margin: 0; }
    ul.shares.innerpost--footer-navigation li nav .prev-post span {
      margin-right: 5px; }
  ul.shares.innerpost--footer-navigation li nav .next-post {
    float: right;
    margin-right: 20px; }
    ul.shares.innerpost--footer-navigation li nav .next-post span {
      margin-left: 5px; }
  ul.shares.innerpost--footer-navigation li a {
    vertical-align: middle; }
  ul.shares.innerpost--top-navigation li {
    text-transform: none;
    padding: 0.625rem 0; }
    ul.shares.innerpost--top-navigation li:nth-child(1) {
      width: 42%;
      text-align: left; }
      ul.shares.innerpost--top-navigation li:nth-child(1) a {
        margin: 0; }
    ul.shares.innerpost--top-navigation li:nth-child(2) {
      width: 20%; }
    ul.shares.innerpost--top-navigation li:nth-child(3) {
      width: 36%;
      border-right: 0;
      text-align: right; }
  ul.shares.authors--top-navigation li {
    text-transform: none;
    padding: 0.625rem 0; }
    ul.shares.authors--top-navigation li:nth-child(1) {
      width: 29%;
      text-align: left; }
      ul.shares.authors--top-navigation li:nth-child(1) a {
        margin: 0; }
    ul.shares.authors--top-navigation li:nth-child(2) {
      width: 29%; }
    ul.shares.authors--top-navigation li:nth-child(3) {
      width: 40%;
      border-right: 0;
      text-align: center; }

aside {
  width: 100%;
  float: right;
  max-width: 340px;
  margin: 3.75rem 0 0; }
  aside div.sidebar--holder {
    background: #fff;
    border: 1px solid #dddddd;
    border-bottom: none;
    padding: 1.25em; }
  aside .top-carousel img {
    width: 100%; }
  aside .section-social h3 {
    display: inline-block;
    padding: 0 2.5rem 0 0; }
  aside .section-social li {
    display: inline-block;
    list-style-type: none; }
  aside .section-social a.ms-icon {
    color: #ccc;
    font-weight: 300; }
    aside .section-social a.ms-icon:before {
      font-size: 1.25em;
      margin-right: 10px;
      vertical-align: inherit; }
    aside .section-social a.ms-icon.icon-twitter {
      color: #3cf; }
    aside .section-social a.ms-icon.icon-facebook {
      color: #627AAD; }
    aside .section-social a.ms-icon.icon-googleplus {
      color: #dd4b39; }
    aside .section-social a.ms-icon.icon-linkedin {
      color: #007bb6; }
  aside .section-social a:hover {
    color: #f49b6c !important; }
  aside .divider {
    margin: 3.125rem 0;
    width: 100%;
    border-bottom: 1px solid #dddddd; }
  aside .social-top {
    margin: 3.125rem 0 1rem 0; }
  aside .social-bottom {
    margin: 1rem 0 3.125rem 0; }
  aside h3, aside p {
    color: #333333;
    margin: 0.3125em 0; }
  aside h3 {
    font-weight: 600;
    font-size: 1.25em; }
  aside ul {
    padding: 0;
    margin: 0; }
  aside ul li {
    list-style: none;
    padding: 0.625em 0;
    font-weight: 100;
    line-height: 1.2;
    border-bottom: 1px solid #dddddd;
    font-size: 0.9375em; }
    aside ul li a:before {
      content: '• '; }
    aside ul li:last-child {
      border: none; }
  aside .sidebar--author {
    width: 100%;
    text-align: center; }
    aside .sidebar--author img {
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      border-radius: 100%;
      max-width: 8.75rem;
      margin: 0 auto; }
    aside .sidebar--author p, aside .sidebar--author a {
      font-size: 0.9375rem; }
    aside .sidebar--author a {
      font-weight: 600;
      margin: 10px 0 0;
      display: inline-block; }
  aside .bottom-banner {
    background: #fff;
    border: 1px solid #dddddd;
    border-top: none;
    padding: 1.25em;
    float: right; }

ul.author--follow {
  list-style: none; }
  ul.author--follow li {
    display: inline-block;
    border: none;
    margin: 0 10px;
    padding: 5px 0 10px; }
    ul.author--follow li:before {
      content: ""; }
    ul.author--follow li a {
      color: #ccc;
      margin: 0; }
      ul.author--follow li a:hover {
        color: #f49b6c; }

.sidebar--no-margin {
  margin: 0; }

.search-in-place a {
  font-weight: 600;
  color: #333;
  font-size: 0.9375rem; }

.search-in-place a:hover {
  color: #f49b6c; }

.search-in-place .more {
  padding: 10px 10px; }

.search-in-place .more a {
  color: #f49b6c; }

.search-in-place .item {
  line-height: 1; }

.search-in-place .resume {
  margin-top: 7px; }

#openNewsletter {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none; }
  #openNewsletter > div {
    width: 600px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #FAFAFA; }
  #openNewsletter:target {
    opacity: 1;
    pointer-events: auto; }

#close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000; }
  #close:hover {
    background: #00d9ff; }

.error404 footer {
  margin-top: 0 !important; }

.main-error {
  background: #F49B6C;
  background-image: url(../images/bg-texture-2.png), radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); }

.error-container {
  height: 33em;
  background: url(../images/404.svg) left bottom/48% no-repeat;
  width: 80%;
  margin: 0 auto; }
  .error-container .error-detail {
    width: 100%;
    padding-left: 35%;
    padding-top: 16%; }
    .error-container .error-detail h1 {
      font-size: 3.25em;
      color: #fff;
      font-weight: 700;
      line-height: 100%;
      margin: 0; }
    .error-container .error-detail p {
      font-size: 1.5em;
      font-weight: 300;
      margin: 0;
      padding: .6em 0 .8em; }

.btn {
  font: 400 16px/120% "proxima-nova", sans-serif;
  border: none;
  cursor: pointer;
  background: none;
  text-align: center;
  min-width: 6.8em;
  letter-spacing: 0;
  display: inline-block;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
  border-radius: 0.4rem;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease; }
  .btn.btn-xxlarge {
    font-size: 200%; }
  .btn.btn-hollow {
    background: none !important; }
    .btn.btn-hollow.btn-xlarge {
      font-size: 80%;
      line-height: 80%;
      padding: 1.6rem 3.3rem 1.5rem; }
    .btn.btn-hollow.btn-xxlarge {
      font-size: 200%; }
  .btn.btn-default {
    background: #02202f;
    padding: .55rem 1.8rem; }
  .btn.btn-primary {
    font-size: 0.8125em;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    padding: 1.2rem 2rem;
    background-color: #5bb5de;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    border-radius: 0.3rem; }
    .btn.btn-primary.btn-hollow {
      color: #5bb5de;
      -webkit-box-shadow: #5bb5de 0 0 0 0.1875em inset;
      -moz-box-shadow: #5bb5de 0 0 0 0.1875em inset;
      box-shadow: #5bb5de 0 0 0 0.1875em inset; }
      .btn.btn-primary.btn-hollow:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8;
        background: rgba(91, 181, 222, 0.2) !important; }
      .btn.btn-primary.btn-hollow.btn-bright {
        color: white;
        -webkit-box-shadow: white 0 0 0 0.1875em inset;
        -moz-box-shadow: white 0 0 0 0.1875em inset;
        box-shadow: white 0 0 0 0.1875em inset; }
        .btn.btn-primary.btn-hollow.btn-bright:hover {
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
          opacity: 0.8;
          background: rgba(255, 255, 255, 0.2) !important; }
    .btn.btn-primary:hover {
      background-color: #31a2d5; }
  .btn.btn-secondary {
    font-size: .6875em;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    padding: 0.9375rem 2rem;
    background-color: #02202f; }
    .btn.btn-secondary.btn-hollow {
      color: #5bb5de;
      -webkit-box-shadow: #5bb5de 0 0 0 0.1875em inset;
      -moz-box-shadow: #5bb5de 0 0 0 0.1875em inset;
      box-shadow: #5bb5de 0 0 0 0.1875em inset; }
    .btn.btn-secondary.btn-bright {
      color: white;
      -webkit-box-shadow: white 0 0 0 0.1875em inset;
      -moz-box-shadow: white 0 0 0 0.1875em inset;
      box-shadow: white 0 0 0 0.1875em inset; }
      .btn.btn-secondary.btn-bright:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8;
        background: rgba(255, 255, 255, 0.2) !important; }
    .btn.btn-secondary:hover {
      background-color: #044160;
      color: #fff; }
  .btn.btn-transparent {
    border: 1px solid #fff; }
  .btn.btn-xlarge {
    font-size: 80%;
    line-height: 80%;
    padding: 1.6rem 3.3rem 1.5rem; }
  .btn.btn-mobile-nav {
    width: 42px;
    height: 35px;
    min-width: 0;
    display: inline-block;
    position: relative;
    top: 6px;
    -webkit-box-shadow: inset 0 0 0 1px white;
    -moz-box-shadow: inset 0 0 0 1px white;
    box-shadow: inset 0 0 0 1px white; }
    .btn.btn-mobile-nav.mobile-nav-toggler {
      background: url(../images/icon_mobile-nav.svg) 50% 50% no-repeat;
      margin: 0 0 0 .9em;
      display: none; }
    .btn.btn-mobile-nav.mobile-nav-close {
      background: url(../images/icon_close.svg) 50% 50% no-repeat;
      float: right;
      top: 0;
      right: 0; }

::-webkit-input-placeholder {
  color: #C0C6CC;
  font-style: italic; }

:-moz-placeholder {
  color: #C0C6CC;
  font-style: italic; }

::-moz-placeholder {
  color: #C0C6CC;
  font-style: italic; }

:-ms-input-placeholder {
  color: #C0C6CC;
  font-style: italic; }

input,
textarea {
  font: 300 1em/1.35rem "proxima-nova", sans-serif;
  color: #7F8C97;
  padding: .6rem .8rem;
  border: 1px solid #C0C6CC;
  background: white;
  margin: 0;
  width: 100%;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
  border-radius: 0.4rem;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease; }

textarea {
  resize: none; }

form .btn {
  margin-top: 2.8em;
  width: 100%; }

button, input, textarea {
  display: inline-block;
  outline: none; }

input:focus, textarea:focus {
  background: #F7F7F7; }

.input-holder {
  position: relative; }

.input-error input, .input-error textarea {
  border-color: #E4A9AE; }

.input-error label {
  color: #C7515A; }

.input-active label, .input-error label {
  padding-top: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  font-weight: 600; }

label {
  font-weight: 400;
  color: #7F8C97;
  display: block;
  overflow: hidden;
  line-height: 1.2em;
  padding: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease; }

@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translateX(0); }

  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translateX(-10px); }

  20%, 40%, 60%, 80% {
    -moz-transform: translateX(10px); } }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0); }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px); }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px); } }

@-o-keyframes shake {
  0%, 100% {
    -o-transform: translateX(0); }

  10%, 30%, 50%, 70%, 90% {
    -o-transform: translateX(-10px); }

  20%, 40%, 60%, 80% {
    -o-transform: translateX(10px); } }

@-ms-keyframes shake {
  0%, 100% {
    -ms-transform: translateX(0); }

  10%, 30%, 50%, 70%, 90% {
    -ms-transform: translateX(-10px); }

  20%, 40%, 60%, 80% {
    -ms-transform: translateX(10px); } }

@keyframes shake {
  0%, 100% {
    transform: translateX(0); }

  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px); }

  20%, 40%, 60%, 80% {
    transform: translateX(10px); } }

.do-shake {
  -webkit-animation: shake 1s ease;
  -webkit-animation-fill-mode: both;
  -moz-animation: shake 1s ease;
  -moz-animation-fill-mode: both;
  -o-animation: shake 1s ease;
  -o-animation-fill-mode: both;
  animation: shake 1s ease;
  animation-fill-mode: both; }

@font-face {
  font-family: "icons";
  src: url("../fonts/\icons.eot");
  src: url("../fonts/\icons.eot?#iefix") format("embedded-opentype"), url("../fonts/\icons.woff") format("woff"), url("../fonts/\icons.ttf") format("truetype"), url("../fonts/\icons.svg?#icons") format("svg");
  font-weight: normal;
  font-style: normal; }

.ms-icon {
  font-family: "icons";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-arrow-left:before {
  content: "\e001"; }

.icon-arrow-more:before {
  content: "\e002"; }

.icon-arrow-right:before {
  content: "\e003"; }

.icon-chat:before {
  content: "\e004"; }

.icon-facebook:before {
  content: "\e005"; }

.icon-googleplus:before {
  content: "\e006"; }

.icon-linkedin:before {
  content: "\e007"; }

.icon-pinterest:before {
  content: "\e008"; }

.icon-twitter:before {
  content: "\e009"; }

/**
 *
 * Define breakpoints,
 * for responsive behavior.
 *
**/
/* ==================================================================================================================== */
/*      LARGE SCREENS BREAKPOINTS.             	                                                                        */
/* ==================================================================================================================== */
@media screen and (max-width: 1280px) {
  aside {
    max-width: 28%; }

  .blog--post-inner, .blog--post-list {
    width: 67%;
    max-width: none; }

  .categories--holder form {
    width: 20em; } }
/* ==================================================================================================================== */
/*      TABLETS BREAKPOINT.                   	                                                                        */
/* ==================================================================================================================== */
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .mobile-nav-holder .mobile-nav a {
    display: block;
    font-size: 4em;
    padding: .5rem 0; } }
@media screen and (max-width: 1024px) {
  .wrapper {
    max-width: 60em;
    padding-left: 20px;
    padding-right: 20px; }

  .blog--post-list, .blog--post-inner {
    max-width: none; }
    .blog--post-list img, .blog--post-inner img {
      width: 100%; }

  aside {
    max-width: 100%;
    margin: 40px 0 !important;
    display: none; }
    aside .divider {
      display: none; }

  .blog--post-inner, .blog--post-list {
    width: 100%;
    max-width: none; }

  #main-header {
    height: 21.875em; }

  .main-nav {
    display: none; }

  .btn.btn-mobile-nav {
    display: inline-block !important; }

  .header-section {
    font-size: 80%;
    padding-top: 9em; }
    .header-section p {
      font-size: 160%; }

  .header-actions {
    padding: .5rem 0 0 0; }

  .categories--holder ul {
    max-width: 53.75em;
    float: left; }
    .categories--holder ul li a {
      font-size: 0.9375em;
      color: #f49b6c; }
    .categories--holder ul li:nth-child(4) {
      display: none; }
    .categories--holder ul li:last-child ul:last-child {
      display: block !important; }
  .categories--holder .categories--holder ul li ul li
  form {
    width: 30%;
    float: right;
    margin: 7px 0; }
    .categories--holder .categories--holder ul li ul li
    form input {
      width: 100%;
      height: 2.5rem;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      font-size: 0.9375rem; }
    .categories--holder .categories--holder ul li ul li
    form ::-webkit-input-placeholder {
      color: #ccc; }
    .categories--holder .categories--holder ul li ul li
    form :-moz-placeholder {
      color: #ccc;
      opacity: 1; }
    .categories--holder .categories--holder ul li ul li
    form ::-moz-placeholder {
      color: #ccc;
      opacity: 1; }
    .categories--holder .categories--holder ul li ul li
    form :-ms-input-placeholder {
      color: #ccc; }

  .error-container {
    height: 25.6em; }
    .error-container .error-detail {
      font-size: 80%; } }
/* ==================================================================================================================== */
/*      TABLETS: PORTRAIT BREAKPOINT.		 	                                                                        */
/* ==================================================================================================================== */
@media screen and (max-width: 800px) {
  .home-preloader {
    display: none; }

  .pure-hidden-desktop {
    display: block; }

  .wrapper {
    max-width: 50em; }

  .dual-blocks > [class*="pure-u-"] {
    width: 100%;
    padding: 0 !important; }

  .small-header {
    height: auto !important; }
    .small-header .header-section {
      font-size: 55%;
      padding-top: 6em;
      padding-bottom: 2em;
      text-align: center; }
      .small-header .header-section p {
        font-size: 1rem; }
      .small-header .header-section h1 {
        font-size: 5em; }

  .categories--holder {
    padding: 5px 0; }
    .categories--holder .mobile--categories {
      display: block !important; }
    .categories--holder form {
      width: 100%;
      margin: 10px 0; }
    .categories--holder ul {
      width: 100%;
      padding: 0;
      display: none; }
      .categories--holder ul a {
        display: block;
        text-align: center;
        width: 100%;
        padding: 5px 0;
        border-bottom: 1px solid #f0f0f0; }

  .two-col {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .two-col:before, .two-col:after {
      content: '';
      display: table; }
    .two-col:after {
      clear: both; }
    .two-col:nth-child(1n) {
      margin-right: 0%;
      float: right; }
    .two-col:nth-child(1n + 1) {
      clear: both; }
    .two-col:nth-child(2) {
      margin-top: 2.5rem; }

  ul.shares.home--footer-navigation li:nth-child(1) {
    width: 100%;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 10px;
    border-right: 0; }
  ul.shares.home--footer-navigation li:nth-child(2) {
    width: 28%; }
  ul.shares.home--footer-navigation li:nth-child(3) {
    width: 70%; }
  ul.shares.innerpost--top-navigation li:nth-child(1) {
    width: 100%; }
  ul.shares.innerpost--top-navigation li:nth-child(2) {
    display: none; }
  ul.shares.innerpost--top-navigation li:nth-child(3) {
    display: none; }
  ul.shares.innerpost--footer-navigation li:nth-child(1) {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #dddddd; }
  ul.shares.innerpost--footer-navigation li:last-child {
    width: 100%;
    border-right: 0;
    text-align: center; }
  ul.shares.innerpost--footer-navigation li nav .next-post {
    margin-right: 0px; }
  ul.shares.authors--top-navigation li:nth-child(1) {
    width: 49%;
    text-align: center; }
  ul.shares.authors--top-navigation li:nth-child(2) {
    width: 49%;
    border-right: 0; }
  ul.shares.authors--top-navigation li:nth-child(3) {
    width: 100%;
    border-top: 1px solid #dddddd;
    margin-top: 10px;
    padding-top: 20px;
    text-align: center; }

  .blogpost--search input {
    width: 100%; }

  article .blog--post-content .nav-top .author {
    width: 100%;
    float: none;
    border-right: none; }
  article .blog--post-content .nav-top .comments {
    display: none; }
  article .posts-list .postslist-post h3 {
    height: auto !important; }

  .footer-copyright p, .footer-copyright .footer-by {
    display: block;
    text-align: center;
    width: 100%;
    line-height: 1; }
  .footer-copyright .footer-by {
    margin-bottom: 30px; }

  .error-container {
    height: auto;
    padding: 0 0 38%;
    text-align: center;
    background: url(../images/404.svg) center bottom/48% no-repeat; }
    .error-container .error-detail {
      padding-left: 0;
      padding-top: 10%; } }
@media screen and (max-width: 800px) {
  .btn.btn-mobile-nav.mobile-nav-close {
    top: 17px !important; }

  .section-home {
    background: none; } }
/* ==================================================================================================================== */
/*      PHONES BREAKPOINT.         					                                                                    */
/* ==================================================================================================================== */
@media screen and (max-width: 600px) {
  .pure-hidden-phone {
    display: none; } }
@media screen and (max-width: 600px) {
  body {
    font-size: 13px; }

  h2 {
    font-size: 1.5625rem; }

  #main-content {
    padding-top: 3.5em; }

  .wrapper {
    max-width: none; }

  #main-header {
    height: 6em; }

  .logo {
    width: 100px;
    margin-top: 3px; }

  .main-nav {
    display: none; }
/* 
  .header-actions .action-login {
    display: none; } */
  .header-actions .action-signup {
    display: none; }

  .header-section {
    font-size: 55%;
    padding-top: 15em;
    padding-bottom: 2em; }
    .header-section p {
      font-size: 1rem; }
    .header-section h1 {
      font-size: 5em; }

  .mobile-nav-holder .wrapper {
    padding-top: 1.5em; }
  .mobile-nav-holder .mobile-nav {
    font-size: 65%;
    padding-top: 26%; }
    .mobile-nav-holder .mobile-nav a {
      font-size: 3.5em;
      padding: 0.4rem 0; }

  article .blog--post-content .nav-top .author img {
    display: none; } }
@media screen and (max-width: 600px) and (orientation: landscape) {
  .mobile-nav-holder .mobile-nav {
    padding-top: 7%; }

  .mobile-nav-holder .mobile-nav a {
    display: block;
    font-size: 2em;
    padding: .2rem 0; }

  .logo {
    width: 100px;
    margin-top: 13px; }

  .main-nav {
    display: none; }

  .header-actions .action-login {
    display: none; }
  .header-actions .action-signup {
    display: none; } }
/* ==================================================================================================================== */
/*      SMALL PHONES BREAKPOINT.         			                                                                    */
/* ==================================================================================================================== */
@media screen and (max-width: 500px) {
  article {
    margin: 0 0 3.75rem 0; }
    article > figure {
      width: calc(100% + 40px);
      margin-left: -20px; }
    article .blog--post-content {
      background: none;
      padding: 0;
      border: none; }
      article .blog--post-content .nav-top {
        display: none; }
      article .blog--post-content section {
        margin-top: 1.25rem; }
        article .blog--post-content section h2, article .blog--post-content section p {
          color: #333; }
        article .blog--post-content section h2 {
          font-weight: 600;
          line-height: 1;
          margin: 0; }
        article .blog--post-content section p {
          margin: 0.625rem 0 0.625rem;
          font-size: 0.9375rem;
          line-height: 1.5; }
      article .blog--post-content footer {
        border-top: none;
        border-bottom: 1px solid #dddddd;
        padding: 0; }
      article .blog--post-content .main-blog-post a {
        font-size: 0.9375rem; }
      article .blog--post-content .main-blog-post h1 {
        font-size: 1.875rem;
        margin: 40px 0 10px;
        font-weight: 600; }
      article .blog--post-content .main-blog-post h2 {
        font-size: 1.25rem; }
      article .blog--post-content .main-blog-post ol li, article .blog--post-content .main-blog-post ul li {
        font-size: 0.9375rem; }
      article .blog--post-content .main-blog-post nav.pagination a {
        color: #333;
        line-height: 40px;
        font-size: 0.8125rem;
        font-weight: 700; }
        article .blog--post-content .main-blog-post nav.pagination a.conector {
          border: none; }
          article .blog--post-content .main-blog-post nav.pagination a.conector:hover {
            background: none;
            color: #333; }
        article .blog--post-content .main-blog-post nav.pagination a:hover {
          background: #333;
          color: #fff; }
      article .blog--post-content .main-blog-post .postslist-post {
        margin: 30px 0 0 0; }
        article .blog--post-content .main-blog-post .postslist-post img {
          margin: 0 0 10px 0; }
      article .blog--post-content .main-blog-post nav.pagination a {
        width: 1.7rem;
        height: 1.7rem;
        line-height: 30px;
        font-size: 0.6875rem; }

  aside {
    max-width: 100%;
    margin: 40px 0 !important; }

  .blogpost--footer, .blogpost--author {
    background: none; }
    .blogpost--footer.author--footer main, .blogpost--author.author--footer main {
      margin: 20px 0 10px; }
      .blogpost--footer.author--footer main figure, .blogpost--author.author--footer main figure {
        float: none;
        width: 60%;
        margin: 0 auto 10px; }
        .blogpost--footer.author--footer main figure img, .blogpost--author.author--footer main figure img {
          -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
          -ms-border-radius: 100%;
          -o-border-radius: 100%;
          border-radius: 100%;
          width: 100%; }
      .blogpost--footer.author--footer main div.author-information, .blogpost--author.author--footer main div.author-information {
        float: none;
        width: 100%;
        margin-left: 0;
        text-align: center; }
      .blogpost--footer.author--footer main h3, .blogpost--footer.author--footer main p, .blogpost--author.author--footer main h3, .blogpost--author.author--footer main p {
        color: #333;
        margin: 0.3125em 0; }
      .blogpost--footer.author--footer main h3, .blogpost--author.author--footer main h3 {
        font-weight: 700;
        font-size: 1.25em; }
      .blogpost--footer.author--footer main ol, .blogpost--footer.author--footer main ul, .blogpost--author.author--footer main ol, .blogpost--author.author--footer main ul {
        padding: 0;
        margin: 0; }

  ul.shares {
    padding: 0;
    margin: 0; }
    ul.shares li {
      display: inline-block;
      border-right: none;
      text-align: center;
      padding: 0.3125rem 0;
      color: #666;
      text-transform: uppercase;
      font-size: 0.8125rem;
      vertical-align: top;
      text-align: left; }
      ul.shares li a {
        font-weight: 700;
        font-size: 0.8125rem;
        margin: 0px;
        vertical-align: middle; }
        ul.shares li a.ms-icon {
          color: #ccc;
          font-weight: 300; }
          ul.shares li a.ms-icon:before {
            font-size: 1.125em;
            margin-right: 2px;
            vertical-align: top; }
        ul.shares li a:first-child {
          margin-left: 0px; }
      ul.shares li.reading-time {
        font-weight: 100;
        font-style: italic; }
    ul.shares.home--footer-navigation li:nth-child(1) {
      width: 100%;
      border-bottom: 0;
      margin-bottom: 0; }
    ul.shares.home--footer-navigation li:nth-child(2) {
      width: 100%; }
    ul.shares.home--footer-navigation li:nth-child(3) {
      width: 100%;
      border-bottom: 0; }
    ul.shares.innerpost--top-navigation li {
      padding: 0.625rem 0; }
      ul.shares.innerpost--top-navigation li:nth-child(1) {
        width: 100%; }
      ul.shares.innerpost--top-navigation li:nth-child(2) {
        width: 100%;
        display: none; }
      ul.shares.innerpost--top-navigation li:nth-child(3) {
        width: 100%;
        border-bottom: 0;
        text-align: left; }
    ul.shares.innerpost--footer-navigation li:nth-child(1) {
      width: 100%;
      padding: 1em 0; }
    ul.shares.innerpost--footer-navigation li:last-child {
      width: 100%;
      border-right: 0;
      text-align: left;
      padding: 1.3em 0; }
    ul.shares.innerpost--footer-navigation li nav .next-post {
      margin-right: 0px; }
    ul.shares.authors--top-navigation li {
      padding: 0.625rem 0;
      text-align: center; }
      ul.shares.authors--top-navigation li:nth-child(1) {
        width: 100%;
        text-align: center; }
      ul.shares.authors--top-navigation li:nth-child(2) {
        width: 100%; }
      ul.shares.authors--top-navigation li:nth-child(3) {
        width: 100%;
        border-right: 0;
        text-align: center; }

  .blogpost--footer {
    margin-top: 1.25rem; }
    .blogpost--footer header h3 {
      font-size: 1.25rem; }
    .blogpost--footer header a {
      margin-top: 4px; }
    .blogpost--footer.author--footer main div.author-information {
      width: 100%;
      margin: 0; }

  .breadcrumb {
    display: none; }

  h2.search-results {
    margin: 30px 0 10px; }

  nav.pagination {
    text-align: center; }
    nav.pagination a {
      width: 1.7rem;
      height: 1.7rem;
      line-height: 30px;
      font-size: 0.6875rem; } 
    
    
    }
/* ==================================================================================================================== */
/*      BROWSER SPECIFIC MEDIA QUERIES         	                                                                        */
/* ==================================================================================================================== */
@media screen and (min-width: 0 \0) {
  body {
    overflow: hidden; } }

/*@ sourceMappingURL=style.css.map */
#footer-feat {

	font:  proxima-nova, sans-serif;
	padding-bottom: 10px;
}

#footer-feat> a
{
color: rgba(255, 255, 255, 0.6);
font-weight: 300;
font-size:1rem;
font: proxima-nova, sans-serif
}


.main-menu-thin
{
  height:3.5em !important;
}
.main-nav-thin
{
  padding:0.7rem 0 0 0rem !important;
  font-size: 1em !important;
}
.logo-home-thin
{
  width:70% !important;
}
.header-actions-thin
{
  padding:0;
  margin:0;
}
.btn-mobile-nav-thin
{
  top:2px !important;
  height: 35px !important;
}