/* $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: 3px;
	width: auto;
	background-color: #EEEEEE;
	clear: both;
	height: auto;
	border: 1px solid #D5D5D5;
}
.tabberlive {
	margin: 0px;
	padding: 3px;
	width: auto;
	background-color: #EEEEEE;
	clear: both;
	height: auto;
	border: 1px solid #D5D5D5;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	width: 100%;
	font-size: 11px;
	font-weight: bold;
	padding: 0px;
	clear: both;
	margin: 0px;
}

ul.tabbernav li
{
	list-style: none;
	float: left;
}

ul.tabbernav li a
{
	text-decoration: none;
	color: #FFFFFF;
	text-align: center;
	display: block;
	text-transform: capitalize;
	height: auto;
	width: auto;
	margin-top: 0px;
	margin-right: 3px;
	margin-bottom: 3px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	background-color: #000000;
}
ul.tabbernav li a:hover
{
	text-decoration: none;
	background-color: #990000;
}

ul.tabbernav li.tabberactive a
{
	text-decoration: none;
	background-color: #990000;
}

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: auto;
	clear: both;
	display: block;
	margin: 0px;
	height: auto;
	background-color: #FFFFFF;
	border: 1px solid #d5d5d5;
	padding: 5px;
}

.tabbertab ul {
	margin: 0px;
	padding: 0px;	
	list-style-type: none;
}
.tabbertab li {
	list-style-type: none;
	font-size: 15px;
	margin: 0px;
	color: #000000;
	padding: 0px;
	font-weight: bold;
	line-height: 26px;
}
.tabbertab a {
	text-decoration: none;
	color: #000000;
}
.tabbertab a:hover {
	text-decoration: underline;
	color: #990000;
}

