/* $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!
  --------------------------------------------------*/
.tabberplive .tabberptabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabberp {
}
.tabberplive {
 margin-top:2em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabberpnav
{
	margin:0px;
	margin-right:68px;
	padding: 3px 0;
	width:auto;
	text-align:left;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	font-family: Verdana, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
}

ul.tabberpnav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabberpnav li a
{
	padding: 2px 0.5em;
	margin-left: 3px;
	text-decoration: none;
	background-color: #990000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #996600;
	border-right-color: #996633;
	border-bottom-color: #996666;
	border-left-color: #996600;
}

ul.tabberpnav li a:link { color: #993333; }
ul.tabberpnav li a:visited { color: #996666; }

ul.tabberpnav li a:hover
{
 color: #FF0000;
 background: #6699CC;
 border: 1px solid #FF0000;
 border-bottom: 0px solid #6699CC;
}

ul.tabberpnav li.tabberpactive a
{
 color: #000000;
 background-color: #993300;
 border: 2px solid #487eb4;
 border-bottom: 2px solid #FFFFFF;
}

ul.tabberpnav li.tabberpactive a:hover
{
	color: #993300;
	border-bottom: 2px solid #FF0000;
	background-color: #990000;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberplive .tabberptab {
	padding:0px;
	padding-bottom:0px;
	border:1px solid #996600;
	width:auto;
	text-align:left;
	background-color: #663333;
 /* 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 */
.tabberplive .tabberptab h2 {
 display:none;
}
.tabberplive .tabberptab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberplive#tab1 {
}
.tabberplive#tab2 {
}
.tabberplive#tab2 .tabberptab {
 height:200px;
 overflow:auto;
}

fieldset {
color:#000000;
border:1px solid #CC3300;
}

fieldset table tr td {
color:#993300;
}
