/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
  
.tabbertabdisabled {
	display:none;
}

.tabbertabhide .tabbertabdisabled {
	display:none;
}
  
  
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid  #929294; 
 font: bold 12px Verdana, sans-serif;
}

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



 /*Generic Tab (Left Half plus generic Right). */
/*  FIREFOX VERSION, OVERLAPS */
ul.tabbernav li a   
{
 padding: 5px 0px 3px 0.8em;   /*Top Right Bottom Left.*/
 /* Firefox makes outside box, then lets inside box fill it.*/  
 /*  Use Outside Box to determine height of whole thing. */
 margin-left: 5px;   /*distance between each tab*/
/* border: 1px solid #778;*/
 border-bottom: none;    /*Important.  This drops all background tabs' bottoms out completely, default to tray.*/
background:url(media/slide-leftB.gif) no-repeat left top;
 text-decoration: none;
}

/*  IE VERSION  */
* html ul.tabbernav li a   /*IE only. */ 
{
 padding: 0px 0px       0px 0.6em;  /*Top Right Bottom (was 3) Left.*/
 /* IE ADDS size of outsize padding to size of inside padding in these nested boxes, sends it downwards overlapping.*/
 /* Use Inside Box to determine height of whole thing.*/
 margin-left: 5px;   /*distance between each tab*/
/* border: 1px solid #778;*/
 border-bottom: none;    /*Important.  This drops all background tabs' bottoms out completely, default to tray.*/
background:url(media/slide-leftB.gif) no-repeat left top;
 text-decoration: none;
}




ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }

ul.tabbernav li a:hover
{
 color: #000;
 /*background: #AAE; */
/* border-color: #227;*/
}




/*  FIREFOX VERSION, OVERLAPS */
ul.tabbernav li a span {  /*Right half of the background.  Span padding top must be 2 more than Left Half (???).  */
 border-bottom: none;
 /* float: left; */
/*display:block;*/
background:url(media/slide-rightB.gif) no-repeat right top;
/*padding:2px 13px 2px 4px; */
padding: 5px 1.0em 3px 0px;  /*Top Right Bottom Left.  Top determines height of Tab above lettering.  Bottom, below. */
font-weight:bold;
color:#444;
}


/*  IE VERSION  */
* html ul.tabbernav li a span {  /*Right half of the background.  Span padding top must be 2 more than Left Half (???).  */
 border-bottom: none;
 /* float: left; */
/*display:block;*/
background:url(media/slide-rightB.gif) no-repeat right top;
/*padding:2px 13px 2px 4px; */
padding: 5px 0.8em 3px 0px;  /*Top Right Bottom Left.  Top determines height of Tab above lettering.  Bottom, below. */
/* Bottom must be 0 for IE or L-side overlaps rail. */
font-weight:bold;
color:#444;
}




.tabbertabdisabled {
        display:none;

}





ul.tabbernav  a:hover, 
.tabbernav  li.tabberactive a{
background-position:0% -125px;       /*Left side.*/

}

ul.tabbernav a:hover span, 
.tabbernav li.tabberactive a span{
background-position:100% -125px;     /*  Right side. */
}



ul.tabbernav li.tabberactive a
{
 /*background: #fff;*/
 border-bottom: 1px solid #d6e9fa;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 /*background: white;*/
 border-bottom: 1px solid #d6e9fa;;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:1px solid #aaa;
 border-top:0;
 background: #d6e9fa; 
 /*#f5f5f5;

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



