  html {
    height: 100%;
    width: 100%;
    }
  body {
    margin: 0px;
    padding: 0px;
    background-color: #fff;
    font-size: 5px;
    }
  #heder {
    position: relative;
//    background-color: #cfc;  DIAGNOSTIC
    width: 100%;
    top: 0em;
    left: 0em;
    font-size: 25px;
  }
  #main {
    position: relative;
//    background-color: #cfc;  DIAGNOSTIC
    width: 100%;
    top: 8em;
    left: 0em;
    font-size: 25px;
    font-family: Arial, Verdana, Helvetica, 
     Geneva, Tahoma, Trebuchet, Sans-Serif;
  }
  #nav {
    position: absolute;
    font-size: 16px;
    height: 1em;
    width: 11em; /* WIDEN IF LABELS LENGTHEN */
//    z-index: 4;
    right: 0em;
    top: 2em;
//    background-color: #f90;  DIAGNOSTIC
  }
  #nav ul {
    list-style-type: none;
    margin: 0px;
    padding-top: 3em; // PUSH LIST DOWN
    padding-right: 0em;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  #nav ul li {
    display: inline;
    font-family: Arial, Helvetica, 
     sans-serif;
    font-weight: bold;
    padding: 0em;
    margin: 0em;
  }
  #nav ul li a {
    text-decoration: none;
    color: #fff;
    background-color: #666;
    padding-top: 3em; //PAD UP TO FILL VOID
    padding-right: 0.5em;
    padding-bottom: 1em;
    padding-left: 0.5em;
  }
 table {
  border-collapse: separate;
  border-spacing: 0px 8px;
 }
 th {
  border: 1px solid black;
  padding: 6px;
  font-weight: bold;
  background: #ccc;
 }
 td {
  border: 1px solid black;
  padding: 6px;
 }
 footer {
  position: relative;
  float: left;
  width: 100%;
 }
 footer img {
  position: absolute;
  right: 10%;
  top: 0px;
 }



