/* $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:0;
 padding: 0;
 font: 12px arial, sans-serif;
 height:34px;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: block;
 float:left;
 background:none;
 padding:0;
}

ul.tabbernav li a
{
 padding:0 5px;
 margin-right: 1px;
 text-decoration: none;
 text-align:center;
 color: #fff;
 height:33px;
 display:block;
 border-bottom:1px #fff solid;
 background:#6d624e url('media/tab_off.gif') top repeat-x;
 font-weight:normal;
}

ul.tabbernav li a#mytab1nav1 {width:94px;padding-top:2px;height:31px;}
ul.tabbernav li a#mytab1nav2 {width:88px;padding-top:2px;height:31px;}
ul.tabbernav li a#mytab1nav3 {width:91px;line-height:33px;}
ul.tabbernav li a#mytab1nav4 {width:144px;margin:0;line-height:33px;}

ul.tabbernav li a:hover
{
 color:#fff;text-decoration:underline;
}

ul.tabbernav li.tabberactive a
{                                     
 border-bottom:1px #00a4e4 solid;background:#00a4e4 url('media/tab_on.gif') top repeat-x;
}

ul.tabbernav li.tabberactive a:hover
{text-decoration:none;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 line-height:1.2em; border:1px #00a4e4 solid;border-top:none;padding:20px;background:url('media/tab_bg.gif') top repeat-x;
}

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