/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  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;
 font: 15px "HelveticaNeue-Light", "Helvetica Neue-Light", "Helvetica-Neue Light", "Helvetica Neue-Light", Helvetica Neue, Helvetica, sans-serif;
}

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

ul.tabbernav li a
{
padding: 5px 15px 3px 15px; 
margin-left: 11px;
 border: 1px solid #f0f0f0;
 border-bottom: none;
 background: gray;
 text-decoration: none;
}

ul.tabbernav li a:link { color: white; }
ul.tabbernav li a:visited { color: white; }

ul.tabbernav li a:hover
{
 color: #000;
 border-top: 1px solid black;
 border-right: 1px solid black;
 border-left: 1px solid black;
 background: #f9edb8;
 
 font-weight: normal;
}

ul.tabbernav li a:active
{
  color: #282828;
  background: white;
  font-weight: normal;
}

ul.tabbernav li.tabberactive a
{
 background-color: white;
 color: black;
 border-top: 1px solid black;
 border-right: 1px solid black;
 border-left: 1px solid black;
border-bottom: 1px solid white;
 font-weight: bold;

}

ul.tabbernav li.tabberactive a:hover
{
 color: black;
font-weight: bold;
 background: white;
 border-top: 1px solid black;
 border-right: 1px solid black;
 border-left: 1px solid black;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding-left: 14px;
 padding-right: 14px;
 padding-top: auto;
 padding-bottom: auto;
 color: white;
 background: white; 
 border-top: 0px;
border-bottom: 1px solid black;
border-top: 1px solid black;
 font: 15px Helvetica Neue, Helvetica, Arial, sans-serif;
}

.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

