/*
  Inspired by Android Theme Ice-cream Sandwich.
  @see http://developer.android.com/design/index.html
    
  Date: 2012-04
  
  */

* {
  margin: 0;
  padding: 0;
  border-color: #000000;
  }
  
body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 15px;
 }

#container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  }

#header {
  text-align: left;
  min-height: 100px;
  margin-top: 20px;
  margin-bottom: 30px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  position: relative;
  }

#footer {
  clear: both;
  text-align: right;
  height: 40px;
  margin-top: 30px;
  padding-top: 15px;
  border-top-style: solid;
  border-top-width: 1px;
  position: relative;
  font-size: 14px;
  }


#heading {
  max-width: 500px;
  min-height: 100px;
  position: relative; left: 0;
  }

#nav {
  position: absolute; right: 0; top: 0;
  }

.avatar {
  float: left;
  width: 90px; height: 90px;
  }

#subtitle {
  position: relative; bottom: 0;
  line-height: 140%;
  font-size: 16px;
  }

#content {
  clear: both;
  margin-top: 70px;
  }

div.section {
  position: relative;
  width: 380px;
  float: left;
  text-align: left;
  margin-bottom: 30px;
  margin-right: 40px;
  padding-right: 80px; /* space for the icon */
  }

div.title {
  margin-bottom: 10px;
  }
  
div.desc {
  margin-bottom: 40px;
  }

div.icon {
  position: absolute; top: 0; right: 0;
  }
div.icon2 {
  position: absolute; top: 64px; right: 0;
  }
div.icon3 {
  position: absolute; top: 128px; right: 0;
  }

div.main_body {
  width: 700px;
  margin: 0 auto 50px auto;
  text-align: left;
  }
.main_body div.picture {
  float: left;
  position: relative; left: -20px;
  }
.main_body div.title, div.text {
  margin-left: 130px;
  }
  
#leave_message {
  float: left;
  text-align: left;
  max-width: 400px;
  }

h1 {
  font-size: 33px;
  font-weight: 400;
  padding-bottom: 5px;
  }
  
h2 {
  font-size: 30px;
  font-weight: 400;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 2px;
  display: inline;
  }  

p {
  line-height: 130%;
  margin-bottom: 10px;
  }
  
#container a {
  text-decoration: none;
  }
#container .main_body a {
  text-decoration: underline;
  }

div.notice {
  width: 500px; height: 250px;
  margin: 100px auto;
  padding: 20px 50px;
  border-style: double;
  border-width: 4px;
  }
.notice p {
  font-size: 120%;
  line-height: 160%;
}
/*
 * Colors

  color: #ffffff;
  color: #000000;
  color: #3e3e40;
  color: #dfe0e2;
  green: #84c642;
 */
#container a {
  color: #000000;
  }
#container a:hover {
  color: #84c642;
  }
  
/*
 How to use custom fonts:
 
 @font-face {
	font-family: Supercool;
	src: url('path/cool_font.ttf');
 }
 
 Then use it with:
 p {
   font-family: Supercool;
 }
*/


