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

.tabber_top {
}

.tabberlive {
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
margin: 2px;
padding: 2px;
border-bottom: 0px solid #4781de;
font-family: arial;
font-size: 12px;
font-weight: bold;
}

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

ul.tabbernav li a {
 padding: 1px;
 margin-left: 0px;
 border: 0px solid #1c61cf;
 border-bottom: none;
 background: #0045b1;
 text-decoration: none;
}

ul.tabbernav li a:link { color: #88b6fa; }
ul.tabbernav li a:visited { color: #88b6fa; }

ul.tabbernav li a:hover
{
 color: #9bc0f8;
 background: #1c5dc2;
 text-decoration: underline;
 font-style: oblique;
 font-weight: italics;
}

ul.tabbernav li.tabberactive a
{
 color: #88b6fa;
 background-color: #0f53bb;
 border-bottom: 0px solid #4781de;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #9bc0f8;
 background: #1a62d2;
 border-bottom: 0px solid #4781de;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive, .tabbertab {
 padding:0px;
 border:0px solid #254c87;
 border-top:0;
}


/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

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

.tabbertab2 {
display: none;
}