/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */
.tabber{

}
/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabber h2 { font-size:11px;}
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {

}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav{
 margin:0;
 padding:0;
 height: 30px;
 background: #ccc url(../images/tab_top.gif);
}

ul.tabbernav li{
margin-top: 3px;
margin-right: 1px;
margin-left: 2px;
display: block;
float: right;
background: #EEE;
border-bottom: 2px solid #ddd;
}

ul.tabbernav li a{
display: inline-block;
line-height: 25px;
padding: 0 10px;
}

ul.tabbernav li a:link {}
ul.tabbernav li a:visited { }

ul.tabbernav li a:hover
{

}

ul.tabbernav li.tabberactive
{
background: #FFF;
border-bottom: 2px solid #FFF;
}
ul.tabbernav li.tabberactive a
{
color: #FF6600;
}
ul.tabbernav li.tabberactive a:hover
{

}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
clear: both;
margin-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;
}