/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide,
#mainContent .tabberlive .tabbertabhide
{
    display: none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber,
#mainContent .tabber
{
}
.tabberlive,
#mainContent .tabberlive
{
    margin-top: 1em;
    margin-bottom: 1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
.tabberlive ul.tabbernav,
#mainContent .tabberlive ul.tabbernav
{
    margin: 0;
    margin-bottom: 1em;
    padding: 2px;
    border-bottom: 3px solid #778;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7em;
    font-weight: BOLD;


}

.tabberlive ul.tabbernav li,
#mainContent .tabberlive ul.tabbernav li
{
    padding: 0px;
    list-style: none;
    margin: 0;
    display: inline;
    font-size: 1.0em;
    background-image: none;
    
}

.tabberlive ul.tabbernav li a,
#mainContent .tabberlive ul.tabbernav li a
{
    padding: 2px 0.5em;
    margin-left: 3px;
    border: 1px solid #778;
    border-bottom:none;
    background: #778;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

/* .tabberlive ul.tabbernav li a:link, */
/* #mainContent .tabberlive ul.tabbernav li a:link */
/* { */
    /* color: white; */
/* } */
.tabberlive ul.tabbernav li a:visited,
#mainContent .tabberlive ul.tabbernav li a:visited
{
    color: white;
}

.tabberlive ul.tabbernav li a:hover,
#mainContent .tabberlive ul.tabbernav li a:hover
{
    color: #778;
    background: white;
    border-color: #778;
}

.tabberlive ul.tabbernav li.tabberactive a,
#mainContent .tabberlive ul.tabbernav li.tabberactive a
{
    color: #778;
    background-color: white;
    border-bottom: 4px solid #fff;
}

.tabberlive ul.tabbernav li.tabberactive a:visited,
#mainContent .tabberlive ul.tabbernav li.tabberactive a:visited
{
    color: #778;
    background-color: #fff;
    border-bottom: 4px solid #fff;
}

.tabberlive ul.tabbernav li.tabberactive a:hover,
#mainContent .tabberlive ul.tabbernav li.tabberactive a:hover
{
    color: #778;
    background: white;
    border-bottom: 4px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab,
#mainContent .tabberlive .tabbertab
{
    padding: 4px;
    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 */
.tabberlive .tabbertab h2,
#mainContent .tabberlive .tabbertab h2
{
    display: none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1,
#mainContent .tabberlive#tab1
{
}
.tabberlive#tab2,
#mainContent .tabberlive#tab2
{
}
.tabberlive#tab2 .tabbertab,
#mainContent .tabberlive#tab2 .tabbertab
{
    height: 200px;
    overflow: auto;
}