/* $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!
  --------------------------------------------------*/
.schedalive .schedatabhide {
 display:none;
}

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

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

ul.schedanav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.schedanav li a
{
	padding: 3px 0.5em;
	margin-left: 3px;
	border: 1px solid #778;
	border-bottom: none;
	text-decoration: none;
	background-color: #FFFFFF;
}

ul.schedanav li a:link { color: #999; }
ul.schedanav li a:visited { color: #667; }

ul.schedanav li a:hover
{
	color: #666;
	border-color: #5D5D5D;
	background-color: #FFFFFF;
}

ul.schedanav li.schedaactive a
{
	background-color: #477491;
	border-bottom: 1px solid #477491;
	color: #FF9900;
}

ul.schedanav li.schedaactive a:hover
{
 color: #AF7817;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .schedatab = the tab content
  Add style only after the scheda interface is set up (.schedalive)
  --------------------------------------------------*/
.schedalive .schedatab {
 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 */
.schedalive .schedatab h2 {
 display:none;
}
.schedalive .schedatab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.schedalive#tab1 {
}
.schedalive#tab2 {
}
.schedalive#tab2 .schedatab {
 height:200px;
 overflow:auto;
}
