/* $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 {
}
.tabberlive {
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
.fakenav
{
	height: 21px;
}
ul.tabbernav
{
	margin:0;
	padding: 0 0 0 15px;
	font: bold 12px Verdana, sans-serif; 
	height: 21px;
	margin-left: 17px;
	position: absolute;
}

ul.tabbernav li
{
	list-style: none;
	float: left;
	display: block;
	margin: 0 0 0 2px;
	padding: 0;
}
ul.tabbernav li a 
{
	text-decoration: none;
	color: #FFF !important;
}
ul.tabbernav li div
{
	height: 22px;
}
ul.tabbernav li .leftdiv
{
	float: left;
	width: 7px;
	background: url(../images/leftinactive.gif);
}
ul.tabbernav li .middlediv
{
	float: left;
	padding: 4px 10px 0px 10px;
	height: 18px;
	background: url(../images/middleinactive.gif);
}
ul.tabbernav li .rightdiv
{
	float: left;
	width: 7px;
	background: url(../images/rightinactive.gif);
}
ul.tabbernav li.tabberactive
{

}
ul.tabbernav li.tabberactive a
{
	color: #003399 !important;
}
ul.tabbernav li.tabberactive .leftdiv
{
	background: url(../images/leftactive.gif);
}
ul.tabbernav li.tabberactive .middlediv
{
	background: url(../images/middleactive.gif);
}
ul.tabbernav li.tabberactive .rightdiv
{
	background: url(../images/rightactive.gif);
}


/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabbertab
{
	width: 900px;
	margin-left: 17px;
}
.tabbertab .top
{
	background: url(../images/tabbertabtop.gif) no-repeat;
	height: 14px;
}
.tabbertab .middle
{
	border-left: solid 1px #04359b;
	border-right: solid 1px #04359b;
	padding: 10px;
	padding-left: 30px;
}
.tabbertab .bottom
{
	background: url(../images/tabbertabbottom.gif) no-repeat;
	height: 14px;
}
.tabberlive
{

}
/* 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;
}

