/*$col_hi: #29fd2e;*/
/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
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; }

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* #Clearing
================================================== */
/* Self Clearing Goodness */
.container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

/* Use clearfix class on parent to clear nested columns,
or wrap each row of columns in a <div class="row"> */
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }

.row:after,
.clearfix:after {
  clear: both; }

.row,
.clearfix {
  zoom: 1; }

/* You can also use a <br class="clear" /> to clear columns */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }

/* Basic Styles */
body {
  background: gray;
  font-family: "MTI Letter Gothic W01", Monaco, "Lucida Console", monospace;
  font-weight: lighter;
  color: white;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0; }

html, body {
  height: 100%; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Avenir W01", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #66fd66;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  margin-bottom: 0; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit; }

p img {
  margin: 0; }

.hi {
  color: #66fd66; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

small {
  font-size: 16px;
  line-height: 20px; }

hr {
  border: solid #cccccc;
  border-width: 1px 0 0;
  clear: both;
  margin: 30px 0;
  height: 0; }

hr.section {
  border: solid #cccccc;
  border-width: 1px 0 0;
  clear: both;
  margin: 60px auto;
  height: 0;
  max-width: 1200px; }
  @media only screen and (max-width: 979px) {
    hr.section {
      margin: 30px 0; } }
  @media only screen and (max-width: 759px) {
    hr.section {
      margin: 30px 0; } }

hr.split {
  border: none; }

::-moz-selection {
  /* Code for Firefox */
  color: #000;
  background: #66fd66; }

::selection {
  color: #000;
  background: #66fd66; }

/* #Links
================================================== */
a {
  color: black;
  text-decoration: none;
  outline: 0; }
  a:hover {
    opacity: 0.8;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }

.dark {
  color: #333333; }

article a {
  color: #333; }
  article a:hover {
    color: white; }

article p.post-info a {
  border-bottom: none; }

ul, ol {
  margin-bottom: 30px; }

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }
