/* $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!
  --------------------------------------------------*/
.tabber2live .tabber2tabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber2 = before the tabber2 interface is set up
  .tabber2live = after the tabber2 interface is set up
  --------------------------------------------------*/
.tabber2 {
}
.tabber2live {
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabber2nav = the tab navigation list
  li.tabber2active = the active tab
  --------------------------------------------------*/
ul.tabber2nav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #778;
 font: bold 12px Verdana, sans-serif;
}

ul.tabber2nav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabber2nav li a
{
 padding: 3px 0.5em;
 
 border: 1px solid #778;
 border-bottom: none;
 background: #DDE;
 text-decoration: none;
}

ul.tabber2nav li a:link { color: #448; }
ul.tabber2nav li a:visited { color: #667; }

ul.tabber2nav li a:hover
{
 color: #000;
 background: #AAE;
 border-color: #227;
}

ul.tabber2nav li.tabber2active a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
}

ul.tabber2nav li.tabber2active a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabber2tab = the tab content
  Add style only after the tabber2 interface is set up (.tabber2live)
  --------------------------------------------------*/
.tabber2live .tabber2tab {
 padding:5px;
 border:1px solid #aaa;
 border-top:0;

 /* 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 */
.tabber2live .tabber2tab h2 {
 display:none;
}
.tabber2live .tabber2tab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabber2live#tab1 {
}
.tabber2live#tab2 {
}
.tabber2live#tab2 .tabber2tab {
 height:200px;
 overflow:auto;
}

