/* $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:0px;
 float:left;
 
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0px;
 padding:0px;
 border:none;
 font: bold italic 15px "Trebuchet MS";
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 3px 0.5em;
 margin-right:1px;
 border: 1px solid gray;
 background:#F4F4F4;
 text-decoration: none;
 padding:5px 20px 5px 20px;
}

ul.tabbernav li a:link { color: #7EC629; }

ul.tabbernav2 li a:link { color: black; }

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

ul.tabbernav li a:hover
{
 color: #FFF;
 background: url(../images/newsevents/news_tabBG_11.gif);
 border-color: gray;
}

ul.tabbernav li.tabberactive a
{
 background-image:url(../images/newsevents/news_tabBG_07.gif);
 color:white;

}

ul.tabbernav li.tabberactive a:hover
{
 color: white;
 border-color:gray;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:8px 8px 0px 8px;
 border:none;
 margin-right:1px;
 font: normal normal 11px "Trebuchet MS";
 line-height:18px;
 color:#323232;
 background:none;
 

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

/* Example of using an ID to set different styles for the tabs on the page */


.tabberlive#tabber2 .ul.tabbernav {
 height:800px;
 background:blue;
 font-size:24px;
 overflow:auto;
}
