html {
  height: 100%;
  overflow-y: scroll;
}
body {
  height: 100%;
  background-color: #4F1B15;
  margin: 0;
}

/**
 * Floats
 */
.left { float: left; }
.right { float: right; }
.clear { clear: both; }

/**
 * Colors
 */
.yellow             { color: #FDCC65; }
#content .yellow a  { color: #FDCC65; }
#content a.yellow   { color: #FDCC65; }

/**
 * Links
 */
a img             { border: 0; }
a                 { text-decoration: none; }
a:hover,a:active  { text-decoration: underline; }

.small { font-size: .75em; }

#pageWrapper {
  position: relative;
  margin: 0 auto;
  width: 900px;
  background: #212121;
  min-height: 100%;
  _height: 100%;
}

/**
 * Content
 */
#content {
  margin: 0;
  padding: 5px 40px 0px 40px;
  color: #CCCCCC;
  font-family: sans-serif;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.25em;
  border-top: solid 15px #212121;
  border-bottom: solid 26px #212121;
}
#content h2 {
  color: #FDCC65;
  font-size: 1em;
  margin: 0 0 1.5em 0;
}
#content h3 {
  font-size: 1em;
  color: #FFFFFF;
  margin: 0 0 1em 0;
}
#content p {
  padding: 0;
  margin: 0 0 1em 0;
}
#content a {
  color: #FF9966;
}

/**
 * Columns
 */
#content.twoColumn {
  background-image: url(images/gray.png);
  background-position: top center;
  background-repeat: repeat-y;
}
#content .col1 {
  float: left;
  width: 380px;
  padding-right: 30px;
}
#content .col2 {
  float: left;
  width: 380px;
  padding-left: 30px;
}










/**
 * Footer
 */
#footer {
  font-size: 0;
  position: absolute;
  bottom: 0;
  height: 10px;
  width: 100%;
  background: #000000;
  border-top: solid 2px #1F1F1F;
}
#footerBuffer {
  height: 26px;
  font-size: 0;
  background: #3D3D3D;
}


/**********************************
 * Page Specefic Stuff
 *********************************/
.pageHome #content {
  margin-top: 20px;
  background-color: #3D3D3D;
  border-color: #3D3D3D;
}

.pageContact #content {
  margin-top: 20px;
  background-color: #3D3D3D;
  border-color: #3D3D3D;
}
.pageContact #content table {
  margin: auto;
}
.pageContact #content table td {
  text-align: left;
  vertical-align: top;
}
.pageContact .formField {
  width: 18em;
  font-family: sans-serif;
  font-size: 0.9em;
  font-weight: normal;
}
.pageContact textarea.formField {
  height: 8em;
}
.pageContact .field input {
  display: none;
}


/**********************************
 * Sortable Table
 *********************************/
.sort-table {
  width: 100%;
  font-weight: normal;
  border: solid 1px #666666;
  color:#FFFFFF;
}
.sort-table thead tr {
  background-color: #701F1B;
  font-weight: bold;
}
.sort-table thead td {
  border-bottom: solid 1px #666666;
}
.sort-table thead td {
  cursor: default;
}
.sort-table tr.odd {
  background-color: #242424;
}

.sort-table tr.even {
  background-color: #323232;
}
.sort-table td {
  padding:  2px 5px;
  text-align: left;
  border-right: solid 1px #666666;
}
.sort-table td.c5 {
  text-align: center;
  border-right: none;
}
.sort-table .sort-arrow {
  width: 11px;
  height: 11px;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 0 0 6px;
}
.sort-table .sort-arrow.descending {
  background-image: url("images/downsimple.png");
}
.sort-table .sort-arrow.ascending {
  background-image: url("images/upsimple.png");
}