<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------
  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 {
margin-bottom:20px;
}

.tabber .tabbertab h2 {
}


.tabber .tabbertab ul {
}

.tabber .tabbertab p {
padding:4px;
}

.tabbertab {
margin-bottom:20px;
}

.tabberlive {
margin-bottom:20px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 font: bold 11px tahoma;
 display:block;
}

ul.tabbernav li
{
 margin: 0;
 display: inline;
 height:23px;/*29*/
 width:92px;
 padding-top:6px;
 text-align:center;
}

ul.tabbernav li a
{
 padding: 6px;
 background-color:transparent;
 text-decoration: none;
}

ul.tabbernav li a:link { color: #d8d8d8; }
ul.tabbernav li a:visited { color: #d8d8d8; }

ul.tabbernav li a:hover
{
 color: #d8d8d8;
 background-color:transparent;
}

ul.tabbernav li.tabberactive a
{
 background-color:transparent;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #d8d8d8;
 background-color:transparent;
}

.tabberlive .tabbernav li,.tabberlive .tabbernav li.tabberactive {
height:29px;
width:99px;
float:left;
display:block;
background-color:transparent;
background-image:url(../images/unselected_tab.gif);
background-repeat:no-repeat;
}

.tabberlive .tabbernav li.tabberactive {
background-image:url(../images/selected_tab.gif);
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
padding:0px;
margin:0px;
margin-top:20px;
margin-bottom:10px;
}

/* 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;
}
</pre></body></html>