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

 margin:0;
 background: #FFF;
 border-bottom: 1px solid #A3B7D8;
 overflow: hidden;
 list-style: none;
 height: 24px;
}

ul.tabbernav li
{
	float: left;
	background: #FFFFFF url(../images/menu/bg-right.gif) no-repeat right top;
	height: 24px;
}

ul.tabbernav li a
{
	float: left;
	font-size: 1.1em;
	height: 14px;
	display: block;
	padding: 5px 10px;
	background: #DDE;
	text-transform: uppercase;
	color: #000000; 
	text-decoration: none;
	background: url(../images/menu/bg-left.gif) no-repeat left top;
}

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

ul.tabbernav li a:hover
{
	color: #000000;
}

ul.tabbernav li.tabberactive a
{
 	font-weight: bolder;
	color: #003399;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
clear: both;
 /* 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 */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}


