/********************************************************************************
                Tabber CSS
********************************************************************************/

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  Some styles to help most WordPress themes
  --------------------------------------------------*/
.tabberlive h3 { /* hide std widget titles */
display:none;
}

ul.tabbernav li { /* hide bullets from tab headings */
background:none;
padding:5px 5px 5px 0;
list-style:none;
float: none;
}

ul.tabbernav .two-columns{
  display: inline-block;
}
/********************************************************************************
                Style 1
********************************************************************************/
/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.style1 {
background: #D6D6D8;
}
.tabberlive.style1 {
padding:15px 0 3px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
.style1 ul.tabbernav {
 margin:0;
 padding: 1px 0;
}
*html .style1 ul.tabbernav{  /* ie6 only */
 padding: 2px 0;
}
*+html .style1 ul.tabbernav{  /* ie7 only */
 padding: 2px 0;
}
.style1 ul.tabbernav li {
 list-style: none;
 margin: 0;
 display: inline;
}
.style1 ul.tabbernav li a { /* inactive tabs */
background-color:#fff;
color:#666769;
font-size:11px;
padding:5px;
font-weight: bold;
margin-right: 7px;
}
.style1 ul.tabbernav li.tabberactive a{ /* active tab */
background-color:#666769;
border:1px solid #666769;
color:white;
font-size:11px;
padding:5px;
}
.style1 ul.tabbernav a:hover {
background:#666769;
text-decoration:none;
color:#fff;
}
.style1 ul.tabbernav {
 margin:0 5px !important;
 padding: 3px 0 0 5px !important;
 font: bold 12px Verdana, sans-serif;
 float: none;
}



/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.style1.tabberlive .tabbertab {
background:none repeat scroll 0 0 #FFFFFF;
margin:10px;
padding:10px;
border: 1px solid #CCCCCC;
}

/* Example of using an ID to set different styles for the tabs on the page */
.style1.tabberlive#tab1 {
}
.style1.tabberlive#tab2 {
}
.style1.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}

.style1 .tablist {
 font-size:.8em;
}

/********************************************************************************
                Style 2
********************************************************************************/
/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.style2.tabberlive {
 margin-top:1em;
 margin-bottom: 20px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
.style2 ul.tabbernav
{
  margin: 0;
  padding: 3px 0 0 0;
  margin-left: 0px !important;
  float: none;
  list-style: none;
  display: table;
  table-layout: fixed;
  width: 100%;
}

.style2 ul.tabbernav li
{
  list-style: none;
  margin: 0;
  display: table-cell;
  font-size: 12px;
  height: 50px;
  padding: 0px 5px 5px 5px;
  text-align: center;
  text-transform: capitalize;
}

.style2 ul.tabbernav li:hover
{

}

.style2 ul.tabbernav li a
{
 text-decoration: none;
 color: #a1a1a1;
 height: 100%;
 display: block;
 line-height: 45px;
 width: 100%;
 background: #1e1e1e;
}

.style2 ul.tabbernav li:hover a
{
  background: #f1eb30;
  color: black;
}

.style2 ul.tabbernav li.tabberactive, .style2 ul.tabbernav li.tabberactive a 
{
  color: white !important;
  background: #1e1e1e !important;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.style2.tabberlive .tabbertab {
  padding:5px;
  background-color: #1E1E1E;
  overflow: hidden;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab
.tabberlive .tabbertab h2 {
 display:none;
}*/
.style2.tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.style2.tabberlive#tab1 {
}
.style2.tabberlive#tab2 {
}
.style2.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}

/* Responsive Behavior */

@media only screen and (max-width : 480px){
  
}
