/* $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 {
	float: right;
	width: 368px;
	margin: 1px 0 20px;
	font-size: 90%;
	}

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

ul.tabbernav li
{
	list-style: none;
	margin: 0 1px 0 0;
	display: inline;
}

ul.tabbernav li a {
	padding: 7px 7px 7px 8px;
	color: #fff;
	font-weight: bold;
	background: url(images/tab.gif) bottom left repeat-x;
	border-top: 1px solid #608b72;
	border-left: 1px solid #608b72;
	border-right: 1px solid #608b72;
}

/*
ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }
*/

ul.tabbernav li a:hover
{
	background: url(images/tab_on.gif) top left repeat-x;
	color: #1C5A35;
	text-decoration: none;
	border-top: 1px solid #608b72;
	border-left: 1px solid #608b72;
	border-right: 1px solid #608b72;
}

ul.tabbernav li.tabberactive a
{
	background: url(images/tab_on.gif) top left repeat-x;
	color: #1C5A35;
	border-top: 1px solid #608b72;
	border-left: 1px solid #608b72;
	border-right: 1px solid #608b72;
}

ul.tabbernav li.tabberactive a:hover
	text-decoration: none;
{
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	height: 319px;
	padding: 0 10px 10px;
	background: #f9fbe6;
	border-left: 1px solid #608b72;
	border-right: 1px solid #608b72;
	border-bottom: 1px solid #608b72;
	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 {
}

