
.SiteThemeColors {
color: #651D24;
color: #245719;
color: #88A82E;
color: #AB8534;
color: #D24925;
color: #DC8D31;
}




html, body {
  font-family: verdana,Helvetica,Arial,"sans-serif";
  height: 100%;
  width: 100%;
}

p {font-size: 1.2em;}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background: #FDF1F1;
}

header,
footer {
  flex: 1 0 auto;
  background: #651D24;
  max-height: 6em;
  padding: 0.2em;
}

header h1,
header h2,
header p,
footer p,
footer sup {
  color: white;
  text-shadow: 1px 2px #2F0B0F;
}

header a:link,
header a:visited,
header a:hover,
header a:active,
header a:focus,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active,
footer a:focus {
  color: white;
  text-decoration: none;
}

header a:hover,
header a:focus,
footer a:hover,
footer a:focus {
  color: #504D17;
  text-shadow: 1px 2px #68651E;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: outset 2px #2F0B0F;
}

header img {max-height: 5em;}

header h1 {font-size: 93.75%}

header div[id="LogoContainer"] {
  flex: 1 0 auto;
  max-width: 8em;
  align-self: center;
}

header div[id="BannerContainer"] {
  flex: 1 0 auto;
  max-width: 140em;
}

header div[id="LoginContainer"] {
  flex: 1 0 auto;
  max-width: 6em;
  margin-right: 1em;
}

nav {
  width: 100%;
  max-width: 150em;
  height: 2.5em;
  background: #504D17;
  border: 2px outset #504D17;
  border-radius: 0.5em;
  margin: 1em auto 0;
}

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 140em;
  background: white;
  border: 1px outset #2F0B0F;
  border-radius: 0.5em;
  padding: 1.5em;
  margin: 1em auto;
}

footer {
  color: white;
  border-top: 2px outset #2F0B0F;
  max-height: 4.5em;
}

footer section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

footer p {
  flex 1 0 auto;
}

footer p:last-child {margin-top: 0.4em;}


/* Generic styling */

/* specific page styling */

/* home page */
main section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 25em;
}

main section[class="Feature"] { margin: 1em 0 8em;}

main section[class="Feature"] article {
  flex: 1 0 40%;
  max-width: 40%;
}

main section[class="Feature"] article:nth-of-type(2) {
  border: 2px outset #AACCDD;
  border-radius: 1.5em 0 1.5em 0;
}



main section[id="SubFeature"] article {
  flex: 1 0 18%;
  max-width: 16%;
}

section[id="SubFeature"] article img {
  border-radius: 1.5em 0 0;
}

section[id="SubFeature"] article h1 {font-size: +120%; font-weight: 500; margin-top: 0.8em;}

section[id="SubFeature"] article:nth-of-type(1) {
  background: #3681B9;
  border: 2px outset #3681B9;
  border-radius: 1.5em 0 1.5em 0;
  padding: 0.3em;
}

section[id="SubFeature"] article:nth-of-type(2) {
  background: #BA7B36;
  border: 2px outset #BA7B36;
  border-radius: 1.5em 0 1.5em 0;
}

section[id="SubFeature"] article:nth-of-type(3) {
  background: #4CBA35;
  border: 2px outset #4CBA35;
  border-radius: 1.5em 0 1.5em 0;
}

section[id="SubFeature"] article:nth-of-type(4) {
  background: #7635BA;
  border: 2px outset #7635BA;
  border-radius: 1.5em 0 1.5em 0;
}

section[id="SubFeature"] article:nth-of-type(5) {
  background: #BA3542;
  border: 2px outset #BA3542;
  border-radius: 1.5em 0 1.5em 0;
}





#SlideShow img {
   position: absolute;
  /* max-width: 70em; */
}

#SlideShow img:nth-of-type(1) {
  animation-name: fader;
  animation-delay: 4s;
  animation-duration: 2s;
  z-index: 20;
}

#SlideShow img:nth-of-type(2) {
  z-index: 10;
}

#SlideShow img:nth-of-type(n+3) { display: none; }

@keyframes fader {
  from { opacity: 1.0; }
  to { opacity: 0.0; }
}



