﻿/* https://maketintsandshades.com/ */
/* default path to the _shared directory */
/* ------------------------------------------------------------------------- */
/* style of basic elements                                                   */
/* ------------------------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  height: 100%;
  font-size: 16px; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

body {
  background-color: #597412;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
  color: black;
  margin: 0px 0px 40px 0px;
  overflow: hidden;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

div#panelWrapper {
  overflow-y: scroll;
  height: 100%; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* style of divs for panels, ...                                             */
/* ------------------------------------------------------------------------- */
div.TEXT {
  width: 990px;
  margin: 0px auto 5px auto;
  padding: 10px 60px 30px 60px;
  border: 1px solid #95C11E;
  border-radius: 0px;
  background: white;
  /* Fallback for web browsers that don't support RGBa */
  background: rgba(255, 255, 255, 0.9);
  /* RGBa with 0.6 opacity */ }

div.BLANK {
  width: 990px;
  margin: 0px auto 5px auto;
  padding: 0px;
  border: 1px solid #95C11E;
  border-radius: 0px;
  background: transparent;
  height: auto;
  overflow: visible; }

div.DIALOG {
  display: none;
  padding: 20px; }

div.waitingOverlay {
  position: fixed;
  display: none;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6) url(../../../_shared/img/loading.svg) 50% 50% no-repeat;
  z-index: 20000; }

div.cookieInfo {
  z-index: 10000;
  position: fixed;
  text-align: center;
  margin: 0px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px solid black;
  background-color: white;
  font-size: 1rem;
  padding: 1rem; }

div.adjustHeight {
  position: relative; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* styling elements by classes                                               */
/* ------------------------------------------------------------------------- */
.changed {
  color: #bd1d1d; }

.highlight {
  font-weight: bold;
  background-color: #D5E6A5 !important;
  color: black !important; }

.missing, .invalid {
  outline-style: solid;
  outline-width: 1px;
  outline-offset: 0px;
  outline-color: #bd1d1d; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* style of headlines, paragraphs, lists, tables, images, etc                */
/* ------------------------------------------------------------------------- */
h1 {
  color: #779A18;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0px;
  margin: 1rem 0rem 0.5rem 0rem; }

h2 {
  color: #779A18;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1rem 0rem 0.5rem 0rem; }

h3 {
  color: #779A18;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1rem 0rem 0.1rem 0rem; }

h4 {
  color: #779A18;
  font-size: 1.15rem;
  font-weight: bold;
  margin: 0.8rem 0rem 0rem 0rem; }

h5 {
  color: #779A18;
  font-size: 1.15rem;
  font-weight: bold;
  margin: 0.7rem 0rem 0rem 0rem; }

p {
  font-size: 1.15rem;
  line-height: 1.4rem;
  text-align: left;
  margin: 0.75rem 0rem 0.25rem 0rem; }
  p.mini {
    font-size: 1rem; }

a:link {
  color: #95C11E; }

a:visited {
  color: #779A18; }

a:hover {
  color: #B5D462; }

a:active {
  color: #597412; }

ul li, ol li {
  font-size: 1.15rem;
  line-height: 1.4rem;
  text-align: left;
  margin: 0.75rem 0rem 0.25rem 0rem; }

ul.mini li, ol.mini li {
  font-size: 1rem;
  margin-bottom: 0.25rem; }

hr {
  border-top: 1px solid #aaaaaa; }

img {
  padding: 0px;
  margin: 0px;
  display: block;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
  img.border {
    border: 1px solid #888888; }

div.zoomImg {
  position: relative;
  overflow: hidden; }
  div.zoomImg div.photo {
    cursor: zoom-in;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform .5s ease-out; }
  div.zoomImg.border {
    border: 1px solid #888888; }

table {
  margin: 0px;
  padding: 0px;
  border-collapse: collapse;
  table-layout: fixed;
  display: block; }
  table tr {
    margin: 0px;
    padding: 0px; }
    table tr th {
      font-size: 1.15rem;
      padding: 0px; }
    table tr td {
      font-size: 1.1rem;
      line-height: 1.2rem;
      padding: 0px; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* inputs                                                           */
/* ------------------------------------------------------------------------- */
input, select, textarea {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.15rem;
  height: 1.75rem;
  margin-bottom: 3px;
  padding: 0px 4px 0px 4px; }

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: none; }

select {
  padding: 0px 0px 0px 0px; }

button:not([class*="slim"]) {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.15rem;
  height: 2.2rem;
  margin: 1px;
  border-radius: 7px;
  outline: none;
  background-color: #95C11E;
  box-shadow: inset 0 0 0 1px #779A18;
  color: white; }
  button:not([class*="slim"]):disabled {
    background-color: #dddddd;
    background: -webkit-linear-gradient(top, #dddddd, #dddddd);
    background: -o-linear-gradient(top, #dddddd, #dddddd);
    background: -moz-linear-gradient(top, #dddddd, #dddddd);
    background: linear-gradient(top, #dddddd, #dddddd);
    color: #888888;
    box-shadow: none; }
  button:not([class*="slim"]):enabled:hover {
    background-color: #597412;
    background: -webkit-linear-gradient(top, #D5E6A5, #95C11E);
    background: -o-linear-gradient(top, #D5E6A5, #95C11E);
    background: -moz-linear-gradient(top, #D5E6A5, #95C11E);
    background: linear-gradient(top, #D5E6A5, #95C11E);
    box-shadow: inset 0 0 0 1px #597412, 0 5px 15px #597412; }
  button:not([class*="slim"]):enabled:active {
    background-color: #00a5c0;
    background: -webkit-linear-gradient(top, #95C11E, #95C11E);
    background: -o-linear-gradient(top, #95C11E, #95C11E);
    background: -moz-linear-gradient(top, #95C11E, #95C11E);
    background: linear-gradient(top, #95C11E, #95C11E);
    box-shadow: inset 0 0 0 1px #597412; }

label.checkbox {
  position: relative;
  display: inline;
  margin-left: 0.5rem;
  padding-left: 1.4rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: normal;
  cursor: pointer; }
  label.checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
    label.checkbox input:checked ~ .indicator {
      background: #95C11E; }
      label.checkbox input:checked ~ .indicator:after {
        content: '\2713';
        left: -2px;
        top: -2px; }
    label.checkbox input:not(:checked) ~ .indicator:after {
      content: ''; }
    label.checkbox input:disabled:not(:checked) ~ .indicator {
      pointer-events: none;
      opacity: .6;
      background: #e6e6e6; }
      label.checkbox input:disabled:not(:checked) ~ .indicator:after {
        border-color: #aaaaaa; }
    label.checkbox input:disabled:checked ~ .indicator:after {
      border-color: #aaaaaa;
      color: #dddddd;
      content: '\2713'; }
  label.checkbox span {
    position: absolute;
    top: 0.1rem;
    left: 0;
    width: 1.15rem;
    height: 1.15rem;
    background: #fff;
    border: 2px solid #888888; }
    label.checkbox span.indicator:after {
      position: absolute;
      width: 1.15rem;
      line-height: 1.15rem;
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: bold;
      text-align: center;
      color: white;
      display: block;
      content: ''; }
  label.checkbox:hover input:not([disabled]) ~ .indicator {
    outline-style: solid;
    outline-width: 2px;
    outline-offset: 1px;
    outline-color: #95C11E; }
  label.checkbox:hover input:not([disabled]):checked ~ .indicator {
    background: #95C11E; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* style of widgets                                                          */
/* ------------------------------------------------------------------------- */
.ui-widget {
  font-family: 'Roboto Condensed', sans-serif; }
  .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.15rem; }

.ui-widget-overlay {
  background: black;
  opacity: 0.6; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* style of dialog boxes, MessageBoxes + TitleBoxes                          */
/* ------------------------------------------------------------------------- */
.ui-dialog {
  padding: 0px; }
  .ui-dialog .ui-dialog-titlebar {
    padding: .15rem .6rem;
    margin: 0px;
    font-size: 1.3rem;
    line-height: 1.4rem;
    background-color: #95C11E;
    background: -webkit-linear-gradient(top, #779A18, #B5D462);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(top, #779A18, #B5D462);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(top, #779A18, #B5D462);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(top, #779A18, #B5D462);
    /* Standard syntax */
    color: #ffffff; }
  .ui-dialog .ui-dialog-titlebar-close {
    visibility: hidden; }
  .ui-dialog .ui-dialog-buttonset button {
    min-width: 5rem; }

.ui-dialog.MessageBox {
  border: 2px solid #95C11E;
  border-radius: 7px;
  border: 2px solid #aaaaaa;
  overflow: hidden; }
  .ui-dialog.MessageBox .ui-dialog-titlebar {
    display: none; }
  .ui-dialog.MessageBox .ui-dialog-buttonpane {
    border: none;
    padding: 0rem 2rem 0.5rem 2rem;
    margin-top: 0px; }
  .ui-dialog.MessageBox .ui-dialog-content {
    font-size: 1.15rem;
    padding: 0.7rem 2rem 0.7rem 2rem; }

.ui-dialog.TitleBox {
  border: 2px solid #95C11E;
  border-radius: 7px;
  border: 2px solid #aaaaaa;
  overflow: hidden; }
  .ui-dialog.TitleBox .ui-dialog-buttonpane {
    border: none;
    padding: 0rem 2rem 0.5rem 2rem;
    margin-top: 0px; }
  .ui-dialog.TitleBox .ui-dialog-content {
    font-size: 1.15rem;
    padding: 0.7rem 2rem 0.7rem 2rem; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* style of list tables                                                      */
/* ------------------------------------------------------------------------- */
table.list {
  color: black;
  border-collapse: collapse;
  border: none;
  margin-top: 0.1rem, 0.1rem, 0.1rem, 0.1rem; }
  table.list > tbody > tr {
    color: black; }
    table.list > tbody > tr > td {
      font-size: 1.1rem;
      line-height: 1.2rem;
      padding: 0.2rem 0.2rem 0.2rem 0.2rem;
      border: 1px solid #aaaaaa;
      overflow: hidden; }
    table.list > tbody > tr td.center {
      text-align: center; }
    table.list > tbody > tr td.right {
      text-align: right;
      padding-right: 0.2em; }
    table.list > tbody > tr td.left {
      text-align: left;
      padding-left: 0.2em; }
    table.list > tbody > tr td.bottomSeparator {
      border-top: 3px solid black; }
    table.list > tbody > tr > th {
      background-color: #95C11E;
      border: 1px solid #aaaaaa;
      color: white;
      position: relative;
      font-size: 1.2rem;
      line-height: 1.1rem;
      height: 2.2rem;
      padding: 0px;
      margin: 0px;
      overflow: visible;
      text-align: center; }
      table.list > tbody > tr > th button {
        font-size: 1.2rem;
        font-weight: bold;
        border-radius: 0px;
        width: 100%;
        height: 2.4rem;
        margin: 0px;
        cursor: pointer;
        padding: 0px;
        border: none; }
  table.list tr:not(.highlight) td.sorted {
    background-color: #EAF3D2; }
  table.list tr.listRow.selectable:hover {
    outline: 2px solid #95C11E; }
    table.list tr.listRow.selectable:hover td {
      cursor: pointer;
      background-color: #D5E6A5; }
  table.list tr.listSum {
    border-top: 2px solid #888888;
    border-bottom: 2px solid #888888;
    font-weight: bold; }
    table.list tr.listSum td {
      font-size: 1.15rem;
      background-color: #95C11E;
      color: white;
      height: 2rem; }
  table.list tr.listRowEmpty {
    text-align: center;
    height: 2rem; }
  table.list tr.message td {
    font-size: 1.2rem;
    padding: 0.8rem, 0rem, 0.8rem, 0rem;
    text-align: center; }
  table.list tr.disabled td {
    color: #888888; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* styles for slim images                                                    */
/* ------------------------------------------------------------------------- */
div.slim .slim-btn {
  position: relative !important;
  padding: 0 !important;
  margin: 0 7.2px !important;
  font-size: 0 !important;
  outline: none !important;
  width: 36px !important;
  height: 36px !important;
  border: none !important;
  color: #fff !important;
  border-radius: 50% !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  background-repeat: no-repeat !important;
  background-size: 50% 50% !important;
  background-position: center center !important; }

div.slim .slim-btn:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
  background-repeat: no-repeat !important;
  background-size: 50% 50% !important;
  background-position: center center !important;
  box-shadow: none !important;
  color: #fff !important; }

div.slim .slim-btn-group {
  padding-bottom: 10px !important; }

div.slim .slim-label p {
  text-align: center; }

div.slim .slim-result img {
  display: block;
  border: 1px solid #888888; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* resize the controls of a google map                                       */
/* ------------------------------------------------------------------------- */
.gmnoprint, .gm-fullscreen-control {
  transform: scale(0.8) !important; }

button.gm-control-active {
  box-shadow: none !important;
  border-radius: 0px; }

button.gm-control-active:hover {
  box-shadow: none !important; }

.gm-bundled-control-on-bottom {
  right: 30px !important;
  bottom: 70px !important; }

/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
div.stdInfoBox {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin: 5px;
  padding: 0px;
  font-family: "Roboto Condensed";
  opacity: 0.95;
  background-color: #EAF3D2;
  border: 1px solid #779A18; }
  div.stdInfoBox table {
    font-family: "Roboto Condensed";
    border-collapse: collapse; }
    div.stdInfoBox table th {
      font-size: 1.2rem;
      padding: 0.3rem 0.5rem 0.3rem 0.5rem;
      font-weight: bold; }
    div.stdInfoBox table td {
      font-size: 1rem;
      padding: 0.2rem 0.5rem 0.2rem 0.5rem;
      line-height: 1.1rem; }
    div.stdInfoBox table td.separator {
      padding: 0px;
      height: 1rem;
      position: relative; }
    div.stdInfoBox table td.separator:after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background-color: #888888;
      position: absolute;
      top: 50%; }

/* ------------------------------------------------------------------------- */
.message {
  color: #bd1d1d; }

.attention {
  color: red;
  font-weight: bold; }

/* ------------------------------------------------------------------------- */
.galleria-theme-bikebird {
  background-color: rgba(255, 255, 255, 0.9); }

/* ------------------------------------------------------------------------- */
/* https://maketintsandshades.com/ */
/* ------------------------------------------------------------------------- */
/* main menu panel                                                           */
/* ------------------------------------------------------------------------- */
div#menuMainPanel {
  position: relative;
  margin-top: 25px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  background-color: #95C11E; }
  div#menuMainPanel a {
    margin: 0px;
    display: block;
    font-size: 1.15rem;
    white-space: nowrap;
    background: transparent;
    color: #D5E6A5;
    padding: 3px 22px 3px 22px; }
    div#menuMainPanel a:hover {
      text-decoration: none;
      cursor: pointer; }
      div#menuMainPanel a:hover span {
        border-bottom: 2px solid #D5E6A5; }
    div#menuMainPanel a.selected:not(.disabled) {
      background-color: rgba(255, 255, 255, 0.8);
      color: #597412; }
    div#menuMainPanel a.selected:hover span {
      border-bottom: 2px solid #597412; }
    div#menuMainPanel a.separator {
      border-right: 1px solid #D5E6A5; }
    div#menuMainPanel a.disabled {
      background-color: rgba(255, 255, 255, 0);
      color: #cccccc; }
    div#menuMainPanel a.menuMainSubItem {
      margin: 5px 0px 0px 0px;
      font-size: 1rem;
      color: #D5E6A5;
      padding: 3px 5px 3px 5px; }
  div#menuMainPanel div.stdDropDownList {
    font-family: "Roboto Condensed";
    font-weight: normal;
    font-size: 1rem;
    padding: 2px 3px 2px 3px;
    color: #D5E6A5;
    outline: 1px solid #D5E6A5; }
    div#menuMainPanel div.stdDropDownList.active {
      background-color: #95C11E;
      color: white; }
    div#menuMainPanel div.stdDropDownList:hover span {
      border-bottom: 2px solid #D5E6A5; }
    div#menuMainPanel div.stdDropDownList ul {
      background-color: #95C11E;
      color: white; }
      div#menuMainPanel div.stdDropDownList ul li {
        font-family: "Roboto Condensed";
        font-weight: normal;
        font-size: 1rem;
        line-height: 1.5rem;
        padding-left: 0.2rem; }
        div#menuMainPanel div.stdDropDownList ul li:hover {
          background-color: rgba(255, 255, 255, 0.3); }

table#mMSelect td {
  padding-left: 0.4rem; }

/* https://maketintsandshades.com/ */
/* ----------------------------------------------------------------------- */
/* drop down list                                                          */
/* ----------------------------------------------------------------------- */
div.schoolSelector {
  position: relative;
  display: table;
  height: 3rem;
  margin: 0px;
  font-size: 1.15rem;
  font-weight: normal;
  border-radius: 7px;
  outline: none;
  color: white;
  text-align: center;
  z-index: 10;
  background-color: #95C11E;
  box-shadow: inset 0 0 0 1px #779A18; }
  div.schoolSelector:hover {
    background-color: #597412;
    background: -webkit-linear-gradient(top, #D5E6A5, #95C11E);
    background: -o-linear-gradient(top, #D5E6A5, #95C11E);
    background: -moz-linear-gradient(top, #D5E6A5, #95C11E);
    background: linear-gradient(top, #D5E6A5, #95C11E);
    box-shadow: inset 0 0 0 1px #597412, 0 5px 15px #597412; }
  div.schoolSelector.stdDropDownList.active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; }
  div.schoolSelector.stdDropUpList.active {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px; }
  div.schoolSelector.active:after {
    border-color: #ffffff transparent; }
  div.schoolSelector span {
    display: table-cell;
    vertical-align: middle; }
  div.schoolSelector ul {
    margin-top: 0px;
    font-size: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
    color: black;
    max-height: 16rem;
    border: 2px solid #aaaaaa; }
    div.schoolSelector ul li {
      font-family: "Roboto Condensed";
      line-height: 1.6rem;
      padding-left: 0.2rem;
      border-bottom: 1px dotted #aaaaaa;
      padding-top: 0.2rem; }
      div.schoolSelector ul li:not(.disabled):hover {
        background-color: #D5E6A5; }
      div.schoolSelector ul li.divider {
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 1.8rem; }
      div.schoolSelector ul li.disabled {
        background-color: #dddddd; }
        div.schoolSelector ul li.disabled:hover {
          cursor: not-allowed; }
      div.schoolSelector ul li.country {
        border-top: 1px solid #aaaaaa;
        font-weight: bold;
        padding-left: 0.2rem; }
      div.schoolSelector ul li.province {
        padding-left: 0.8rem; }
      div.schoolSelector ul li.school {
        padding-left: 1.4rem; }
      div.schoolSelector ul li.cluster {
        padding-left: 1.4rem; }
  div.schoolSelector.stdDropUpList ul {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; }

/* ------------------------------------------------------------------------- */
/* https://maketintsandshades.com/ */
/* ----------------------------------------------------------------------- */
/* drop down list                                                          */
/* ----------------------------------------------------------------------- */
div.dropDownList, div.dropUpList {
  font-size: 1.2rem;
  color: #779A18;
  outline: 1px solid #779A18; }
  div.dropDownList:after, div.dropUpList:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #95C11E; }
  div.dropDownList.active, div.dropUpList.active {
    background-color: #EAF3D2;
    color: #779A18; }
    div.dropDownList.active:after, div.dropUpList.active:after {
      border-color: #95C11E transparent;
      border-width: 6px 6px 0 6px;
      margin-top: -3px; }
  div.dropDownList:hover span, div.dropUpList:hover span {
    border-bottom: 2px solid #779A18; }
  div.dropDownList ul, div.dropUpList ul {
    background-color: #EAF3D2;
    border: 1px solid #95C11E;
    color: #779A18;
    margin-top: 3px; }
    div.dropDownList ul li, div.dropUpList ul li {
      font-size: 1.1rem;
      margin: 0px;
      padding: 0.1rem 0.2rem 0.1rem 0.2rem; }
      div.dropDownList ul li:hover, div.dropUpList ul li:hover {
        background-color: white;
        color: #597412; }

body {
  background-color: #B3D3DA;
  background-image: url("../../_shared/img/background.jpg"); }

div#menuMainPanel {
  background-image: url("../../_shared/img/header.jpg");
  height: 220px; }
  div#menuMainPanel a.menuMainItem {
    padding: 2px 8px 2px 8px;
    font-size: 1.1rem; }
  div#menuMainPanel a.menuMainSubItem {
    font-size: 1rem;
    padding: 3px 5px 3px 5px; }
  div#menuMainPanel .stdDropDownList {
    color: white !important;
    outline: 1px solid white !important; }

li.puzzle + .tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100); }

li.puzzle + .tooltip > .tooltip-inner {
  background-color: #95C11E;
  opacity: 1;
  color: #FFFFFF;
  border: 2px solid #AECC52;
  padding: 15px;
  overflow: hidden;
  max-width: none; }

li.puzzle + .tooltip > .tooltip-inner table {
  font-family: "Roboto Condensed";
  font-size: 0.8rem;
  white-space: nowrap; }

li.puzzle + .tooltip > .tooltip-inner td {
  text-align: left;
  white-space: nowrap; }

li.puzzle + .tooltip > .tooltip-inner th {
  text-align: left;
  padding-right: 1rem;
  font-weight: bold;
  white-space: nowrap; }

div#menuMainPanel {
  background-color: rgba(255, 255, 255, 0.8);
  height: 252px; }
  div#menuMainPanel div.logo {
    position: absolute;
    top: 5px;
    left: 60px; }
    div#menuMainPanel div.logo img {
      height: 190px; }
  div#menuMainPanel div.headline {
    position: absolute;
    top: 134px;
    left: 60px; }
  div#menuMainPanel div.menu {
    background-color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid #EAF3D2;
    position: absolute;
    top: 215px;
    width: 100%;
    bottom: 0px; }
    div#menuMainPanel div.menu a {
      padding: 0px;
      background-color: transparent !important; }
      div#menuMainPanel div.menu a.separator {
        border-right: 1px solid #779A18; }
      div#menuMainPanel div.menu a span {
        color: #597412;
        border-bottom: 2px solid transparent; }
        div#menuMainPanel div.menu a span:hover {
          border-bottom: 2px solid #3C4D0C;
          color: black; }
      div#menuMainPanel div.menu a.selected span {
        background-color: transparent;
        color: #3C4D0C;
        border-bottom: 2px solid #3C4D0C;
        font-weight: bold; }
        div#menuMainPanel div.menu a.selected span:hover {
          border-bottom: 2px solid #3C4D0C;
          color: #3C4D0C; }
      div#menuMainPanel div.menu a.menuMainItem {
        font-size: 1.15rem; }
        div#menuMainPanel div.menu a.menuMainItem span {
          padding: 0px 0px 2px 0px;
          margin: 2px 20px 2px 20px; }
          div#menuMainPanel div.menu a.menuMainItem span.left {
            margin-left: 0px; }
          div#menuMainPanel div.menu a.menuMainItem span.right {
            margin-right: 0px; }
      div#menuMainPanel div.menu a.menuMainSubItem {
        font-size: 1rem; }
        div#menuMainPanel div.menu a.menuMainSubItem span {
          padding: 0px 0px 2px 0px;
          margin: 2px 12px 2px 12px; }
