/* $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: 5px;}/*--------------------------------------------------  ul.tabbernav = the tab navigation list  li.tabberactive = the active tab  --------------------------------------------------*/ul.tabbernav{	margin: 0px;	padding: 0px;}ul.tabbernav li{	padding: 0px;	margin-top: 5px;	margin-right: 0px;	margin-bottom: 5px;	margin-left: 0px;	display: inline;	list-style-image: none;	list-style-type: none;}ul.tabbernav li a{	text-decoration: none;	background-color: #666666;	border-top-width: 1px;	border-right-width: 1px;	border-bottom-width: 1px;	border-left-width: 1px;	border-top-style: solid;	border-right-style: solid;	border-bottom-style: solid;	border-left-style: solid;	border-top-color: #333333;	border-right-color: #333333;	border-bottom-color: #333333;	border-left-color: #333333;	padding: 3px;	margin-right: 2px;}ul.tabbernav li a:link {	color: #FFFFFF;}ul.tabbernav li a:visited { color: #FFFFFF; }ul.tabbernav li a:hover{	color: #FFFFFF;	background-color: #66CC00;	border: 1px solid #669900;}ul.tabbernav li.tabberactive a{	background-color: #66CC00;	color: #666666;}ul.tabbernav li.tabberactive a:hover{	color: #FFFFFF;	background-color: #66CC00;	border-bottom-width: 1px;	border-bottom-style: solid;	border-bottom-color: #669900;}/*--------------------------------------------------  .tabbertab = the tab content  Add style only after the tabber interface is set up (.tabberlive)  --------------------------------------------------*/.tabberlive .tabbertab {	padding:5px; /* overflow:auto; */	border: 1px solid #333333;	margin-top: 5px;}/* 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;}