@charset "UTF-8";
/***************/
/* MEYER RESET */
/***************/
@import url(//fonts.googleapis.com/css?family=Lato:300);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --sansSerif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --monospace: monospace;
}

#about-page {
  text-align: center;
  max-width: 460px;
}
#about-page h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
#about-page h2 {
  font-size: 1.4rem;
  font-weight: bold;
}
#about-page > * {
  margin-bottom: 3em;
}

#about-contact .section {
  margin: 3rem 0;
}

#about-links a {
  display: block;
}

/* ==========================================================================
   Page Footer
   ========================================================================== */
.footer-links {
  margin-bottom: 1.5em;
}
.footer-links > * {
  display: block;
  margin-bottom: 0.4em;
}

.footer-post {
  display: inline-block;
  font-size: 0.85em;
  max-width: 30em;
}

.footer-post > * {
  display: block;
}

/*********************
    Index Header
*********************/
#index-header {
  width: 100%;
  height: 60vh;
  max-height: 400px;
  min-height: 200px;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #fff;
  background: url(/images/head1.png);
  background-size: 100% 100%;
}

#index-header .index-logo {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 3rem;
}

#index-header .index-logo img {
  max-width: 160px;
}

/*********************
    Posts List
*********************/
.posts > .post-item {
  text-align: center;
  display: block;
  padding-bottom: 3rem;
}
.posts > .post-item .post-title {
  margin-top: -4px;
  margin-bottom: 0.2em;
  max-width: 30rem;
}
.posts > .post-item .post-title span {
  border-bottom: 1px solid transparent;
}
.posts > .post-item .post-preview-content:hover .post-title span {
  border-bottom-color: #eee;
}
.posts > .post-item .post-preview-image {
  padding-bottom: 0.8em;
}
.posts > .post-item .post-preview-image img, .posts > .post-item .post-preview-image video {
  max-height: 50vh;
}
.posts > .post-item .post-blurb {
  font-size: 14px;
  color: #555;
  max-width: 25rem;
}
.posts > .post-item:first-child {
  margin-top: 3rem;
}
.posts > .post-item:after {
  margin-top: 3rem;
  display: block;
  font-family: serif;
  content: "\2053";
  color: #aaa;
}
.posts > .post-item:last-child:after {
  content: "";
}

.pagination {
  margin-top: 2em;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .posts > .post-item {
    padding-bottom: 2rem;
  }
  .posts > .post-item:first-child {
    margin-top: 2rem;
  }
  .posts > .post-item:after {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .posts > .post-item {
    padding-bottom: 1.2rem;
  }
  .posts > .post-item:first-child {
    margin-top: 1.2rem;
  }
  .posts > .post-item:after {
    margin-top: 1.2rem;
  }
}
.post {
  overflow: hidden;
}

/*********************
    Post Header
*********************/
.masthead {
  padding-top: 22px;
  padding-bottom: 4px;
  text-align: center;
}

.site-avatar img {
  max-width: 65px;
  border-bottom: 2px solid transparent;
}
.site-avatar img:hover {
  border-bottom: 2px solid #333;
}

.post-meta {
  color: #aaa;
  font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  padding-bottom: 0.4em;
}

.post-header {
  text-align: center;
}
.post-header .post-title {
  margin-top: 0;
  margin-bottom: 0.2em;
}
.post-header .post-meta {
  margin-bottom: 1em;
}

.post footer {
  margin-top: 3em;
  text-align: center;
}
.post footer .edit-link {
  display: block;
  width: 100%;
  padding-top: 2em;
  font-size: 90%;
  color: #aaa;
  font-style: italic;
}
.post footer .edit-link:hover {
  text-decoration: underline;
}

.post {
  font-size: 16px;
  line-height: 1.34;
}
.post > * {
  margin-left: 40px;
  margin-right: 40px;
}
.post figure {
  position: relative;
  padding-top: 1em;
  padding-bottom: 1.2em;
}
.post h1 + figure,
.post h2 + figure {
  padding-top: 0;
}
.post img, .post video {
  padding-bottom: 0.2em;
  max-height: 90vh;
}
.post figcaption {
  text-align: center;
  font-style: italic;
  font-size: 0.9em;
  max-width: 440px;
  margin: 0 auto;
}
.post img, .post iframe, .post figure, .post div.highlighter-rouge, .post video {
  display: block;
  margin: 0 auto;
}
.post iframe {
  max-width: 100%;
}
.post blockquote {
  margin: 1.8em .8em;
  border-left: 2px solid #777;
  padding: 0.1em 1em;
  color: #777;
  font-style: italic;
}
.post blockquote p:last-child {
  margin-bottom: 0.4em;
}
.post blockquote.big-quote {
  margin: 1.8em .8em;
  padding: 0;
  color: #777;
  font-style: italic;
  font-family: Georgia, "Times New Roman", Serif;
  font-size: 1.4em;
  color: #777;
  text-align: center;
  border: none;
}
.post hr {
  margin-left: 0;
  margin-right: 0;
  border-style: none;
  border-bottom: 1px solid #eee;
}
.post hr.stars {
  margin: 2em 0;
  border: none;
}
.post hr.stars:before {
  content: "\2042";
  text-align: center;
  width: 100%;
  display: block;
}
.post hr.bullets {
  margin: 3em 0;
  border-style: none;
  border-top: 1px solid #eee;
  text-align: center;
  position: relative;
  overflow: visible;
}
.post hr.bullets:after {
  position: absolute;
  content: "· · ·";
  top: -20px;
  padding: 8px;
  color: #aaa;
  background: #fcfcfc;
}
.post > h1 {
  border-bottom: 1px solid #eee;
  line-height: 1.2em;
  margin: 1.6em 0 0.4em 0;
  padding-top: 0.6em;
  padding-bottom: 0.1em;
}
.post > h1, .post > h2 {
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.post > h2 {
  margin-top: 2em;
  margin-bottom: 0.8em;
}
.post > h2 + figure {
  margin-top: 1em;
}

.post.story {
  font-size: 19px;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.4;
}
.post.story .chapter-heading,
.post.story hr {
  color: #777;
}
.post.story hr {
  margin: 2em 0;
  border: none;
}
.post.story hr:before {
  content: "\2042";
  text-align: center;
  width: 100%;
  display: block;
}
.post.story hr.end {
  padding: 8em;
}
.post.story hr.end:before {
  content: "END";
  text-align: center;
  width: 100%;
  display: block;
}
.post.story > h1 {
  border-bottom: none;
  font-size: 32px;
  padding: 2em 0 2em 0;
  margin-top: 4em;
}
.post.story > h1:first-of-type {
  margin-top: 0;
}

.post-aside-info {
  font-size: 0.8em;
  font-style: italic;
  text-align: center;
}

.post-nav > * {
  width: 50%;
  min-height: 1px;
  float: left;
  text-align: left;
}

.post-nav .next {
  text-align: right;
}

.wrapper-footer {
  margin-top: 50px;
}

.page-footer {
  padding: 20px 0;
  text-align: center;
  font-size: 80%;
  color: #aaa;
}
.page-footer nav a {
  color: inherit;
}
.page-footer nav a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 800px) {
  .post.story {
    font-size: 18px;
  }

  .post > * {
    margin-left: 24px;
    margin-right: 24px;
  }

  .post figure {
    padding-top: 0.2em;
    padding-bottom: 0.6em;
  }
}
@media only screen and (max-width: 500px) {
  .post.story {
    font-size: 17px;
  }

  .post > * {
    margin-left: 6px;
    margin-right: 6px;
  }
}
.channel-header {
  text-align: center;
}

/* ==========================================================================
  Post Side Pagination
   ========================================================================== */
.body-pagination .post-pagination-link {
  display: block;
  position: fixed;
  top: 50%;
  height: 0;
  padding: 1.6rem;
  font-size: 40px;
  color: #777;
}
.body-pagination .prev-post {
  left: 0;
}
.body-pagination .prev-post::after {
  content: "\2329";
}
.body-pagination .next-post {
  right: 0;
}
.body-pagination .next-post::after {
  content: "\232a";
}

.footer-pagination .post-pagination-link {
  display: block;
  width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
}

.post-pagination-link:hover {
  text-decoration: none;
}

@media only screen and (max-width: 900px) {
  .body-pagination {
    display: none;
  }
}
/* ==========================================================================
   Table of Contents
   ========================================================================== */
.toc-container {
  width: 50%;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.post .entry > span {
  /** hide auto generated toc sections */
  display: block;
  height: 1px;
}

.toc {
  position: absolute;
  top: 0;
  right: 370px;
  min-width: 260px;
  max-width: 400px;
  max-height: 100%;
  overflow-y: auto;
  font-weight: 300;
  font-size: 0.9em;
  pointer-events: auto;
}
.toc ul {
  list-style: none;
  padding-left: 2em;
  padding-right: 2em;
}
.toc li {
  padding-left: 0;
}
.toc a {
  color: inherit;
}
.toc .toc-root {
  text-align: center;
  margin-bottom: 0.2em;
}

.toc-content {
  margin-bottom: 4em;
}

.toc-h1 {
  margin-top: 1em;
  margin-bottom: 0.2em;
  font-size: 1.1em;
  text-align: center;
}

.toc-h1 + .toc-h2 {
  border-top: 1px solid #eee;
  padding-top: 0.6em;
}

li.toc-h2 {
  padding-left: 2em;
  padding-right: 2em;
  padding-bottom: 1em;
  text-indent: -0.8em;
  font-style: italic;
  line-height: 1.2;
}

.toc .toc-active {
  color: #57A3E8;
}

/* ==========================================================================
 Media
   ========================================================================== */
@media only screen and (max-width: 1400px) {
  .toc {
    display: none;
  }
}
code {
  font-size: 0.85em;
  font-family: Inconsolata, monospace, sans-serif;
  white-space: pre;
  word-break: break-all;
  word-wrap: break-word;
}

code, pre {
  background: #f4f4f4;
}

p > code {
  word-wrap: initial;
}

pre {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-family: Inconsolata, monospace, sans-serif;
  line-height: 1;
  white-space: pre;
  overflow: auto;
}

.highlight .hll {
  background-color: #ffffcc;
}

.highlight .c {
  color: #408080;
  font-style: italic;
}

/* Comment */
.highlight .err {
  border: 1px solid #FF0000;
}

/* Error */
.highlight .k {
  color: #008000;
  font-weight: bold;
}

/* Keyword */
.highlight .o {
  color: #666666;
}

/* Operator */
.highlight .cm {
  color: #408080;
  font-style: italic;
}

/* Comment.Multiline */
.highlight .cp {
  color: #BC7A00;
}

/* Comment.Preproc */
.highlight .c1 {
  color: #408080;
  font-style: italic;
}

/* Comment.Single */
.highlight .cs {
  color: #408080;
  font-style: italic;
}

/* Comment.Special */
.highlight .gd {
  color: #A00000;
}

/* Generic.Deleted */
.highlight .ge {
  font-style: italic;
}

/* Generic.Emph */
.highlight .gr {
  color: #FF0000;
}

/* Generic.Error */
.highlight .gh {
  color: #000080;
  font-weight: bold;
}

/* Generic.Heading */
.highlight .gi {
  color: #00A000;
}

/* Generic.Inserted */
.highlight .go {
  color: #808080;
}

/* Generic.Output */
.highlight .gp {
  color: #000080;
  font-weight: bold;
}

/* Generic.Prompt */
.highlight .gs {
  font-weight: bold;
}

/* Generic.Strong */
.highlight .gu {
  color: #800080;
  font-weight: bold;
}

/* Generic.Subheading */
.highlight .gt {
  color: #0040D0;
}

/* Generic.Traceback */
.highlight .kc {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Constant */
.highlight .kd {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Declaration */
.highlight .kn {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Namespace */
.highlight .kp {
  color: #008000;
}

/* Keyword.Pseudo */
.highlight .kr {
  color: #008000;
  font-weight: bold;
}

/* Keyword.Reserved */
.highlight .kt {
  color: #B00040;
}

/* Keyword.Type */
.highlight .m {
  color: #666666;
}

/* Literal.Number */
.highlight .s {
  color: #BA2121;
}

/* Literal.String */
.highlight .na {
  color: #7D9029;
}

/* Name.Attribute */
.highlight .nb {
  color: #008000;
}

/* Name.Builtin */
.highlight .nc {
  color: #0000FF;
  font-weight: bold;
}

/* Name.Class */
.highlight .no {
  color: #880000;
}

/* Name.Constant */
.highlight .nd {
  color: #AA22FF;
}

/* Name.Decorator */
.highlight .ni {
  color: #999999;
  font-weight: bold;
}

/* Name.Entity */
.highlight .ne {
  color: #D2413A;
  font-weight: bold;
}

/* Name.Exception */
.highlight .nf {
  color: #0000FF;
}

/* Name.Function */
.highlight .nl {
  color: #A0A000;
}

/* Name.Label */
.highlight .nn {
  color: #0000FF;
  font-weight: bold;
}

/* Name.Namespace */
.highlight .nt {
  color: #008000;
  font-weight: bold;
}

/* Name.Tag */
.highlight .nv {
  color: #19177C;
}

/* Name.Variable */
.highlight .ow {
  color: #AA22FF;
  font-weight: bold;
}

/* Operator.Word */
.highlight .w {
  color: #bbbbbb;
}

/* Text.Whitespace */
.highlight .mf {
  color: #666666;
}

/* Literal.Number.Float */
.highlight .mh {
  color: #666666;
}

/* Literal.Number.Hex */
.highlight .mi {
  color: #666666;
}

/* Literal.Number.Integer */
.highlight .mo {
  color: #666666;
}

/* Literal.Number.Oct */
.highlight .sb {
  color: #BA2121;
}

/* Literal.String.Backtick */
.highlight .sc {
  color: #BA2121;
}

/* Literal.String.Char */
.highlight .sd {
  color: #BA2121;
  font-style: italic;
}

/* Literal.String.Doc */
.highlight .s2 {
  color: #BA2121;
}

/* Literal.String.Double */
.highlight .se {
  color: #BB6622;
  font-weight: bold;
}

/* Literal.String.Escape */
.highlight .sh {
  color: #BA2121;
}

/* Literal.String.Heredoc */
.highlight .si {
  color: #BB6688;
  font-weight: bold;
}

/* Literal.String.Interpol */
.highlight .sx {
  color: #008000;
}

/* Literal.String.Other */
.highlight .sr {
  color: #BB6688;
}

/* Literal.String.Regex */
.highlight .s1 {
  color: #BA2121;
}

/* Literal.String.Single */
.highlight .ss {
  color: #19177C;
}

/* Literal.String.Symbol */
.highlight .bp {
  color: #008000;
}

/* Name.Builtin.Pseudo */
.highlight .vc {
  color: #19177C;
}

/* Name.Variable.Class */
.highlight .vg {
  color: #19177C;
}

/* Name.Variable.Global */
.highlight .vi {
  color: #19177C;
}

/* Name.Variable.Instance */
.highlight .il {
  color: #666666;
}

/* Literal.Number.Integer.Long */
html {
  font-size: 100%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: common-ligatures;
  background: #fcfcfc;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25em;
  color: #555;
  min-height: 100%;
}

.container {
  margin: 0 auto;
  max-width: 740px;
  padding: 0 10px;
  width: 100%;
}

.hidden {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #555;
  font-weight: 300;
  line-height: 1.15;
  padding: 0;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
  line-height: 1;
}

h4 {
  font-size: 18px;
  color: #777;
}

h1 a, h2 a, h3 a,
h4 a, h5 a, h6 a {
  color: inherit;
}

p, ul, ol, pre {
  margin: 0.2em 0 1.2em 0;
}

ol ol, ul ul,
ul ol, ol ul {
  margin: 0.4em 0;
}

a {
  color: #57A3E8;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:active {
  color: #57A3E8;
}

ul, ol {
  margin: 15px 0;
  padding-left: 30px;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ol ul, ul ol, ul ul, ol ol {
  margin: 0;
}

ul ul, ol ul {
  list-style-type: circle;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

img, video {
  max-width: 100%;
}

sup {
  font-size: xx-small;
  vertical-align: super;
}

.gmnoprint img {
  max-width: none;
}

.date {
  font-style: italic;
  color: #777;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

code, pre {
  font-variant-ligatures: none;
}

@media only screen and (max-width: 700px) {
  .post .entry > * {
    margin-left: 0;
    margin-right: 0;
  }
}
