/*
** jQuery Basic Tabs
** @author Jon Lunsford || jon@capturethecastle.net
*/
.basic-tabs * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.basic-tabs > ul {
  float: left;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.basic-tabs > ul li {
  float: left;
  margin-bottom: -1px;
  height: 34px;
  position: relative;
}
.basic-tabs > ul li.active a {
  color: #08C;
  border: 1px solid #ddd;
  border-bottom-color: #fff;
  background: #fff;
  cursor: default;
}
.basic-tabs > ul li.active a:hover {
  background: #fff;
  border-bottom-color: #fff;
} 
.basic-tabs > ul li a {
  color: #555;
  display: inline-block;
  padding: 6px 12px;
  line-height: 20px;
  border: 1px solid transparent;
  margin-right: 2px;
  font-size: 13px;   
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.basic-tabs > ul li a:hover {
  background: #f0f0f0;
  border-bottom-color: #ddd;
}
.basic-tabs > ul + div {
  clear: both;
}
.basic-tabs > ul + div > div {
  display: none;
  padding: 15px;
}
/* vertically aligned tabs */
.basic-tabs.tabs-left > ul { 
  width: 150px;
  border-bottom: none;
  border-right: 1px solid #ddd;
}
.basic-tabs.tabs-left > ul li {
  width: 101%;
  height: 40px;
  margin-bottom: 5px;
}
.basic-tabs.tabs-left > ul li:last-child {
  margin-bottom: 0;
}
.basic-tabs.tabs-left > ul li a { 
  width: 100%;
  height: 100%;
  border-radius: 4px 0 0 4px;
  padding: 9px 12px 6px 12px;
  background: #f0f0f0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-right-color: #ddd;
}
.basic-tabs.tabs-left > ul li a:hover {
  border-bottom-color: rgba(0, 0, 0, 0);
  border-right-color: #ddd;
  background: #e7e7e7;
}
.basic-tabs.tabs-left > ul li.active a {
  border-right-color: #fff;
  border-bottom-color: #ddd;
  background: #fff;
}
.basic-tabs.tabs-left > ul li.active a:hover {
  border-bottom-color: #ddd;
}
.basic-tabs.tabs-left > ul + div {
  float: left;    
  width: 550px;      
  clear: right;
}
.basic-tabs.tabs-left > ul + div > div {
  margin-left: -1px;
  border: 1px solid #ddd;  
  padding: 10px 20px;
  min-height: 268px;  
  background: #fff;
}
