/* CSS Document */
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
}
.tab-wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  border-bottom: 3px solid #005e06;
}
.tab-wrap ul li {
  width: 16%;
  color: White;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  padding: 5px 0;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 5px;
}
.tab-wrap ul li.slct {
  background: #005e06;
}

.tab-label {
  width: 16%;
  color: White;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  padding: 5px 0;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 5px;
}

.tab-label:not(:last-of-type) {
  margin-right: 0.5%;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tab-switch:checked + .tab-label {
  background: #005e06;
}

.tab-content.show {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  background: #fff;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.tab-switch {
  display: none;
}

table {
  width: 100%;
}

table th,
table td {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #CCC;
  padding: 10px;
  word-wrap: break-word;
}

table th {
  font-size: 14px;
  white-space: normal;
  font-weight: bold;
  letter-spacing: 1px;
  background-color: #005c2f;
  color: #FFF;
  width: 25%;
}

table td {
  font-size: 14px;
  line-height: 1.3em;
  background-color: #FFF;
}

table .event {
  width: 60%;
}

table .date {
  width: 15%;
  text-align: center;
}
