/* $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 {
 margin-top:1em;
}


/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin: 0px;
 padding: 0px;
 border-bottom: 2px solid  #6cc;
 font-family: Trebuchet MS, Verdana, Arial, Sans-Serif;
 font-weight: bold;
 font-size: 12px;
 display: block;
 height: 24px;
}

ul.tabbernav li
{
 list-style: none;
 display: block;
 float: left;
 height: 24px;
 background: #245;
 margin: 0px 4px;
}

ul.tabbernav li a,
ul.tabbernav li a:link,
ul.tabbernav li a:visited,
ul.tabbernav li a:active
{
 padding: 2px 4px;
 border: 1px solid #6cc;
 border-bottom: none;
 color:  #6cc;
 background: #245;
 text-decoration: none;
 display: block;
}

ul.tabbernav li a:hover
{
  color: #cff;
  background: #052535;
}

ul.tabbernav li.tabberactive a,
ul.tabbernav li.tabberactive a:link,
ul.tabbernav li.tabberactive a:visited,
ul.tabbernav li.tabberactive a:active,
ul.tabbernav li.tabberactive a:hover
{
 background: #6cc;
 color: #123;
 border-bottom: 1px solid #6cc;
}
/*
--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border: 0px solid #6cc;
 border-top-color: #124;
 border-width: 1px 0px;
 clear: both;
 
 background: url(../images/bg.jpg);
 
 /* 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 */
.tabberlive .tabbertab h2,
.tabberlive .tabbertab h3 {
 display:none;
}

.tabberlive .tabbertab h4 {
  font-family: Trebuchet MS, Verdana, Arial, Sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.paziente .tabbertab {
  height: 240px;
  overflow: auto;
}
.tabbertab .tabbertab {
  height: auto;
}
.tabbertab .tabbertab h4 {
  display: none;
}

