/* $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!
  --------------------------------------------------*/
#tabdiv ul li{
	background-image: none;
	}

.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
  --------------------------------------------------*/
  
 /* controls the top of the container*/
ul.tabbernav{
	background-image: none;
	border: 0;
	font: bold 13px Verdana, sans-serif;
	margin: 0;
	padding: 0;
	}

ul.tabbernav li{
	background-image: none;
	background-position: -20px -20px;
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 5px;
	}

/* around tab names */
ul.tabbernav li a{
	background-image: none;
	list-style-type: none;
	padding: 8px 10px 30px 10px;
	margin: 0 10px 30px 0;
	text-decoration: none;
}

ul.tabbernav li a:link{
	background-image: none;
	color: #999;
	}
	
ul.tabbernav li a:visited{
	background-image: none; color: #667; }

/* tab hover state */
ul.tabbernav li a:hover{
	background-image: none;
	color: #000;
	}

ul.tabbernav li.tabberactive a{
	color: #000;
	}

ul.tabbernav li.tabberactive a:hover{
	color: #000;
	}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
 
 /* the tab container box */
  
.tabberlive .tabbertab{
	border-top: 2px solid #999;
	padding: 20px 0 0 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;
}
.tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}
