/* $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;
 /* overflow:auto;overflow-x:hidden;*//* 27/10/2015 */
  overflow-x:hidden;overflow-y:hidden;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
/*
document.write('<style type="text/css">.tabber{display:none;}<\/style>');
*/
.tabber{
display:none;
 /* overflow:auto;overflow-x:hidden;*//* 27/10/2015 */
  overflow-x:hidden;overflow-y:hidden;

}
.tabberlive{
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 1px 0;  /* 5px ou 3px  */
 /*border-bottom: 1px solid #eeeeee; *//* espace entre onglets et panneau  */

 font: bold 10pt Comic,sans-serif;
 color: black; 
 /* font: italic bold 6px Arial,sans-serif;
 font: italic bold 9px Comic,sans-serif; */
 /* height : 100px; décale le contenu vers le bas pour firefox */
  /* display: inline;   */
 overflow:hidden;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 /* height : 20px; donne une hauteur aux tabs */
 display: inline;
 /*  entoure l'onglet
border-radius:5px;-webkit-border-radius:5px;box-shadow:1px 1px 1px black,0 0 1em black,0 0 0.2em black
*/
}

ul.tabbernav li a
{
 /* height : 25px; donne une hauteur aux tabs */
 padding: 0px 0.5em;  /* 3px si je mets 0 c'est plus fin mais le texte est total */
 margin-left: 1px;
 border: 1px solid grey; /*  #778 brown red : bord des onglets*/
 border-bottom: none;  /* none;  3px 0.5em; */
 background: #CCCCAA; /*  src #DDE : couleur onglets inactifs*/
 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: #EEBB88; /*  src #AAE : couleur onglets si le curseur de souris est dessus*/
 border-color: #227;
}

ul.tabbernav li.tabberactive a
{
 background: #eee; /*  src #fff : couleur onglets si le curseur de souris est dessus*/
 /* background-color border-bottom: 1px solid #fff;   3px  */
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: #eee;  /*  src #fff : couleur onglets si le curseur de souris est dessus*/
 /*  border-bottom: 1px solid white;   3px  */
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab{
 
 padding:0px;
 /* border:1px solid #aaa; épaisseur des bords de côté et bas  */
 border-top:0;
 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */
/* height:1500px; */ /* 900px *//*   fixe la hauteur d'une page d'onglet*/

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */
 /* overflow:auto;overflow-x:hidden;*//* 27/10/2015 */
  overflow-x:hidden;overflow-y:hidden;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2{
  font: italic bold 10pt Comic,sans-serif; 
  display:none;
  overflow-x:hidden;overflow-y:hidden;
}
.tabberlive .tabbertab h3{
 display:none;
 overflow-x:hidden;overflow-y:hidden;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1{
overflow-x:hidden;overflow-y:hidden;
}
.tabberlive#tab2{
overflow-x:hidden;overflow-y:hidden;
}
.tabberlive#tab2 .tabbertab{
/* height:350px; */
 /* overflow:auto;overflow-x:hidden;*//* 27/10/2015 */
 overflow-x:hidden;overflow-y:hidden;
}
