/*---------------------------------------------------
    LESS Elements 0.9.1
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
    MODIFIED BY: Brandon Brown
  ---------------------------------------------------*/
@import url(https://cdn-static.postach.io/fonts/icomoon/style.css);
@import url(https://cdn-static.postach.io/fonts/symbolset/ss-pika.css);
* html .clearfix {
  zoom: 1;
}
/* IE6 */
*:first-child + html .clearfix {
  zoom: 1;
}
/* IE7 */
/**
 * Utilities
 * Mixins used throughout themes and the main site
 */
/**
 * REM units mixin with PX fallback for legacy browsers with no REM unit support
 * https://github.com/christopher-ramirez/remixings
 */
.hide {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.align-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.no-underline {
  text-decoration: none;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.block {
  display: block;
}
.block:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.block:after {
  content: "";
  display: table;
  clear: both;
}
.inline-block {
  display: inline-block;
}
.hidden {
  display: none;
  visibility: hidden;
}
.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
}
.no-flick {
  -webkit-transform: translate3d(0, 0, 0);
}
.vertical-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/**
 * Visibility Utilites
 * NOTE: Only include these if you aren't using Bootstrap!
 */
.visible-phone {
  display: none !important;
}
.visible-tablet {
  display: none !important;
}
.hidden-desktop {
  display: none !important;
}
.visible-desktop {
  display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}
.responsive-embed {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed embed,
.responsive-embed object {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.responsive-embed.embed-16by9 {
  padding-bottom: 56.25% !important;
}
.responsive-embed.embed-4by3 {
  padding-bottom: 75% !important;
}
/* Override Utilities
--------------------------------------------- */
.gist {
  font-size: 13px;
  font-size: 0.8125rem;
}
/* Code/Pre-formatted blocks */
.post-content code,
.post-content pre {
  padding: 2px 4px;
  padding: 0.125rem 4px;
  padding: 2px 0.25rem;
  padding: 0.125rem 0.25rem;
  display: inline-block;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  border: none;
  color: #d14;
  background-color: #f7f7f9;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre-wrap;
  line-height: 180%;
}
.post-content code div,
.post-content pre div {
  padding: 0 !important;
  display: inline-block;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * 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/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.ss-icon {
  position: relative;
  top: 2px;
}
.left {
  float: left;
}
.right {
  float: right;
}
/**
 * Search typeahead styles
 */
.twitter-typeahead {
  width: 100%;
}
.tt-dropdown-menu {
  width: 100%;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) 0.0625rem 0.125rem #000;
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) 0.0625rem 0.125rem #000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) 0.0625rem 0.125rem #000;
}
.tt-suggestion {
  font-size: 18px;
  line-height: 24px;
  padding: 8px 20px;
}
.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #37cca1;
}
.tt-suggestion.tt-cursor a {
  color: #ffffff;
}
.tt-suggestion + .tt-suggestion {
  border-top: 1px solid #ccc;
}
.tt-suggestion p {
  margin: 0;
}
.article-title {
  font-family: 'Lato';
  font-weight: 300;
  font-weight: 700;
}
.article-title a:hover {
  color: #ffffff;
}
.article-date {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 11px;
}
/**
 * Fix socialbar share point
 */
.socialbar-point.socialbar-point-top:after {
  bottom: -4px !important;
}
.socialbar-point.socialbar-point-bottom:after {
  top: -4px !important;
}
/**
 * Module imports
 */
*,
*:before,
*:after {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
}
.container {
  display: block;
  clear: both;
  margin: 0 auto;
  width: 60%;
}
.container:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.container:after {
  content: "";
  display: table;
  clear: both;
}
.grid {
  margin: 0 0 50px 0;
}
.grid:after {
  content: "";
  display: table;
  clear: both;
}
.grid.pad {
  padding: 50px;
}
[class*='col-'] {
  float: left;
  padding-right: 50px;
}
.grid [class*='col-']:last-of-type {
  padding-right: 0;
}
[class*='col-'].centered {
  float: none;
  margin: 0 auto;
}
.grid-pad {
  padding: 50px 0 50px 50px;
}
.grid-pad [class*='col-']:last-of-type {
  padding-right: 50px;
}
.col-1-3 {
  width: 33.33%;
}
.col-2-3 {
  width: 66.66%;
}
.col-1-2 {
  width: 50%;
}
.col-1-4 {
  width: 25%;
}
.col-3-4 {
  width: 75%;
}
.col-1-8 {
  width: 12.5%;
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u-w4BMUTPHjxsIPx-oPCc.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI9w2_Gwfo.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHjxsAXC-v.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI5wq_Gwfo.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI3wi_Gwfo.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHh30AXC-v.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh7USSwiPHA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjx4wWw.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh6UVSwiPHA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh50XSwiPHA.ttf) format('truetype');
}
.light {
  font-family: 'Lato';
  font-weight: 300;
}
.medium {
  font-family: 'Lato';
  font-weight: 300;
}
.bold {
  font-family: 'Lato';
  font-weight: 500;
}
strong {
  font-weight: 400;
}
html {
  font-size: 100%;
}
body {
  color: #8b8b8b;
  line-height: 1.5rem;
  font-size: 1rem;
  font-family: 'Lato', helvetica, arial, sans-serif;
  font-weight: 300;
}
h1,
h2,
h3,
h4 {
  color: #f76f4f;
  font-weight: 500;
  padding: 0 0 50px 0;
  font-family: 'Lato';
}
h1 {
  font-size: 2.5rem;
  color: #636363;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
a {
  cursor: pointer;
  text-decoration: none;
  color: #8b8b8b;
}
a:hover {
  color: #37cca1;
}
.gradient-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 2px;
  background-image: -webkit-linear-gradient(180deg, #37cca2 0%, #46deb6 17%, #feed00 38%, #fbf27a 59%, #f24141 79%, #ffafaf 100%);
  background-image: -moz-linear-gradient(right, #37cca2 0%, #46deb6 17%, #feed00 38%, #fbf27a 59%, #f24141 79%, #ffafaf 100%);
  background-image: -o-linear-gradient(right, #37cca2 0%, #46deb6 17%, #feed00 38%, #fbf27a 59%, #f24141 79%, #ffafaf 100%);
  background-image: linear-gradient(to left, #37cca2 0%, #46deb6 17%, #feed00 38%, #fbf27a 59%, #f24141 79%, #ffafaf 100%);
  z-index: 10001;
}
.site-header {
  background-color: #f8f8f8;
  padding: 50px;
  height: 145px;
}
.site-header:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.site-header:after {
  content: "";
  display: table;
  clear: both;
}
h2.sublogo {
  float: right;
  display: inline-block;
  font-size: 1.35rem;
  line-height: 1.35rem;
  font-weight: 300;
  position: relative;
  padding: 0;
  margin: 0;
}
h1.logo {
  display: inline-block;
  float: left;
  position: relative;
  padding: 0;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35rem;
}
h1.logo a .icon {
  position: relative;
  top: 4px;
  color: #37cca1;
  padding-right: 5px;
}
h1.logo a .text {
  font-weight: 300;
  color: #8b8b8b;
}
.search {
  position: relative;
  font-family: 'Lato', helvetica, arial, sans-serif;
  float: right;
  width: 50%;
  padding-left: 140px;
}
.search label {
  position: absolute;
  top: 7px;
  left: 0;
  width: 140px;
  margin: 0;
  font-size: 1.1rem;
  font-family: 'Lato';
  font-weight: 300;
  z-index: 1080;
}
.search label .ss-icon {
  position: absolute;
  top: 2px;
  right: -32px;
}
.search input {
  padding: 9px;
  width: 100%;
  font-size: 0.85rem;
  display: block;
  border: 2px solid #a3a3a3;
  padding-left: 40px;
}
.search input:focus {
  border: 2px solid #37cca1;
  outline: none;
}
.search .search-input {
  display: inline-block;
  width: 100%;
}
.toc {
  display: block;
  position: relative;
  border-bottom: 2px solid #f8f8f8;
  background-color: #ffffff;
}
.toc.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.toc h2 {
  cursor: pointer;
  position: relative;
  display: block;
  color: #8b8b8b;
  margin: 0;
  padding: 0;
  padding: 25px 50px;
  font-size: 1rem;
  font-family: 'Lato';
  font-weight: 300;
}
.toc h2 .toggle {
  font-size: 0.85rem;
  color: #bbbbbb;
  display: block;
  position: absolute;
  top: 25px;
  right: 50px;
}
.toc h2 .toggle:hover {
  color: #37cca1;
}
.toc h2 .toggle:hover span {
  color: #37cca1;
}
.toc h2 .toggle span {
  padding-left: 5px;
  color: #bbbbbb;
}
.toc-items {
  background-color: #ffffff;
  display: block;
}
.toc-items:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.toc-items:after {
  content: "";
  display: table;
  clear: both;
}
.toc-items ul {
  width: 33%;
  float: left;
  padding: 0 0 50px 20px;
}
.toc-items ul li {
  list-style-type: square;
}
.toc-items ul li a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #f76f4f;
}
.toc-items ul li a:hover,
.toc-items ul li a.active {
  font-family: 'Lato';
  font-weight: 300;
}
.toc-items ul li a:hover {
  color: #37cca1;
}
.toc-items ul li a.active {
  color: #8b8b8b;
}
.site-footer {
  display: block;
  background-color: #f8f8f8;
  padding: 50px 0;
  font-size: 0.85rem;
}
.site-footer:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.site-footer:after {
  content: "";
  display: table;
  clear: both;
}
.site-footer ul {
  width: 30%;
  display: block;
  float: left;
  list-style-type: none;
}
.site-footer ul:first-of-type {
  padding-left: 0;
}
.site-footer ul li:first-of-type {
  text-transform: uppercase;
  padding-bottom: 12.5px;
  font-family: 'Lato';
  font-weight: 300;
}
.site-footer ul li a {
  font-weight: 300;
  text-transform: none;
}
.site-footer .right {
  width: 40%;
  float: right;
  text-align: right;
}
button,
a.btn {
  border: 0;
  display: inline-block;
  color: #ffffff;
  cursor: pointer;
  padding: 15px 30px;
  text-transform: uppercase;
  background-color: #f76f4f;
  font-size: 0.9rem;
}
button:hover,
a.btn:hover {
  background-color: #8b8b8b;
}
button.btn-mini,
a.btn.btn-mini {
  padding: 7px 14px 7px 14px;
  font-size: 0.75rem;
  background-color: #8b8b8b;
}
button.btn-mini:hover,
a.btn.btn-mini:hover {
  background-color: #636363;
}
button.centered,
a.btn.centered {
  margin: 0 auto;
  display: block;
  width: auto;
}
.post {
  display: block;
  min-height: 250px;
  padding: 100px 0;
}
.post:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.post:after {
  content: "";
  display: table;
  clear: both;
}
.post h1 {
  padding: 0 0 50px 0;
  margin: 0;
  line-height: 1.3;
}
.post h2,
.post h3,
.post h4 {
  color: #f76f4f;
  padding: 25px 0 12.5px 0;
  margin: 0;
}
.post .back {
  display: inline-block;
  font-size: 0.85rem;
  margin-bottom: 25px;
}
.post .back:hover span {
  color: #37cca1;
}
.post .post-content {
  display: block;
}
.post .post-content ul,
.post .post-content ol,
.post .post-content li,
.post .post-content blockquote,
.post .post-content p,
.post .post-content div,
.post .post-content b,
.post .post-content i {
  text-align: left;
}
.post .post-content ul strong,
.post .post-content ol strong,
.post .post-content li strong,
.post .post-content blockquote strong,
.post .post-content p strong,
.post .post-content div strong,
.post .post-content b strong,
.post .post-content i strong {
  font-weight: bold;
}
.post .post-content b {
  font-weight: bold;
}
.post .post-content p,
.post .post-content div {
  padding: 12.5px 0;
  margin: 0;
}
.post .post-content p.gist,
.post .post-content div.gist {
  padding: 0;
  margin: 0;
}
.post .post-content p.gist .gist-file,
.post .post-content div.gist .gist-file,
.post .post-content p.gist .gist-meta,
.post .post-content div.gist .gist-meta,
.post .post-content p.gist .gist-data,
.post .post-content div.gist .gist-data,
.post .post-content p.gist .gist-syntax,
.post .post-content div.gist .gist-syntax,
.post .post-content p.gist .file-data,
.post .post-content div.gist .file-data,
.post .post-content p.gist .file-box,
.post .post-content div.gist .file-box,
.post .post-content p.gist .file,
.post .post-content div.gist .file,
.post .post-content p.gist .data,
.post .post-content div.gist .data,
.post .post-content p.gist .line,
.post .post-content div.gist .line {
  padding: 0;
  margin: 0;
}
.post .post-content p.gist .gist-meta,
.post .post-content div.gist .gist-meta {
  padding: 10px;
  font-size: 12px;
  line-height: normal;
}
.post .post-content p.gist .gist-meta a,
.post .post-content div.gist .gist-meta a {
  text-decoration: none;
}
.post .post-content table {
  margin: 0;
  padding: 0;
}
.post .post-content blockquote {
  padding: 12.5px 25px;
  margin: 12.5px 0;
  border-left: 5px solid #e5e5e5;
}
.post .post-content ul {
  padding: 12.5px 0 18.75px;
  margin: 0px 0px 0px 50px;
}
.post .post-content ul li {
  padding: 0;
  margin: 0;
  list-style-type: square;
}
.post .post-content ul li div {
  padding: 0;
}
.post .post-content ol {
  padding: 12.5px 0 18.75px;
  margin: 0px 0px 0px 50px;
}
.post .post-content ol li {
  padding: 0;
  margin: 0;
  list-style-type: decimal;
}
.post .post-content ol li div {
  padding: 0;
}
.post .post-content h1 {
  padding-bottom: 25px;
}
.post .post-content h2,
.post .post-content h3 {
  padding-top: 25px;
}
.post .post-content img {
  max-width: 100%;
  height: auto;
}
.post .post-content .mejs-container {
  margin-top: 12.5px;
}
.post .post-content .post-pdf {
  position: relative;
}
.post .post-content .post-pdf .pdf-fullscreen {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #000;
  font-size: 12px;
  padding: 10px;
  background-color: #1abc9c;
  border-radius: 7px;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
  filter: alpha(opacity=30);
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  -webkit-appearance: none;
  cursor: pointer;
  border: 0;
}
.post .post-content .post-pdf .pdf-fullscreen:hover {
  color: #ffffff;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.post .post-content .post-pdf object {
  display: block;
  min-height: 400px;
}
.post .post-content img {
  width: 100%;
  border: 2px solid #f8f8f8;
}
.post .post-content ul,
.post .post-content ol,
.post .post-content li,
.post .post-content blockquote,
.post .post-content p,
.post .post-content div {
  font-size: 1.2rem;
  line-height: 2.04rem;
}
.post .post-content ul strong,
.post .post-content ol strong,
.post .post-content li strong,
.post .post-content blockquote strong,
.post .post-content p strong,
.post .post-content div strong {
  font-family: 'Lato';
  font-weight: 500;
}
.post .post-content p,
.post .post-content div {
  padding: 12.5px 0;
  margin: 0;
}
.post .post-content p img,
.post .post-content div img {
  width: 100%;
}
.post .post-content p a,
.post .post-content div a {
  text-decoration: underline;
}
.post .post-content blockquote {
  font-size: 1.4rem;
  font-family: 'Lato';
  font-weight: 300;
  border-left: 5px solid #f8f8f8;
  padding: 12.5px 50px;
  margin: 12.5px 0;
}
.post .post-content ul {
  padding: 12.5px 0;
  margin-left: 80px;
}
.post .post-content ul li {
  list-style-type: square;
}
.post .post-content ul li a {
  text-decoration: underline;
}
.post .post-content ol {
  padding: 12.5px 0;
  margin-left: 80px;
}
.post .post-content ol li {
  list-style-type: decimal;
}
.post .post-content ol li a {
  text-decoration: underline;
}
.post .post-comments {
  display: block;
  clear: both;
  padding-top: 50px;
}
.post .post-footer {
  display: block;
  clear: both;
  padding-top: 50px;
}
.post .post-footer:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.post .post-footer:after {
  content: "";
  display: table;
  clear: both;
}
.post .post-footer .post-author {
  width: 50%;
  float: left;
  text-align: left;
}
.post .post-footer .post-author .post-author-avatar {
  display: block;
  float: left;
  width: 55px;
  height: 55px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.post .post-footer .post-author .post-author-avatar img {
  width: 55px;
  height: 55px;
}
.post .post-footer .post-author p {
  float: left;
  font-size: 0.85rem;
  padding: 4px 0 0 20px;
  margin: 0;
}
.post .post-footer .post-author p span {
  font-weight: 500;
}
.post .post-footer .post-author p span.post-date {
  color: #bbbbbb;
  font-weight: 300;
}
.post .post-footer .post-author p span.post-author-name {
  font-size: 1rem;
  font-family: 'Lato';
  font-weight: 300;
}
.post .post-footer .post-options {
  width: 50%;
  float: right;
  text-align: right;
  list-style-type: none;
}
.post .post-footer .post-options li {
  float: right;
  padding-left: 10px;
}
.post .post-footer .post-options li a {
  display: inline-block;
}
.post .post-footer .post-options li a i {
  position: relative;
  top: 2px;
  font-size: 1.125rem;
}
.post .post-footer .post-options li a .phrase {
  margin-left: 4px;
}
.post .post-footer .post-options li .options-label {
  display: inline-block;
  padding: 12.5px 10px 0 0;
  color: #bbbbbb;
  font-size: 0.85rem;
}
.post .post-video {
  padding: 25px 0;
}
.post .post-video iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: 0;
}
.posts {
  padding: 0;
}
.posts li {
  display: block;
  padding: 0 0 62.5px 0;
}
.posts li:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.posts li:after {
  content: "";
  display: table;
  clear: both;
}
.posts h3 {
  position: relative;
  padding: 0 0 16.66666667px 0;
  margin: 0;
  font-family: 'Lato';
  font-weight: 300;
  color: #f76f4f;
}
.posts h3 a {
  color: #f76f4f;
}
.posts h3 a:hover {
  color: #37cca1;
}
.posts h3 .socialbar-like {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.85rem;
  color: #bbbbbb;
}
.posts h3 .socialbar-like:hover {
  color: #37cca1;
}
.posts h3 .socialbar-like:hover span {
  color: #37cca1;
}
.posts h3 .socialbar-like span {
  color: #bbbbbb;
}
.posts .post-author {
  width: 50%;
  float: left;
  text-align: left;
  padding-top: 12.5px;
}
.posts .post-author .post-author-avatar {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.posts .post-author .post-author-avatar img {
  width: 30px;
  height: 30px;
}
.posts .post-author p {
  float: left;
  font-size: 0.85rem;
  padding: 3px 0 0 20px;
  margin: 0;
}
.posts .post-author p span {
  font-weight: 500;
}
.posts .post-author p span.post-date {
  color: #bbbbbb;
  font-weight: 300;
}
.posts .post-author p span.post-author-name {
  font-size: 1rem;
  font-family: 'Lato';
  font-weight: 300;
}
.posts .post-options {
  padding-top: 12.5px;
  width: 50%;
  float: right;
  text-align: right;
  list-style-type: none;
}
.posts .post-options li {
  float: right;
  padding: 0 0 0 10px;
}
.posts .post-options li a {
  display: inline-block;
  font-size: 0.85rem;
}
.posts .post-options li a i {
  position: relative;
  top: 2px;
  font-size: 1rem;
}
.posts .post-options li a .phrase {
  margin-left: 4px;
}
.posts .post-options li div {
  display: inline-block;
}
.posts .post-options li .options-label {
  display: inline-block;
  padding: 12.5px 10px 0 0;
  color: #bbbbbb;
  font-size: 0.85rem;
}
.pagination {
  border-top: 2px solid #f8f8f8;
  padding: 25px 0;
  font-size: 0.85rem;
}
.pagination:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.pagination:after {
  content: "";
  display: table;
  clear: both;
}
.pagination a {
  display: block;
  color: #bbbbbb;
}
.pagination a:hover {
  color: #37cca1;
}
.pagination a:hover span {
  color: #37cca1;
}
.pagination a span {
  color: #bbbbbb;
}
.pagination .prev {
  float: left;
  text-align: left;
}
.pagination .next {
  float: right;
  text-align: right;
}
@media (max-width: 59.9375em) {
  .col-1-3,
  .col-2-3,
  .col-1-2,
  .col-1-4,
  .col-3-4,
  .col-1-8 {
    width: 100%;
  }
  .site-header {
    padding: 25px;
    height: auto;
    text-align: center;
  }
  .logo,
  .search {
    float: none;
  }
  .logo {
    margin: 0 auto 25px;
  }
  .search {
    width: 100%;
    clear: both;
    float: none;
    padding-left: 0;
    text-align: center;
  }
  .search label {
    display: none;
  }
  .search input {
    text-align: center;
    padding-left: 0;
  }
  .search .search-input {
    width: 80%;
  }
  .site-footer {
    padding: 50px 0;
    text-align: center;
  }
  .site-footer ul {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
  }
  .site-footer ul li:first-of-type {
    padding-bottom: 0;
  }
  .site-footer .right {
    width: 100%;
    float: none;
    text-align: center;
  }
  .toc-items {
    padding: 0 0 25px;
  }
  .toc-items ul {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .toc-items ul li {
    list-style-type: none;
  }
  .toc-items ul li a {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}
