@charset "UTF-8";
/* CSS Document */

.tabbertab .column1, .tabbertab .column2 { float:left; width:48%; }
.column2 { margin-left:20px; }

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber { }
.tabberlive { margin-top:1em; }

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #EE9E44;
 font: bold 12px "Lucida Grande",Verdana, sans-serif;
}

ul.tabbernav li {
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a {
 padding: 3px 5px;
 margin-left: 5px;
 border: 1px solid #EE9E44;
 border-bottom: none;
 background: #F3E8AA;
 text-decoration: none;
}

ul.tabbernav li a:link { }
ul.tabbernav li a:visited { }

ul.tabbernav li a:hover {
 color: #92C23E;
 border-color: #92C23E;
}

ul.tabbernav li.tabberactive a {
 background-color: #fff;
 border-bottom: 1px solid #fff;
}

ul.tabbernav li.tabberactive a:hover {
 background: white;
 color:#CF5827;
 border: 1px solid #EE9E44;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:2em 0;
 border:0;
 border-top:0;
 background:#FDF6D2 url(img/tabber_fade.gif) 0 0 repeat-x;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 { display:none; }