/* $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 {
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	padding-top: 5px;
}

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

ul.tabbernav li a
{
 	padding: 0.4em 1.35em;
 	margin-right: 1px;
 	background: #acacac url(../images/heading-bg.jpg) repeat-x;
 	color: #ccc;
 	text-decoration: none;
 	border-left: 1px solid #000;
 	border-right: 1px solid #000;
 	font-weight: bold;
 	font-size: 11px;
}

ul.tabbernav li a:link { 
	color: #fff;
	background: #ccc url(../images/tab_bk.jpg) repeat-x;	
}
ul.tabbernav li a:visited {
	color: #ccc;
	background: #ccc url(../images/tab_bk.jpg) repeat-x;
}

ul.tabbernav li a:hover
{
 	color: #fff;
 	background: #ccc url(../images/tab_bk.jpg) repeat-x;
}

ul.tabbernav li.tabberactive a
{
	background: #ccc url(../images/tab_bk_hv.jpg) repeat-x;
 	color: #fff;
 	font-weight: bold; 
}

ul.tabbernav li.tabberactive a:hover
{
 	color: #fff;
 	background: #acacac url(../images/tab_bk_hv.jpg) repeat-x;
 	border-bottom: 1px solid #ccc;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	margin-top: 0.2em;
	padding-top: 0.3em;
	height: 70px;
 	overflow: visible;
 	background: #ccc url(../images/bg.jpg) repeat;
}

.tabbernav {
 	background: #acacac url(../images/bg.jpg) repeat;
}

/* 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:auto;
 	overflow: visible;
}

