/* $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 {
    display: none;
}

.tabberlive {
    margin-top: 1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
    margin-top: -15px !important;
    margin-top: 0px;
    padding: 5px;
    padding-top: 5px !important;
    padding-top: 10px;
    margin-left: 3px;
    margin-right: 5px;
    background: #E8E8E8;
}

ul.tabbernav li {
    list-style: none;
    margin: 0;
    display: inline;
}

ul.tabbernav li a {
    padding: 4px;
    margin-left: 3px;
    border-bottom: none;
    border-bottom: 1px solid #778;
    background: #87C1E7;
    text-decoration: none;
    color: #DFE0E1;
}

ul.tabbernav li a:link {
    color: #1A283E;
}

ul.tabbernav li a:visited {
    color: #1A283E;
}

ul.tabbernav li a:hover {
    color: #fff;
    background: #19263B;
    border-color: #227;
}

ul.tabbernav li.tabberactive a {
    background: #FFFFFF;
    border-top: 2px solid #63B3E6;
    border-bottom: 0px;
    margin-left: 1px;
    margin-top: 3px;
    margin-bottom: -3px;
    padding: 3px;
    color: #000;
    font-weight: bold;

}

ul.tabbernav li.tabberactive a:hover {
    padding: 3px;
    color: #000;
    background: white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
    border-left: medium none;
    border-right: medium none;
    border-bottom: medium none;
    padding-right: 4px;
    padding-top: 4px;
    border-top: 0px none;
    margin-left: 1px;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
    display: none;
}

.tabberlive .tabbertab h3 {
    display: none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}

.tabberlive#tab2 {
}

.tabberlive#tab2 .tabbertab {
    height: auto;
    overflow: auto;
}