/*--------------------------------------------------
  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:0px;
 margin-left: 15px;
 font: bold 12px Verdana, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 3px;
 display: inline;
 background-color: #CEDFDE;
 border:1px solid #005542;
 padding-left: 3px;
 padding-top: 3px;
 padding-right: 3px;
}

ul.tabbernav li.tabberactive 
{ 
  background-color: #005542;
  border:1px solid #005542;
  border-bottom: #FFFFFF;
}

ul.tabbernav li a
{
 padding-left: 0.5em;
 padding-right: 0.5em;
 text-decoration: none;
 color: #005542;
}

ul.tabbernav li a:link { color: #005542; }
ul.tabbernav li a:visited { color: #005542; }

ul.tabbernav li a:hover
{
 color: #AD0042;
}

ul.tabbernav li.tabberactive a
{ 
 color: #FFFFFF;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #FFFFFF;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 padding-top:0px;
 border:1px solid #005542;
 height:auto;
 min-height:300px;
}
/**/
/* for Internet Explorer */
/*\*/
* html .tabberlive .tabbertab {
height: 300px;
}
/**/

