/* $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 {
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 border-bottom: 1px solid #d4d4d4;
 border-right: 1px solid #d4d4d4;
}

ul.tabbernav:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
ul.tabbernav { display: inline-table; min-height: 1%; }
* html ul.tabbernav { height: 1%; }
ul.tabbernav { display: block; }


ul.tabbernav li {
	width:98px;
	float:left;
	border-left: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	text-align:center;
	background: #fff;
	}

ul.tabbernav li a {
	text-decoration: none;
	font-size:90%;
	line-height:2;
	}

ul.tabbernav li a:link { color: #696969; }
ul.tabbernav li a:visited { color: #696969; }

ul.tabbernav li a:hover
{
 color: #696969;
 border-color: #d4d4d4;
}

ul.tabbernav li.tabberactive a
{
color:#0d257f;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #0d257f;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 border:1px solid #d4d4d4;
 border-top:0;
background:#fff;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 /*display:none;*/
}

