.auto-style-1 {
  background-color: #1d3684
}

.auto-style-2 {
  display: block
}

.auto-style-3 {
  color: #003300
}

.auto-style-4 {
  color: #008080
}

/* Extracted <style> blocks */
.bucket {
  margin: 50px auto;
  padding: 0 20px;
}

.tab {
  overflow: hidden;
  background-color: #1d3684;
  border: 3px solid #1d3684;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #fff;
  font-weight: bold;
}

.tab button:hover,
.tab button:focus {
  background-color: rgb(81, 81, 81);
}

.tab button.active {
  background-color: rgb(81, 81, 81);
}

.tabcontent {
  display: none;
  padding: 20px;
  border: 3px solid #1d3684;
  border-top: none;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.tabcontent.is-active {
  display: block;
}

.job-box {
  border: 1px solid #ccc;
  padding: 0 20px;
  margin-top: -10px;
  margin-bottom: 20px;
}

.job-box a {
  text-decoration: underline;
}

.cover {
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.cover a {
  color: #1d3684 !important;
  text-decoration: underline;
}

@media only screen and (max-width: 700px) {
  .tab {
    grid-template-columns: 1fr;
  }

  .tab button {
    text-align: left;
  }
}