/* $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:0em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
width:307px;
 margin:-4px;
 padding: 0px 0;
 border-bottom: 0px solid #38B2B5;
 font: bold 10px Verdana, sans-serif;
}

ul.tabbernav li
{
text-align:center;
height:40px;
width: 102px;
 list-style: none;
 margin: 0;
 display: table-cell;;
 float:left;
 vertical-align:middle;
 margin-bottom:10px;
}

ul.tabbernav li a
{
	height:30px;
	width: 102px;
display: table-cell;;
 float:left;
 margin-left: 0px;
 border: 0px solid #38B2B5;
 border-bottom: none;
 background: #38B2B5;
 text-decoration: none;
 vertical-align:middle;
 padding-top:10px;
}

ul.tabbernav li a:link { 

	height:30px;
	width: 102px;
display: table-cell;;
 float:left;

 list-style: none;
 margin: 0;
 vertical-align:middle;
 font-size:10px;

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

ul.tabbernav li a:hover
{
 color: #38B2B5 ;
 background: #FBFBFB;
 border-color: #38B2B5;
}

ul.tabbernav li.tabberactive a
{
 background-color: #FBFBFB;
 border-bottom: 0px solid #FBFBFB;
color:#38B2B5 ;
}

ul.tabbernav li.tabberactive a:hover
{

 color: #38B2B5 ;
 background: #FBFBFB;
 border-bottom: 0px solid #FBFBFB;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
width:307px;
 padding:3px;
 border:0px solid #38B2B5;
 border-top:0;
background:#FBFBFB;
text-align:left;
font-size:10px;
 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:240px;*/
  min-height:240px;

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

  overflow:visible 
}

/* 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;
}

