/* CSS Document */

/* set page background to white and text to very dark gray
 * html is included because this is the root element for
 * pages served as application/xhtml+xml */
html, body {
  background: #FFF;
  color:#373737;
  margin: 0;
  padding: 0;
  font-family:Georgia, "Times New Roman", Times, serif;
  }
/* set width of wrapper to same width as title image
 * no top or bottom margin
 * auto on both sides will center wrapper in modern browsers */
#wrapper {
  width: 720px;
  margin: 0 auto;
  }

/* maincontent width is 1px smaller to account for left border */
#maincontent {
  width: 720px;
  border-color: #999999;
  border-style:solid;
  border-width: 0 1px;
  margin: 0;
  padding: 0;
  font-size: 11.5px;
  }

