/* TABS STYLING */
/*----- Tabs -----*/
.tabs {
    width: 100%;
    display: inline-block;
		z-index: 100;
		position: relative; 
}
 
/*----- Tab Links -----*/
/* Clearfix */
.tab-links:after {
    display: block;
    clear: both;
    content: '';
}
 
.tab-links li {
    margin: 0px 0px;
    float: left;
    list-style: none;
    background-image: none;
}
 
.tab-links a {
  padding: 6px;
  display: inline-block;
  border-radius: 5px 5px 0px 0px;
  background: #efefef; /* #7FB5DA; */
  font-size: 12px;
  font-weight: bold;
  color: #555;
  border-top: 1px solid #C0C0C0;
  border-left: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  transition: all linear 0.15s;
	text-decoration: none;
}

.tab-links a:hover {
  background: #a9bae2; /* #a7cce5; */
  text-decoration: none;
  color: #93052A;
	text-decoration: underline;
 }
 
li.active a, li.active a:hover {
    background: #fff; /* #ebf0fe; */
    color: #282888; /* #fff; #4c4c4c; */
    border-left: 1px solid #666;
    border-top:  1px solid #666;
    border-right:  1px solid #666;
    border-bottom: 0px solid #fff !important;
  }
 
li.active a:hover {
	color: #93052A;
}

/*----- Content of Tabs -----*/
.tab-content {
  padding: 8px;
  border-radius: 6px;
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15);
  background: #fff; 
  border: 1px solid #666;
	margin-top: -1px !important;  /* test to see if border can be 'hidden' behind the active tab */
}
 
.tab {
   display: none;
   padding: 12px;
}
 
.tab.active {
 display: block;
}
/* end TABS */
