/* $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 {
	margin: 0px;
	padding: 1%;
	width: 98%;
	background-color: #FFFFFF;
}
.tabberlive {
	margin: 0px;
	padding: 1%;
	width: 98%;
	background-color: #FFFFFF;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	width: 100%;
	font-size: 12px;
	font-weight: bold;
	padding: 0px;
	clear: both;
	margin: 0px;
}

ul.tabbernav li
{
	list-style: none;
	padding: 0px;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

ul.tabbernav li a
{
	text-decoration: none;
	color: #FFFFFF;
	text-align: center;
	background-color: #2C2C2C;
	display: block;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 3px;
	margin-bottom: 3px;
	margin-left: 0px;
}
ul.tabbernav li a:hover
{
	background-color: #3C3C3C;
}

ul.tabbernav li.tabberactive a
{
	background-color: #3C3C3C;
}

ul.tabbernav li.tabberactive a:hover
{

}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	/* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */
	margin: 0px;
	width: 100%;
	padding: 0px; /* 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 {
 height:200px;
 overflow:auto;
}
.tabcenter {
	width: 94%;
	clear: both;
	background-color: #EEEEEE;
	padding: 3%;
	display: block;
	margin: 0px;
}

.tabbertab ul {
	margin: 0px;
	padding: 0px;
	width: 100%;
	list-style-type: none;
	clear: both;
}
.tabbertab li {
	padding: 0%;
	list-style-type: none;
	line-height: 22px;
	font-size: 13px;
	margin: 0px;
	width: 100%;
	color: #000000;
}
.tabbertab a {
	text-decoration: none;
	color: #000000;
}
.tabbertab a:hover {
	text-decoration: underline;
}

