/* $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: 6px 0 20px 15px; }

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/


ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #39501F;
 font: bold small Lucida Sans, Lucida Grande, Lucida Sans Unicode, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0!important; 
 display: inline;
 padding: 0px 0 3px 8px;
 border-right: 4px solid #4a6225;
 background: #7aa33e url(img/tabcorner2-topleft.gif) top left no-repeat;
}

ul.tabbernav li { padding-top: 0; } /* targets IE */
html>/**/body ul.tabbernav li { padding-top: 4px;# } /* targets FF and other modern browsers */




ul.tabbernav li a
{
 padding: 6px 10px 0 2px;
 margin: 0 0 0 0;
 text-decoration: none;
 text-transform: uppercase;
 color: #fff;
 background: #7aa33e url(img/tabcorner2-topright.gif) top right no-repeat;
font-size: 90%;
}


ul.tabbernav li a:hover
{
 color: #fff;
}

ul.tabbernav li.tabberactive
{
  background: #39501F url(img/tabcorner-topleft.gif) top left no-repeat;
}

ul.tabbernav li.tabberactive a
{
 padding-bottom: 4px; 
  background: #39501F url(img/tabcorner-topright.gif) top right no-repeat;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #fff;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/



.tabberlive .tabbertab /* set a fixed height here once content is established, otherwise box adjusts to content */
{
 height:390px;
 padding:10px 10px 10px 15px;
 border-top:0;
 background: url(img/sidebar-box.gif) bottom right no-repeat;
 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;
}


