@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');
body {
  font-family: Tahoma, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 110%;
  margin: 0;
  background-color: #91B5A7;
  color: #000000;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Alice", serif;
  font-weight: 500;
  font-style: normal;
  color: #103627;
  line-height: 125%;
}
#headerimg {
  text-align: center;
  margin: 0;
  box-shadow: 0 6px 10px 0 rgba(15, 98, 146, 0.6), 0 8px 22px 0 rgba(4, 4, 4, 0.50);
}
#mainbody {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 10px 0;
  box-shadow: 0 6px 10px 0 rgba(15, 98, 146, 0.6), 0 8px 22px 0 rgba(4, 4, 4, 0.50);
}
/* Hyperlinks */
a {
  color: #91B5A7;
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  color: #B59D91;
  text-decoration: underline;
}
a:active {
  color: #B59D91;
}
a:visited {
  color: #B59D91;
  text-decoration: none;
}
a:visited:hover {
  color: #B59D91;
  text-decoration: underline;
}
div.cellbutton1 a {
  display: inline-block;
  font-size: 13px;
  width: 200px;
  color: #FFFFFF;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  background-color: #103627;
  border-radius: 10px;
  margin: 15px;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  border: 2px solid #103627;
}
div.cellbutton1 a:hover, div.cellbutton1 a:hover:visited {
  color: #B59D91;
}
/* Layout */
.flex-container-body {
  display: flex;
  flex-flow: row nowrap;
 justify-content: space-around;
  width: 100%;
  margin: 0px auto; /* border:1px solid green; */
}
.tab-content {
  /*  border: 1px solid #b4b4b4; */
  padding: .5em 1em;
  /*	display: none;*/
}
.content {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1000px;
  margin: 0 10px;
}
#footer {
  /*  display: flex;
  flex-direction: row; */
  width: 98%;
  max-width: 1000px;
  margin: 0 10px;
}
.footer {
  text-align: center;
}
/* Menu */
#menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  list-style: none;
  margin: 0;
  padding: 0;

  border-bottom: 1px solid #91B5A7;
  border-top: 1px solid #91B5A7;
  /* background-color: #B9DDCF; */
}

#menu li {
  float: none;
  /* border-right: 1px solid #b4b4b4; */
}

#menu li:last-child {
  border-right: none;
}

#menu li a {
  display: block;
  color: #103627;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Hover — only on non-active links */
#menu li a:not(.active):hover {
  background-color: #B9DDCF;
  color: #103627;
}

/* Active and ARIA current */
#menu li a.active,
#menu li a[aria-current="page"] {
  background-color: #103627;
  color: #FFFFFF;
  text-decoration: none;
}

/* Keep active look on hover */
#menu li a.active:hover,
#menu li a[aria-current="page"]:hover {
  background-color: #103627;
  color: #FFFFFF;
  cursor: default;
}

/* Keyboard focus ring */
#menu li a:focus-visible {
  outline: 2px solid #103627;
  outline-offset: 2px;
}