iframe {
    max-width: 100%;
}
body {
  margin: 0;
  background-color: #D8CAA8;
  font: 14px verdana, arial, free-sans, sans-serif;
}
@media not all and (max-width: 800px) {
  body {
    padding: 8px 0 15px 0;
  }
}
@media all and (max-width: 800px) {
  body {
    padding: 0;
  }
}
#centerer {
  display: grid;
  grid-template-areas: "head" "body" "foot";
}
#header {
  grid-area: head;
}
#main-body {
  grid-area: body;
}
#footer {
  grid-area: foot;
}
#main-body {
  display: grid;
  height: auto;
}
@media not all and (max-width: 800px) {
  #main-body {
    grid-template-areas: "nav sep content";
    grid-template-columns: 180px 41px 1fr;
    grid-template-rows: auto;
  }
}
@media all and (max-width: 800px) {
  #main-body {
    grid-template-areas: "nav" "sep" "content";
    grid-template-columns: 1fr;
    grid-template-rows: auto 17px auto;
  }
}
#main-nav {
  grid-area: nav;
}
#main-sep {
  grid-area: sep;
  border-style: solid;
  border-color: white;
  background-color: black;
}
@media not all and (max-width: 800px) {
  #main-sep {
    border-width: 0 20px;
  }
}
@media all and (max-width: 800px) {
  #main-sep {
    border-width: 8px 0;
  }
}
#main-border {
  background-color: green;
}
#main-content {
  grid-area: content;
}
* {
  box-sizing: border-box;
}
#main-nav a {
  text-decoration: none;
}
#main-nav-check {
  display: none;
}
@media not all and (max-width: 800px) {
  #main-nav-button {
    display: none;
  }
}
@media all and (max-width: 800px) {
  #main-nav-button {
    display: inline-block;
    font-size: 130%;
  }
}
#main-nav-icon {
  display: inline-block;
  height: 1.7ex;
  width: 2.04ex;
  border-width: 0.34ex 0;
  border-style: solid;
  border-color: #284907;
  background-clip: content-box;
  padding: 0.34ex 0;
  background-color: #284907;
}
@media all and (max-width: 800px) {
  #main-nav-check ~ h3 {
    display: none;
  }
  #main-nav-check:checked ~ h3 {
    display: block;
  }
}
hr {
  height: 0px;
  padding: 0;
  border: none;
  border-top: 1px solid #555;
  margin: 20px 0;
}
hr + hr {
  margin-top: -14px;
}
a img {
  border: 0;
}
img.fr,
img.float,
img.float_right {
  float: right;
  padding: 4px 0 7px 15px;
}
span.r275 {
  display: block;
  float: right;
  padding: 4px 0 7px 15px;
}
span.l275 {
  display: block;
  float: left;
  padding: 4px 15px 7px 0;
}
#header_copyright,
span.r275,
span.l275 {
  font-size: 9px;
  font-weight: bold;
  text-align: right;
}
span.r275 img,
span.l275 img {
  padding-bottom: 1px;
}
#centerer {
  max-width: 1000px;
  margin: 0 auto;
}
@media not all and (max-width: 800px) {
  #header {
    border-radius: 4px 4px 0 0;
    border: 20px solid #284907;
  }
}
@media all and (max-width: 800px) {
  #header {
    border: 5px solid #284907;
  }
}
#index_body #header_inner,
#admin_header_body #header_inner {
  position: relative;
  background-color: #284907;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#index_body #header_inner:after,
#admin_header_body #header_inner:after {
  display: block;
  position: absolute;
  font-size: 9px;
  font-weight: bold;
  text-align: right;
  bottom: 4px;
}
#main-body {
  background: white;
}
@media not all and (max-width: 800px) {
  #main-body {
    padding: 20px;
    border: 20px solid #5d842f;
  }
}
@media all and (max-width: 800px) {
  #main-body {
    padding: 8px;
    border: 5px solid #5d842f;
  }
}
#admin_links {
  background: #fbb;
  padding: 2px 6px;
  text-align: right;
  margin-bottom: 15px;
}
#footer {
  color: #cccccc;
  text-align: center;
  font-size: 80%;
  padding: 12px 0;
  border-radius: 0 0 4px 4px;
  background: #284907;
}
#footer a {
  color: #cccccc;
  border-bottom: dotted 1px #cccccc;
  text-decoration: none;
}
#footer a:hover {
  color: #ffffff;
  border-bottom: solid 1px #cccccc;
  text-decoration: none;
}
/************ GENERAL **************/
img {
  display: block;
}
h2 {
  background: #dcecca;
  padding: 5px 60px 5px 10px;
}
h3 {
  margin: 25px 0 6px;
}
/************ FORMS **************/
#cke_content {
  /* wysiwyg area seems to be 10px narrower than cke_content */
  /* Then we leave another 20px for the scrollbar */
  /* And another 20px for padding */
  width: 670px;
  margin-left: -11px;
}
body.cke_show_borders {
  background: white;
}
/* hack so that vertical margins are only between siblings for the most part */
td > :first-child,
th > :first-child,
legend + *,
article > :first-child,
section > :first-child,
nav > :first-child,
div > :first-child,
.first {
  margin-top: 0px;
}
td > :last-child,
th > :last-child,
fieldset > :last-child,
article > :last-child,
section > :last-child,
nav > :last-child,
div > :last-child,
.last {
  margin-bottom: 0px;
}
fieldset.fieldset_disabled {
  color: #aaa;
}
label {
  font-weight: bold;
}
code.html {
  display: block;
  font: 12px monospace;
  border: 1px solid black;
  background: #ccc;
}
.caption {
  margin-top: 15px;
  font-weight: bold;
}
td.caption {
  margin-top: 0;
  text-align: right;
}
.field {
  margin-bottom: 15px;
}
div.field_notes {
  font-size: 12px;
  line-height: 16px;
}
fieldset {
  border: 1px dotted black;
  padding: 0 15px 15px 15px;
  margin: 15px 0;
  position: relative;
}
legend {
  padding: 0 6px;
  font-weight: bold;
}
div.error {
  border: 2px solid red;
  padding: 13px;
  margin: 20px;
  background: #fdd;
}
p.quote {
  margin: 15px 35px;
}
p.attrib {
  margin: -15px 0 15px 100px;
}
span.wfpl_ifl {
  display: block;
  float: left;
  clear: left;
  font-size: 10px;
  color: black;
  text-align: right;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  margin: 0 10px 2px 0;
}
span.wfpl_ifr {
  display: block;
  float: right;
  clear: right;
  font-size: 10px;
  color: black;
  font-weight: normal;
  text-align: right;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  margin: 0 0 2px 10px;
}
div.wfpl_ic {
  margin: 15px auto;
  font-size: 10px;
  font-weight: normal;
  text-align: right;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
legend + p {
  margin-top: 5px;
}
abbr {
  text-decoration: underline dotted;
  -webkit-text-decoration: underline dotted;
}
textarea {
  box-sizing: border-box;
  width: 100%;
}
