@import url(//fonts.googleapis.com/css?family=Lato:300,400,700);

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', 'Helvetica', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

a {
  color: #426eb1;
  text-decoration: none;
}
  a:hover { text-decoration: underline; }

.hide { display: none; }
.pull-left { float: left; }
.pull-right { float: right; }

hr {
  border: dashed 1px #ddd;
  border-width: 1px 0 0 0;
  margin: 15px 0;
}

#wrap {
  min-width: 1005px;
}

#sidebar {
  float: left;
  width: 310px;
  padding: 20px;
  margin: 15px 35px 0 0;
  border: solid 3px #eee;
  border-width: 1px 3px 1px 0;
  background: #f9f9f9 url(../img/wave.png);
  border-radius: 0 6px 6px 0;
}

  /* start sidebar fade-in */
  @keyframes resize {
    from {
      margin-left: -80px;
      margin-right: 115px;
      opacity: 0;
    }
    to {
      margin-left: 0;
      margin-right: 35px;
      opacity: 1;
    }
  }
  #sidebar {
    animation-name: resize;
    animation-duration: 0.75s;
    animation-timing-function: ease-in-out;
  }
  /* end sidebar fade-in */

  #sidebar .profile-img {
    height: 150px;
    width: 150px;
    border: solid 1px #ddd;
    float: right;
    margin-left: 10px;
    background: url(//www.gravatar.com/avatar/529a6049c4ad4483dbc62add6da06e1a?s=300);
    background-size: 150px;
    box-shadow: inset 0 0 6px #777;
    border-radius: 50%;
  }

  #sidebar h1 {
    font-size: 21px;
    font-weight: normal;
    padding: 45px 0 0 0;
    margin: 0;
  }
    #sidebar h1 strong {
      font-weight: bold;
    }
  #sidebar h2 {
    font-size: 13px;
    font-weight: normal;
    margin: 0px 0 68px 0;
    line-height: inherit;
  }
  #sidebar p {
    font-size: 0.9em;
  }

  #sidebar h4 {
    margin: 15px 0 5px 0;
    font-size: 13px;
    color: #777;
  }
  #sidebar .social a {
    margin: 0 3px;
    font-size: 0;
  }
  #sidebar .social a svg {
    width: 24px;
    height: 24px;
  }

#main {
  float: left;
  width: 600px;
}

  #nav {
    color: #ccc;
    margin: 15px 0 15px 0;
    list-style-type: none;
  }
    #nav li {
      display: inline;
      margin: 0;
    }
      #nav li:before {
        content: "|";
        margin-left: 5px;
        margin-right: 8px;
      }
      #nav li:first-child:before {
        content: none;
      }

    #nav a {
      color: #777;
      display: inline;
    }

  #content {
    clear: both;
  }

    h1 {
      color: #426eb1;
      font-weight: normal;
      margin: 32px 0 12px 0;
      font-size: 30px;
      line-height: 36px;
    }
      h1 strong {
        font-weight: bold;
        font-weight: 500;
      }
    h2 {
      color: #717b89;
      font-weight: normal;
      margin: 21px 0 11px 0;
      font-size: 24px;
      line-height: 28px;
    }
		h3, h4 {
			font-size: 19px;
      font-weight: normal;
      color: #426eb1;
			margin: 20px 0 10px 0;
		}
    p {
      margin: 0 0 20px 0;
    }
    li {
      margin-bottom: 10px;
    }
    ul, ol {
      margin: 10px 0 20px 35px;
    }

    h3.posttitle {
      font-size: 1.5em;
      margin-bottom: 5px;
      font-weight: bold;
    }
    .postmeta {
      font-size: 13px;
      color: #999;
      margin: 7px 0 12px 0;
    }
      .postmeta a {
        color: inherit;
        border-bottom: 1px dotted;
      }

    blockquote {
      border-left: solid 3px #DDD;
      padding-left: 10px;
    }

    .black { color: #333; }

    .gist {
      font-size: 12px;
    }

    /* blog post divider on blog index */
    .post + .post {
      border-top: dashed 2px #ddd;
      margin: 60px 0 0 0;
    }

  #footer {
    font-size: 0.8em;
    border-top: dotted 1px #ddd;
    padding: 10px 0;
    margin: 10px;
    clear: both;
  }

  #wrap.page-home {
    width: 830px;
    min-width: 830px;
    margin: 15px auto;
  }
    .page-home #main {
      float: left;
      width: 830px;
    }
    .page-home #nav {
      width: 620px;
      text-align: right;
    }
    .page-home #sidebar {
      margin: 0;
      width: 580px;
      border-width: 1px 3px;
      padding: 30px 30px 10px 30px;
      border-radius: 6px;
      animation-name: none;
    }
    .page-home #sidebar .profile {
    }
    .page-home #sidebar .profile h1 {
      font-size: 36px;
      font-weight: 300;
      padding-top: 72px
    }
      .page-home #sidebar .profile h1 strong {
        font-weight: 500;
      }
    .page-home #sidebar .profile h2 {
      font-size: 24px;
      font-weight: 300;
      margin-bottom: 30px;
    }
    .page-home #sidebar .profile-img {
      margin-bottom: 10px;
      position: relative;
      background-image: url(//www.gravatar.com/avatar/529a6049c4ad4483dbc62add6da06e1a?s=500);
      background-size: 250px;
      width: 250px;
      height: 250px;
      animation-name: resize-home;
      animation-duration: 0.5s;
      animation-timing-function: ease-in-out;
    }
    .page-home #sidebar .profile p {
      font-size: 1.0em;
    }
    .social-big {
      width: 150px;
      float: left;
      margin-left: 25px;
      margin-top: 8px;
    }
      .social-big a {
        display: block;
        line-height: 42px
      }
        .social-big a:hover { text-decoration: none; color: #143362; }
      .social-big svg,
      .social-big img {
        width: 32px;
        height: 32px;
        margin-right: 5px;
        vertical-align: -10px;
      }
      .social-big h4 {
        margin-bottom: 8px;
        color: #333;
      }

    .page-home #content {
      padding: 25px 35px;
      width: 580px;
    }
    .page-home #content h3.posttitle {
      margin-top: 0;
    }

  @keyframes resize-home {
    from {
      opacity: 0;
      top: -90px;
    }
    to {
      opacity: 1;
      top: 0;
    }
  }







/* =WordPress Core
   https://codex.wordpress.org/CSS
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
