/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* Skin */
.ui-tabs-nav, .ui-tabs-panel {}
.ui-tabs-nav {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 16px;
  padding: 0;
  border-bottom: 1px solid #c6c6c6;
  font-size: 14px;
  line-height: 1.2857;
  list-style: none;
}
.ui-tabs-nav > li {
  display: flex;
  margin-bottom: -1px;
  text-align: center;
}
.ui-tabs-nav > li + li {
  margin-left: 2px;
}
.ui-tabs-nav > li:first-child {
  margin-left: 0 !important;
}
.ui-tabs-nav > li > a {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  padding: 12px 6px 12px;
  border: 1px solid #c6c6c6;
  border-bottom-color: transparent;
  font-weight: bold;
  text-decoration: none;
  cursor:pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.news_yearlinks.fit > li {
  flex-grow: 1;
}
.ui-tabs-nav > li.ui-tabs-selected > a {
  padding-top: 9px;
  border-top: 4px solid #005bac;
  background-color: #f3f4f5;
}

.ui-tabs-disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.ui-tabs-panel {}

.ui-tabs-loading em {
  padding: 0 0 0 20px;
  background: url(loading.gif) no-repeat 0 50%;
}