/* $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: 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; }
ul.tabbernav li a:visited { color: #ccc; }

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

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

ul.tabbernav li.tabberactive a:hover
{
 color: #fe1d25;
 background: url(../images/heading-bg.jpg) repeat-x;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	margin-top: 0.35em;
	border: 1px solid #999;	
	height: 160px;
 	overflow: visible;
 	background: #fff url(../images/searchbox-bg.jpg) repeat-x;
}

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