/*
         green #a0b23f
     dark-gray #5c6162
    light-gray #b3bcac
      dark-red #7a0700
     light-red #b50700
          gold #dec100
*/

/** RESET ********************************************************************/

BODY, HTML {
    margin: 0px;
    padding: 0px;
    background: #b3bcac;
    font: 15px/25px Calibri,Verdana,Arial,Helvetica,Sans;
}

* { 
    margin: 0px; 
    padding: 0px; 
    /* DEBUG border: 1px solid green; /**/
}


/** HEADER *******************************************************************/

.header {
    clear: both;
    position: relative;
    background: #a0b23f;
    height: 100px;
    min-width: 800px;
    border-top: solid #7a0700 2px;
}

.header-logo {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100px;
    width: 200px;
}

.header-navigation {
    position: absolute;
    top: 0px;
    left: 200px;
    height: 50px;
    width: 600px;
}

.header-navigation-content {
    position: absolute;
    bottom: 0px;
    right: 30px;
    text-align: right;
}

.header-navigation A {
    color: white;
    text-decoration: none;
    padding-left: 1ex;
}

.header-navigation A:link { 
    color: white; 
}

.header-navigation A:visited { 
    color: white; 
}

.header-navigation A:hover { 
    color: #5c6162; 
}

.header-navigation A:active { 
    color: white; 
}

.header-topics {
    position: absolute;
    top: 50px;
    left: 200px;
    width: 600px;
    height: 25px;
    background: white;
}

.header-topics A {
    display: block;
    float: left;
    color: #5c6162;
    background: white;
    font-size: 15px/15px;
    text-decoration: none;
    padding: 0 15px 0 15px;
}

.header-topics A:hover   {
    color: white;
    background: #5c6162;
}

#header-topics-active {
    color: white;
    background: #5c6162;
}

.header-spacer {
    position: absolute;
    top: 75px;
    left: 200px;
    width: 570px;
    height: 25px;
    background: #5c6162;
    color: white;
    text-align: right;
    padding-right: 30px;
}

/** BODY *********************************************************************/

.body {
    clear: both;
    min-width: 800px;
}

.body-toc {
    float: left;
    /* width: 200px; */
    width: 155px;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 15px;
    color: white;
}

.body-toc-content {
    border-top: solid white 2px;
    padding-bottom: 15px;
    border-bottom: solid white 2px;
    font-size: 12px;
}

.body-toc-content A {
    color: white;
    text-decoration: none;
}

.body-toc-content A:hover   {
    color: #b50700;
}

.body-content {
    float: left;
    width: 540px;
    background: white;
    padding-top: 15px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    border-bottom: solid #b50700 2px;
}

/** FOOTER *******************************************************************/

.footer {
    clear: both;
    position: relative;
    background: #e8e8d0;
    min-width: 800px;
    width: 800px;
}

.footer-copyright {
    position: absolute;
    top: 0px;
    left: 230px;
    width: 600px;
    color: white;
    font-size: 12px;
}

.footer-navigation {
    position: absolute;
    width: 600px;
    top: 0px;
    right: 0px;
}

.footer-navigation-content {
    position: relative;
    bottom: 0px;
    right: 30px;
    text-align: right;
}

.footer-navigation A {
    color: white;
    text-decoration: none;
    padding-left: 1ex;
}

.footer-navigation A:hover { 
    color: #5c6162; 
}

.footer-navigation A:link { 
    color: white; 
}

.footer-navigation A:visited { 
    color: white; 
}

.footer-navigation A:active { 
    color: white; 
}

/** TEXT *********************************************************************/

.heading-color {
    color: #7a0700;
}

H1 { 
    font-size: 17px; 
    font-weight: bold; 
    color: #7a0700;
    margin-top: 15px;
}

H2 { 
    font-size: 16px; 
    font-weight: bold; 
    color: #7a0700; 
    margin-top: 15px;
}

H3 { 
    font-size: 15px; 
    font-weight: bold; 
    color: #7a0700; 
    margin-top: 15px;
}

H4 { 
    font-size: 15px; 
    font-weight: bold; 
    font-style: italic; 
    color: #7a0700; 
    margin-top: 15px;
}

ADDRESS {
    white-space: pre;
    font-style: normal;
    line-height: 125%;
}

P {
  margin-bottom: 0;
}

P + P {
  text-indent: 1.5em;
  margin-top: 0 
}

DIV.figure-right {
    float: right; 
    width: 300px;
    margin: 15px 0 15px 15px;
}

DIV.figure-right * IMG {
    border: 0px;
}

DIV.figure-right P {
    text-align: center;
    font-size: 12px;
    line-height: 100%;
    text-indent: 0;
}

DIV.figure-left {
    float: left; 
    width: 300px;
    margin: 15px 15px 15px 0;
}

DIV.figure-left * IMG {
    border: 0px;
}

DIV.figure-left P {
    text-align: center;
    font-size: 12px;
    line-height: 100%;
    text-indent: 0;
}

/* END */