@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding:0px;
 overflow:auto;
 z-index:1;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: block;
 float:left;
 height:38px;
 overflow:hidden;
}

ul.tabbernav li a
{
 position:relative;
 top:10px;	
 padding: 12px 22px 12px 22px;
 margin-right: 3px;
 background: #c7c8c9;
 text-decoration: none;
 overflow:hidden;
 line-height:20px;
}

ul.tabbernav li a:link { color: #231f20; }
ul.tabbernav li a:visited { color: #231f20; }

ul.tabbernav li a:hover
{
 color: #fff;
 background: #231f20;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 color:#427cbf;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #427cbf;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:15px;
 background-color:#fff;
 min-height:100px; 
 overflow:auto;


 /* 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;
}

.tabbertab {z-index:2} 
.tabbertab p {padding:15px 0}
.tabbertab ul, .tabbertab ol {margin:0 0 15px 25px}
.tabbertab a {color:#231f20}

*+html ul.tabbernav li a { line-height:16px; }  