.unselectable, .tab .tab-legend > li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.tab {
  width: 100%;
  margin: 20px 0;
  padding: 0 10px;
  overflow: hidden; }

.tab > .tab-legend, .tab > .tab-content, .tab-legend > li, .tab-content > li {
  margin: 0;
  padding: 0;
  list-style: none; }

.tab .tab-legend {
  font-family: Helvetica, Arial, sans-serif;
  overflow: hidden; }

.tab .tab-legend > li {
  padding: 15px 15px;
  color: #000033;
  font-size: 14px;
  text-transform: capitalize;
  float: left;
  cursor: pointer; }

.tab .tab-legend > li {
  background-color: #dedede; }

.tab .tab-legend .active {
  padding: 13px 15px 15px 15px;
  background-color: #FFF;
  color: #000033;
  font-weight: bold;}

.tab .tab-content {
  padding: 10px 25px 35px 35px;
  width: 100%;
  min-height: 399px;
  max-height: 400px;
  position: relative;
  overflow: auto; }
.tab .tab-content::-webkit-scrollbar {
    width: 5px;
}
.tab .tab-content::-webkit-scrollbar-track {
    background-color: #c1c1ff;
    border-left: 1px solid #c1c1ff;
}
.tab .tab-content::-webkit-scrollbar-thumb {
    background-color: #000033;
}
.tab .tab-content::-webkit-scrollbar-thumb:hover {
    background-color: #00009e;
}

.tab .tab-content > li {
  position: relative;
  overflow: hidden; }

/*Horizontal specific*/
.tab-horiz .tab-legend {
  width: 100%; }

.tab-horiz .tab-legend > li {
  border-top: solid 1px #CCC;
  border-right: solid 1px #CCC;
  border-bottom: solid 1px #CCC; }

.tab.tab-horiz .tab-legend .active {
  border-top: solid 4px #dc5147;
  border-bottom: 0; }

.tab-horiz .tab-legend > li:first-child {
  border-left: solid 1px; }

.tab-horiz .tab-content {
  width: 100%;   }

/*Vertical specific*/
.tab-vert .tab-legend {
  width: 20%;
  float: left; }

.tab.tab-vert .tab-legend .active {
  border-left: solid 3px #000033; }

.tab-vert .tab-legend > li {
  width: 100%;
  border-top: solid 1px #CCC;
  border-right: solid 1px #CCC; }

.tab-vert .tab-legend > li.active {
  border-right: 0; }

.tab-vert .tab-content {
  width: 80%;
  display: block;
  float: left; }

.tab-vert .tab-content > li {
  min-height: 100%;
  display: block; }
