body {
        background-color: white;
        color: black;
        font-size: large;
        font-weight: normal;
	padding-bottom: 0;
}

div.header {
        position: relative;
        margin-left: 18%;
        width: 60%;
}

div.sticky {
	position: -webkit-sticky; /* Safari */
	position: sticky;
	<!-- top: 0; uncomment to make sticky stick... -RW -->
}

div.leftmenu {
        position: absolute;
        margin-top: 0%;
        margin-left: 0%;
        width: 15%;
        float: left;
        padding-top: .5em;
        padding-bottom: .5em;
        text-align: center;
        background-color: white;
        font-weight: bold;
        font-size: large;
}

div.rightmenu {
        position: absolute;
        margin-top: 0px;
        margin-left: 80%;
        width: 18%;
        float: right;
        padding-top: .5em;
        padding-bottom: .5em;
        text-align: center;
        background-color: white;
        font-weight: bold;
        font-size: large;
}

div.body {
        position: relative;
        width: 56%;
        margin-left: 20%;
        margin-right: 18%;
}

a { color: black; }

img {
  max-width: 100%;
  max-height: 100%;
}

.button {
  background-color: black;
  border: 3px outset #8A0000;
  border-radius: 8px;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: large;
  margin: 5px 0px;
  width: 95%;
  cursor: pointer;
}

div.rTable {
        display: table;
        width: 100%;
}
div.rTableRow {
        display: table-row;
}
div.rTableHead {
        display: table-cell;
        padding: 3px 10px;
        font-weight: bold;
        border: 1px solid #999999;
	text-align: center;
}
div.rTableCell {
        display: table-cell;
        padding: 3px 10px;
        border: 1px solid #999999;
	text-align: center;
}
div.rTableHeading {
        display: table-header-group;
        font-weight: bold;
}
div.rTableBody {
        display: table-row-group;
}

