@charset "utf-8";
/* CSS Document */
input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
    display: block;
    font-size: 1rem;
    text-align: left;
    padding-top: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
    color: #fff;
    background: #0054a4;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.25s ease-out;
    margin-top: 7px;
    height: auto;
    font-family: "Myriad Pro", "Open Sans", sans-serif;
    z-index: 1;
    position: static;
}

.lbl-toggle:hover {
    color: #fff;
    background: #003E79;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;

  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.collapsible-content .content-inner {
    background: #fff;
	position: relative;
    padding: .25rem .5rem;
    overflow: auto;
	/* z-index: -1 */
}

.collapsible-content .content-inner-button {
    position: relative;
    padding: .25rem .5rem;
    z-index: 2;
}

.collapsible-content {
  max-height: 0px;
  overflow: auto;
  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.toggle:checked + .btn-toggle + .collapsible-content {
  max-height: 100vh;
}

.toggle:checked + .btn-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .btn-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-toggle {
    display: block;
    font-size: .75rem;
    text-align: left;
    padding-top: 0.25rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.25rem;
    color: #fff;
    background: #0054a4;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.25s ease-out;
    height: auto;
    font-family: "Myriad Pro", "Open Sans", sans-serif;
    z-index: 1;
    position: static;
}

.btn-toggle:hover {
    color: #fff;
    background: #003E79;
}

.btn-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;

  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

div.gallery {
  margin: 5px;
  float: left;
  width: 25%;
}

div.gallery img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

div.desc {
  padding: 8px;
  text-align: center;
}

th {
    background-color: #FFF;
    font-weight: normal;
}

tr:nth-child(even) td.rsc {
	background-color: #D4E0FF;
}

tr:nth-child(odd) td.rsc {
	background-color: #BFD1FF;
}

table, th, td.rsc {
    padding: 5px;
    text-align: center;
    font-size: small;
}
