/* $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
  --------------------------------------------------*/
.tabbernav, .tabbernav a
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #778;
 font: bold 12px Arial, Arial, Helvetica, sans-serif;
 color: #333;
 
}

.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
 
}

.tabbernav li a
{
 padding: 4px 10px;
 margin-left: 3px;
 border-bottom: none;
 text-decoration: none;
}

.tabbernav li a:link {

background: url(/images/des/tab_off.gif) repeat-x left bottom;
border: 1px solid #999;
border-bottom: none;

}

.tabbernav li a:hover
{
background: #e4ecf6;
}

.tabbernav li.tabberactive a
{
background: #e4ecf6;
color: #0033CC;

}

.tabbernav li.tabberactive a:hover
{
background: #e4ecf6;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
div .tabberlive .tabbertab {
 padding:25px;
 border:1px solid #aaa;
 border-top:0;
 background: url(/images/des/tab_bg.gif) repeat-x top;
 min-height: 150px;
 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;
}
