@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic,600italic,600,300,300italic,800,800italic);
:root {
  --main-bg-color: #e9e9e9;
}
html, body {
  height: auto;
  min-height: 100dvh;
  width:100vw;
  box-sizing:border-box;
  background-color: var(--main-bg-color);
  margin:0;
  padding:0;
}
a {
  color:black;
  text-decoration:none;
}
img {
  max-width:100%;
}
.body-container > div.container.group {
  display: grid;
  grid-template-rows: auto auto 1fr;
}
* {
  box-sizing:inherit; 
  font-family: 'Open Sans', sans-serif;
}
.container{
  width: 100%;
  margin: 0 auto;
  background: #FFF;
}
main p {
  line-height: 1.75em;
}
main > section.group {
  display:flex;
  flex-direction:column;
  gap:1em;
}

header {
  line-height:0;
  z-index:1;
}
header img {
  width:100%;
}
nav {
  box-shadow: 0 0 5em .5em var(--main-bg-color);
}
nav ul{
  list-style-type: none;
  padding:0;
  margin:0;
  display: flex;
  flex-wrap:wrap;
  gap:1em;
  align-items: center;
  line-height: 0;
  padding:1rem;
}
nav ul {
    display:flex;
    flex-direction:row;
    align-items: center;
}
nav ul li{
  line-height:1rem;
}
nav ul li a{
  text-decoration:none;
}
nav ul li.active a{
  text-decoration:underline;
}
.menu-img-item {
  line-height: 0;
}
main {
  min-height: 100%;
  max-width: 100vw;
}
.footer {
  width:100%;
}
footer > div.newsflash {
  padding: 1em;
  border-top: .1em solid #cecece;
  box-shadow: none;
  display:grid;
  gap:1rem;
}
.page-header {
  border-bottom: 1px solid #eee;
}
div.fb_iframe_widget {
  display: block!important;
  width: 500px;
  margin: auto;
}
main section {
  width: calc(100% - 1rem);
  padding: 1em;
}
iframe {  
  width: 100%;
  height: 100%;
  max-width:100%!imporant;
}
.aspect-16-9, 
.aspect-16-9 iframe {
  aspect-ratio: 16 / 9;
  margin-bottom: 1em;
}
#main-container.sidebarred {
  width: 100%;
}
footer ul {
  list-style: none;
  display:grid;
}
.visually-hidden {display:none;}
.body-container {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}
@media only screen and (max-width: 40rem) {
    nav {
    padding: 1rem 0;
    }
    nav ul {
        flex-direction:column;
        gap:1rem;
    }
    nav ul li a img {
        max-width:calc(100vw - 2rem);
        height:auto;
    }
    footer ul.grid-cols-3 {
        display: grid;
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 60em) {
  .container{
    max-width: 60em;
  }
  main > section.group {
    flex-direction:row;
  }
  #main-container.sidebarred {
    width:calc(100% * 0.6)
  }
  .sidebar {
    width:calc(100% * 0.4);
  }
  footer > div.newsflash {
    grid-template-columns: repeat(3, 1fr);
  }
  div[itemprop="articleBody"] img.one-third {
    width: calc(100% / 3);
  }
  .grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr!important;
    margin: 0;
    padding: 0 1rem;
    gap: 1rem;
  }
}