/* $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 
{
	display:none;
}
.tabberlive {
 /*margin-top:1em;*/
 margin-top:2px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
margin:0;
padding: 1px 0;
/*
border-bottom: 1px solid #778;
font: bold 12px Verdana, sans-serif;
	padding:5px 15px 4px 6px;
	padding:0 0 0 4px;
	text-decoration:none;
*/
}
ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}
/* non selected top tabs */
/*
	padding: 3px 0.5em;
*/
ul.tabbernav li a
{
	float:left;
	background:url("tableftG.gif") no-repeat left top;
	margin:0;
	padding:0 0 0 4px;
	text-decoration:none;
	display:block;
    -moz-user-select:none;
    -khtml-user-select: none;
}
ul.tabbernav li a span
{
	background:url("tabrightG.gif") no-repeat right top;
	float:left;
	display:block;
	padding:5px 15px 4px 6px;
	color:#448;
	text-decoration:none;
}
tabbertab tabbertabhide {
	display:none;
}

ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }

/* hover over unselected tab */
ul.tabbernav li a:hover
{
	background-position:0% -42px;
	text-decoration:none;
}
ul.tabbernav li a:hover span
{
	background-position:100% -42px;
	text-decoration:none;
}

ul.tabbernav li.tabberactive a
{
	background-position:0% -42px;
	text-decoration:none;
}
ul.tabbernav li.tabberactive a span 
{
	background-position:100% -42px;
	color: #000;
	text-decoration:none;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/

/* the container for the buttons under the tabs */
.tabberlive .tabbertab {
	width:100%;
	float:left;
	padding:1px;
	/*border-top:0;*/

 /* If you don't want the tab size changing whenever a tab is changed you can set a fixed height */
 /*height:100px;*/

 /* 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 {
 display:none;
}
/*.tabberlive#tab2 .tabbertab { height:200px; overflow:auto;}*/
/* Example of using an ID to set different styles for the tabs on the page */

.tabMain#tab1 {
overflow:auto;
}
.tabMain#tab2 {
 height:600px;
}

/*
.tabberlive .tabbertab {
  height:410px;
}
*/
/*
.tabberlive#tab1 .tabbertab {
height:700px;
 overflow:auto;

}
.tabberlive#tab2 .tabbertab {
height:570px;
 overflow:auto;
}
.tabberlive#tab3 .tabbertab {
height:570px;
 overflow:auto;
}
.tabberlive#tab4 .tabbertab {
height:570px;
 overflow:auto;
}
.tabberlive#tab5 .tabbertab {
height:570px;
 overflow:auto;
 */
