/*
 * Blue Static Site
 *
 * Copyright (c)2010 by Blue Static. All Rights Reserved.
 * This file may not be reproduced in any way without permission.
 */

/* Main body formatting, only used as the main background panel */
body {
  margin: 0px;
  padding: 0px;

  background-color: rgb(255, 255, 255);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Fixes the width of the content. */
.width {
  margin: 0px auto 0px auto;  
  width: 900px;
}


/* The header that contains the logo */
#header {
  height: 45px;

  background-color: rgb(0, 84, 128);

  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: rgb(0, 84, 128);

  margin-bottom: 3px;
}

  #header h1 {
    padding: 0px;
    line-height: 45px;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    font-size: 30pt;
  }

  #header #doodle {
    font-size: 11pt;
    float: right;
    line-height: 45px;
    margin-right: 10px;
    color: rgb(255, 255, 255);
  }

/* The navigation bar layout element that is at the bttom of the page */
#navigation {
  margin-bottom: 10px;
  height: 45px;

  border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  -webkit-border-radius: 0px 0px 5px 5px;

  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: rgb(0, 84, 128);
}

#navigation ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

/* Style navigation items. */
#navigation li {
  text-align: center;
  line-height: 45px;
  letter-spacing: 1px;

  float: left;
  width: 150px;
  height: 45px;

  background-color: rgb(0, 84, 128);
}

  #navigation li:hover {
    background-color: rgb(0, 114, 188);
  }

/* Style navigation links */
#navigation li a {
  font-family: "LiberationSerif", "Baskerville", Times, serif;
  font-size: 18pt;
  color: rgb(150, 205, 255);

  border: none;
  text-decoration: none;
}

  #navigation li:hover a {
    color: rgb(255, 255, 255);
  }

/* The panel where all textual content goes */
#content, #content-wm, .product, .post {
  padding: 20px;
  margin-bottom: 40px;

  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 114, 188, 0.3);

  background-color: rgb(245, 245, 255);
  
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

/* A content panel with a left menu */
#content-wm, .post, .with-menu {
  width: 670px;
  float: left;
}

/* The left-hand menu */
#menu {
  width: 150px;
  float: right;

  font-family: "LiberationSerif";
  font-size: 13pt;
  letter-spacing: 0px;
  
  padding: 15px;

  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;

  background-color: rgba(0, 104, 178, 0.1);
}

  /* Important navigation links. */
  #menu .important, #menu .important a {
    color: rgb(0, 14, 88);
  }

#menu ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

#menu li {
  margin: 3px;
  color: rgb(30, 30, 40);
}

#menu li a {
  color: rgb(30, 30, 40);
  text-decoration: none;
}

  #menu li a:hover {
    text-decoration: underline;
  }

/* Footer and copyright */
#footer {
  text-align: right;
  font-family: "LiberationSerif", "Baskerville", Times, serif;
  font-size: 10px;

  padding: 3px;
}

