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

{

	display: block;

	list-style-type:none;

}



ul.tabbernav li.tabberactive

{



}

ul.tabbernav li 

{

	float: left;

	margin: 0 2px 0 0;	

}

ul.tabbernav li a

{

	font-weight:600;

	text-align: center;

	color: #FFF;

	text-decoration: none;

	float: left;

	width: 468px;

	background-color: #02570e;

	text-transform:uppercase;

	font-size: 16px;

	padding: 13px 0;

	font-family: 'Open Sans', sans-serif;

}



ul.tabbernav li a:link {  }

ul.tabbernav li a:visited { }



ul.tabbernav li a:hover

{

	background-color: #eddc0d;

	color: #000;

	

}



ul.tabbernav li.tabberactive a

{

	background-color: #002305;

	color: #fff;



}



ul.tabbernav li.tabberactive a:hover

{

}



/*--------------------------------------------------

  .tabbertab = the tab content

  Add style only after the tabber interface is set up (.tabberlive)

  --------------------------------------------------*/

.tabberlive .tabbertab {

}



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

}