
BODY { 
    background : #FFFFFF;
    color : #000000;
    font-family : "Arial", "Helvetica", sans-serif; }

* { font-family : "Arial", "Helvetica", sans-serif; color: #000054; }

H1 { 
   font-family:  "Arial", "Helvetica", sans-serif;
   font-size: 180%;
   font-weight: bold;
   color: #008080; }

H2 { 
   font-family:  "Arial", "Helvetica", sans-serif;
   font-size: 150%;
   font-weight: bold;
   color: #008080; }

H3 { 
   font-family:  "Arial", "Helvetica", sans-serif;
   font-size: 125%;
   font-weight: bold;
   color: #008080; }

H4 { 
   font-family:  "Arial", "Helvetica", sans-serif;
   font-size: 110%;
   font-weight: bold;
   color: #008080; }

H5 { 
   font-family:  "Arial", "Helvetica", sans-serif;
   font-size: 100%;
   font-weight: bold;
   color: #000000; }

H6 {
   font-family:  "Arial", "Helvetica", sans-serif;
   font-size: 90%;
   color: #008080; }

TD, TH, UL, OL { 
   font-family:  "Arial", "Helvetica", sans-serif;
   color : #000054; }

P, BLOCKQUOTE {
   font-family:  "Arial", "Helvetica", sans-serif;
   text-align: justify; }

EM, I { 
   font-family:  "Arial", "Helvetica", sans-serif;
   font-style: italic; }

PRE { font-family: monospace; }

A:link { color : #0000ff; }
A:visited { color : #6600cc }
A:active { color : #ff0000; }

HR { color : #000054; }

DIV.description {
   font-family:  "Arial", "Helvetica", sans-serif;
   color : #000054;
   text-align: justify; }

DIV.quotation {
   font-family: "Garamond", "Times New Roman", serif;
   font-size: 110%;
   font-style: italic;
   color : #005454;
   text-align: justify; }

DIV.url A:link    { text-decoration: none; }
DIV.url A:visited { text-decoration: none; }
DIV.url A:active  { text-decoration: none; }

DIV.foot TD {
   font-family : "Arial", "Helvetica", sans-serif;
   font-size: 90%;
   font-weight: bold;
   color: #008080; }

DIV.foot A:link    { text-decoration: none; }
DIV.foot A:visited { text-decoration: none; }
DIV.foot A:active  { text-decoration: none; }


/* Tab stuff from https://www.w3schools.com/howto/howto_js_tabs.asp */

/* Style the tab */
div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
div.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}