@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,400italic,700,700italic);
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:500);
.dark {
  color: #333 !important;
}
.light {
  color: #666 !important;
}
.accent {
  color: #428bca !important;
}
@media (min-width: 550px) {
  .small-screens-only {
    display: none;
  }
}
.large-screens-only {
  display: none;
}
@media (min-width: 550px) {
  .large-screens-only {
    display: initial;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
a,
a:visited,
a:focus,
a:active {
  text-decoration: none;
}
html {
  font-size: 16px;

  height: 100%;
}
body {
  font-family: 'Open Sans', 'Helvetica Neue', 'Arial', sans-serif;
  font-weight: 400;
  line-height: 1.6;

  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;
          flex-direction: column;

  width: 100%;
  min-height: 100%;

  color: #111;

  -webkit-flex-direction: column;
     -moz-flex-direction: column;
      -ms-flex-direction: column;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-start;
     -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
          justify-content: flex-start;
  text-rendering: optimizeLegibility !important;
}
@media (min-width: 600px) {
  body {
    -webkit-justify-content: center;
       -moz-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
  }
  .non-narrow.zero-top-spacing {
    padding-top: 0 !important;
  }
}
.icon {
  text-rendering: geometricPrecision !important;
}
section {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;

  width: 100%;

  -webkit-justify-content: center;
     -moz-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
.container {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;

  width: 100%;
}
@media (min-width: 600px) {
  section {
    max-width: 800px;
    margin-right: 100px;
    margin-left: 100px;
    padding: 0 16px;
  }
}
section.header {
  -webkit-order: 0;
     -moz-order: 0;
      -ms-order: 0;
          order: 0;
}
section.icons {
  -webkit-order: 1;
     -moz-order: 1;
      -ms-order: 1;
          order: 1;
}
section.main {
  -webkit-order: 2;
     -moz-order: 2;
      -ms-order: 2;
          order: 2;
}
@media (min-width: 600px) {
  section.header {
    -webkit-order: 0;
       -moz-order: 0;
        -ms-order: 0;
            order: 0;
  }
  section.icons {
    -webkit-order: 2;
       -moz-order: 2;
        -ms-order: 2;
            order: 2;
  }
  section.main {
    -webkit-order: 1;
       -moz-order: 1;
        -ms-order: 1;
            order: 1;
  }
}
section.header {
  background-color: #f7f7f7;
}
section.header .container {
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
}
section.header .content {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;
          flex-direction: column;

  -webkit-flex-direction: column;
     -moz-flex-direction: column;
      -ms-flex-direction: column;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
section.header .name {
  font-family: 'Raleway', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 700;

  letter-spacing: -.005rem;
  text-transform: uppercase;

  color: #333;
  color: #555;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
          font-smoothing: antialiased;
}
section.header nav {
  font-family: 'Raleway', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 14px;

  margin-bottom: 16px;

  text-transform: uppercase;
}
section.header nav ul {
  display: -webkit-inline-flex;
  display:    -moz-inline-flex;
  display: -ms-inline-flexbox;
  display:     -ms-inline-flex;
  display:         inline-flex;

  list-style: none;

  text-align: center;
}
section.header nav ul a {
  margin-right: 6px;
  margin-left: 6px;
}
section.header nav ul a:first-child {
  margin-left: 0;
}
section.header nav ul a:last-child {
  margin-right: 0;
}
section.header nav ul li {
  font-weight: 500;

  -webkit-transition: color .1s cubic-bezier(.47, 0, .75, .72);
     -moz-transition: color .1s cubic-bezier(.47, 0, .75, .72);
      -ms-transition: color .1s cubic-bezier(.47, 0, .75, .72);
       -o-transition: color .1s cubic-bezier(.47, 0, .75, .72);

  color: #555;
}
section.header nav ul li:hover {
  color: #111;
}
@media (min-width: 600px) {
  section.header {
    background-color: transparent;
  }
  section.header .container {
    -webkit-justify-content: flex-start;
       -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
            justify-content: flex-start;
  }
  section.header .content {
    -webkit-align-items: flex-start;
       -moz-align-items: flex-start;
        -ms-align-items: flex-start;
            align-items: flex-start;
  }
  section.header .name {
    color: #333;
  }
  section.header nav {
    font-size: 14px;

    margin-bottom: 0;
  }
  section.header nav ul {
    text-align: left;
  }
  section.header nav ul li {
    color: #666;
  }
  section.header nav ul li:hover {
    color: #333;
  }
}
section.icons {
  background-color: #f7f7f7;
}
section.icons .container {
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
}
section.icons .content a {
  margin-right: 6px;
  margin-left: 6px;

  -webkit-transition: color .1s cubic-bezier(.47, 0, .75, .72);
     -moz-transition: color .1s cubic-bezier(.47, 0, .75, .72);
      -ms-transition: color .1s cubic-bezier(.47, 0, .75, .72);
       -o-transition: color .1s cubic-bezier(.47, 0, .75, .72);

  color: #555;
}
section.icons .content a:first-child {
  margin-left: 0;
}
section.icons .content a:last-child {
  margin-right: 0;
}
section.icons .content a:hover {
  color: #111;
}
section.icons .content a .icon {
  font-size: 20px;
}
section.icons .content a .icon.larger {
  font-size: 22px;
}
@media (min-width: 600px) {
  section.icons {
    background-color: transparent;
  }
  section.icons .container {
    -webkit-justify-content: flex-start;
       -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
            justify-content: flex-start;
  }
  section.icons .content a {
    margin-right: 3px;
    margin-left: 3px;

    color: #666;
  }
  section.icons .content a:hover {
    color: #333;
  }
  section.icons .content a .icon {
    font-size: 18px;
  }
  section.icons .content a .icon.larger {
    font-size: 20px;
  }
}
section.main .container {
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-start;
     -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
          justify-content: flex-start;
}
section.main .content {
  font-size: 16px;
  max-width: 100%;
  color: #111;
}
section.main .content .title-container {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;

  -webkit-justify-content: space-between;
     -moz-justify-content: space-between;
      -ms-justify-content: space-between;
          justify-content: space-between;
}
section.main .content .title-container .initials {
  font-family: 'Raleway', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 700;

  display: none;

  letter-spacing: -.005rem;
  text-transform: uppercase;

  color: #333;
  color: #666;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
          font-smoothing: antialiased;
}
section.main .content .title-container .initials a {
  -webkit-transition: color .1s cubic-bezier(.47, 0, .75, .72);
     -moz-transition: color .1s cubic-bezier(.47, 0, .75, .72);
      -ms-transition: color .1s cubic-bezier(.47, 0, .75, .72);
       -o-transition: color .1s cubic-bezier(.47, 0, .75, .72);

  color: #666;
}
section.main .content .title-container .initials a:hover {
  color: #333;
}
section.main .content .page-heading {
  font-family: 'Raleway', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 700;

  margin-bottom: 16px;

  letter-spacing: -.005rem;
  text-transform: uppercase;

  color: #333;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
          font-smoothing: antialiased;
}
section.main .content .front-matter .page-heading {
  margin-bottom: 0;
}
section.main .content .front-matter .meta {
  font-size: 14px;

  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;

  margin-bottom: 32px;

  color: #666;
}
section.main .content .front-matter .date,
section.main .content .front-matter .word-count,
section.main .content .front-matter .reading-time .middot {
  display: none;
}
section.main .content .front-matter .middot {
  font-size: 6px;

  display: inline;

  margin: 0 6px;

  vertical-align: middle;
}
section.main .content .front-matter .middot:before {
  content: '•';
}
@media (min-width: 600px) {
  section.main .content .front-matter .date,
  section.main .content .front-matter .word-count,
  section.main .content .front-matter .reading-time .middot {
    display: initial;
  }
  section.main .content .title-container .initials {
    display: none;
  }
}
section.main .container.f04 {
  -webkit-justify-content: center;
     -moz-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
}
section.main .container.f04 .content {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;
          flex-direction: column;

  -webkit-flex-direction: column;
     -moz-flex-direction: column;
      -ms-flex-direction: column;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
section.main .container.f04 .content .num {
  font-family: 'Raleway', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 50px;
  font-weight: 200;

  margin: 30px 0 30px 0;
}
section.main .container.f04 .content .detail {
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  section.main .container.f04 {
    -webkit-justify-content: flex-start;
       -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
            justify-content: flex-start;
  }
  section.main .container.f04 .content {
    -webkit-align-items: flex-start;
       -moz-align-items: flex-start;
        -ms-align-items: flex-start;
            align-items: flex-start;
  }
  section.main .container.f04 .content .num {
    font-size: 32px;

    margin: 0 0 10px 0;
  }
  section.main .container.f04 .content .detail {
    margin-bottom: 30px;
  }
}
section.main .container .content .post-item {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:     -ms-flex;
  display:         flex;
  display: list-item;

  list-style: disc inside;

  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
section.main .container .content .post-item .meta {
  font-size: 14px;

  display: none;

  min-width: 100px;
  margin-right: 16px;

  text-align: right;

  color: #666;
}
section {
  padding: 0 16px;
}
section.header {
  padding-top: 32px;
  padding-bottom: 16px;
}
section.icons {
  padding-top: 0;
  padding-bottom: 32px;
}
section.main {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 600px) {
  .container {
    margin: 0 30px;
  }
  section.header {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  section.icons {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  section.main {
    padding-top: 0;
    padding-bottom: 0;
  }
  section.main .container .content .post-item {
    display: flex;

    list-style: none;
  }
  section.main .container .content .post-item .meta {
    display: block;
  }
  section.main.post {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
a {
  -webkit-transition: color .1s cubic-bezier(.47, 0, .75, .72);
     -moz-transition: color .1s cubic-bezier(.47, 0, .75, .72);
      -ms-transition: color .1s cubic-bezier(.47, 0, .75, .72);
       -o-transition: color .1s cubic-bezier(.47, 0, .75, .72);

  color: #428bca;
}
a:hover {
  color: #2a6496;
}
img {
  max-width: 100%;
}
img.profile {
  min-width: 100%;
}
@media (min-width: 600px) {
  img.profile {
    min-width: 300px;
    max-width: 300px !important;
  }
}
.page-heading a {
  color: #333;
}
section.main .content .markdown h1,
section.main .content .markdown h2,
section.main .content .markdown h3,
section.main .content .markdown h4,
section.main .content .markdown h5,
section.main .content .markdown h6 {
  font-family: 'Raleway', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 700;

  margin-top: 1.75rem;

  letter-spacing: -.005rem;
  text-transform: uppercase;
  text-transform: none;

  color: #333;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
          font-smoothing: antialiased;
}
section.main .content .markdown h1 {
  font-size: 1.75rem;

  margin-bottom: 2rem;
}
section.main .content .markdown h2 {
  font-size: 1.5rem;

  margin-bottom: 1.5rem;
}
section.main .content .markdown h3 {
  font-size: 1em;

  margin-bottom: 1rem;
}
section.main .content .markdown h4,
section.main .content .markdown h5,
section.main .content .markdown h6 {
  font-size: 1rem;

  margin-bottom: 1rem;

  letter-spacing: none;
  text-transform: none;
}
section.main .content .markdown code,
section.main .content .markdown pre {
  font-family: 'Ubuntu Mono', 'Menlo', monospace;
  font-size: .98rem;

  background-color: #f7f7f7;
}
section.main .content .markdown .highlight code,
section.main .content .markdown .highlight pre {
  background: none;
  color: #fff;
}
section.main .content .markdown code {
  /* enclosed by single backtick (`) */
  padding: .15em .5em;

  border-radius: 2px;
}
section.main .content .markdown pre {
  line-height: 1.5em;
  /* Hugo specific: consider using the 'highlight' shortcode */

  display: block;

  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;

  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
}
section.main .content .markdown pre code {
  font-size: .9rem;
  /* enclosed by 4 backticks (````) */

  padding: 0;
}
section.main .content .markdown a code {
  color: #428bca !important;
}
section.main .content .markdown a code:hover {
  text-decoration: underline;
}
section.main .content .markdown p {
  /* Invoked by line break */
  font-size: 1rem;

  margin-top: 0;
  margin-bottom: 1em;
}
section.main .content .markdown ul,
section.main .content .markdown ol,
section.main .content .markdown dl {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
section.main .content .markdown dt {
  font-weight: bold;
}
section.main .content .markdown dd {
  margin-bottom: .5rem;
}
section.main .content .markdown ul {
  margin-bottom: 1.25rem;
}
section.main .content .markdown li {
  list-style-position: inside;
  list-style-type: disc;
}
section.main .content .markdown ul ul,
section.main .content .markdown ul ol,
section.main .content .markdown ol ol,
section.main .content .markdown ol ul {
  margin: 0 0 0 1em;
}
section.main .content .markdown em {
  font-style: italic;
}
section.main .content .markdown strong {
  font-weight: 700;
}
section.main .content .markdown hr {
  position: relative;

  margin: 1.75rem 0;

  border: 0;
  border-top: 1px solid #808080;
  border-top: 1px solid #999;
}
section.main .content .markdown abbr {
  font-size: .85rem;
  font-weight: bold;

  text-transform: uppercase;

  color: #666;
}
section.main .content .markdown abbr[title] {
  cursor: help;

  border-bottom: 1px dotted #808080;
}
section.main .content .markdown blockquote {
  margin: .8rem 0;
  padding: .5rem 1rem;

  color: #7a7a7a;
  border-left: .25rem solid #e5e5e5;
}
section.main .content .markdown blockquote p:last-child {
  margin-bottom: 0;
}
@media (min-width: 550px) {
  section.main .content .markdown blockquote {
    padding-right: 5rem;
    padding-left: 1.25rem;
  }
}
section.main .content .markdown img {
  max-width: 100%;
  margin: 1rem 0;
}
section.main .content .markdown table {
  width: 100%;
  margin-bottom: 1rem;

  border-collapse: collapse;

  border: 1px solid #e5e5e5;
}
section.main .content .markdown td,
section.main .content .markdown th {
  padding: .25rem .5rem;

  border: 1px solid #e5e5e5;
}
section.main .content .markdown tbody tr:nth-child(odd) td,
section.main .content .markdown tbody tr:nth-child(odd) th {
  background-color: #f7f7f7;
}

.hireable {
  font-style: italic;

  padding: 8px 10px;

  color: #888;
  border: 1px solid #ee9;
  background-color: #ffc;
}

section.main .content.resume .markdown strong {
  color: #444;
}

#resume_links {
  list-style: none;
}

#resume_links li {
  list-style: none;
  padding: 0;
}

#resume_links li a {
  margin-right: .5em;
  white-space: nowrap;
}

#resume_links li i {
  margin-right: .2em;
}

@media (max-width: 480px) {
  #resume_photo {
    display: block;
    margin: auto;
  }
}

@media (min-width: 480px) {
  #resume_photo {
    float: right;
    margin-left: 2em;
  }
}
