/* $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 {
height:234px
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
.tabbernav
{
 margin:0;
 padding: 0px 0;
 border-bottom: 0px solid #5e5e7d;
 font-weight:bold;
 font: bold 14px Arial, Verdana, sans-serif;


}

.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
 padding:0em;
 line-height:30px;


 
}

.tabbernav li a
{
 padding:8px 48px 7px 48px;
 background:url(/public/wso/images/general/fulltabhover.gif) no-repeat center;

/*
 padding: 0em;
 margin-left: 8px;
 border: 0px solid #b2b2ed;
 border-bottom: none;
 padding-left:5px;
 text-align:center;
 text-decoration: none;
 border-bottom: 1px solid white;
 
 */
}

ul.tabbernav li a:link { color: #5e5e7d; }
ul.tabbernav li a:visited { color: #5e5e7d; }

ul.tabbernav li a:hover
{
 color: #5e5e7d;
 background:url(/public/wso/images/general/fulltab.gif) no-repeat center;
}

ul.tabbernav li.tabberactive a
{
 border-bottom: 0px solid #fff;
 background:url(/public/wso/images/general/fulltab.gif) no-repeat center;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #5e5e7d;
 border-bottom: 0px solid white;
 background:url(/public/wso/images/general/fulltab.gif) no-repeat center;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {

 border:0px solid #aaa;
 border-top:0;
 width:410px;
 height:166px;
 background:url(/public/wso/images/general/bgtomaintab.gif) no-repeat center;
 overflow:auto;
 padding-left:0px;
 padding-right:0px;
 padding-top:0px;
 padding-bottom:10px
}

/* 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 {
margin:0px;
 height:100%;
 overflow:auto;
}

