/* $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!
  --------------------------------------------------*/
.tabber2live .tabber2tabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber2 = before the tabber interface is set up
  .tabber2live = after the tabber interface is set up
  --------------------------------------------------*/
.tabber2 {
}
.tabber2live {
 margin-top:0px;
 width:100%;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabber2nav
{
 margin:0px;
 padding: 2px 0;
 border-top: 5px solid #D1EDC4;
 border-bottom: 5px solid #D1EDC4;
 font: bold 26px Arial Narrow, Verdana, sans-serif;
}

ul.tabber2nav li
{
 list-style: none;
 margin: 0;
 display: inline;
 font: bold 26px Arial Narrow, Verdana, sans-serif;



}

ul.tabber2nav li a
{
 padding: 2px 0.5em;
 margin-left: 0px;
 border: 0px solid #778;
 border-bottom: none;
 text-decoration: none;
 font: bold 26px Arial Narrow, Verdana, sans-serif;


}

ul.tabber2nav li a:link { color: #61C2C0; }
ul.tabber2nav li a:visited { color: #61C2C0; }

ul.tabber2nav li a:hover
{
 color: #FF772A;
 border-color: #227;
 font: bold 26px Arial Narrow, Verdana, sans-serif;
text-decoration: none;
 
}

ul.tabber2nav li.tabber2active a
{
  background-image:url('../sysimages/tabhatter.png');
border-bottom: 0px solid #fff;
}

ul.tabber2nav li.tabber2active a:hover
{
 color: #FF772A;
 border-bottom: 0px solid white;

}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabber2live .tabber2tab {
 padding:5px;
 border:0px solid #aaa;
 border-top:0;

 /* 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 */
.tabber2live .tabber2tab h2 {
 display:none;
}
.tabber2live .tabber2tab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabber2live#tab1 {
}
.tabber2live#tab2 {
}
.tabber2live#tab2 .tabber2tab {
 height:200px;
 overflow:auto;
}

