/* $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 {
border-bottom: 0px solid #c60000;

}
.tabberlive {
 margin-top:10px;
 margin-bottom:0px;
 padding:0px;

 
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
.tabbernav
{
 
 height:10px;
 padding:0px;
 margin:0px;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0px;
 display: inline;
  height:10px;
}

ul.tabbernav li a
{
 padding: 3px 0.5em;
 margin-left: 3px;
 border: 1px solid #dddddd;
 border-bottom: none;
 background: #fafafa;
 text-decoration: none;
 margin:0px;
  height:10px;
 
}

ul.tabbernav li a:link { color: #444444;background:#fafafa; height:10px;}
ul.tabbernav li a:visited { color: #ff0000; }
ul.tabbernav li a:active{ color: #999999; }

ul.tabbernav li a:hover
{
 color: #ffffff;
 background: #444444;
 border-bottom:0px;
 border-color: #dddddd;
 margin:0px;
}

ul.tabbernav li.tabberactive a
{
 background-color: #ffffff;
 border-bottom: 0px solid #dddddd;
 margin:0px;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #c60000;
 background: #ffffff;
 border-bottom: 1px solid #dddddd;
 margin:0px;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive {
 padding:0px;
 border:0px solid #c60000;
 border-top:0px;
 margin:0px;


 /* 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; */
}
 .tabbertab {
 padding:0px;
 border:1px solid #dddddd;
 border-top:0px;
 margin:0px;
 width:605px;
 margin-top:-6px;
 background: #ffffff;
color:#c60000;
border: 1px solid #dddddd;
padding:5px;


 /* 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 {
 display:none;
 margin:0px;
 margin-bottom:-5px;
}
.tabberlive .tabbertab h3 {
 display:none;
  margin:0px;
 margin-bottom:-5px;
}


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