/* $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!
  --------------------------------------------------*/
.tabberplive .tabberptabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabberp {
}
.tabberplive {
 margin-top:0em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabberpnav
{
 margin:0px;
 margin-right:68px;
 padding: 3px 0;
 border-bottom: 0px solid #6699CC;
 font: bold 10px Verdana, sans-serif;
 width:auto;
 text-align:left;
}

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

ul.tabberpnav li a
{
 padding: 2px 0.5em;
 margin-left: 3px;
 border: 1px solid #cddff3;
 background: #e1eaf5;
 text-decoration: none;
 border-bottom: 0px solid #6699CC;
}

ul.tabberpnav li a:link { color: #6699CC; }
ul.tabberpnav li a:visited { color: #6699CC; }

ul.tabberpnav li a:hover
{
 color: #6699CC;
 background: #e1eaf5;
 border: 1px solid #cddff3;
 border-bottom: 0px solid #6699CC;
}

ul.tabberpnav li.tabberpactive a
{
 color: #336699;
 background-color: #cddff3;
 border: 2px solid #487eb4;
 border-bottom: 2px solid #cddff3;
}

ul.tabberpnav li.tabberpactive a:hover
{
 color: #336699;
 background: #cddff3;
 border-bottom: 2px solid #cddff3;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberplive .tabberptab {
 padding:0px;
 padding-bottom:0px;
 border:1px solid #6699CC;
 width:auto;
 text-align:left;
 background:#cddff3;

 /* 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 */
.tabberplive .tabberptab h2 {
 display:none;
}
.tabberplive .tabberptab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberplive#tab1 {
}
.tabberplive#tab2 {
}
.tabberplive#tab2 .tabberptab {
 height:200px;
 overflow:auto;
}

fieldset {
color:#336699;
border:1px solid #6699CC;
}

fieldset table tr td {
color:#336699;
}
