/* $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!
  Regola richiesta per nascondere il contenuto non attivo delle tab.
  --------------------------------------------------*/
.tabber2live .tabber2tabhide {display:none;}

/*--------------------------------------------------
  .tabber2 = before the tabber2 interface is set up .tabber2live = after the tabber2 interface is set up
  Classe .tabber2 = prima l'interfaccia sia creata ; Classe .tabber2live = dopo che l'interfaccia è stata creata
  --------------------------------------------------*/
.tabber2 {}
.tabber2live { margin-top:1em; }

/*--------------------------------------------------
  ul.tabber2nav = the tab navigation list ; li.tabber2active = the active tab
  ul.tabber2nav = la lista di navigazione delle tab ; li.tabber2nav = il list item con la tab attiva
  --------------------------------------------------*/
ul.tabber2nav { margin:0; padding: 1px 0; border-bottom: 1px solid #778; font: bold 10px Verdana, sans-serif;}
ul.tabber2nav li { list-style: none; margin: 0; display: inline;}
ul.tabber2nav li a { padding: 1px 0.5em; margin-left: 1px; /*bordo laterale della tab*/border: 1px solid #778; border-bottom: none; /*sfondo tab NON selezionata*/background: #ffaaaa; text-decoration: none;}
ul.tabber2nav li a:link { color: #448; }
ul.tabber2nav li a:visited { color: #667; }
ul.tabber2nav li a:hover { /*testo hover tab NON selezionata*/color: #000; background: #ffaaaa; border-color: #227;}
ul.tabber2nav li.tabber2active a { /*sfondo tab selezionata*/background-color: #fff; border-bottom: 1px solid #fff;}
ul.tabber2nav li.tabber2active a:hover { color: #000; background: white; border-bottom: 1px solid white;}

/*--------------------------------------------------
  .tabber2tab = the tab content
  Add style only after the tabber2 interface is set up (.tabber2live)
  --------------------------------------------------*/
.tabber2live .tabber2tab { padding:5px; border:1px 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;}

