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

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 list-style-type:none;
 margin:0;
 padding:0;
 height:30px;
 border-bottom: 3px solid #3b3420;
 line-height:1em;
}

ul.tabbernav li
{
 margin:0 4px 0 0;
 padding:0;
 float: left;
 width:92px;
 height:30px;
 background:transparent url(../../images/tabberoff.gif) no-repeat left top;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	ul.tabbernav li {margin:0 4px -2px 0;}
}

ul.tabbernav li.tabberactive
{
 background:transparent url(../../images/tabberon.gif) no-repeat left top;
}

ul.tabbernav li a {
 text-decoration: none;
 font-weight:bold;
 font-size:10px;
 padding:3px 10px 0 10px;
 margin:0;
 text-align:center;
 display:block;
 height:30px;
}

.tabbernav a:link {color:#fff; text-decoration:none;}
.tabbernav a:visited {color:#fff; text-decoration:none;}
.tabbernav a:hover {color:#eee; text-decoration:none;}
.tabbernav a:active {color:#eee; text-decoration:none;}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;

 /* 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;
}
.tabberlive .tabbertab h3 {
 display:none;
}
