/*****************************************************************************/
/*                           Global Reset & Styles                           */
/*****************************************************************************/

* {
  margin: 0;
  padding: 0;
}

html, body {
  background: url('/images/bg.png');
  height: 100%;
}

body {
  font: 13.34px "Helvetica Neue", helvetica, arial, clean, sans-serif;
  *font-size: small;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  color: #c40;
  font-size: 100%;
  margin-bottom: 0.5em;
}

p {
  margin: 1em 0;
}

a {
  color: #c08;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

blockquote {
	border-left: 2px solid #666;
	color: #666;
	margin: 1.5em 3em;
	padding-left: 1em;
}



/*****************************************************************************/
/*                           Site-Wide Custom Styles                         */
/*****************************************************************************/

.wrapper {
  font-size: 110%;
  text-align: justify;
  width: 800px;
  margin: 3em auto 2em auto;
  line-height: 1.5em;
}

.framed {
  background: #fff;
  border-style: solid;
  border-width: 3px;
  padding: 20px 25px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}

.shadowed {
  box-shadow: 7px 7px 4px #bbb;
  -moz-box-shadow: 7px 7px 4px #bbb;
  -webkit-box-shadow: 7px 7px 4px #bbb;
}

.thin {
  border-width: 1px;
}

.floatLeft {
  float: left;
  padding: .5em 1em .5em 0;
}

.floatRight {
  float: right;
  padding: .5em 0 .5em 1em;
}


/* -------------------- Header -------------------- */

#title {
  color: #a00;
  font-weight: bold;
  margin-bottom: 2em;
}

#title h1 {
  display: inline;
  font-family: "Courier New", monospace;
  font-size: 1.8em;
}

#title h1 a {
  color: #222;
}

#title ul.nav {
  float: right;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#title ul.nav li {
  display: inline;
  margin-left: 20px;
  padding: 0;
}

#title ul.nav li a {
  color: #aaa;
  text-decoration: none;
}

#title ul.nav li a:hover {
  color: black;
}

#title ul.nav li a:hover {
  color: black;
}


/* -------------------- Footer -------------------- */

.footer {
  font-size: 80%;
  font-weight: bold;
  color: #666;
  border-top: 4px solid #eee;
  margin-top: 2.5em;
  overflow: hidden;
}

.footer .floatRight {
  text-align: right;
}

.footer .contact a {
  color: #8085C1;
}


/* -------------------- Post Lists -------------------- */

.post-list h2 {
  font-size: 1.2em;
}

.post-list ul {
  list-style-type: none;
}

.post-list ul span {
  color: #444;
  font-family: Monaco, "Courier New", monospace;
  font-size: 80%;
}

.post-list ul li {
  line-height: 1.75em;
}

.post-list ul li h2, .post-list ul li h3 {
  margin-bottom: 0;
  margin-top: 1.5em;
}


/*****************************************************************************/
/*                                Post Styles                                */
/*****************************************************************************/

#post h2 {
  font-size: 1.2em;
}

#post .meta {
  color: #aaa;
  font-weight: bold;
}

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

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

#post ul li, #post ol li {
  margin-bottom: 0.5em;
};

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

#post pre code {
  border: none;
}

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

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

#related {
  margin: 2em 1em;
}

#related h3 {
  margin-bottom: 1em;
}

#comment-form {
  margin: 2em 1em;
}



