@charset "UTF-8";
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.15);
  }

  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.15);
  }

  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }

  50% {
    -o-transform: scale(1.15);
  }

  100% {
    -o-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}
#load-more.active {
  -webkit-animation: pulse 1s infinite;
  -moz-animation: pulse 1s infinite;
  -o-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  -webkit-backface-visibility: hidden;
}

.stag-tabs, .stag-toggle, .stag-video {
  margin: 0 0 2em 0;
}

/* BUTTONS */
.stag-button {
  -webkit-appearance: none;
  background: #979797;
  color: #fff;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 0;
  -webkit-font-smoothing: inherit;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  text-align: center;
  margin: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.stag-button:hover {
  color: #fff;
  text-decoration: none;
}

.stag-button--normal:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}

.stag-button--medium {
  font-size: 18px;
  padding: 17px 22px;
}

.stag-button--large {
  font-size: 20px;
  padding: 22px 40px;
}

.stag-button--grey {
  background: #979797;
}

.stag-button--black {
  background: #000;
}

.stag-button--green {
  background: #84c333;
}

.stag-button--yellow {
  background: #ffd164;
}

.stag-button--dark {
  background: #363f48;
}

.stag-button--light {
  background: whitesmoke;
  color: #a9a9a9;
}

.stag-button--light:visited {
  color: #a9a9a9 !important;
}

.stag-button--blue {
  background: #1b93c7;
}

.stag-button--light-blue {
  background: #56c3f2;
}

.stag-button--red {
  background: #d15858;
}

.stag-button--orange {
  background: #fc901d;
}

.stag-button--purple {
  background: #c16ad7;
}

.stag-button--stroke {
  background: transparent;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.stag-button--stroke.stag-button--grey {
  border-color: #979797;
  color: #979797 !important;
}

.stag-button--stroke.stag-button--grey:hover {
  background: #979797;
  color: white !important;
}

.stag-button--stroke.stag-button--black {
  border-color: black;
  color: black !important;
}

.stag-button--stroke.stag-button--black:hover {
  background: black;
  color: white !important;
}

.stag-button--stroke.stag-button--green {
  border-color: #84c333;
  color: #84c333 !important;
}

.stag-button--stroke.stag-button--green:hover {
  background: #84c333;
  color: white !important;
}

.stag-button--stroke.stag-button--yellow {
  border-color: #ffd164;
  color: #ffd164 !important;
}

.stag-button--stroke.stag-button--yellow:hover {
  background: #ffd164;
  color: white !important;
}

.stag-button--stroke.stag-button--dark {
  border-color: #363f48;
  color: #363f48 !important;
}

.stag-button--stroke.stag-button--dark:hover {
  background: #363f48;
  color: white !important;
}

.stag-button--stroke.stag-button--light {
  border-color: whitesmoke;
  color: whitesmoke !important;
}

.stag-button--stroke.stag-button--light:hover {
  background: whitesmoke;
  color: #a9a9a9 !important;
}

.stag-button--stroke.stag-button--blue {
  border-color: #1b93c7;
  color: #1b93c7 !important;
}

.stag-button--stroke.stag-button--blue:hover {
  background: #1b93c7;
  color: white !important;
}

.stag-button--stroke.stag-button--light-blue {
  border-color: #56c3f2;
  color: #56c3f2 !important;
}

.stag-button--stroke.stag-button--light-blue:hover {
  background: #56c3f2;
  color: white !important;
}

.stag-button--stroke.stag-button--red {
  border-color: #d15858;
  color: #d15858 !important;
}

.stag-button--stroke.stag-button--red:hover {
  background: #d15858;
  color: white !important;
}

.stag-button--stroke.stag-button--orange {
  border-color: #fc901d;
  color: #fc901d !important;
}

.stag-button--stroke.stag-button--orange:hover {
  background: #fc901d;
  color: white !important;
}

.stag-button--stroke.stag-button--purple {
  border-color: #c16ad7;
  color: #c16ad7 !important;
}

.stag-button--stroke.stag-button--purple:hover {
  background: #c16ad7;
  color: white !important;
}

.stag-intro-text {
  font-size: 135%;
  margin-bottom: 1.8em;
  display: block;
}

/* ALERTS */
.stag-alert {
  padding: 21px 15px;
  text-align: center;
  color: #fff;
}

.stag-alert--white {
  background: #f5f5f5;
  color: #bcbcbc;
}

.stag-alert--grey {
  background: #979797;
}

.stag-alert--red {
  background: #d15858;
}

.stag-alert--yellow {
  background: #ffd164;
}

.stag-alert--green {
  background: #84c333;
}

.stag-alert--blue {
  background: #1b93c7;
}

.stag-dropcap {
  display: block;
  float: left;
  text-align: center;
  margin-right: 5px;
  margin-top: 5px;
}

.stag-dropcap--squared {
  background: #363f48;
  color: #fff;
}

/* DIVIDER */
.stag-divider {
  border: 0;
  height: 1px;
  background: #363f48;
}

.stag-divider--strong {
  height: 7px;
}

.stag-divider--double {
  height: 7px;
}

.stag-divider--double:after {
  content: '';
  display: block;
  border-bottom: 1px solid #363f48;
  position: relative;
  top: 10px;
}

.stag-divider--dashed {
  background: none;
  border-bottom: 1px dashed #363f48;
}

.stag-divider--dotted {
  background: none;
  border-bottom: 1px dotted #363f48;
}

.stag-tabs .stag-nav {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.stag-tabs .stag-nav li {
  margin: 0;
  float: left;
  position: relative;
  margin: 0 1px -1px 0 !important;
  z-index: 10;
  outline: 0;
}

.stag-tabs .stag-nav a {
  text-decoration: none;
  display: block;
  padding: 15px 10px;
  line-height: 1;
  outline: 0;
}

.stag-tabs .stag-tab {
  padding: 21px 20px 20px 20px;
}

.stag-tabs .stag-tab p:last-of-type {
  margin-bottom: 0;
}

.stag-tabs .stag-tab p:first-of-type {
  margin-top: 0;
}

.stag-tabs--normal .stag-nav .ui-tabs-active a {
  outline: 0;
}

.stag-tabs--stroke .stag-nav li {
  margin: 0 -1px 0 0 !important;
}

.stag-tabs--stroke .stag-nav a {
  border: 1px solid #363f48;
  color: #363f48;
}

.stag-tabs--stroke .stag-nav .ui-tabs-active a {
  border-bottom-color: white;
}

.stag-tabs--stroke .stag-tab {
  border: 1px solid #363f48;
  margin-top: -1px;
}

.stag-toggle .stag-toggle-title {
  display: block;
  padding: 15px 10px;
  outline: 0;
  cursor: pointer;
  position: relative;
}

.stag-toggle .stag-toggle-title:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: url("../img/bg-toggle-light.png") no-repeat top left;
}

.stag-toggle .stag-toggle-title.ui-state-active:after {
  background-position: 0px -24px;
}

.stag-toggle .stag-toggle-content {
  padding: 20px 0;
}

.stag-toggle--stroke .stag-toggle-title {
  border: 1px solid #363f48;
}

.stag-toggle--stroke .stag-toggle-title:after {
  background-image: url("../img/bg-toggle-dark.png") !important;
}

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

.stag-image--left {
  float: left;
  margin: 0 1.5em 1em 0;
}

.stag-image--center {
  display: block;
  margin: 1.5em 0;
  text-align: center;
}

.stag-image--right {
  float: right;
  margin: 0 0 1.5em 1.5em;
}

.stag-image--grayscale {
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  filter: grayscale(1);
}

.stag-image--sepia {
  -webkit-filter: sepia(100%);
  -moz-filter: sepia(100%);
  filter: sepia(100%);
}

.stag-image--blur {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  filter: blur(2px);
}

.stag-image--hue-rotate {
  -webkit-filter: hue-rotate(50deg);
  -moz-filter: hue-rotate(50deg);
  filter: hue-rotate(50deg);
}

.stag-image--contrast {
  -webkit-filter: contrast(15%);
  -moz-filter: contrast(15%);
  filter: contrast(15%);
}

.stag-image--brightness {
  -webkit-filter: brightness(200%);
  -moz-filter: brightness(200%);
  filter: brightness(200%);
}

.stag-image--invert {
  -webkit-filter: invert(100%);
  -moz-filter: invert(100%);
  filter: invert(100%);
}

.stag-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.stag-video iframe, .stag-video object, .stag-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 700px) {
  .stag-one-half {
    width: 48%;
  }

  .stag-one-third {
    width: 30.66%;
  }

  .stag-two-third {
    width: 65.33%;
  }

  .stag-one-fourth {
    width: 22%;
  }

  .stag-three-fourth {
    width: 74%;
  }

  .stag-one-fifth {
    width: 16.8%;
  }

  .stag-two-fifth {
    width: 37.6%;
  }

  .stag-three-fifth {
    width: 58.4%;
  }

  .stag-four-fifth {
    width: 79.2%;
  }

  .stag-one-sixth {
    width: 13.33%;
  }

  .stag-five-sixth {
    width: 82.67%;
  }

  .stag-one-half,
  .stag-one-third,
  .stag-two-third,
  .stag-three-fourth,
  .stag-one-fourth,
  .stag-one-fifth,
  .stag-two-fifth,
  .stag-three-fifth,
  .stag-four-fifth,
  .stag-one-sixth,
  .stag-five-sixth {
    position: relative;
    margin-right: 4%;
    margin-bottom: 2em;
    float: left;
  }

  .stag-column-last {
    margin-right: 0 !important;
    clear: right;
  }
}
.stag-clearfix:before,
.stag-clearfix:after {
  content: "";
  display: table;
}

.stag-clearfix:after {
  clear: both;
}

.stag-clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}

.fa {
  display: inline-block;
  margin-right: 0.2em;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.fa:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .stag-toggle .stag-toggle-title:after {
    background-position: 0px -32px;
    background-size: 14px 64.5px;
  }

  .stag-toggle .stag-toggle-title.ui-state-active:after {
    background-position: 0px -56px !important;
  }
}
.stag-alert {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  padding: 15px;
  margin: 1.5em 0;
  line-height: 1.6em;
  position: relative;
  font-size: inherit;
  position: relative;
  font-weight: bold;
  text-align: center;
}

.stag-alert.white {
  background: #fff;
  color: #373737;
}

.stag-alert.red {
  background: #c84941;
  color: #fff;
}

.stag-alert.yellow {
  background: #fff7d6;
  color: #956433;
}

.stag-alert.green {
  background: #6ea767;
  color: #fff;
}

.stag-alert.grey {
  background: #cecece;
  color: #fff;
}

.stag-alert.blue {
  background: #53a7d7;
}

/* $Tab Styles ---------------------------------------------*/
.stag-tabs.ui-tabs .ui-tabs-hide {
  position: absolute;
  left: -10000px;
}

.stag-tabs *:focus {
  outline: 0;
}

.stag-tabs {
  background: none;
  margin: 0 0 2em 0;
}

.stag-tabs ul.stag-nav {
  list-style: none !important;
  margin: 0 !important;
  padding: 0;
  background: none;
  border: 0;
  float: none;
  text-transform: uppercase;
}

.stag-tabs ul.stag-nav li {
  float: left;
  position: relative;
  border: 1px solid #ebebeb;
  margin: 0 4px 4px 0;
  z-index: 10;
  list-style: none !important;
}

.stag-tabs ul.stag-nav li.ui-state-active {
  border: none;
  border-left: 10px solid transparent;
}

.stag-tabs ul.stag-nav li a {
  display: block;
  overflow: hidden;
  padding: 10px 20px;
  line-height: 1;
  margin: 0 !important;
  text-decoration: none;
}

.ui-tabs-nav .ui-state-default {
  background: #fff;
}

.stag-tabs .stag-tab {
  padding: 20px 0px;
}

.ui-tabs-anchor {
  color: #5c5c5c;
}

/* $Toggle Styles ---------------------------------------------------------------*/
.stag-toggle {
  margin: 20px 0;
}

.stag-toggle .stag-toggle-title {
  display: block;
  padding: 10px 30px 10px 10px;
  background: #fff;
  border: 1px solid #ebebeb;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  position: relative;
}

.stag-toggle-inner {
  padding: 20px 0 0 0;
  border-top: none;
}

.stag-toggle span.ui-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 22%;
  right: 10px;
  margin: -4px 0 0 0;
}
.stag-toggle span.ui-icon:before {
  content: '\e01a';
  font-family: 'stag';
  font-size: 20px;
  color: #dfdfdf;
  margin-top: 1px;
  display: inline-block;
}

.stag-toggle .ui-state-active .ui-icon:before {
  content: '\e004';
  font-size: 5px;
  position: relative;
  top: -3px;
}

.stag-toggle .ui-state-active {
  background: #fbfbfb;
}

/* Clearfix */
.stag-clearfix:before,
.stag-clearfix:after {
  content: "";
  display: table;
}

.stag-clearfix:after {
  clear: both;
}

.stag-clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}

/* Author Box Styles */
.stag_author_wrap {
  padding: 25px 0;
}

.stag_author_wrap .avatar {
  width: 80px;
}

.stag_author_wrap .stag_author_gravatar {
  float: left;
  width: 80px;
}

.stag_author_wrap .stag_author_info {
  padding-left: 100px;
}
.stag_author_wrap .stag_author_info h4 {
  margin: 0;
}

/* Divider */
.stag-divider {
  border: 0;
  height: 1px;
  margin: 30px 0;
  background: #ebebeb;
}

.stag-divider.plain {
  background: #333;
  background: rgba(0, 0, 0, 0.05);
  height: 8px;
  max-width: 135px;
  background: #2a2d30;
}

.stag-divider.horizontal_gradient {
  background-image: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, 0.45), transparent);
  background-image: -moz-linear-gradient(left, transparent, rgba(0, 0, 0, 0.45), transparent);
  background-image: -ms-linear-gradient(left, transparent, rgba(0, 0, 0, 0.45), transparent);
  background-image: -o-linear-gradient(left, transparent, rgba(0, 0, 0, 0.45), transparent);
  height: 1px;
}

.stag-divider.soft_blur {
  background: #333;
  background-image: -webkit-linear-gradient(left, #cccccc, #333333, #cccccc);
  background-image: -moz-linear-gradient(left, #cccccc, #333333, #cccccc);
  background-image: -ms-linear-gradient(left, #cccccc, #333333, #cccccc);
  background-image: -o-linear-gradient(left, #cccccc, #333333, #cccccc);
}

.stag-divider.dashed_double {
  border: 0;
  border-bottom: 1px dashed #ccc;
  background: #999;
}

.stag-divider.dashed {
  border-bottom: 1px dashed #ccc;
}

.stag-divider.single_direction_drop_shadow {
  height: 12px;
  border: 0;
  box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
}

.stag-divider.inset {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.stag-divider.flaired_edges {
  height: 30px;
  border-style: solid;
  border-color: black;
  border-width: 1px 0 0 0;
  border-radius: 20px;
  margin-top: 40px;
}

.stag-divider.flaired_edges:before {
  /* Not really supposed to work, but does */
  display: block;
  content: "";
  height: 30px;
  margin-top: -31px;
  border-style: solid;
  border-color: black;
  border-width: 0 0 1px 0;
  border-radius: 20px;
}

.stag-divider.glyph {
  padding: 0;
  border: none;
  border-top: medium double #333;
  color: #333;
  text-align: center;
}

.stag-divider.glyph:after {
  content: "§";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: white;
}

.stag-toggle .stag-toggle-title {
  padding-top: 8px;
  padding-bottom: 8px;
}

pre {
  margin: 1em 0 !important;
  font-size: 14px !important;
}

/*! Theme Dependant  */
.intro-text {
  color: #2a2d30;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
code[class*="language-"],
pre[class*="language-"] {
  font-family: Consolas, Monaco, 'Andale Mono', monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

@media print {
  code[class*="language-"],
  pre[class*="language-"] {
    text-shadow: none;
  }
}
/* Code blocks */
pre[class*="language-"] {
  padding: 1em;
  margin: .5em 0;
  overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: rgba(0, 0, 0, 0.2);
}

/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: .1em;
  border-radius: .3em;
}

.token {
  color: inherit !important;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}

.token.punctuation {
  color: #999;
}

.namespace {
  opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number {
  color: #905;
}

.token.selector,
.token.attr-name,
.token.string {
  color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}

.token.regex,
.token.important {
  color: #e90;
}

.token.important {
  font-weight: bold;
}

.token.entity {
  cursor: help;
}

pre[data-line] {
  position: relative;
  padding: 1em 0 1em 3em;
}

.line-highlight {
  position: absolute;
  left: 0;
  right: 0;
  padding: inherit 0;
  margin-top: 1em;
  /* Same as .prism’s padding-top */
  background: rgba(153, 122, 102, 0.08);
  background: -moz-linear-gradient(left, rgba(153, 122, 102, 0.1) 70%, rgba(153, 122, 102, 0));
  background: -webkit-linear-gradient(left, rgba(153, 122, 102, 0.1) 70%, rgba(153, 122, 102, 0));
  background: -o-linear-gradient(left, rgba(153, 122, 102, 0.1) 70%, rgba(153, 122, 102, 0));
  background: linear-gradient(to right, rgba(153, 122, 102, 0.1) 70%, rgba(153, 122, 102, 0));
  pointer-events: none;
  line-height: inherit;
  white-space: pre;
}

.line-highlight:before,
.line-highlight[data-end]:after {
  content: attr(data-start);
  position: absolute;
  top: .4em;
  left: .6em;
  min-width: 1em;
  padding: 0 .5em;
  background-color: rgba(153, 122, 102, 0.4);
  color: #f5f2f0;
  font: bold 65%/1.5 sans-serif;
  text-align: center;
  vertical-align: .3em;
  border-radius: 999px;
  text-shadow: none;
  box-shadow: 0 1px white;
}

.line-highlight[data-end]:after {
  content: attr(data-end);
  top: auto;
  bottom: .4em;
}

.token a {
  color: inherit;
}

.stag-flickr-widget li {
  display: inline-block;
  margin: 0 10px 5px 0;
}
