/**********************************************************************
  General formatting applied to all areas
 **********************************************************************/
* {
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
}

h1,h2,h3,h4,h5,h6,h7 {
  font-size: 50px;
}

body {
  font-family: Verdana,Arial,sans-serif;
  font-size: 13px;
}

/**********************************************************************
  Formatting for the header 
 **********************************************************************/

div#header h1 {
  padding: 13px;
  margin-left: 80px;
  font-size: 38px;
}

div#header h1 a {
  text-decoration: none;
}

div#header img {
  float:left;
  border: none;
  padding: 3px;
}

/**********************************************************************
  Formatting for the menu
 **********************************************************************/

div#menu {
  float: left;
  width: 150px;
  padding-left: 4px;
  padding-bottom: 13px;
}

div#menu li {
  font-weight: bold;
  list-style: none;
  margin: 13px 0 0 3px;
  font-size: 13px;
}

div#menu li li {
  font-weight: normal;
  list-style: none;
  margin: 8px;
  font-size: 12px;
}

div#menu li li a {
  border: 1px solid transparent;
  padding: 3px;
  text-decoration: none;
}

div#menu li li a:hover {
  text-decoration: underline;
}

div#menu li li.active {
  list-style: square;
}

div#menu li li.active a {
  border: 1px solid #000000;
}

div#menu li li.active a:hover {
  text-decoration: none;
}

/**********************************************************************
  Formatting for the main content section
 **********************************************************************/

div#content {
  margin-left: 160px;
  padding-left: 8px;
  padding-right: 5%;
  border-left: 3px dotted #000000;
}

div#content h2 {
  font-size: 24px;
  padding-top: 0.5em;
}

div#content h3 {
  font-size: 17px;
  padding-top: 0.75em;
}

div#content h4 {
  font-size: 15px;
  margin-top: 1em;
  font-weight: normal;
  border-top: dotted 1px #000000;
}

div#content p {
  margin-top: 0.75em;
}

div#content img {
  float: right;
  width:40%;
}

div#content li {
  margin-left: 2em;
  margin-top: 0.5em;
}

div#content a.button {
  float: left;
  border: 3px outset #000000;
  padding: 3px;
  margin: 3px;
  width: 160px;
  text-align: center;
}

div#content a.button:hover {
  border: inset;
}


/**********************************************************************
  Formatting for the tables within the content section
 **********************************************************************/

div#content table {
  border-spacing: 0;
  margin: 8px auto;
}

div#content table th {
  vertical-align: bottom;
}

div#content table td {
  border: 1px solid #000000;
  padding: 3px;
}

/**********************************************************************
  Formatting for the footer
 **********************************************************************/

div#footer {
  padding: 4px;
  padding-top: 13px;
  text-align: center;
  font-size: 9px;
}

div#footer hr {
  border: 1px solid #000000;
  margin: 5px;
}

div#footer a {
  text-decoration: none;
  color: #000000;
}

div#footer a:hover {
  text-decoration: underline;
  color:#0000FF;
}

/**********************************************************************
  Colors, all gathered in one place for consistency
 **********************************************************************/

/*** COLOR 1 CONTINUUM ***/

  /* Header background */

  div#header {
    background: #9FC9E5;
  }

  div#content a.button {
    background: #9FC9E5;
  }

  div#content a.button {
    border-color: #9FC9E5;
  }

  div#content table tr.oddrow td {
    background: #9FC9E5;
  }

  /* Table and rules border colors */

  div#content table td {
    border-color: #4F6573;
  }

  div#footer hr {
    border-color: #4F6573;
  }

  /* Header and minor heading foreground */

  div#header h1 a {
    color: #34444D;
  }

  div#content h3 {
    color: #34444D;
  }

  div#content h4 {
    color: #34444D;
  }

  div#menu li li {
    color: #34444D;
  }

  div#menu li li.active a {
    color: #34444D;
  }

/*** COLOR 2 CONTINUUM ***/

  /* Menu background */

  div#main {
    background: #E6D39E;
  }

  div#content table tr.evenrow td {
    background: #E6D39E;
  }

  /* Main heading foreground */

  div#content h2   {
    color: #998C6A;
  }

  /* Menu sub headings */

  div#menu li li a {
    color: #73694F;
  }

  div#menu li li a:hover {
    color: #73694F;
  }

  div#content {
    border-left-color: #73694F;
  }

  /* Menu main headings */

  div#menu li {
    color: #4D4634;
  }

/*** COLOR 3 GRAY SHADE ***/

  /* Main body background */

  body {
    background: #E5E5E5;
  }

  div#menu li li a:hover {
    background: #E5E5E5;
  }

  div#menu li li.active a {
    background: #E5E5E5;
  }

  div#content {
    background: #E5E5E5;
  }

  div#footer {
    background: #E5E5E5;
  }


