/*------------------------------------*\
    STYLE.CSS
\*------------------------------------*/
/*------------------------------------*\
    $RESET
\*------------------------------------*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0; }

abbr[title], dfn[title] {
  cursor: help; }

u, ins {
  text-decoration: none; }

ins {
  border-bottom: 1px solid; }

img {
  font-style: italic; }

label,
input,
textarea,
button,
select,
option {
  cursor: pointer; }

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none; }

/*------------------------------------*\
    $CLEARFIX
\*------------------------------------*/
.cf:after, .nav:after, .social-links:after, .post-footer:after, .pages-nav:after,
.permalink-nav:after {
  content: "";
  display: table;
  clear: both; }

/*------------------------------------*\
    $SHARED
\*------------------------------------*/
h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre {
  margin-bottom: 24px;
  margin-bottom: 1.5rem; }

hr {
  margin-bottom: 22px;
  margin-bottom: 1.375rem; }

ul, ol, dd {
  margin-left: 48px;
  margin-left: 3rem; }

/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Main
 */
html {
  font: 1em/1.5 serif;
  overflow-y: scroll;
  min-height: 100%; }

/**
 * Typographic scale
 */
h1, .h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.33333; }

h2, .h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6; }

h3, .h3, .site-name {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1; }

h4, .h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2; }

h5, .h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h6, .h6 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429; }

.large {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1; }

.small {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2; }

.lead,
.lede {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333; }

/**
 * Quotes
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }
  q:before {
    content: "\201C";
    content: open-quote; }
  q:after {
    content: "\201D";
    content: close-quote; }
  q q:before {
    content: "\2018";
    content: open-quote; }
  q q:after {
    content: "\2019";
    content: close-quote; }

blockquote {
  quotes: "\201C" "\201D"; }
  blockquote p:before {
    content: "\201C";
    content: open-quote; }
  blockquote p:after {
    content: "";
    content: no-close-quote; }
  blockquote p:last-of-type:after {
    content: "\201D";
    content: close-quote; }
  blockquote q:before {
    content: "\2018";
    content: open-quote; }
  blockquote q:after {
    content: "\2019";
    content: close-quote; }

blockquote {
  text-indent: -0.41em; }
  blockquote p:last-of-type {
    margin-bottom: 0; }

.source {
  display: block;
  text-indent: 0; }
  .source:before {
    content: "\2014 \00A0"; }

/**
 * Code
 */
pre {
  overflow: auto; }
  pre mark {
    background: none;
    border-bottom: 1px solid;
    color: inherit; }

/**
 * Images
 */
img {
  max-width: 100%; }

img[width],
img[height] {
  max-width: none; }

.img--right {
  float: right;
  margin-bottom: 24px;
  margin-left: 24px; }

.img--left {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px; }

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto; }

figure > img {
  display: block; }

/**
 * Lists
 */
li > ul,
li > ol {
  margin-bottom: 0; }

.numbered-list {
  list-style-type: decimal; }

.circled-list {
  list-style-type: circle; }

.squared-list {
  list-style-type: square; }

/**
 * Tables
 */
table {
  width: 100%; }

th,
td {
  padding: 6px;
  text-align: left; }

[colspan] {
  text-align: center; }

[colspan="1"] {
  text-align: left; }

[rowspan] {
  vertical-align: middle; }

[rowspan="1"] {
  vertical-align: top; }

.table--bordered th,
.table--bordered td {
  border: 1px solid; }
  .table--bordered th:empty,
  .table--bordered td:empty {
    border: none; }
.table--bordered thead tr:last-child th {
  border-bottom-width: 2px; }
.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px; }

.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc; }

/**
 * Forms
 */
fieldset {
  padding: 24px; }

.label,
label {
  display: block; }

/*------------------------------------*\
    $NAV
\*------------------------------------*/
.nav, .social-links {
  margin-left: 0;
  list-style: none; }
  .nav > li, .social-links > li,
  .nav > li > a,
  .social-links > li > a {
    display: inline-block;
    *display: inline;
    zoom: 1; }

.nav--stacked > li {
  display: list-item; }
  .nav--stacked > li > a {
    display: block; }

.nav--banner {
  text-align: center; }

.nav--block {
  line-height: 1;
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  white-space: nowrap; }
  .nav--block > li {
    letter-spacing: normal;
    word-spacing: normal; }
    .nav--block > li > a {
      padding: 12px; }

.nav--fit {
  display: table;
  width: 100%; }
  .nav--fit > li {
    display: table-cell; }
    .nav--fit > li > a {
      display: block; }

.nav--keywords > li:after {
  content: "\002C" "\00A0"; }
.nav--keywords > li:last-child:after {
  display: none; }

/*------------------------------------*\
    $SPRITE
\*------------------------------------*/
.sprite,
.icon {
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  zoom: 1;
  font-style: normal;
  font-weight: normal;
  text-align: center; }

.sprite {
  width: 16px;
  height: 16px;
  top: -1px;
  overflow: hidden;
  *text-indent: -9999px; }
  .sprite:before {
    content: "";
    display: block;
    width: 0;
    height: 100%; }

.icon {
  font-size: 16px;
  width: 1em;
  height: 1em; }
  .icon:before {
    content: attr(data-icon); }

.icon--large {
  font-size: 32px; }

.icon--huge {
  font-size: 64px; }

.icon--natural {
  font-size: inherit; }

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
.float--right {
  float: right !important; }

.float--left {
  float: left  !important; }

.float--none {
  float: none  !important; }

.text--left {
  text-align: left   !important; }

.text--center {
  text-align: center !important; }

.text--right {
  text-align: right  !important; }

.weight--light {
  font-weight: 300 !important; }

.weight--normal {
  font-weight: 400 !important; }

.weight--semibold {
  font-weight: 600 !important; }

.weight--bold {
  font-weight: 700 !important; }

.informative {
  cursor: help !important; }

.go:after {
  content: "\00A0" "\00BB" !important; }

.caps {
  text-transform: uppercase !important; }

.accessibility,
.visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

@media only screen and (max-width: 480px) {
  .accessibility--palm,
  .visuallyhidden--palm {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .accessibility--lap,
  .visuallyhidden--lap {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 481px) {
  .accessibility--lap-and-up,
  .visuallyhidden--lap-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (max-width: 1023px) {
  .accessibility--portable,
  .visuallyhidden--portable {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 1024px) {
  .accessibility--desk,
  .visuallyhidden--desk {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 1200px) {
  .accessibility--desk-wide,
  .visuallyhidden--desk-wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
/*------------------------------------*\
    $PAGE
\*------------------------------------*/
html {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, sans-serif;
  color: #898989;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased; }
  @media only screen and (max-width: 1023px) {
    html {
      font-size: 85%; } }

.site-header-content, .post article, .pages-nav,
.permalink-nav {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px; }
  @media only screen and (max-width: 480px) {
    .site-header-content, .post article, .pages-nav,
    .permalink-nav {
      padding-left: 20px;
      padding-right: 20px; } }

.theme-credits {
  position: fixed;
  right: 5px;
  bottom: 5px;
  padding: 3px 6px;
  border-radius: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-weight: bold;
  text-shadow: rgba(0, 0, 0, 0.7) 1px 1px 0; }
  .theme-credits:hover {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .theme-credits a {
    color: #fff; }
    .theme-credits a:hover, .theme-credits a:focus, .theme-credits a:active {
      color: #fff; }
  @media only screen and (max-width: 1023px) {
    .theme-credits {
      position: relative;
      margin-top: 24px;
      padding: 0;
      border-radius: 0;
      background-color: transparent;
      font-size: 12px;
      font-weight: normal;
      text-shadow: none; }
      .theme-credits:hover {
        opacity: 1;
        filter: alpha(opacity=100); }
      .theme-credits a {
        color: #e36761; }
        .theme-credits a:hover, .theme-credits a:focus, .theme-credits a:active {
          color: #898989; } }

/*------------------------------------*\
    $PAGE-HEAD
\*------------------------------------*/
.site-header {
  text-align: center; }

.site-header-image {
  padding: 40px 20px; }

.logo {
  max-width: 100%;
  display: inline-block; }
  .logo > img {
    vertical-align: bottom; }

.site-name {
  margin-bottom: 0; }
  .site-name a {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase; }
    .site-name a:hover, .site-name a:focus {
      opacity: 0.85;
      filter: alpha(opacity=85); }

.site-header-content {
  padding: 40px; }

.site-descr {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429; }

.show-nav-button {
  display: none; }
  @media only screen and (max-width: 480px) {
    .show-nav-button {
      display: inline-block;
      padding: 8px 12px;
      margin: 21px 0 5px;
      background-color: #e36761;
      border-radius: 8px;
      color: #f3f3f3;
      font-size: 12px;
      text-transform: uppercase;
      text-align: center; }
      .show-nav-button:hover, .show-nav-button:focus, .show-nav-button:active {
        color: #f3f3f3;
        background-color: #494949; } }

.site-nav {
  margin-top: 21px; }
  .site-nav ul {
    margin-bottom: 0; }
  .site-nav li {
    margin-left: 40px; }
    .site-nav li:first-child {
      margin-left: 0; }
  .site-nav a {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 2; }
  @media only screen and (max-width: 480px) {
    .site-nav {
      display: none;
      -webkit-column-count: 2;
      -moz-column-count: 2;
      -ms-column-count: 2;
      -o-column-count: 2;
      column-count: 2; }
      .site-nav li {
        display: block;
        margin: 0 0 10px; } }

.search-form {
  display: none;
  margin-top: 21px; }
  .search-form .text-input {
    width: 220px;
    padding: 4px 8px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    color: #707070;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 2; }
    .search-form .text-input:hover, .search-form .text-input:active, .search-form .text-input:focus {
      border-color: #c9c9c9; }

.social-links {
  margin: 24px 0 0; }
  .social-links li {
    margin-left: 20px; }
    .social-links li:first-child {
      margin-left: 0; }
  .social-links a {
    font-weight: normal; }
  @media only screen and (max-width: 480px) {
    .social-links {
      display: none;
      -webkit-column-count: 4;
      -moz-column-count: 4;
      -ms-column-count: 4;
      -o-column-count: 4;
      column-count: 4; }
      .social-links li {
        display: block;
        margin: 0 0 5px; }
      .social-links a {
        font-size: 20px; } }

/*------------------------------------*\
    $PAGE-CONTENT
\*------------------------------------*/
.post {
  padding: 50px 0;
  border-bottom: 1px solid #e6e6e6; }
  .post:first-child {
    border-top: 1px solid #e6e6e6; }

.post-media {
  text-align: center; }
  .post-media img, .post-media iframe, .post-media embed {
    max-width: 100%;
    display: block;
    vertical-align: bottom; }
  .post-media img {
    display: inline-block;
    height: auto; }
  @media only screen and (max-width: 1023px) {
    .post-media {
      margin-left: -20px;
      margin-right: -20px; } }

.post-footer {
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2; }

.post-meta,
.post-social-buttons {
  margin: 0;
  list-style-type: none; }
  .post-meta li,
  .post-social-buttons li {
    margin-bottom: 5px; }
    .post-meta li:last-child,
    .post-social-buttons li:last-child {
      margin-bottom: 0; }
  .post-meta .inline,
  .post-social-buttons .inline {
    display: inline-block; }
  .post-meta .offset,
  .post-social-buttons .offset {
    margin-left: 15px; }

.post-tags a {
  display: inline-block;
  margin-left: 15px; }
  .post-tags a:first-child {
    margin-left: 0; }
  .post-tags a:before {
    content: "#"; }

.post-social-buttons {
  float: right;
  text-align: right; }
  .post-social-buttons li {
    margin-bottom: 0; }

.twitter-share iframe {
  width: 79px !important; }

.facebook-like {
  margin-bottom: 3px; }

.pinterest-pinit iframe {
  width: 64px !important; }

/**
 * Single posts
 */
.post--single .post-meta {
  float: left; }

/**
 * Post types
 */
.chat ol {
  margin-left: 0;
  list-style-type: none; }

.answer .asker {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  line-height: 1.333; }

.quote blockquote {
  padding-left: 0;
  border-left: none;
  text-indent: 0; }
  .quote blockquote.long, .quote blockquote.medium {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
    line-height: 1.333; }
  .quote blockquote.short {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
    line-height: 1.5; }
.quote .source {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

/**
 * Notes and comments
 */
.notes-block,
.comments {
  margin-top: 20px; }

.notes {
  margin: 0;
  list-style-type: none; }
  .notes li {
    margin-top: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 2; }
    .notes li:first-child {
      margin-top: 0; }
  .notes .avatar {
    display: inline-block;
    vertical-align: -4px; }
  .notes blockquote {
    margin: 5px 0 0 24px; }

/**
 * Posts navigation
 */
.pages-nav,
.permalink-nav {
  padding: 40px 20px; }
  .pages-nav a,
  .permalink-nav a {
    text-transform: uppercase;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 2; }
  .pages-nav .prev,
  .permalink-nav .prev {
    float: left; }
  .pages-nav .next,
  .permalink-nav .next {
    float: right; }

.infinite-loader {
  padding: 50px 0;
  text-align: center; }

/*------------------------------------*\
    $TYPOGRAPHY
\*------------------------------------*/
/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -1px; }

/**
 * Links
 */
a {
  color: #e36761;
  font-weight: bold;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: none;
    color: #898989; }
  a:active {
    text-decoration: none;
    color: #494949; }

a:hover img,
a:focus img {
  opacity: 0.85;
  filter: alpha(opacity=85);
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

/**
 * Quotes
 */
blockquote {
  padding-left: 20px;
  border-left: 3px solid #e36761; }

/**
 * Misc
 */
hr {
  border: none;
  border-bottom: 1px solid #e6e6e6; }

.remove-margin {
  margin-bottom: 0; }

/*------------------------------------*\
    $ICONS
\*------------------------------------*/
@font-face {
  font-family: IcoMoon;
  src: url(http://themes.theultralinx.com/fonts/ultraflow/icomoon.eot);
  src: url(http://themes.theultralinx.com/fonts/ultraflow/icomoon.eot?#iefix) format("embedded-opentype"), url(http://themes.theultralinx.com/fonts/ultraflow/icomoon.svg#icomoon) format("svg"), url(http://themes.theultralinx.com/fonts/ultraflow/icomoon.woff) format("woff"), url(http://themes.theultralinx.com/fonts/ultraflow/icomoon.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

.icon {
  font-family: IcoMoon; }
