<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.bl_tabPanel {
  margin-top: 20px
}

.bl_tabPanel_tabGroup {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 2px #C0D1F2;
}

.bl_tabPanel_tab {
  flex-basis: 49.5%;
  padding: 5px;
  list-style: none;
  border-top: solid 2px #102B88;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  background-color: #EDEDED;
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 30px;
}

.bl_tabPanel_tab.tabA {
  background-image: url(../image/icon_download_gray.png);
}
.bl_tabPanel_tab.tabA.is-active, .bl_tabPanel_tab.tabA:hover {
  background-image: url(../image/icon_download_blue.png);
}
.bl_tabPanel_tab.tabB {
  background-image: url(../image/icon_piece_gray.png);
}
.bl_tabPanel_tab.tabB.is-active, .bl_tabPanel_tab.tabB:hover {
  background-image: url(../image/icon_piece_blue.png);
}

.bl_tabPanel_tab:hover {
  background-color: #C0D1F2;
  transition: all 0.4s ease-out;
}

.bl_tabPanel_panelGroup {
  border-top:none;
}

.bl_tabPanel_panel {
  display:none;
  padding: 10px 0;
}

.bl_tabPanel_tab.is-active {
  background-color: #C0D1F2;
  transition: all 0.4s ease-out;
}

.bl_tabPanel_panel.is-show {
  display:block;
}</pre></body></html>