/******************************************************************************
* Styles for the tabbed displays.                                             *
******************************************************************************/

/*-----------------------------------------------------------------------------
  Note: The border-radius property is a proposed feature for CSS3 which creates
        rounded corners. Mozilla/Netscape browsers currently support this
        feature via the proprietary -moz-border-radius property. Both are
        defined here. Browsers that support neither should simply ignore them.
-----------------------------------------------------------------------------*/

div.tabBox {}

div.tabArea {
  font-size: 80%;
  font-weight: bold;
  padding: 0px 0px 3px 0px;
}

.tab {
  background-image: url('img/off_btn_03.jpg');
  background: url(img/off_btn_03.jpg) !important;
  border: none;
  width: 96px;
  padding: 2px 1em 2px 1em;
  position: relative;
  text-decoration: none;
  top: 4px;
  z-index: 100;
  color: #cb1210;
}

a.tab {
  background-image: url('img/off_btn_03.jpg');
  background: url(img/off_btn_03.jpg) !important;
  border: none;
  width: 96px;
  padding: 2px 1em 2px 1em;
  position: relative;
  text-decoration: none;
  top: 4px;
  z-index: 100;
}

a.tab, a.tab:visited {
  background-image: url('img/off_btn_03.jpg');
  background: url(img/off_btn_03.jpg) !important;
  border-color: #b090e0 #7050a0 #7050a0 #b090e0;
  color: #cb1210;
  font-size: 7pt;
}

a.tab:hover {
  background-image: url('img/off_btn_03.jpg');
  background: url(img/off_btn_03.jpg) !important;
  border-color: #c0a0f0 #8060b0 #8060b0 #c0a0f0;
  text-decoration: none;
  color: #cb1210;
  font-size: 7pt;
}

a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited {
  background-image: url('img/on_btn_03.jpg');
  background: url(img/on_btn_03.jpg) !important;
  border-color: #b090e0 #7050a0 #7050a0 #b090e0;
}

a.tab.activeTab {
  z-index: 102;
}

div.tabMain {
  background-color: #9070c0;
  border: 1px solid #000000;
  border-color: #6f6f6f #6f6f6f #6f6f6f #6f6f6f;
  -moz-border-radius: 0em .5em .5em 0em;
  border-radius-topright: .5em;
  border-radius-bottomright: .5em;
  padding: .0em;
  position: relative;
  z-index: 101;
}

div.tabIframeWrapper {
  width: 100%;
}

iframe.tabContent {
  background-color: #ffffff;
  width: 100%;
}

