/* $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
  --------------------------------------------------*/
div.tabber {
	display:none;
}
div.tabberlive {
	float: left;
	display: inline;
	margin: 0;
	padding: 0;
	border: 0;
	width: 562px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
	float:left;
	display: inline;
	margin: 0;
	padding: 0;
	width: 562px;
	height: 30px;
	list-style-type: none;
}

ul.tabbernav li {
	float: left;
	padding: 0 5px 0 0;
	width: 200px;
	height: 30px;
}

ul.tabbernav li a {
	display: block;
	margin: 0;
	padding: 4px 10px 0 10px;
	border: 0;
	width: 180px;
	height: 26px;
	color: #b95;
	font-size: 112%;
	font-weight:bold;
	line-height: 1em;
	text-decoration:none;
	background: #e6dcbc;
}

ul.tabbernav li a:hover {
	color: #e70;
	background: #d6ccac;
}

ul.tabbernav li.tabberactive a {
	color: #f90;
	background: #f6eccc;
}

ul.tabbernav li.tabberactive a:hover {
	color: #f90;
	background: #f6eccc;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	clear: both;
	margin: 0;
	padding: 10px;
	border: 0;
	width: 542px;
	min-height: 100px;
	height: auto !important;
	height: 100px;
	background: #f6eccc;

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

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
	display:none;
}
.tabberlive .tabbertab h3 {
}


