/*--------------------------------------------------
  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 {

}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin: 0px;
 margin-bottom: 5px;
 padding: 3px 0;
 font: normal 12px Arial;
 }

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;

}

ul.tabbernav li a
{
 padding: 3px 0.5em;
 border: 1px solid #F0EEE8;
 text-decoration: none;
 background-color: #FFFFFF;
 font-weight: bold;
 margin-right: 3px;
}

ul.tabbernav li a:link { color: #333333;  font-weight: bold;}
ul.tabbernav li a:visited { color: #333333;  font-weight: bold;}

ul.tabbernav li a:hover
{
 color: #333333;
 background-color: #F0EEE8;
 font-weight: bold;
 }

ul.tabbernav li.tabberactive a
{
 background-color: #F0EEE8;
 font-weight: bold;
  border-bottom: 1px solid #F0EEE8;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #333333;
 background-color: #F0EEE8;
 font-weight: bold;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:0px;
 /*border: 1px solid #E3E0D5;*/
 font-family: Arial;
 font-size: 12px;
 /*background-color: #E3E0D5;*/
 /*background: #F0EEE8;*/
  /*border-top: 3px solid #000000;*/
}

.tabberlive .tabbertab td {

 font-family: Arial;
 font-size: 12px;
 background-color: #FFFFFF;

}


/*
 If desired, set a height and add a scrollbar
.tabberlive#tab2 .tabbertab{
 height: 320px;
 overflow: scroll;
}
*/