/*--------------------------------------------------
  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:           0em;   /* how far down from previous screen widget   */
 margin-left:          8em;   /* how far from the left edge to start tabber */

 /* use this to make the total size less than the full width of the browser window */
 width:                70%;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/

/* this is the line below the tab headings */
ul.tabbernav
{
 margin:               0;
 padding:              3px 0;
 border-bottom:        1px solid #778;   /* some shade of medium gray */
 font:                 bold 12px Verdana, sans-serif;
}

ul.tabbernav li
{
 list-style:           none;
 margin:               0;
 display:              inline;
}

/* the border is the one around the tab headings */
ul.tabbernav li a
{
 padding:              3px 0.5em;
 margin-left:          3px;
 border:               1px solid #778;   /* some shade of medium gray */
 border-bottom:        none;
 color:                #3366FF;    /* color of non-focus tab text non-hovered */
 background:           #FFFFFF;    /* background of non-focus tabs */
 text-decoration:      none;
}

ul.tabbernav li a:hover
{
 color:                #FFFFFF;    /* color of non-focus tab text when hovered */
 background:           #000099;    /* color of non-focus tab background when hovered */
 border-color:         #227;       /* some shade of lighter gray */
}

ul.tabbernav li.tabberactive a
{
 color:                #FFFFFF;    /* color of focus tab text non-hovered */
 background-color:     #3366FF;    /* color of focus tab background non-hovered */
 border-bottom:        1px solid #FFFFFF;
}

ul.tabbernav li.tabberactive a:hover
{
 color:                #FFFFFF;    /* color of focus tab text when hovered */
 background:           #000099;    /* color of focus tab background when hovered */
 border-bottom:        1px solid #FFFFFF;
}

ul.tabbernav li a:link
{
 /***color:                #448;***/
}

ul.tabbernav li a:visited
{
 /***color:               #667;***/
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab
{
 padding:              5px;
 border:               1px solid #AAA;   /* some shade of darker blue */
 border-top:           0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */
 height:               210px;  /* total height of the tabber control */

 /* If you set a fix height set overflow to auto and you will get a
 vertical scrollbar when necessary */
 overflow:             auto;
}

/* 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:               200px;*/
/* overflow:             auto;*/
}

/*--------------------------------------------------
  These are for handling specific display aspects
  --------------------------------------------------*/

.homepage_table_menu_bar
{
  font-weight:          normal;
  color:                #FFFFFF;
  background-color:     #98AFC7;
  font-size:            95%;
  font-family:          Tahoma, Veranda, Arial, Helvetica, sans-serif;
  text-align:           center;
}

.tab_table_main_text
{
  font-weight:          normal;
  color:                #000000;
  background-color:     #FFFFFF;
  font-size:            100%;
  font-family:          Tahoma, Veranda, Arial, Helvetica, sans-serif;
  text-align:           left;
}

