/* Main page */

html {
  height: 100%;
}

body {
  background: #fff;
  font-family: 'Linux Libertine O', 'Liberation Serif', serif;
  color: #000;
  text-align: center;
}

canvas { border: 1px solid black; }

.page {
  text-align: left;
  border: 0;
  width: 75%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 0 auto;
  /* padding: 0; */
}

h1 {
  font-size: xx-large;
  margin-top: 0;
  padding-top: 10px;
  font-style: normal;
  font-weight: normal;
}

h2 {
  font-size: large;
  margin: 20px 0 0 0;
  font-style: normal;
  font-weight: normal;  
}

h3 {
  font-size: medium;  
  margin: 10px 0 0 0;
  font-style: italic;
  font-weight: bold;  
}

p, li {
  font-size: medium;
  line-height: 150%;
  margin: 10px 0 0 0;
}

p em {
  font-style: italic;
}

img {
  background: #ffffff;
  /* margin: 30px 0 0 0; */
  padding: 25px;
}

a, a:visited {
  color: #b00006;
  /* color: #060690; */
  /* color: #333; */
  text-decoration: none;
}

a img {
  border: none;
}

a:hover {
  /* color: #b00006; */
  text-decoration: underline;
}

blockquote {
  border-left: 5px solid #ccc;
  margin-left: 1.5em;
  padding-left: 5px;
}

code {
  font-family: 'Inconsolata', 'Liberation Mono', 'Courier New', monospace;
}

hr {
  border: 0;
  background-color: #999;
  height: 1px;
}

/* For image alignment. Taken from 
   http://www.devlounge.net/design/aligning-images-the-right-way-using-css
*/

/* margin: top right bottom left */
.logo-title { margin: 10px 0 0 0; }
.align-right { float:right; margin: 0 0 15px 15px; }
.align-left  { float:left; margin: 0 15px 15px 0; }
.align-center { float:center; margin: 15px 0 15px 0; }
