/*
    Based on git://github.com/jarinudom/jarinudom.github.com.git
    Until I get a chance to redesign.
 */

/* Global Reset */
 
* {
  margin: 0;
  padding: 0;
}
 
html, body {
  height: 100%;
}
 
body {
  background-color: #ffe;
  font: 12px verdana, sans-serif;
  color: #333;
  text-align: center;
}
 
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
 
h1 {
  font-size: 110%;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
 
p {
  margin: 1em 0;
}
 
a {
  color: #700000;
}
 
a:hover {
  color: #48520F;
}
 
a:visited {
  color: #700000;
}
 
table {
  font-size: inherit;
  font: 100%;
}
 
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
 
ul.posts {
  list-style-type: none;
  margin-bottom: 2em;
}
 
  ul.posts li {
    line-height: 1.75em;
  }
 
  ul.posts span {
    color: #48520F;
    font-family: Monaco, "Courier New", monospace;
    font-size: 80%;
  }
 
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
 
.site {
  font-size: 110%;
  text-align: justify;
  width: 60em;
  margin: 3em auto 2em auto;
  line-height: 1.5em;
}
 
.title {
  color: #700000;
  font-weight: bold;
  margin-bottom: 2em;
}
 
  .site .title a {
    color: #700000;
    text-decoration: none;
  }
  
  .site .title a.blogtitle {
    font-size: 2.0em;
  }
  
  .site .title a:hover {
    color: #B01213;
  }
 
  .site .title a.extra {
    color: #48520F;
    text-decoration: none;
    margin-left: 1em;
  }
  
  .site .title a.extra:hover {
    color: black;
  }
 
  .site .meta {
    color: #909B79;
    font-weight: normal;
    font-size:90%;
  }
 
  .site .footer {
    font-size: 90%;
    border-top: 1px solid #CCC;
    margin-top: 2em;
    overflow: hidden;
  }
  
    .site .footer .contact {
      float: left;
      margin-right: 3em;
    }
    
      .site .footer a {
        color: #374005;
      }
    
    .site .footer .rss {
      margin-top: 1.1em;
      float: right;
    }
    
      .site .footer .rss img {
        border: 0;
      }
    
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
 
#post {
  
}
 
  /* standard */
  
  #post pre {
    border: 1px solid #909B79;
    background-color: #F3F9E7;
    color: #000;
    padding: 0 .4em;
    font-size: 0.9em;
  }
  
  #post code {
    border: 0px;
    background-color: #333;
    color: #2F2;
    font-size: 95%;
    padding: 0.4em;
  }
  
    #post pre code {
      border: none;
    }
    
  /* terminal */
  
  #post pre.terminal {
    border: 1px solid black;
    background-color: #333;
    color: white;
  }
  
  #post pre.terminal code {
    background-color: #333;
    color: white;
  }
 
#related {
  margin-top: 2em;
}
 
  #related h2 {
    margin-bottom: 1em;
  }
  
#comments {
  margin-top: 2em;
}

  #comments h2 {
    margin-bottom: 1em;
  }