/* modified from http://philippschmidt.org/css/screen.css */
/* Global Reset */
* {
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: #bbbbbb;
  font-size: 1.15em;
  font-family: Monaco, "Arial", sans-serif; /*"Helvetica Neue", Helvetica, "Trebuchet MS",*/
  font-weight: 200;
  text-align: center;
  max-width: 700px;
  vertical-align: baseline;
  position: relative;
  margin: 0 auto;
  /* padding: 1.2em; */
  line-height: 1.8em;
  color: #474747;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

h1 {
  font-family: "Arial", sans-serif;
  margin-bottom: 1em;
  margin-top: 1em;
  font-weight: 500;
}

h2 {
  font-family: "Arial", serif;
  margin-bottom: 1em;
  margin-top: 1em;
  font-weight: 600;
}

/* used to center the header */
sitehead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-family: "Arial", sans-serif;
  font-weight: 700;*/
  font-size: 120%;
}

sitemap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Arial", sans-serif;
}

p {
  font-size: 1.00em;
  font-family: "Arial", sans-serif; /*"Helvetica Neue", Helvetica, "Trebuchet MS",*/
  font-weight: 200;
  font-style: normal;
  margin: 1em 0;
}

p2 {
  font-size: 1.00em;
  font-family: "Arial", sans-serif; /*"Helvetica Neue", Helvetica, "Trebuchet MS",*/
  font-weight: 200;
  font-style: italic;
  margin: 1em 0;
}

a {
  color: #334b6e;
  text-decoration: none;
}

a:hover {
  color: #1b1b1b;
}

a:visited {
  color: ##1b1b1b;
}

table {
  font-size: inherit;
  font: 100%;
}

/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/

ul.posts {
  /*list-style-type: none; */
  margin-bottom: 2em;
  list-style-position: outside;
  padding-left: 1.2em;
}

  ul.posts li {
    font-size: 1.00em;
    font-family: "Arial", sans-serif; /*"Helvetica Neue", Helvetica, "Trebuchet MS",*/
    font-weight: 200;
    font-style: normal;
    margin: 1em 0;

  }

  ul.posts span {
    font-family: Monaco, "Arial", monospace;
    font-size: 80%;
  }

  ul.inside {
    margin-left: 1.5em;
  }

/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/

.site {
  font-size: 110%;
  text-align: left;
  margin: 3em auto 2em auto;
  line-height: 1.5em;
  vertical-align: baseline;
}

.imgContainer {
  /*float: left;*/
  width: 100%;
  z-index: 0;
}


.nav {
  color: #334b6e;
  font-weight: 500;
  margin-bottom: 2em;
}

  .site .nav a {
    color: #334b6e;
    text-decoration: none;
  }

  .site .nav a:hover {
    color: #1b1b1b;
  }

  .site .nav a.extra {
    color: ##1b1b1b;
    text-decoration: none;
    margin-left: 1em;
  }

  .site .nav a.extra:hover {
    color: #1b1b1b;
  }


.title {
  color: ##1b1b1b;
  font-weight: 500;
  margin-bottom: 1em;
}

  .site .title a {
    color: ##1b1b1b;
    text-decoration: none;
  }

  .site .title a:hover {
    color: #1b1b1b;
  }

  .site .title a.extra {
    color: ##1b1b1b;
    text-decoration: none;
    margin-left: 1em;
  }

  .site .title a.extra:hover {
    color: #1b1b1b;
  }

  .site .meta {
    color: #aaa;
  }

  .site .footer {
    font-family: Monaco, "Arial", monospace;
    font-size: 80%;
    color: #666;
    border-top: 1px dotted #666;
    margin-top: 2em;
    overflow: hidden;
  }

    .site .footer .contact {
      float: left;
      margin-right: 3em;
    }

      .site .footer .contact a {
        color: #666;
      }

    .site .footer .rss {
      margin-top: 1.1em;
      margin-right: -.2em;
      float: right;
    }

      .site .footer .rss img {
        border: 0;
      }

/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/

#post {

}

  /* standard */

  #post pre {
    border: 1px solid #ddd;
    background-color: #eef;
    padding: 0 .4em;
  }

  #post ul,
  #post ol {
    margin-left: 1.35em;
  }

  #post code {
    border: 1px solid #ddd;
    background-color: #eef;
    font-size: 85%;
    padding: 0 .2em;
  }

    #post pre code {
      border: none;
    }

  /* terminal */

  #post pre.terminal {
    border: 1px solid #1b1b1b;
    background-color: #333;
    color: #bbbbbb;
  }

  #post pre.terminal code {
    background-color: #333;
  }
