/* $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;
}
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	margin-top: 0px;
	line-height: 15pt;
	text-align: justify;
	width: 440px;
}


/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
	width: 445px;
	margin-top: 0px;
	float: left;
	padding-left: 10px;
	margin-bottom: 20px;
}
.tabberlive {
	height: auto;
	width: 460px;
	margin-left: 5px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	margin:0;
	font: bold 12px Verdana, sans-serif;
	padding-top: 3px;
	padding-right: 0;
	padding-left: 0;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{margin-left: 2px;
	margin-right: 12px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #333;
	border: 1px dotted #333;
	padding-top: 3px;
	padding-right: 0.5em;
	padding-bottom: 3px;
	padding-left: 0.5em;
}

ul.tabbernav li a:link {
	color: #333;
}
ul.tabbernav li a:visited {
	color: #333333;
}

ul.tabbernav li a:hover
{
	color: #333333;
}

ul.tabbernav li.tabberactive a
{
	background-color: #CCC;
}

ul.tabbernav li.tabberactive a:hover
{
	color: #000;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-align: justify;
	position: relative;
	height: 140px;
	overflow: auto;
	width: 465px; /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */
	margin-top: 10px; /* overflow:auto; */
	border: 1px dotted #CCC;
}

/* 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:200px;
 overflow:auto;
}
