/* $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 {
	width:929px;
}
.tabberlive {
 margin-top:1em;
 width:800px;
 margin:auto;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	padding: 3px 0;
	font: bold 12px Verdana, sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}

ul.tabbernav li a:link { color: #000000; }
ul.tabbernav li a:visited { color: #667; }

/*--------------------------------------------------
Makes the tabs display horizontally
  --------------------------------------------------*/
ul.tabbernav li
{
 list-style: none;
 display: inline;
}

/*--------------------------------------------------
Style for the tabs
  --------------------------------------------------*/
ul.tabbernav li a
{
	text-decoration: none;
	border: 1px solid #000000;
	margin-right: 5px;
	padding-top: 3px;
	padding-right: 1.0em;
	padding-bottom: 3px;
	padding-left: 1.0em;
	background-color: #c74b47;
}

/*--------------------------------------------------
Active when the mouse hovers over the tab
  --------------------------------------------------*/
ul.tabbernav li a:hover
{
	color: #000;
	border-color: #227;
	background-color: #666666;
}

li.tabberactive{}

/*--------------------------------------------------
Style for the tab header that is currently selected
  --------------------------------------------------*/
ul.tabbernav li.tabberactive a
{
 background-color: #fff;
}

/*--------------------------------------------------
Style for the tab header when rolled over
  --------------------------------------------------*/
ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabbernav{
 width:800px;
 padding:0;
 margin:auto;
 margin-top:1em;
}

.tabberlive .tabbertab {
 padding:5px;
 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; */
}

.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}

