/* $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!
  --------------------------------------------------*/
.tabber {
	display:none;
}
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0px;
 padding: 3px 0px 1px 0px;
 border-bottom: 1px solid #d9d9d9;
}

ul.tabbernav li
{
 white-space:nowrap;
 list-style: none;
 margin: 0px;
 padding:0px 5px 0px 0px;
 display: inline;
 font-size:11px;
}

ul.tabbernav li a
{
 color: #000000;
 font-size:11px;
 font-weight:bold;
 padding: 3px 7px 3px 7px;
 margin: 0px;
 border: 1px solid #d9d9d9;
 border-bottom: none;
 background: #e0e0e0;
 text-decoration: none;
}

ul.tabbernav li a:link { color: #000000; }
ul.tabbernav li a:visited { color: #000000; }

ul.tabbernav li a:hover
{
 color: #fff;
 background:#abadb3;
 border-color: #d9d9d9;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 margin:0px;
 padding:5px 0px 0px 5px;
 border:1px solid #d9d9d9;
 border-top:0px;
 text-align: left;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 height:40px;

 /* 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 p {
	margin:0px;
	padding:0px;
}
.tabberlive .tabbertab p form {
 margin:0px;
 padding:0px;
}