.tab-container {
  margin: 32px auto;
  max-width: 980px;
}
.tab-container .tab-items ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #1a76b8;
}
.tab-container .tab-items li {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7;
  padding: 16px;
  position: relative;
}
.tab-container .tab-items li.tab-selected:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1a76b8;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.articlecontainer {
  margin: 16px auto;
  max-width: 980px;
}
.articlecontainer ol {
  list-style-type: none;
  padding: 0;
}
.articlecontainer ol li {
  margin: 16px;
  padding-bottom: 16px;
}
.articlecontainer ol li:not(:first-child) {
  border-top: 1px solid #ebeff2;
}
.articlecontainer article .article_heading {
  font-size: 1.25rem;
  line-height: 1.25;
  color: #1a76b8;
}
.articlecontainer article .article_link_read_more a {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  padding: 0.45rem 1rem;
  border: none;
  border-radius: 0.125rem;
  background: #1a76b8;
  transition: all 0.25s ease-in-out;
}
.articlecontainer article .article_link_read_more a:hover {
  color: #fff;
  background: #274b7c;
  box-shadow: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease-in-out;
}