/* $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: 0px;
 padding: 0px;
 padding-bottom: 22px;
 border-bottom: 1px solid #888888;
 font: 10px Verdana, sans-serif;
 padding-left: 10px;
 position: relative;
 z-index: 1;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 margin-left: 1px;
 display: inline;
 /*border: 1px solid #2264A4;
 border-bottom: 1px solid #7BBCDD;*/
 padding-top: 2px;
 padding-bottom: 2px;
 
 padding: 0px;
 margin: 0px;
 text-align: center;
}

ul.tabbernav li span.aa{
  height: 14px;
  /*height: auto;*/
  background: url(../images/tabs.png) 0 -50px;
  float: left;
  border-bottom: 1px solid #888;
  padding: 7px 0px 1px 9px;
}

ul.tabbernav li span.bb{
  display: block;
  width: 10px;
  height: 14px;
  /*height: auto;*/
  background: #fff url(../images/tabs.png) -490px 0;
  float: left;
  border-bottom: 1px solid #888;
  padding: 4px 0;
}

ul.tabbernav li a:hover span.aa{
  background-position: 0 -150px; border-bottom: 1px solid #888;
}

ul.tabbernav li a:hover span.bb{
  background-position: -490px -150px;
}

ul.tabbernav li a
{
 /*border: 1px solid #A0DDFC;
 border-bottom: none;*/
 color: #888;
 text-decoration: none;
 cursor: hand;
 /*background: url("../images/tab10.gif") repeat-x;
 padding: 3px 10px;
 font-size: 10px;*/ 
}

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

ul.tabbernav li a:hover
{
/* color: #000;*/
 /*background: url("../images/tab10-s.gif") repeat-x;*/
 /*border: 1px solid #82CDFC;
 border-bottom: none;*/
 /*border-color: #A2C3EC;*/
 
 color: #333;
 background: #fff;
}

ul.tabbernav li.tabberactive a
{
 /*background: url("../images/tab10-s.gif") repeat-x;*/
 color: #333;
 /*border: 1px solid #82CDFC;
 border-bottom: none;*/
}

ul.tabbernav li.tabberactive span.aa{
  background: url(../images/tabs.png) 0 -250px; border-bottom: 1px #FCFCFE solid;
}

ul.tabbernav li.tabberactive span.bb{
  background: url(../images/tabs.png) -490px -200px; border-bottom: 1px #FCFCFE solid;
}

ul.tabbernav li.tabberactive a:hover span.aa
{
/*
 background: url("../images/tab10-s.gif") repeat-x;
 color: #fff;
 border: 1px solid #82CDFC;
 border-bottom: none;
*/
  background: url(../images/tabs.png) 0 -250px; border-bottom: 1px #FCFCFE solid;
}

ul.tabbernav li.tabberactive a:hover span.bb
{
  background: url(../images/tabs.png) -490px -200px; border-bottom: 1px #FCFCFE solid;
}


/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:10px;
 border: 1px solid #888;
 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 */
.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:200px;
 overflow:auto;
}
