/*
  ============================================
  MAIN PAGE LAYOUT
  ============================================
*/
html {
  background-color: #EEE;
}
body {
  font-family: Helvetica;
  width: 800px;
  margin: auto;
}

a{
  color: rgb(65, 131, 196);
  text-decoration:none;
}

a:hover {text-decoration: underline;}

p {
  margin: 10px 0;
}

#home{
  width: 570px;
}
#sidebar{
  width: 170px;
}
#home, #post, #resume{
  float: left;
  margin: 0 10px 30px 0px;
  padding: 15px;
  
  background-color:white;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid white;
}

/*
  ============================================
  CODE HIGHLIGHTING
  ============================================
*/
.highlight{
  border: 2px solid #EEE;
  margin: 12px 0 18px;
  padding: 10px;
}

/*
  ============================================
  BANNER
  ============================================
*/
#banner{
  color: #890000;
}
#banner h1{
  color: #890000;
  float:left;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}
#banner a{
  color: #890000;
  text-decoration: none;
}

#banner a:hover{
  text-decoration: underline;
}

#planets{
  display:block;
  float: right;
  font-size: 28px;
}

#mission{
  float:right;
  text-align: right;
  font-size: .9em;
  color: #000;
}
#mission .by{
  font-size: .9em;
  color: #890000;
}

#banner br { clear: both;}

.planet{
  color: #B0B0B0;
}

#mars{
  color: #FFF;
}

/*
  ============================================
  POST  
  ============================================
*/
.post h1{
  font-size: 1.2em;
  margin: 0px;
}

.post h2{
  font-size: 1em;
  color: #3399CC;
}

.post p{
  text-align: justify;
  line-height: 1.4em
}

.post blockquote{
  border-left: 3px solid #999;
  padding-left: 8px;
}


/*
  ============================================
  SIDEBAR
  ============================================
*/
#sidebar{
  background-color: #333;
  border: 2px solid #666;
  color: #999;
  float: left;
  font-size: .9em;
  padding: 5px;
}

#sidebar a{
  color: white;
}

#sidebar h1{
  margin: 0 0 1em 0;
  font-size: 1em;
  color: #3399CC;
}

ul#posts, ul#projects{
  margin: 0;
  padding-left: 0px;
  list-style-type: none;
}
ul#posts li, ul#projects li{
  margin-bottom: 10px;
}

