@charset "utf-8";
/*@colourBackground: #F5F5F5;
@colourForeground: #1A1432;

@colourPrimary: #715FC1;
@colourSecondary: #B1C36E;
@colourHighlight: #D68255;*/
.backgroundColor-primary {
  background-color: #4074AF;
}
.borderColor-primary {
  border-color: #4074AF;
}
.color-primary {
  color: #4074AF;
}
.backgroundColor-secondary {
  background-color: #DECA59;
}
.borderColor-secondary {
  border-color: #DECA59;
}
.color-secondary {
  color: #DECA59;
}
.backgroundColor-highlight {
  background-color: #C5415F;
}
.borderColor-highlight {
  border-color: #C5415F;
}
.color-highlight {
  color: #C5415F;
}
.borderStyle-standard {
  border-radius: 16px;
  border-width: 4px;
  border-style: solid;
}
.borderStyle-rounded {
  border-radius: 16px;
  border-style: solid;
}
html {
  background-color: #FCFCF8;
  color: #112031;
  font-family: 'Abel', sans-serif;
  font-size: 20px;
  height: 100%;
  margin: 0px;
  padding: 0px;
  width: 100%;
}
html button {
  font-size: 18px;
}
body {
  background-color: inherit;
  font-family: 'Abel', sans-serif;
  font-size: 20px;
  margin: 0;
  padding: 0;
  position: fixed;
  height: 99.99%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
div,
p {
  font-family: 'Abel', sans-serif;
  font-size: 20px;
}
header {
  margin: 0px;
  padding: 0px;
  background-color: #4074AF;
  color: #FCFCF8;
  font-family: 'Montserrat', 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  font-size: 16px;
  /*position: absolute;
	top: auto;
	left: auto;*/
  flex-grow: 0;
  align-self: stretch;
  box-sizing: border-box;
}
ul.topNav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}
li.topNav {
  box-sizing: border-box;
  padding: 0;
}
a.topNav {
  height: 100%;
  text-align: center;
  display: block;
  padding: 0.3em 1.5em 0.3em;
  text-decoration: none;
  box-sizing: border-box;
  color: #FCFCF8;
}
li.topNav:hover {
  background: #325b8a;
  color: #FCFCF8;
}
a.active {
  box-sizing: border-box;
  border-bottom: 0.2em solid #C5415F;
  color: #FCFCF8;
}
a.topNav:visited {
  color: #FCFCF8;
}
@media all and (max-width: 600px) {
  ul.topNav {
    justify-content: center;
  }
  li.topNav {
    flex-grow: 1;
  }
  a.topNav {
    border-left: 1px solid #39689c;
    border-right: 1px solid #39689c;
    padding: auto;
  }
}
@media all and (max-width: 420px) {
  ul.topNav {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  li.topNav {
    text-align: center;
  }
  a.topNav {
    border: none;
    padding: auto;
  }
}
main {
  background-color: #FCFCF8;
  color: #112031;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  flex-grow: 1;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
main > div {
  padding: 10px;
  margin: 10px;
  font-size: 20px;
}
div.LHS {
  width: 250px;
  max-width: 25%;
  background-color: #FCFCF8;
  flex-shrink: 0;
  /*border-style: solid;
	border-width: 2px;
	border-radius: 6px;*/
  overflow: hidden auto;
}
@media all and (max-width: 500px) {
  div.LHS {
    display: none;
  }
}
div.MID {
  background-color: #FCFCF8;
  flex-grow: 1;
  overflow: hidden auto;
  width: auto;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
div.MID * {
  box-sizing: border-box;
}
div.RHS {
  box-sizing: border-box;
  /*border-width: @sizeBorderWidth;
	border-radius: @sizeBorderRadius;
	border-style: solid;*/
  width: 200px;
  max-width: 20%;
  background-color: #FCFCF8;
  flex-shrink: 0;
}
@media all and (max-width: 1050px) {
  div.RHS {
    display: none;
  }
}
*.hidden {
  display: none;
}
div.userForm {
  font-size: 150%;
  margin: 5px 5px;
  padding: 10px;
  text-align: center;
  background-color: #FCFCF8;
  flex-grow: 1;
  min-width: 360px;
  max-width: 500px;
  height: fit-content;
  box-sizing: border-box;
  border: 4px solid #4074AF;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
form.login {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  height: fit-content;
  padding-left: 20px;
  padding-right: 20px;
}
form.login label {
  color: #112031;
  padding-top: 15px;
  font-size: 2rem;
}
@media all and (max-width: 500px) {
  form.login label {
    font-size: 4rem;
  }
}
form.login input {
  padding: 2px 8px;
  border: 1px solid #C5415F;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 2rem;
  font-family: "Abel";
  margin: 0px;
  width: 100%;
}
@media all and (max-width: 500px) {
  form.login input {
    font-size: 4rem;
  }
}
div.buttonRow {
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  font-family: 'Montserrat', 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  font-size: 1rem;
}
div.buttonRow :not(:first-child) {
  margin-left: 10px;
}
div.buttonRow :hover {
  border-width: 2px;
  padding: 6px;
  box-shadow: 0 1px 2px 0 #DECA59, 0 1px 3px 0 #DECA59;
  box-sizing: border-box;
  cursor: pointer;
}
div.buttonRow button {
  padding: 5px;
  background-color: #DECA59;
  color: #FCFCF8;
  flex-grow: 1;
  max-width: 50%;
  border-color: #DECA59;
  border-radius: 16px;
  border-width: 3px;
  border-style: outset;
  box-sizing: border-box;
}
@media all and (max-width: 500px) {
  div.buttonRow button {
    font-size: 2rem;
  }
}
footer {
  margin: 0px;
  padding: 0px;
  background-color: #FCFCF8;
  color: #C5415F;
  text-align: center;
  font-family: 'Montserrat', 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  font-size: 14px;
  flex-grow: 0;
  align-self: stretch;
}
/*@media all and (max-width: 420px) {
	footer {
		display: none;
	}
}*/
.list {
  display: block;
  box-sizing: border-box;
  padding: 0px 10px;
  width: max-content;
}
.list p {
  background-color: #FCFCF8;
  width: auto;
  margin: 15px 0px;
  padding: 4px 30px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 10px;
  border-color: #4074AF;
  border-width: 2px;
  border-style: solid;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
.list p:hover {
  border-color: #C5415F;
  text-decoration: underline;
  cursor: pointer;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  transform: translateY(2px);
  transform: translateX(2px);
}
.list a {
  text-decoration: none;
  color: unset;
}
.error_message {
  background-color: #FCFCF8;
  color: red;
  text-decoration: italic bold;
  padding: 10px;
  border: 2px solid red;
  margin-bottom: 20px;
  overflow: auto;
  width: 100%;
}
#leftPane > .list {
  width: auto;
}
#leftPane > .list p:last-child {
  border-color: #112031;
  box-shadow: none;
}
#leftPane > .list p:last-child:hover {
  text-decoration: none;
  cursor: default;
}
.grid {
  background-color: #FCFCF8;
  padding: 0px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.grid p {
  background-color: #FCFCF8;
  padding: 25px;
  margin: 0px;
  flex-grow: 1;
  max-width: 400px;
  min-width: 300px;
  height: min-content;
  border-radius: 16px;
  border-width: 2px;
  border-color: #DECA59;
  border-style: solid;
}
.grid p:hover {
  border-color: #C5415F;
  cursor: pointer;
}
.menu_vertical {
  margin: 0px;
  width: auto;
  padding: 0px;
}
.menu_vertical ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  overflow: hidden;
}
@keyframes menu-open {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 100px;
  }
}
@keyframes menu-close {
  0% {
    max-height: 100px;
  }
  100% {
    max-height: 0px;
  }
}
.menu_vertical p {
  margin: 0px;
}
.menu_vertical p:hover {
  cursor: pointer;
  background-color: #ae9923;
}
.menu_vertical p.accordion {
  display: list-item;
  list-style-position: inside;
}
.menu_vertical p.accordion.closed {
  list-style-type: disclosure-closed;
}
.menu_vertical p.accordion.open {
  list-style-type: disclosure-open;
}
.menu_vertical ul.folded {
  max-height: 0px;
  animation: menu-close 0.6s;
}
.menu_vertical ul.unfolded {
  max-height: 100%;
  animation: menu-open 1s;
}
.menu_vertical ul.hidden {
  max-height: 0px;
}
