.border-box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tabs {
  clear: both;
  float: left;
  width: 100%;
}
.tabs .tab {
  background: #F0F0F0;
  border: 1px solid #CCC;
  border-right: none;
  display: block;
  float: left;
  font-weight: bold;
  height: 32px;
  line-height: 32px;
  margin-bottom: -1px;
  padding: 0 13px;
  position: relative;
  z-index: 2;
}
.tabs .tab:last-child {
  border-right: 1px solid #CCC;
}
.tabs .tab.active {
  background: #FFF;
  border-bottom: 1px solid #FFF;
}
.tab-content-wrapper .tab-content {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #CCC;
  clear: both;
  float: left;
  height: auto;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  width: 100%;
}
