<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* -----------------------------------------------------------------------------

  BOX SIZING RESET

----------------------------------------------------------------------------- */
.ib-tab-tabs *,
.ib-tab-tabs *::before,
.ib-tab-tabs *::after,
.ib-tab-contents *,
.ib-tab-contents *::before,
.ib-tab-contents *::after,
.ib-context-menu *,
.ib-context-menu *::before,
.ib-context-menu *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.ib-tab-tabs, .ib-tab-tabs::before, .ib-tab-tabs::after,
.ib-tab-contents,
.ib-tab-contents::before,
.ib-tab-contents::after,
.ib-context-menu,
.ib-context-menu::before,
.ib-context-menu::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/
.ib-tab-tabs {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (doesn't work very well) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  position: relative;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: flex-end;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0 0;
  height: auto;
  width: 100%;
  visibility: hidden; }
  .ib-tab-tabs .ib-tab-tabs-item {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (doesn't work very well) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: flex-end;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    overflow: -moz-hidden-unscrollable;
    overflow-y: hidden; }
    .ib-tab-tabs .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link {
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (doesn't work very well) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex: none;
      -ms-flex: none;
      flex: none;
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -moz-box-orient: horizontal;
      -webkit-box-lines: single;
      -moz-box-lines: single;
      -webkit-flex-wrap: nowrap;
      flex-wrap: nowrap;
      flex-flow: row nowrap;
      -webkit-align-items: center;
      -webkit-box-align: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
      justify-content: space-around;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      margin-left: 0px;
      margin-right: 0px;
      padding: 0px 6px 0px 6px;
      text-align: center;
      text-align: center;
      border: rgba(255, 255, 255, 0) 1px solid;
      color: rgba(255, 255, 255, 0);
      border-radius: 0px 0px 0px 0px;
      cursor: pointer;
      z-index: 0; }
      .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        cursor: default !important; }
      .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 1px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0; }
      .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px; }
      .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px; }
      .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }
  .ib-tab-tabs .flex-10 {
    -webkit-box-ordinal-group: 10 !important;
    -moz-box-ordinal-group: 10 !important;
    -ms-flex-order: 10 !important;
    -webkit-order: 10 !important;
    order: 10 !important; }
  .ib-tab-tabs .flex-9 {
    -webkit-box-ordinal-group: 9 !important;
    -moz-box-ordinal-group: 9 !important;
    -ms-flex-order: 9 !important;
    -webkit-order: 9 !important;
    order: 9 !important; }
  .ib-tab-tabs .flex-8 {
    -webkit-box-ordinal-group: 8 !important;
    -moz-box-ordinal-group: 8 !important;
    -ms-flex-order: 8 !important;
    -webkit-order: 8 !important;
    order: 8 !important; }
  .ib-tab-tabs .flex-7 {
    -webkit-box-ordinal-group: 7 !important;
    -moz-box-ordinal-group: 7 !important;
    -ms-flex-order: 7 !important;
    -webkit-order: 7 !important;
    order: 7 !important; }
  .ib-tab-tabs .flex-6 {
    -webkit-box-ordinal-group: 6 !important;
    -moz-box-ordinal-group: 6 !important;
    -ms-flex-order: 6 !important;
    -webkit-order: 6 !important;
    order: 6 !important; }
  .ib-tab-tabs .flex-5 {
    -webkit-box-ordinal-group: 5 !important;
    -moz-box-ordinal-group: 5 !important;
    -ms-flex-order: 5 !important;
    -webkit-order: 5 !important;
    order: 5 !important; }
  .ib-tab-tabs .flex-4 {
    -webkit-box-ordinal-group: 4 !important;
    -moz-box-ordinal-group: 4 !important;
    -ms-flex-order: 4 !important;
    -webkit-order: 4 !important;
    order: 4 !important; }
  .ib-tab-tabs .flex-3 {
    -webkit-box-ordinal-group: 3 !important;
    -moz-box-ordinal-group: 3 !important;
    -ms-flex-order: 3 !important;
    -webkit-order: 3 !important;
    order: 3 !important; }
  .ib-tab-tabs .flex-2 {
    -webkit-box-ordinal-group: 2 !important;
    -moz-box-ordinal-group: 2 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
    order: 2 !important; }
  .ib-tab-tabs .flex-1 {
    -webkit-box-ordinal-group: 1 !important;
    -moz-box-ordinal-group: 1 !important;
    -ms-flex-order: 1 !important;
    -webkit-order: 1 !important;
    order: 1 !important; }
  .ib-tab-tabs .flex-0 {
    -webkit-box-ordinal-group: 0 !important;
    -moz-box-ordinal-group: 0 !important;
    -ms-flex-order: 0 !important;
    -webkit-order: 0 !important;
    order: 0 !important; }

/**
* Contents
*/
.ib-tab-contents {
  position: relative;
  width: 100%;
  top: 0px;
  border: rgba(255, 255, 255, 0) 1px solid;
  height: 100%;
  overflow: hidden;
  visibility: hidden; }
  .ib-tab-contents .ib-tab-contents__item {
    visibility: hidden;
    padding: 0;
    border: 0;
    height: 0;
    overflow: auto;
    overflow-y: hidden; }
    .ib-tab-contents .ib-tab-contents__item.is-active {
      visibility: visible;
      overflow-y: auto;
      height: 100%; }
    .ib-tab-contents .ib-tab-contents__item.is-split {
      visibility: visible;
      border: 1px solid #000 !important;
      height: inherit;
      -ms-flex-item-align: stretch !important;
      -webkit-align-self: stretch !important;
      align-self: stretch !important; }
  .ib-tab-contents.is-split {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (doesn't work very well) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-flow: row wrap;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-justify-content: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }

/**
 * customZone
 */

.ib-tab-tabs .ib-tab-cus {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: none;
    flex: none;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: flex-end;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    list-style: none;
    margin-right: 0;
    margin-left: auto;
    padding: 0;
    width: 200px;
    height: inherit;
    max-width: inherit;
    -ms-overflow-style: none;
    overflow: hidden;
    white-space: nowrap}
  .ib-tab-tabs .ib-tab-cus.to-big {
    -webkit-flex: initial;
    -ms-flex: 0 1 auto;
    flex: initial;
    min-width: 10px; }
  .ib-tab-tabs .ib-tab-cus.is-hidden, .ib-tab-tabs .ib-tab-cus.is-disable {
    width: 0px !important;
    min-width: 0px !important;
    height: 0px !important;
    min-height: 0px !important;
    display: none !important; }

/**
* Context Menu
*/
.ib-context-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  padding: 3px 0;
  width: 200px; }
  .ib-context-menu.is-active {
    display: block;
    overflow: auto;
    overflow-x:hidden }
  .ib-context-menu .ib-context-menu__items {
    list-style: none;
    margin: 0;
    padding: 0; }
    .ib-context-menu .ib-context-menu__items .ib-context-menu__item {
      display: block;
      margin-bottom: 2px; }
      .ib-context-menu .ib-context-menu__items .ib-context-menu__item:last-child {
        margin-bottom: 0; }
      .ib-context-menu .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
        display: block;
        padding: 0px 4px;
        text-decoration: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; }

/**
* DropDown Menu
*/
.ib-tab-tabs .ib-tab-tabs-dropdown {
  position: relative;
  display: none; }
  .ib-tab-tabs .ib-tab-tabs-dropdown.is-active {
    display: inline-block; }
  .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (doesn't work very well) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: flex-end;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    list-style: none;
    margin: 0;
    padding: 0; }
    .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
      color: rgba(255, 255, 255, 0);
      opacity: 1;
      margin-left: 2px;
      margin-bottom: 1px;
      padding: 0px 1.5px 0px 1.5px;
      pointer-events: none;
      cursor: default;
      text-align: center;
      z-index: 2; }
      .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
        opacity: 1;
        pointer-events: auto;
        cursor: pointer; }
      .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
        border-radius: 0px 0px 0px 0px; }
      .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
        border-radius: 0px 0px 0px 0px; }
    .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
      color: rgba(255, 255, 255, 0);
      margin-left: 0px;
      margin-right: 0px;
      text-align: center;
      cursor: pointer;
      border: solid 0px;
      border-radius: 0px;
      padding: 0px 0px 0px 0px; }
  .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
    display: none;
    position: absolute;
    white-space: nowrap;
    overflow: auto;
    z-index: 9999; }
    .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents.is-active {
      display: block; }
    .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
      margin-bottom: 0; }
    .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (doesn't work very well) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex: none;
      -ms-flex: none;
      flex: none;
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -moz-box-orient: horizontal;
      -webkit-box-lines: single;
      -moz-box-lines: single;
      -webkit-flex-wrap: nowrap;
      flex-wrap: nowrap;
      flex-flow: row nowrap;
      -webkit-align-items: center;
      -webkit-box-align: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-box-pack: justify;
      -moz-box-pack: justify;
      -ms-flex-pack: justify;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      text-align: center;
      cursor: pointer;
      margin-left: 0px;
      margin-right: 0px;
      padding: 0px 6px 0px 6px;
      border-radius: 0px 0px 0px 0px;
      border-radius: 0; }
      .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-disable {
        pointer-events: none !important;
        display: none; }
      .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-hidden {
        display: none; }
    .ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-search {
      box-sizing: border-box ;
      border: none; }

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs,
.ib-tab-contents,
.ib-context-menu {
  color: #6d6d6d; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
.ib-context-menu hr.vertical,
.ib-tab-tabs.ib-tab-tabs-dropdown hr.vertical {
  border: solid #e7e7e7;
  border-width: 1px 0 0;
  height: 0;
  margin: 0;
  padding: 0; }

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs a,
.ib-context-menu a {
  color: rgba(255, 255, 255, 0);
  text-decoration: none; }

.ib-tab-tabs a:hover,
.ib-context-menu a:hover {
  color: rgba(255, 255, 255, 0); }

.ib-tab-tabs b,
.ib-tab-tabs strong,
.ib-context-menu b,
.ib-context-menu strong {
  font-weight: 700; }

.ib-tab-tabs em,
.ib-context-menu em {
  font-style: italic; }

.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 5px 2px 5px 2px;
  line-height: 1.2; }

.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 0.875rem}

.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 0.875rem}

.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-lock,
.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link i.is-disable {
  display: none; }

.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.875rem}

.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

.ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  display: block;
  font-size: 0.875rem}

.ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.813rem }

.ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock,
.ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.is-disable {
  display: none; }

.ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

/*@media all and (min-width: 720px) {
  .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 16px; }
  .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 12px; }
  .ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 16px; } }*/

.ib-errors {
  font-size: 0.813rem;
  background: #CC0000;
  color: #f1f1f1;
  line-height: 1.2;
  padding: 20px;
  white-space: pre-wrap;
  display: block;
  visibility: visible; }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents .ib-tab-contents__item.iframes {
  padding: 0rem;
  overflow: hidden; }

.ib-tab-contents .ib-tab-contents__item iframe {
  border: none;
  overflow: scroll !important;
  width: 100%;
  height: 100%;
  padding: 0rem; }




/* -----------------------------------------------------------------------------
  *****themes*******
  flat_old
  vplus_black
  vplus_gray
  bootstrap_blue
  flat_blue
  simple_blue

  simple_under_blue
  classic_blue
  material_black

*/

/* -----------------------------------------------------------------------------

  flat_old

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/
.ib-tab-tabs.ib-flat_old {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0 0;
  height: auto;
  width: 100%;
  visibility: visible;
  background-color: white; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item {
    margin: 0;
    padding: 0; }
    .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link {
      margin-left: 0px;
      margin-right: 0px;
      padding: 0px 6px 0px 6px;
      text-align: center;
      border-radius: 0px 0px 0px 0px;
      cursor: pointer;
      z-index: 0;
      color: #272727;
      border: darkgray solid 1px;
      background-color: white;
      -webkit-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active {
        color: #151515;
        border-color: darkgray;
        background-color: darkgray; }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link:hover {
        color: #272727;
        border-color: darkgray;
        background-color: darkgray; }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        color: #b3b3b3 !important;
        border-color: darkgray !important;
        background-color: white !important; }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 1px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px;
        background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(70%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* IE 10+ */
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0.15)), color-stop(100%, white));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* IE 10+ */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }

/**
* Contents
*/
.ib-tab-contents.ib-flat_old {
  position: relative;
  visibility: visible;
  top: -1px;
  border: darkgray solid 1px;
  background-color: white; }
  .ib-tab-contents.ib-flat_old .ib-tab-contents__item {
    padding: 0;
    border: 0; }
  .ib-tab-contents.ib-flat_old.animated {
    -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
    -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
    -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
    transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s; }

/**
 * customZone
 */
.ib-tab-tabs .ib-tab-cus.ib-flat_old {
  padding: 0;
  width: 200px; }
  .ib-tab-tabs .ib-tab-cus.ib-flat_old.to-big {
    min-width: 10px; }

/**
* Context Menu
*/
.ib-context-menu.ib-flat_old {
  padding: 3px 0;
  width: 200px;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }

.ib-context-menu.ib-flat_old .ib-context-menu__items {
  list-style: none;
  margin: 0;
  padding: 0; }
  .ib-context-menu.ib-flat_old .ib-context-menu__items .ib-context-menu__item {
    margin-bottom: 2px; }
    .ib-context-menu.ib-flat_old .ib-context-menu__items .ib-context-menu__item:last-child {
      margin-bottom: 0; }
    .ib-context-menu.ib-flat_old .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
      padding: 0px 4px;
      color: #272727;
      text-decoration: none; }
      .ib-context-menu.ib-flat_old .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover {
        color: #272727;
        background-color: darkgray; }

/**
* DropDown Menu
*/
.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
  opacity: 1;
  margin-left: 2px;
  margin-bottom: 1px;
  padding: 0px 1.5px 0px 1.5px;
  pointer-events: none;
  cursor: default;
  text-align: center;
  z-index: 2;
  color: #b3b3b3;
  background-color: white;
  border-color: darkgray;
  font-size: 0.813rem;
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
    opacity: 1;
    color: #151515;
    background-color: white;
    pointer-events: auto;
    cursor: pointer; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover {
    background-color: darkgray; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
    border-radius: 0px 0px 0px 0px; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
    border-radius: 0px 0px 0px 0px; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
  margin-left: 2px;
  margin-right: 2px;
  text-align: center;
  cursor: pointer;
  border: solid 0px;
  border-radius: 0px;
  padding: 0px 6px 0px 6px;
  font-size: 0.813rem;
  color: #272727;
  background-color: white;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active {
    background-color: darkgray; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover {
    background-color: darkgray; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
  right: 1px;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
    margin-bottom: 0; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
    text-align: center;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 6px 0px 6px;
    border-radius: 0px 0px 0px 0px;
    -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -moz-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -o-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    color: #272727;
    background-color: white;
    border-radius: 0; }
    .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover {
      color: #272727;
      background-color: darkgray; }
    .ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active {
      color: #151515;
      background-color: darkgray; }

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-flat_old,
.ib-tab-contents.ib-flat_old,
.ib-context-menu.ib-flat_old {
  color: #6d6d6d;
  /* font-family: "나눔고딕", NanumGothic, "Lucida Grande", "Lucida Sans Unicode", Helvetica, "애플고딕", AppleGothic, MalgunGothic, "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 12px;*/
  line-height: 1.5; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-contents.ib-flat_old h1,
.ib-tab-contents.ib-flat_old h2,
.ib-tab-contents.ib-flat_old h3,
.ib-tab-contents.ib-flat_old h4,
.ib-tab-contents.ib-flat_old h5,
.ib-tab-contents.ib-flat_old h6 {
  color: #151515; }

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-flat_old a,
.ib-context-menu.ib-flat_old a {
  color: white;
  text-decoration: none; }

.ib-tab-tabs.ib-flat_old a:hover,
.ib-context-menu.ib-flat_old a:hover {
  color: gainsboro; }

.ib-tab-tabs.ib-flat_old b,
.ib-tab-tabs.ib-flat_old strong,
.ib-context-menu.ib-flat_old b,
.ib-context-menu.ib-flat_old strong {
  font-weight: 700; }

.ib-tab-tabs.ib-flat_old em,
.ib-context-menu.ib-flat_old em {
  font-style: italic; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 5px 2px 5px 2px;
  line-height: 1.2; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 12px; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 16px; }

/*.ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  font-size: 16px; }*/

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  font-size: 14px; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 12px; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
  display: none; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

@media all and (min-width: 720px) {
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 16px; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 14px; }
  .ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px; } }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-flat_old .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-flat_old .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-flat_old .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents.ib-flat_old .ib-tab-contents__item.iframes {
  padding: 0rem; }

.ib-tab-contents.ib-flat_old .ib-tab-contents__item iframe {
  padding: 0rem; }










/* -----------------------------------------------------------------------------
  ib-vplus_black
----------------------------------------------------------------------------- */


.ib-tab-tabs.ib-vplus_black {
    list-style: none;
    margin: 0;
    padding: 0;
    height: auto;
    width: 100%;
    visibility: visible;
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item {
    margin: 0;
    padding: 0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    background: 0 0 !important
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item::-webkit-scrollbar-thumb
    {
    background: rgba(33, 33, 33, .8)
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link
    {
    margin-left: 0;
    margin-right: 0;
    padding: 3px 2px;
    color: #fefefe;
    border: 0;
    background-color: #3d5575;
    text-align: center;
    -webkit-transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -moz-transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -o-transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    border-radius: 0;
    cursor: pointer;
    min-width:70px;
    height:40px;
    z-index: 1
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link:hover
    {
    color: #fff;
    border-bottom: 2px solid #C5CAE9;
    background-color: #3d456f;
    z-index: 1
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link:active
    {
    border-bottom:0;
    }
.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active
    {
    color: #fff;
    font-weight:400;
    background-color: #5964a0;
    z-index: 1
}
.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active:hover
{
    border-bottom:0;
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable
    {
    color: #b3b3b3 !important;
    background-color: #231e44 !important;
    border-bottom-color: #231e44 !important
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden
    {
    display: none
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over
    {
    opacity: 0;
    visibility: hidden
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow
    {
    opacity: 1;
    visibility: visible
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-shadow {
    position: absolute;
    visibility: hidden;
    top: 0;
    bottom: 0;
    width: 10px;
    height: auto;
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -moz-transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -o-transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-shadow.left
    {
    left: 0;
    background: -moz-linear-gradient(left, #483d8b 0, rgba(72, 61, 139, .15)
        70%, rgba(72, 61, 139, 0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0, #483d8b),
        color-stop(70%, rgba(72, 61, 139, .15)),
        color-stop(100%, rgba(72, 61, 139, 0)));
    background: -webkit-linear-gradient(left, #483d8b 0, rgba(72, 61, 139, .15)
        70%, rgba(72, 61, 139, 0) 100%);
    background: -o-linear-gradient(left, #483d8b 0, rgba(72, 61, 139, .15)
        70%, rgba(72, 61, 139, 0) 100%);
    background: -ms-linear-gradient(left, #483d8b 0, rgba(72, 61, 139, .15)
        70%, rgba(72, 61, 139, 0) 100%);
    background: linear-gradient(to right, #483d8b 0, rgba(72, 61, 139, .15)
        70%, rgba(72, 61, 139, 0) 100%)
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-shadow.right
    {
    left: 0;
    background: -moz-linear-gradient(left, rgba(72, 61, 139, 0) 0,
        rgba(72, 61, 139, .15) 30%, #483d8b 100%);
    background: -webkit-gradient(left top, right top, color-stop(0, rgba(72, 61, 139, 0)),
        color-stop(30%, rgba(72, 61, 139, .15)), color-stop(100%, #483d8b));
    background: -webkit-linear-gradient(left, rgba(72, 61, 139, 0) 0,
        rgba(72, 61, 139, .15) 30%, #483d8b 100%);
    background: -o-linear-gradient(left, rgba(72, 61, 139, 0) 0,
        rgba(72, 61, 139, .15) 30%, #483d8b 100%);
    background: -ms-linear-gradient(left, rgba(72, 61, 139, 0) 0,
        rgba(72, 61, 139, .15) 30%, #483d8b 100%);
    background: linear-gradient(to right, rgba(72, 61, 139, 0) 0,
        rgba(72, 61, 139, .15) 30%, #483d8b 100%)
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active
    {
    visibility: visible;
    z-index: 5;
    opacity: 1
}

.ib-tab-contents.ib-vplus_black {
    position: relative;
    top: 0;
    background-color: #151515;
    border: #483d8b 0 solid;
    visibility: visible
}

.ib-tab-contents.ib-vplus_black .ib-tab-contents__item {
    padding: 0;
    border: 0
}

.ib-tab-contents.ib-vplus_black.animated {
    -webkit-transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s;
    -moz-transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s;
    -o-transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s;
    transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s
}

.ib-tab-tabs.ib-vplus_black .ib-tab-cus {
    padding: 6px 0 6px 0;
    width: 50px;
    color: #fff
}

.ib-tab-tabs.ib-vplus_black .ib-tab-cus.to-big {
    min-width: 10px
}

.ib-context-menu.ib-vplus_black {
    padding: 3px 0;
    width: 200px;
    background-color: #483d8b;
    border: solid 1px #483d8b;
    -webkit-box-shadow: 1px 1px 2px #b3b3b3;
    -moz-box-shadow: 1px 1px 2px #b3b3b3;
    box-shadow: 1px 1px 2px #b3b3b3
}

.ib-context-menu.ib-vplus_black .ib-context-menu__items {
    list-style: none;
    margin: 0;
    padding: 0
}

.ib-context-menu.ib-vplus_black .ib-context-menu__items .ib-context-menu__item
    {
    margin-bottom: 2px
}

.ib-context-menu.ib-vplus_black .ib-context-menu__items .ib-context-menu__item:last-child
    {
    margin-bottom: 0
}

.ib-context-menu.ib-vplus_black .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link
    {
    padding: 0 4px;
    color: #f1f1f1;
    text-decoration: none
}

.ib-context-menu.ib-vplus_black .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover
    {
    color: #f1f1f1;
    background-color: #7a6ec0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow
    {
    opacity: 0;
    margin-left: 2px;
    padding: 5px 1.5px 5px 1.5px;
    color: #e7e7e7;
    border-bottom: #483d8b solid 0;
    background-color: #483d8b;
    pointer-events: none;
    cursor: default;
    text-align: center;
    font-size: 0.875rem;
    -webkit-transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    -moz-transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    -o-transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    z-index: 2
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active
    {
    opacity: 1;
    color: #e7e7e7;
    background-color: #483d8b;
    pointer-events: auto;
    cursor: pointer
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover
    {
    color: #fff;
    background-color: #7a6ec0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left
    {
    border-radius: 0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right
    {
    border-radius: 0;
    margin-left: 0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn
    {
    margin-left: 2px;
    margin-right: 2px;
    padding: 6px 6px 6px 6px;
    color: #f1f1f1;
    border-bottom: #483d8b solid 0;
    background-color: #483d8b;
    text-align: center;
    -webkit-transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    -moz-transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    -o-transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    border-radius: 0;
    font-size: 0.875rem;
    cursor: pointer
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active
    {
    color: #f1f1f1;
    background-color: #483d8b
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover
    {
    color: #fff;
    background-color: #7a6ec0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents
    {
    color: #f1f1f1;
    overflow: auto;
    background-color: #483d8b;
    border: solid 1px #483d8b;
    -webkit-box-shadow: 1px 1px 2px #b3b3b3;
    -moz-box-shadow: 1px 1px 2px #b3b3b3;
    box-shadow: 1px 1px 2px #b3b3b3
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child
    {
    margin-bottom: 0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link
    {
    text-align: center;
    -webkit-transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    -moz-transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    -o-transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    margin-left: 0;
    margin-right: 0;
    padding: 0 6px 0 6px;
    color: #f1f1f1;
    background-color: #483d8b;
    border-radius: 0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover
    {
    color: #f1f1f1;
    background-color: #7a6ec0
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active
    {
    color: #f1f1f1;
    background-color: #7a6ec0
}

.ib-context-menu.ib-vplus_black, .ib-tab-contents.ib-vplus_black,
    .ib-tab-tabs.ib-vplus_black {
    color: #6d6d6d;
    line-height: 1.5
}

.ib-tab-contents.ib-vplus_black h1, .ib-tab-contents.ib-vplus_black h2,
    .ib-tab-contents.ib-vplus_black h3, .ib-tab-contents.ib-vplus_black h4,
    .ib-tab-contents.ib-vplus_black h5, .ib-tab-contents.ib-vplus_black h6
    {
    color: #f1f1f1
}

.ib-context-menu.ib-vplus_black a, .ib-tab-tabs.ib-vplus_black a {
    color: #7a6ec0;
    text-decoration: none
}

.ib-context-menu.ib-vplus_black a:hover, .ib-tab-tabs.ib-vplus_black a:hover
    {
    color: #483d8b
}

.ib-context-menu.ib-vplus_black b, .ib-context-menu.ib-vplus_black strong,
    .ib-tab-tabs.ib-vplus_black b, .ib-tab-tabs.ib-vplus_black strong
    {
    font-weight: 500
}

.ib-context-menu.ib-vplus_black em, .ib-tab-tabs.ib-vplus_black em
    {
    font-style: italic
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link i,
    .ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link span
    {
    margin: 0;
    padding: 5px 7px 5px 7px;
    line-height: 1.2
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link i
    {
    font-size: 0.813rem
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close
    {
    font-size: 1rem
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title
    {
    font-size: 0.875rem
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
    .ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span
    {
    margin-left: 2px;
    margin-right: 2px;
    text-decoration: none;
    font-size: 0.875rem
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close
    {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.813rem
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock
    {
    display: none
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock
    {
    display: block !important
}

@media all and (min-width:720px) {
    .ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link i
        {
        margin-left: 2px;
        margin-right: 2px;
        font-size: 1rem
    }
    .ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close
        {
        font-size: 0.875rem
    }
    .ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title
        {
        margin-left: 2px;
        margin-right: 2px
    }
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-item .ib-tab-tabs-item__link img
    {
    width: auto;
    height: 25px;
    margin: 0;
    padding: 0;
    line-height: 1.2
}

.ib-tab-tabs.ib-vplus_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img
    {
    width: auto;
    height: 25px;
    margin: 0;
    padding: 0;
    line-height: 1.2
}

.ib-tab-tabs.ib-vplus_black .ib-tab-cus img {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0
}

.ib-tab-contents.ib-vplus_black .ib-tab-contents__item.iframes {
    padding: 0
}

.ib-tab-contents.ib-vplus_black .ib-tab-contents__item iframe {
    padding: 0
}



/* -----------------------------------------------------------------------------
  ib-vplus_gray
----------------------------------------------------------------------------- */

.ib-tab-tabs.ib-vplus_gray {
    list-style: none;
    margin: .5rem 0 0 0;
    padding: .5rem 0 0 0;
    height: auto;
    width: 100%;
    visibility: visible
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item {
    margin: 0;
    padding: 0 0 0 3px;
}
.ib-vplus_gray .ib-tab-tabs-item__title{
    max-width:95px;min-width:70px;text-align:left;  text-overflow:ellipsis; margin-top:-2px !important;
}


.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    background: 0 0 !important
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item::-webkit-scrollbar-thumb
    {
    background: rgba(33, 33, 33, .8)
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link
    {
    margin-left: 0;
    margin-right: 1px;
    padding: 0 3px;
    color: #333;
    text-align: center;
/*    -webkit-transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -moz-transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -o-transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    transition: z-index .3s, opacity .3s ease-in-out, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;*/
    border-radius: 0;
    cursor: pointer;
    height:26px;
    font-size:0.875rem;
    margin-bottom:1px;
    border:1px solid #ccc;
    border-bottom:none;
    background:#f4f4f4;
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link:hover
    {
    color: #272727;
    border: 1px solid #ccc;
    background:#fefefe;
    z-index: 1;
    margin-bottom:0;
    height:28px;
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active
    {
    z-index: 1;
    color: #666;
    background-color: #fff;
    border:1px solid #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: 0;
    height:31px;
    font-weight:bold;
    position:relative;
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable
    {
    color: #f1f1f1 !important;
    background-color: #6d6d6d !important;
    border-color: #6d6d6d !important
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden
    {
    display: none
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over
    {
    opacity: 0;
    visibility: hidden
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow
    {
    opacity: 1;
    visibility: visible
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-shadow {
    position: absolute;
    visibility: hidden;
    top: 0;
    bottom: 0;
    width: 10px;
    height: auto;
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -moz-transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    -o-transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s;
    transition: opacity .3s ease-in-out, z-index .5s, color .3s,
        border-color .3s, background-color .3s, border-radius .2s
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-shadow.left
    {
    left: 0;
    background: -moz-linear-gradient(left, #fff 0, rgba(255, 255, 255, .15)
        70%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0, #fff),
        color-stop(70%, rgba(255, 255, 255, .15)),
        color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, #fff 0, rgba(255, 255, 255, .15)
        70%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, #fff 0, rgba(255, 255, 255, .15)
        70%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(left, #fff 0, rgba(255, 255, 255, .15)
        70%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, #fff 0, rgba(255, 255, 255, .15)
        70%, rgba(255, 255, 255, 0) 100%)
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-shadow.right
    {
    left: 0;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, .15) 30%, #fff 100%);
    background: -webkit-gradient(left top, right top, color-stop(0, rgba(255, 255, 255,
        0)), color-stop(30%, rgba(255, 255, 255, .15)), color-stop(100%, #fff));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, .15) 30%, #fff 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, .15) 30%, #fff 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, .15) 30%, #fff 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, .15) 30%, #fff 100%)
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active
    {
    visibility: visible;
    z-index: 5;
    opacity: 1
}

.ib-tab-contents.ib-vplus_gray {
    position: relative;
    top: -1px;
    background-color: #fff;
    border: #ddd 1px solid;
    visibility: visible
}

.ib-tab-contents.ib-vplus_gray .ib-tab-contents__item {
    padding: 0;
    border: 0
}

.ib-tab-contents.ib-vplus_gray.animated {
    -webkit-transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s;
    -moz-transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s;
    -o-transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s;
    transition: color .4s, border-color .4s, background-color .4s,
        border-radius .2s, width .4s, height .4s
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-cus {
    padding: 0;
    width: 200px
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-cus.to-big {
    min-width: 10px
}

.ib-context-menu.ib-vplus_gray {
    padding: 3px 0;
    width: 200px;
    background-color: #EBEEFF;
    border: solid 1px #f1f1f1;
    -webkit-box-shadow: 1px 1px 2px #b3b3b3;
    -moz-box-shadow: 1px 1px 2px #b3b3b3;
    box-shadow: 1px 1px 2px #b3b3b3
}

.ib-context-menu.ib-vplus_gray .ib-context-menu__items {
    list-style: none;
    margin: 0;
    padding: 0
}

.ib-context-menu.ib-vplus_gray .ib-context-menu__items .ib-context-menu__item
    {
    margin-bottom: 2px
}

.ib-context-menu.ib-vplus_gray .ib-context-menu__items .ib-context-menu__item:last-child
    {
    margin-bottom: 0
}

.ib-context-menu.ib-vplus_gray .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link
    {
    padding: 0 4px;
    color: #151515;
    text-decoration: none
}

.ib-context-menu.ib-vplus_gray .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover
    {
    color: #fff;
    background-color: #2196f3
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow
    {
    opacity: 0;
    margin-left: 2px;
    margin-bottom: 1px;
    padding: 0 1.5px 0 1.5px;
    color: #fff;
    background-color: #fff;
    border: solid 0;
    pointer-events: none;
    cursor: default;
    text-align: center;
    font-size: 0.813rem;
    -webkit-transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    -moz-transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    -o-transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    transition: opacity .4s ease-in-out, color .4s, border-color .4s,
        background-color .4s, border-radius .2s;
    z-index: 2
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active
    {
    opacity: 1;
    color: #151515;
    background-color: #fff;
    pointer-events: auto;
    cursor: pointer
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover
    {
    color: #f1f1f1;
    background-color: #2196f3
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left
    {
    border-radius: 5px 0 0 5px
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right
    {
    border-radius: 0 5px 5px 0;
    margin-left: 0
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn
    {
    margin-left: 2px;
    margin-right: 2px;
    padding: 0 6px 0 6px;
    color: #151515;
    background-color: #fff;
    text-align: center;
    -webkit-transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    -moz-transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    -o-transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    transition: opacity .3s ease-in-out, color .3s, border-color .3s,
        background-color .3s, border-radius .3s;
    border: solid 0;
    border-radius: 5px;
    font-size: 0.813rem;
    cursor: pointer
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active
    {
    color: #151515;
    background-color: #2196f3
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover
    {
    color: #f1f1f1;
    background-color: #2196f3
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents
    {
    color: #272727;
    overflow: auto;
    background-color: #fff;
    border: solid 1px #f1f1f1;
    -webkit-box-shadow: 1px 1px 2px #b3b3b3;
    -moz-box-shadow: 1px 1px 2px #b3b3b3;
    box-shadow: 1px 1px 2px #b3b3b3
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child
    {
    margin-bottom: 0
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link
    {
    text-align: center;
    -webkit-transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    -moz-transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    -o-transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    transition: color .3s, border-color .3s, background-color .3s,
        border-radius .2s;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    margin-left: 0;
    margin-right: 0;
    padding: 0 6px 0 6px;
    color: #272727;
    background-color: #fff;
    border-radius: 0
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover
    {
    color: #fff;
    background-color: #2196f3
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active
    {
    color: #fff;
    background-color: #2196f3
}

.ib-context-menu.ib-vplus_gray, .ib-tab-contents.ib-vplus_gray,
    .ib-tab-tabs.ib-vplus_gray {
    color: #6d6d6d;
    font-size: 0.875rem;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased
}

.ib-context-menu.ib-vplus_gray a, .ib-tab-tabs.ib-vplus_gray a {
    color: #82c4f8;
    text-decoration: none
}

.ib-context-menu.ib-vplus_gray a:hover, .ib-tab-tabs.ib-vplus_gray a:hover
    {
    color: #2196f3
}

.ib-context-menu.ib-vplus_gray b, .ib-context-menu.ib-vplus_gray strong,
    .ib-tab-tabs.ib-vplus_gray b, .ib-tab-tabs.ib-vplus_gray strong
    {
    font-weight: 500
}

.ib-context-menu.ib-vplus_gray em, .ib-tab-tabs.ib-vplus_gray em
    {
    font-style: italic
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link i,
    .ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link span
    {
    margin: 0;
    padding: 5px 2px 3px;
    line-height: 1.2
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link i
    {
    font-size: 0.813rem
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close{
    font-size: 0.875rem;
    color:#bbb;
    padding-right:3px;
}
.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close:hover
, .ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active i.fa-close
{
    color:#272727;
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hold i.fa-lock {
    display: block !important
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
    .ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
    margin-left: 2px;
    margin-right: 2px;
    text-decoration: none;
    font-size: 0.813rem
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close{
    margin-left: 0;
    margin-right: 0;
    font-size: 8px
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
    display: none
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock
    {
    display: block !important
}

/* @media all and (min-width:720px) {
    .ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link i
        {
        margin-left: 2px;
        margin-right: 2px;
        font-size: 0.875rem
    }
    .ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close
        {
        font-size: 0.813rem
    }
    .ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title
        {
        margin-left: 2px;
        margin-right: 2px
    }
} */

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-item .ib-tab-tabs-item__link img
    {
    width: auto;
    height: 25px;
    margin: 0;
    padding: 0;
    line-height: 1.2
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img
    {
    width: auto;
    height: 25px;
    margin: 0;
    padding: 0;
    line-height: 1.2
}

.ib-tab-tabs.ib-vplus_gray .ib-tab-cus img {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0
}

.ib-tab-contents.ib-vplus_gray .ib-tab-contents__item.iframes {
    padding: 0
}

.ib-tab-contents.ib-vplus_gray .ib-tab-contents__item iframe {
    padding: 2px 0 0 ;
}





/* -----------------------------------------------------------------------------
  bootstrap_blue
----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/
.ib-tab-tabs.ib-bootstrap_blue {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0 0;
  height: auto;
  width: 100%;
  visibility: visible; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item {
    margin: 0;
    padding: 0; }
    .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link {
      margin-left: 0px;
      margin-right: 0.2rem;
      padding: 0.25em 0.5em;
      color: #272727;
      border: white 1px solid;
      background-color: white;
      text-align: center;
      -webkit-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      border-radius: 0.25rem 0.25rem 0 0;
      cursor: pointer;
      z-index: 0; }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link:hover {
        color: #272727;
        border: #dddddd 1px solid;
        z-index: 1; }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active {
        color: #f1f1f1;
        background-color: #2196f3;
        border: #2196f3 1px solid;
        z-index: 1; }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        color: #f1f1f1 !important;
        background-color: #6d6d6d !important;
        border-color: #6d6d6d !important; }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 0px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px;
        background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(70%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* IE 10+ */
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0.15)), color-stop(100%, white));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* IE 10+ */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }

/**
* Contents
*/
.ib-tab-contents.ib-bootstrap_blue {
  position: relative;
  top: -1px;
  background-color: white;
  border: #dddddd 1px solid;
  visibility: visible; }
  .ib-tab-contents.ib-bootstrap_blue .ib-tab-contents__item {
    padding: 0;
    border: 0; }
  .ib-tab-contents.ib-bootstrap_blue.animated {
    -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -moz-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -o-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s; }

/**
 * customZone
 */
.ib-tab-tabs.ib-bootstrap_blue .ib-tab-cus {
  padding: 0;
  width: 200px; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-cus.to-big {
    min-width: 10px; }

/**
* Context Menu
*/
.ib-context-menu.ib-bootstrap_blue {
  padding: 3px 0;
  width: 200px;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-context-menu.ib-bootstrap_blue .ib-context-menu__items {
    list-style: none;
    margin: 0;
    padding: 0; }
    .ib-context-menu.ib-bootstrap_blue .ib-context-menu__items .ib-context-menu__item {
      margin-bottom: 2px; }
      .ib-context-menu.ib-bootstrap_blue .ib-context-menu__items .ib-context-menu__item:last-child {
        margin-bottom: 0; }
      .ib-context-menu.ib-bootstrap_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
        padding: 0px 4px;
        color: #151515;
        text-decoration: none; }
        .ib-context-menu.ib-bootstrap_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover {
          color: white;
          background-color: #2196f3; }

/**
* DropDown Menu
*/
.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
  opacity: 0;
  margin-left: 2px;
  margin-bottom: 1px;
  padding: 0px 1.5px 0px 1.5px;
  color: white;
  background-color: white;
  border: solid 0px;
  pointer-events: none;
  cursor: default;
  text-align: center;
  font-size: 12px;
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  z-index: 2; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
    opacity: 1;
    color: #151515;
    background-color: white;
    pointer-events: auto;
    cursor: pointer; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover {
    color: #f1f1f1;
    background-color: #2196f3; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
    border-radius: 5px 0px 0px 5px; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
    border-radius: 0px 5px 5px 0px;
    margin-left: 0px; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px 6px 0px 6px;
  color: #151515;
  background-color: white;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  border: solid 0px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active {
    color: #151515;
    background-color: #2196f3; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover {
    color: #f1f1f1;
    background-color: #2196f3; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
  color: #272727;
  overflow: auto;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
    margin-bottom: 0; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
    text-align: center;
    -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -moz-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -o-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 6px 0px 6px;
    color: #272727;
    background-color: white;
    border-radius: 0; }
    .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover {
      color: white;
      background-color: #2196f3; }
    .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active {
      color: white;
      background-color: #2196f3; }

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-bootstrap_blue,
.ib-tab-contents.ib-bootstrap_blue,
.ib-context-menu.ib-bootstrap_blue {
  color: #6d6d6d;
  font-family: "Roboto", "Helvetica Neue", "NanumGothic", Helvetica, Arial, sans-serif !important;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-bootstrap_blue a,
.ib-context-menu.ib-bootstrap_blue a {
  color: #82c4f8;
  text-decoration: none; }

.ib-tab-tabs.ib-bootstrap_blue a:hover,
.ib-context-menu.ib-bootstrap_blue a:hover {
  color: #2196f3; }

.ib-tab-tabs.ib-bootstrap_blue b,
.ib-tab-tabs.ib-bootstrap_blue strong,
.ib-context-menu.ib-bootstrap_blue b,
.ib-context-menu.ib-bootstrap_blue strong {
  font-weight: 700; }

.ib-tab-tabs.ib-bootstrap_blue em,
.ib-context-menu.ib-bootstrap_blue em {
  font-style: italic; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 5px 2px 5px 2px;
  line-height: 1.2; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 12px; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 9px; }

/*.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  font-size: 14px; }
*/
.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  font-size: 12px; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 8px; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
  display: none; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

@media all and (min-width: 720px) {
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 14px; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 12px; }
  .ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px; } }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-bootstrap_blue .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents.ib-bootstrap_blue .ib-tab-contents__item.iframes {
  padding: 0rem; }

.ib-tab-contents.ib-bootstrap_blue .ib-tab-contents__item iframe {
  padding: 0rem; }

/* -----------------------------------------------------------------------------

  flat_blue

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/
.ib-tab-tabs.ib-flat_blue {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0 0;
  height: auto;
  width: 100%;
  visibility: visible; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item {
    margin: 0;
    padding: 0; }
    .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link {
      margin-left: 0px;
      margin-right: 2px;
      padding: 0px 6px 0px 6px;
      color: #f1f1f1;
      background-color: #67aaf8;
      text-align: center;
      -webkit-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      border-radius: 5px 5px 5px 5px;
      cursor: pointer;
      z-index: 1; }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active {
        color: white;
        background-color: #0b74ee; }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link:hover {
        color: white;
        background-color: #0b74ee; }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        color: #f1f1f1 !important;
        background-color: #b3b3b3 !important;
        border-color: #b3b3b3 !important; }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 0px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px;
        background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(70%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* IE 10+ */
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0.15)), color-stop(100%, white));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* IE 10+ */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }

/**
* Contents
*/
.ib-tab-contents.ib-flat_blue {
  position: relative;
  top: 0px;
  background-color: white;
  visibility: visible; }
  .ib-tab-contents.ib-flat_blue .ib-tab-contents__item {
    padding: 0;
    border: 0; }
  .ib-tab-contents.ib-flat_blue.animated {
    -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
    -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
    -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
    transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s; }

/**
 * customZone
 */
.ib-tab-tabs.ib-flat_blue .ib-tab-cus {
  padding: 0;
  width: 200px; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-cus.to-big {
    min-width: 10px; }

/**
* Context Menu
*/
.ib-context-menu.ib-flat_blue {
  padding: 3px 0;
  width: 200px;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-context-menu.ib-flat_blue .ib-context-menu__items {
    list-style: none;
    margin: 0;
    padding: 0; }
    .ib-context-menu.ib-flat_blue .ib-context-menu__items .ib-context-menu__item {
      margin-bottom: 2px; }
      .ib-context-menu.ib-flat_blue .ib-context-menu__items .ib-context-menu__item:last-child {
        margin-bottom: 0; }
      .ib-context-menu.ib-flat_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
        padding: 0px 4px;
        color: #67aaf8;
        text-decoration: none; }
        .ib-context-menu.ib-flat_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover {
          color: white;
          background-color: #0b74ee; }

/**
* DropDown Menu
*/
.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
  opacity: 0;
  margin-left: 2px;
  margin-bottom: 1px;
  padding: 0px 1.5px 0px 1.5px;
  color: #f1f1f1;
  background-color: #b3b3b3;
  border-color: #b3b3b3;
  pointer-events: none;
  cursor: default;
  text-align: center;
  font-size: 12px;
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  z-index: 2; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
    opacity: 1;
    color: #f1f1f1;
    background-color: #67aaf8;
    pointer-events: auto;
    cursor: pointer; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover {
    background-color: #0b74ee; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
    border-radius: 5px 0px 0px 5px; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
    border-radius: 0px 5px 5px 0px;
    margin-left: 0px; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px 6px 0px 6px;
  color: #f1f1f1;
  background-color: #67aaf8;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  border: solid 0px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active {
    background-color: #0b74ee; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover {
    background-color: #0b74ee; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
  color: #67aaf8;
  overflow: auto;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
    margin-bottom: 0; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
    text-align: center;
    -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -moz-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -o-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 6px 0px 6px;
    color: #67aaf8;
    background-color: white;
    border-radius: 0; }
    .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover {
      color: white;
      background-color: #0b74ee; }
    .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active {
      color: white;
      background-color: #0b74ee; }

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-flat_blue,
.ib-tab-contents.ib-flat_blue,
.ib-context-menu.ib-flat_blue {
  color: #6d6d6d;
  /* font-family: "나눔고딕", NanumGothic, "Lucida Grande", "Lucida Sans Unicode", Helvetica, "애플고딕", AppleGothic, MalgunGothic, "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 12px;*/
  line-height: 1.5; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-contents.ib-flat_blue h1,
.ib-tab-contents.ib-flat_blue h2,
.ib-tab-contents.ib-flat_blue h3,
.ib-tab-contents.ib-flat_blue h4,
.ib-tab-contents.ib-flat_blue h5,
.ib-tab-contents.ib-flat_blue h6 {
  color: #151515; }

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-flat_blue a,
.ib-context-menu.ib-flat_blue a {
  color: #67aaf8;
  text-decoration: none; }

.ib-tab-tabs.ib-flat_blue a:hover,
.ib-context-menu.ib-flat_blue a:hover {
  color: #0b74ee; }

.ib-tab-tabs.ib-flat_blue b,
.ib-tab-tabs.ib-flat_blue strong,
.ib-context-menu.ib-flat_blue b,
.ib-context-menu.ib-flat_blue strong {
  font-weight: 700; }

.ib-tab-tabs.ib-flat_blue em,
.ib-context-menu.ib-flat_blue em {
  font-style: italic; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 5px 2px 5px 2px;
  line-height: 1.2; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 16px; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 16px; }

/*.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  font-size: 16px; }
*/
.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  font-size: 14px; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 16px; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
  display: none; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

@media all and (min-width: 720px) {
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 18px; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 12px; }
  .ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px; } }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-flat_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-flat_blue .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents.ib-flat_blue .ib-tab-contents__item.iframes {
  padding: 0rem; }

.ib-tab-contents.ib-flat_blue .ib-tab-contents__item iframe {
  padding: 0rem; }

/* -----------------------------------------------------------------------------

  simple_blue

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/

.ib-tab-tabs.ib-simple_blue {
  list-style: none;
  margin: 0 0 0 0;
  padding: 4px 0 0 0;
  height: 28px !important;
  width: 100%;
  visibility: visible;
  background-color: #ebeef3; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item {
    margin: 0;
    padding: 0; }
    .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link {
      margin-left: 0px;
      margin-right: 1px;
      margin-bottom:-1px;
      padding: 0px 6px 0px 6px;
      color: #666;
      font-weight:500;
      border: rgba(0, 0, 0, 0.2) 1px solid;
      /* border-top: white 3px solid; */
      background-color: transparent;
      text-align: center;
      -webkit-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      border-radius: 0px 0px 0px 0px;
      cursor: pointer;
      z-index: 0; }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link:hover {
        color: #27b3ff;
        border-left-color: #b3b3b3;
        border-right-color: #b3b3b3;
        border-top-color: #27b3ff;
        background-color: white;
        z-index: 1; }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active {
        color: #007cc0;
        border-left-color: #b3b3b3;
        border-right-color: #b3b3b3;
        border-bottom:white;
        border-top:2px solid #002356;
        background-color: white;
        box-shadow:1px 2px 5px #666;
        margin-bottom:0;
        z-index: 1; }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        color: #b3b3b3 !important;
        background-color: white !important;
        border-top-color: white !important; }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 1px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px;
        background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(70%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* IE 10+ */
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0.15)), color-stop(100%, white));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* IE 10+ */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }
/**
* Contents
*/
.ib-tab-contents.ib-simple_blue {
  position: relative;
  top: -2px;
  background-color: white;
  border: #007cc0 0px solid;
  border-top: #b3b3b3 1px solid;
  visibility: visible; }
  .ib-tab-contents.ib-simple_blue .ib-tab-contents__item {
    padding: 0;
    border: 0; }
  .ib-tab-contents.ib-simple_blue.animated {
    -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -moz-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -o-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s; }

/**
 * customZone
 */
.ib-tab-tabs.ib-simple_blue .ib-tab-cus {
  padding: 0;
  width: 200px; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-cus.to-big {
    min-width: 10px; }

/**
* Context Menu
*/
.ib-context-menu.ib-simple_blue {
  padding: 3px 0;
  width: 200px;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }

.ib-context-menu.ib-simple_blue .ib-context-menu__items {
  list-style: none;
  margin: 0;
  padding: 0; }
  .ib-context-menu.ib-simple_blue .ib-context-menu__items .ib-context-menu__item {
    margin-bottom: 2px; }
    .ib-context-menu.ib-simple_blue .ib-context-menu__items .ib-context-menu__item:last-child {
      margin-bottom: 0; }
    .ib-context-menu.ib-simple_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
      padding: 0px 4px;
      color: #151515;
      text-decoration: none; }
      .ib-context-menu.ib-simple_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover {
        color: white;
        background-color: #27b3ff; }

/**
* DropDown Menu
*/
.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
  opacity: 0;
  margin-left: 2px;
  padding: 0px 1.5px 0px 1.5px;
  color: white;
  border-bottom: white solid 2px;
  background-color: white;
  pointer-events: none;
  cursor: default;
  text-align: center;
  font-size: 12px;
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  z-index: 2; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
    opacity: 1;
    color: #151515;
    border-color: white;
    background-color: white;
    pointer-events: auto;
    cursor: pointer; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover {
    color: #27b3ff;
    border-color: #27b3ff;
    background-color: white; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
    border-radius: 0px 0px 0px 0px; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
    border-radius: 0px 0px 0px 0px;
    margin-left: 0px; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px 6px 0px 6px;
  color: #151515;
  border-bottom: white solid 2px;
  background-color: white;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  border-radius: 0px;
  font-size: 12px;
  cursor: pointer; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active {
    color: #007cc0;
    border-color: #007cc0;
    background-color: white; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover {
    color: #27b3ff;
    border-color: #27b3ff;
    background-color: white; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
  color: #272727;
  overflow: auto;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
    margin-bottom: 0; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
    text-align: center;
    -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -moz-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -o-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 6px 0px 6px;
    color: #272727;
    background-color: white;
    border-radius: 0; }
    .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover {
      color: white;
      background-color: #27b3ff; }
    .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active {
      color: white;
      background-color: #007cc0; }

/* -----------------------------------------------------------------------------

  simple_blue

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-simple_blue,
.ib-tab-contents.ib-simple_blue,
.ib-context-menu.ib-simple_blue {
  color: #6d6d6d;
  /* font-family: "나눔고딕", NanumGothic, "Lucida Grande", "Lucida Sans Unicode", Helvetica, "애플고딕", AppleGothic, MalgunGothic, "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 12px;*/
  line-height: 1.5; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-contents.ib-simple_blue h1,
.ib-tab-contents.ib-simple_blue h2,
.ib-tab-contents.ib-simple_blue h3,
.ib-tab-contents.ib-simple_blue h4,
.ib-tab-contents.ib-simple_blue h5,
.ib-tab-contents.ib-simple_blue h6 {
  color: #151515; }

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-simple_blue a,
.ib-context-menu.ib-simple_blue a {
  color: #27b3ff;
  text-decoration: none; }

.ib-tab-tabs.ib-simple_blue a:hover,
.ib-context-menu.ib-simple_blue a:hover {
  color: #007cc0; }

.ib-tab-tabs.ib-simple_blue b,
.ib-tab-tabs.ib-simple_blue strong,
.ib-context-menu.ib-simple_blue b,
.ib-context-menu.ib-simple_blue strong {
  font-weight: 700; }

.ib-tab-tabs.ib-simple_blue em,
.ib-context-menu.ib-simple_blue em {
  font-style: italic; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 4px 2px 3px 2px;
  line-height: 1.2; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 12px; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 16px; }

/*.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  font-size: 16px; }*/

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  font-size: 14px; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 12px; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
  display: none; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

@media all and (min-width: 720px) {
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 16px; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 14px; }
  .ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px; } }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-simple_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-simple_blue .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents.ib-simple_blue .ib-tab-contents__item.iframes {
  padding: 0rem; }

.ib-tab-contents.ib-simple_blue .ib-tab-contents__item iframe {
  padding: 0rem; }

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-simple_under_blue,
.ib-tab-contents.ib-simple_under_blue,
.ib-context-menu.ib-simple_under_blue {
  color: #6d6d6d;
  /* font-family: "나눔고딕", NanumGothic, "Lucida Grande", "Lucida Sans Unicode", Helvetica, "애플고딕", AppleGothic, MalgunGothic, "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 12px;*/
  line-height: 1.5; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-contents.ib-simple_under_blue h1,
.ib-tab-contents.ib-simple_under_blue h2,
.ib-tab-contents.ib-simple_under_blue h3,
.ib-tab-contents.ib-simple_under_blue h4,
.ib-tab-contents.ib-simple_under_blue h5,
.ib-tab-contents.ib-simple_under_blue h6 {
  color: #151515; }

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-simple_under_blue a,
.ib-context-menu.ib-simple_under_blue a {
  color: #27b3ff;
  text-decoration: none; }

.ib-tab-tabs.ib-simple_under_blue a:hover,
.ib-context-menu.ib-simple_under_blue a:hover {
  color: #007cc0; }

.ib-tab-tabs.ib-simple_under_blue b,
.ib-tab-tabs.ib-simple_under_blue strong,
.ib-context-menu.ib-simple_under_blue b,
.ib-context-menu.ib-simple_under_blue strong {
  font-weight: 700; }

.ib-tab-tabs.ib-simple_under_blue em,
.ib-context-menu.ib-simple_under_blue em {
  font-style: italic; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 4px 2px 3px 2px; /* height */
  line-height: 1.2; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 12px; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 16px; }

/*.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  font-size: 16px; }*/

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  font-size: 14px; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 12px; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
  display: none; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

@media all and (min-width: 720px) {
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 16px; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 14px; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px; } }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents.ib-simple_under_blue .ib-tab-contents__item.iframes {
  padding: 0rem; }

.ib-tab-contents.ib-simple_under_blue .ib-tab-contents__item iframe {
  padding: 0rem; }

/* -----------------------------------------------------------------------------

  simple_under_blue

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/
.ib-tab-tabs.ib-simple_under_blue {
  list-style: none;
  margin: 0 0 0 0;
  padding: 4px 0 0 0;
  height: 28px !important;
  width: 100%;
  visibility: visible;
  background-color: #ebeef3; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item {
    margin: 0;
    padding: 0 0 0 5px;
    margin-bottom:-1px }
    .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link {
      margin-left: 0px;
      margin-right: 1px;
      padding: 0px 6px 0px 6px;
      color: #3b3b3b;
      font-weight:500;
      border: rgba(0, 0, 0, 0.2) 1px solid;
      border-bottom: 2px solid transparent;
      background-color: transparent;
      text-align: center;
      -webkit-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      border-radius: 0px 0px 0px 0px;
      cursor: pointer;

      z-index: 0; }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link:hover {
        color: #000099;
        /* border-bottom-color: #27b3ff; */
        background-color: white;
        z-index: 1; }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active {
        color: #007cc0;
        border-bottom-color: #007cc0;
        background-color:white;
        z-index: 1;
        margin-bottom:1px;}
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        color: #b3b3b3 !important;
        background-color: white !important;
        border-top-color: white !important; }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 1px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px;
        background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(70%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* IE 10+ */
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0.15)), color-stop(100%, white));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* IE 10+ */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }

/**
* Contents
*/
.ib-tab-contents.ib-simple_under_blue {
  position: relative;
  top: -1px;
  background-color: white;
  border: #007cc0 0px solid;
  border-top: 1px solid #d3d6da;
  visibility: visible; }
  .ib-tab-contents.ib-simple_under_blue .ib-tab-contents__item {
    padding: 0;
    border: 0; }
  .ib-tab-contents.ib-simple_under_blue.animated {
    -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -moz-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -o-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s; }

/**
 * customZone
 */
.ib-tab-tabs .ib-tab-cus.ib-simple_under_blue {
  padding: 0;
  width: 200px; }
  .ib-tab-tabs .ib-tab-cus.ib-simple_under_blue.to-big {
    min-width: 10px; }

/**
* Context Menu
*/
.ib-context-menu.ib-simple_under_blue {
  padding: 3px 0;
  width: 200px;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }

.ib-context-menu.ib-simple_under_blue .ib-context-menu__items {
  list-style: none;
  margin: 0;
  padding: 0; }
  .ib-context-menu.ib-simple_under_blue .ib-context-menu__items .ib-context-menu__item {
    margin-bottom: 2px; }
    .ib-context-menu.ib-simple_under_blue .ib-context-menu__items .ib-context-menu__item:last-child {
      margin-bottom: 0; }
    .ib-context-menu.ib-simple_under_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
      padding: 0px 4px;
      color: #151515;
      text-decoration: none; }
      .ib-context-menu.ib-simple_under_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover {
        color: white;
        background-color: #27b3ff; }

/**
* DropDown Menu
*/
.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
  opacity: 0;
  margin-left: 2px;
  padding: 0px 1.5px 0px 1.5px;
  color: white;
  border-bottom: white solid 2px;
  background-color: white;
  pointer-events: none;
  cursor: default;
  text-align: center;
  font-size: 12px;
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  z-index: 2; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
    opacity: 1;
    color: #151515;
    border-color: white;
    background-color: white;
    pointer-events: auto;
    cursor: pointer; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover {
    color: #27b3ff;
    border-color: #27b3ff;
    background-color: white; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
    border-radius: 0px 0px 0px 0px; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
    border-radius: 0px 0px 0px 0px;
    margin-left: 0px; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px 6px 0px 6px;
  color: #151515;
  border-bottom: white solid 2px;
  background-color: white;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  border-radius: 0px;
  font-size: 12px;
  cursor: pointer; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active {
    color: #007cc0;
    border-color: #007cc0;
    background-color: white; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover {
    color: #27b3ff;
    border-color: #27b3ff;
    background-color: white; }

.ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
  color: #272727;
  overflow: auto;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
    margin-bottom: 0; }
  .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
    text-align: center;
    -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -moz-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -o-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 6px 0px 6px;
    color: #272727;
    background-color: white;
    border-radius: 0; }
    .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover {
      color: white;
      background-color: #27b3ff; }
    .ib-tab-tabs.ib-simple_under_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active {
      color: white;
      background-color: #007cc0; }

/* -----------------------------------------------------------------------------

  classic_blue

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/
.ib-tab-tabs.ib-classic_blue {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0 0;
  height: auto;
  width: 100%;
  visibility: visible; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item {
    margin: 0;
    padding: 0; }
    .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link {
      margin-left: 0px;
      margin-right: 0px;
      padding: 0px 6px 0px 6px;
      color: #272727;
      border: white 1px solid;
      border-bottom-color: #67aaf8;
      background-color: white;
      text-align: center;
      -webkit-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      border-radius: 5px 5px 0px 0px;
      cursor: pointer;
      z-index: 0; }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active {
        color: #272727;
        background-color: white;
        border: #0b74ee 1px solid;
        border-bottom-color: white;
        z-index: 1; }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link:hover {
        color: #f1f1f1;
        border: #67aaf8 1px solid;
        background-color: #67aaf8;
        z-index: 1; }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        color: #f1f1f1 !important;
        background-color: #656565 !important;
        border-color: #656565 !important; }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 1px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px;
        background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, white), color-stop(70%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* IE 10+ */
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0.15)), color-stop(100%, white));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* IE 10+ */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 30%, white 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }

/**
* Contents
*/
.ib-tab-contents.ib-classic_blue {
  position: relative;
  top: -1px;
  background-color: white;
  border: #0b74ee 1px solid;
  visibility: visible; }
  .ib-tab-contents.ib-classic_blue .ib-tab-contents__item {
    padding: 0;
    border: 0; }
  .ib-tab-contents.ib-classic_blue.animated {
    -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -moz-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -o-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s; }

/**
 * customZone
 */
.ib-tab-tabs.ib-classic_blue .ib-tab-cus {
  padding: 0;
  width: 200px; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-cus.to-big {
    min-width: 10px; }

/**
* Context Menu
*/
.ib-context-menu.ib-classic_blue {
  padding: 3px 0;
  width: 200px;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-context-menu.ib-classic_blue .ib-context-menu__items {
    list-style: none;
    margin: 0;
    padding: 0; }
    .ib-context-menu.ib-classic_blue .ib-context-menu__items .ib-context-menu__item {
      margin-bottom: 2px; }
      .ib-context-menu.ib-classic_blue .ib-context-menu__items .ib-context-menu__item:last-child {
        margin-bottom: 0; }
      .ib-context-menu.ib-classic_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
        padding: 0px 4px;
        color: #151515;
        text-decoration: none; }
        .ib-context-menu.ib-classic_blue .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover {
          color: white;
          background-color: #0b74ee; }

/**
* DropDown Menu
*/
.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
  opacity: 0;
  margin-left: 2px;
  margin-bottom: 1px;
  padding: 0px 1.5px 0px 1.5px;
  color: white;
  background-color: white;
  border: solid 0px;
  pointer-events: none;
  cursor: default;
  text-align: center;
  font-size: 12px;
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  z-index: 2; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
    opacity: 1;
    color: #151515;
    background-color: white;
    pointer-events: auto;
    cursor: pointer; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover {
    color: #f1f1f1;
    background-color: #0b74ee; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
    border-radius: 5px 0px 0px 5px; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
    border-radius: 0px 5px 5px 0px;
    margin-left: 0px; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px 6px 0px 6px;
  color: #151515;
  background-color: white;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  border: solid 0px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active {
    color: #151515;
    background-color: #0b74ee; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover {
    color: #f1f1f1;
    background-color: #0b74ee; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
  color: #272727;
  overflow: auto;
  background-color: white;
  border: solid 1px #f1f1f1;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
    margin-bottom: 0; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
    text-align: center;
    -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -moz-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -o-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 6px 0px 6px;
    color: #272727;
    background-color: white;
    border-radius: 0; }
    .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover {
      color: white;
      background-color: #0b74ee; }
    .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active {
      color: white;
      background-color: #0b74ee; }

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-classic_blue,
.ib-tab-contents.ib-classic_blue,
.ib-context-menu.ib-classic_blue {
  color: #6d6d6d;
  /* font-family: "나눔고딕", NanumGothic, "Lucida Grande", "Lucida Sans Unicode", Helvetica, "애플고딕", AppleGothic, MalgunGothic, "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 12px;*/
  line-height: 1.5; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-contents.ib-classic_blue h1,
.ib-tab-contents.ib-classic_blue h2,
.ib-tab-contents.ib-classic_blue h3,
.ib-tab-contents.ib-classic_blue h4,
.ib-tab-contents.ib-classic_blue h5,
.ib-tab-contents.ib-classic_blue h6 {
  color: #151515; }

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-classic_blue a,
.ib-context-menu.ib-classic_blue a {
  color: #67aaf8;
  text-decoration: none; }

.ib-tab-tabs.ib-classic_blue a:hover,
.ib-context-menu.ib-classic_blue a:hover {
  color: #0b74ee; }

.ib-tab-tabs.ib-classic_blue b,
.ib-tab-tabs.ib-classic_blue strong,
.ib-context-menu.ib-classic_blue b,
.ib-context-menu.ib-classic_blue strong {
  font-weight: 700; }

.ib-tab-tabs.ib-classic_blue em,
.ib-context-menu.ib-classic_blue em {
  font-style: italic; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 5px 2px 5px 2px;
  line-height: 1.2; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 12px; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 16px; }

/*.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  font-size: 16px; }*/

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  font-size: 14px; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 12px; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
  display: none; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

@media all and (min-width: 720px) {
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 16px; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 14px; }
  .ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px; } }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-classic_blue .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-classic_blue .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents.ib-classic_blue .ib-tab-contents__item.iframes {
  padding: 0rem; }

.ib-tab-contents.ib-classic_blue .ib-tab-contents__item iframe {
  padding: 0rem; }


/* -----------------------------------------------------------------------------

  material_black

----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------

TABS COMPONENT

----------------------------------------------------------------------------- */
/**
* Tab
*/
.ib-tab-tabs.ib-material_black {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  height: auto;
  width: 100%;
  visibility: visible;
  background-color: darkslateblue;
  border-bottom: darkslateblue 0px solid; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-item {
    margin: 0;
    padding: 0; }
    .ib-tab-tabs.ib-material_black .ib-tab-tabs-item::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      background: transparent !important; }
    .ib-tab-tabs.ib-material_black .ib-tab-tabs-item::-webkit-scrollbar-thumb {
      background: rgba(33, 33, 33, 0.8); }
    .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link {
      margin-left: 0px;
      margin-right: 0px;
      padding: 6px 6px 6px 6px;
      color: #f1f1f1;
      border: darkslateblue 0px solid;
      border-bottom: darkslateblue 3px solid;
      background-color: darkslateblue;
      text-align: center;
      -webkit-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: z-index 0.3s, opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      border-radius: 0px 0px 0px 0px;
      cursor: pointer;
      z-index: 1; }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link:hover {
        color: white;
        border-bottom-color: #7a6ec0;
        background-color: #7a6ec0;
        z-index: 1; }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-active {
        color: #f1f1f1;
        border-bottom-color: #7a6ec0;
        background-color: darkslateblue;
        z-index: 1; }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-disable {
        color: #b3b3b3 !important;
        background-color: #231e44 !important;
        border-bottom-color: #231e44 !important; }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-hidden {
        display: none; }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-over {
        opacity: 0;
        visibility: hidden; }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link.is-flow {
        opacity: 1;
        visibility: visible; }
    .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-shadow {
      position: absolute;
      visibility: hidden;
      top: 0px;
      bottom: 0px;
      width: 10px;
      height: auto;
      z-index: 0;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -moz-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      -o-transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
      transition: opacity 0.3s ease-in-out, z-index 0.5s, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s; }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-shadow.left {
        left: 0px;
        background: -moz-linear-gradient(left, darkslateblue 0%, rgba(72, 61, 139, 0.15) 70%, rgba(72, 61, 139, 0) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, darkslateblue), color-stop(70%, rgba(72, 61, 139, 0.15)), color-stop(100%, rgba(72, 61, 139, 0)));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, darkslateblue 0%, rgba(72, 61, 139, 0.15) 70%, rgba(72, 61, 139, 0) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, darkslateblue 0%, rgba(72, 61, 139, 0.15) 70%, rgba(72, 61, 139, 0) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, darkslateblue 0%, rgba(72, 61, 139, 0.15) 70%, rgba(72, 61, 139, 0) 100%);
        /* IE 10+ */
        background: linear-gradient(to right, darkslateblue 0%, rgba(72, 61, 139, 0.15) 70%, rgba(72, 61, 139, 0) 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-shadow.right {
        left: 0px;
        background: -moz-linear-gradient(left, rgba(72, 61, 139, 0) 0%, rgba(72, 61, 139, 0.15) 30%, darkslateblue 100%);
        /* FF3.6+ */
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(72, 61, 139, 0)), color-stop(30%, rgba(72, 61, 139, 0.15)), color-stop(100%, darkslateblue));
        /* Chrome, Safari4+ */
        background: -webkit-linear-gradient(left, rgba(72, 61, 139, 0) 0%, rgba(72, 61, 139, 0.15) 30%, darkslateblue 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(72, 61, 139, 0) 0%, rgba(72, 61, 139, 0.15) 30%, darkslateblue 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(72, 61, 139, 0) 0%, rgba(72, 61, 139, 0.15) 30%, darkslateblue 100%);
        /* IE 10+ */
        background: linear-gradient(to right, rgba(72, 61, 139, 0) 0%, rgba(72, 61, 139, 0.15) 30%, darkslateblue 100%);
        /* W3C */ }
      .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-shadow.is-active {
        visibility: visible;
        z-index: 5;
        opacity: 1; }

/**
* Contents
*/
.ib-tab-contents.ib-material_black {
  position: relative;
  top: 0px;
  background-color: #151515;
  border: darkslateblue 0px solid;
  visibility: visible; }
  .ib-tab-contents.ib-material_black .ib-tab-contents__item {
    padding: 0;
    border: 0; }
  .ib-tab-contents.ib-material_black.animated {
    -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -moz-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    -o-transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s;
    transition: color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s, width 0.4s, height 0.4s; }

/**
 * customZone
 */
.ib-tab-tabs.ib-material_black .ib-tab-cus {
  padding: 6px 0px 6px 0px;
  width: 200px;
  color: white; }
  .ib-tab-tabs.ib-material_black .ib-tab-cus.to-big {
    min-width: 10px; }

/**
* Context Menu
*/
.ib-context-menu.ib-material_black {
  padding: 3px 0;
  width: 200px;
  background-color: darkslateblue;
  border: solid 1px darkslateblue;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }

.ib-context-menu.ib-material_black .ib-context-menu__items {
  list-style: none;
  margin: 0;
  padding: 0; }
  .ib-context-menu.ib-material_black .ib-context-menu__items .ib-context-menu__item {
    margin-bottom: 2px; }
    .ib-context-menu.ib-material_black .ib-context-menu__items .ib-context-menu__item:last-child {
      margin-bottom: 0; }
    .ib-context-menu.ib-material_black .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link {
      padding: 0px 4px;
      color: #f1f1f1;
      text-decoration: none; }
      .ib-context-menu.ib-material_black .ib-context-menu__items .ib-context-menu__item .ib-context-menu__link:hover {
        color: #f1f1f1;
        background-color: #7a6ec0; }

/**
* DropDown Menu
*/
.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow {
  opacity: 0;
  margin-left: 2px;
  padding: 5px 1.5px 5px 1.5px;
  color: #e7e7e7;
  border-bottom: darkslateblue solid 0px;
  background-color: darkslateblue;
  pointer-events: none;
  cursor: default;
  text-align: center;
  font-size: 14px;
  -webkit-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -moz-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  -o-transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  transition: opacity 0.4s ease-in-out, color 0.4s, border-color 0.4s, background-color 0.4s, border-radius 0.2s;
  z-index: 2; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active {
    opacity: 1;
    color: #e7e7e7;
    background-color: darkslateblue;
    pointer-events: auto;
    cursor: pointer; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.is-active:hover {
    color: white;
    background-color: #7a6ec0; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.left {
    border-radius: 0px 0px 0px 0px; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-arrow.right {
    border-radius: 0px 0px 0px 0px;
    margin-left: 0px; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn {
  margin-left: 2px;
  margin-right: 2px;
  padding: 6px 6px 6px 6px;
  color: #f1f1f1;
  border-bottom: darkslateblue solid 0px;
  background-color: darkslateblue;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -moz-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  -o-transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  transition: opacity 0.3s ease-in-out, color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.3s;
  border-radius: 0px;
  font-size: 14px;
  cursor: pointer; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn.is-active {
    color: #f1f1f1;
    background-color: darkslateblue; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-wrapBtn .ib-tab-tabs-dropbtn:hover {
    color: white;
    background-color: #7a6ec0; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents {
  color: #f1f1f1;
  overflow: auto;
  background-color: darkslateblue;
  border: solid 1px darkslateblue;
  -webkit-box-shadow: 1px 1px 2px #b3b3b3;
  -moz-box-shadow: 1px 1px 2px #b3b3b3;
  box-shadow: 1px 1px 2px #b3b3b3; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents:last-child {
    margin-bottom: 0; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link {
    text-align: center;
    -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -moz-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    -o-transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s, border-radius 0.2s;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 6px 0px 6px;
    color: #f1f1f1;
    background-color: darkslateblue;
    border-radius: 0; }
    .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link:hover {
      color: #f1f1f1;
      background-color: #7a6ec0; }
    .ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-dropdown-contents .ib-tab-tabs-item__link.is-active {
      color: #f1f1f1;
      background-color: #7a6ec0; }

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-material_black,
.ib-tab-contents.ib-material_black,
.ib-context-menu.ib-material_black {
  color: #6d6d6d;
  /* font-family: "나눔고딕", NanumGothic, "Lucida Grande", "Lucida Sans Unicode", Helvetica, "애플고딕", AppleGothic, MalgunGothic, "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 12px;*/
  line-height: 1.5; }

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-contents.ib-material_black h1,
.ib-tab-contents.ib-material_black h2,
.ib-tab-contents.ib-material_black h3,
.ib-tab-contents.ib-material_black h4,
.ib-tab-contents.ib-material_black h5,
.ib-tab-contents.ib-material_black h6 {
  color: #f1f1f1; }

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS

----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-material_black a,
.ib-context-menu.ib-material_black a {
  color: #7a6ec0;
  text-decoration: none; }

.ib-tab-tabs.ib-material_black a:hover,
.ib-context-menu.ib-material_black a:hover {
  color: darkslateblue; }

.ib-tab-tabs.ib-material_black b,
.ib-tab-tabs.ib-material_black strong,
.ib-context-menu.ib-material_black b,
.ib-context-menu.ib-material_black strong {
  font-weight: 700; }

.ib-tab-tabs.ib-material_black em,
.ib-context-menu.ib-material_black em {
  font-style: italic; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link span {
  margin: 0;
  padding: 5px 2px 5px 2px;
  line-height: 1.2; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link i {
  font-size: 12px; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
  font-size: 16px; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
  font-size: 16px; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i,
.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link span {
  margin-left: 2px;
  margin-right: 2px;
  text-decoration: none;
  font-size: 14px; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-close {
  margin-left: 0px;
  margin-right: 0px;
  font-size: 12px; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link i.fa-lock {
  display: none; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link.is-hold i.fa-lock {
  display: block !important; }

@media all and (min-width: 720px) {
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link i {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 16px; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link i.fa-close {
    font-size: 14px; }
  .ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link span.ib-tab-tabs-item__title {
    margin-left: 2px;
    margin-right: 2px; } }

/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS

  ----------------------------------------------------------------------------- */
.ib-tab-tabs.ib-material_black .ib-tab-tabs-item .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-material_black .ib-tab-tabs-dropdown .ib-tab-tabs-item__link img {
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
  line-height: 1.2; }

.ib-tab-tabs.ib-material_black .ib-tab-cus img {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0; }

.ib-tab-contents.ib-material_black .ib-tab-contents__item.iframes {
  padding: 0rem; }

.ib-tab-contents.ib-material_black .ib-tab-contents__item iframe {
  padding: 0rem; }
</pre></body></html>