/* $Id: tabs.css,v 1.10 2010/10/01 08:01:19 natura-e 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:10px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 5px 0 5px;
 height:14px;
 border-bottom: 1px solid #ccc;
}

* html ul.tabbernav
{
 padding: 5px 0 4px;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 font-size:       11px;
 padding:         4px 2px 4px 4px;
 margin-right:    1px;
 border-top:      1px solid #ccc;
 border-left:     1px solid #ccc;
 border-right:    1px solid #ccc;
 background:      #f5f5f5;
 text-decoration: none;
}

ul.tabbernav li a:link    { color: #f90; }
ul.tabbernav li a:visited { color: #f90; }

ul.tabbernav li a:hover
{
 color: #000;
 background: #d7d7d7;
 border-color: #ccc;
 text-decoration:none;
}

ul.tabbernav li.tabberactive a
{
	position:relative;
	font-weight:bold;
	background: #fff;
	border-bottom: 3px solid #fff;
}

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

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:0px solid #aaa;
 border-top:0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* 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;
}

/* Example of using an ID to set different styles for the tabs on the page */

/*.tabberlive#tab1 .tabbertab {
 height:80px;
 overflow:hidden;
}
.tabberlive#tab2 .tabbertab {
 height:480px;
 overflow:hidden;
}
*/
