/******************************************************************************
* 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: 12pt;
  font-weight: bold;
  padding: 0pt 0pt 1pt 0pt;
}

a.tab {
  background-color: #FFF9C9;
  border: 2pt solid #88849C;
  border-bottom-width: 0pt;
  border-color: #88849C #88849C #88849C #88849C;
  -moz-border-radius: 3pt 3pt 0pt 0pt;
  border-radius-topleft: 3pt;
  border-radius-topright: 3pt;
  padding: 2pt 1pt 2pt 1pt;
  position: relative;
  text-decoration: none;
  top: 1pt;
  z-index: 100;
}

a.tab, a.tab:visited {
  color: #3C2269;
}

a.tab:hover {
  background-color: #C88A91;
  border-color: #88849C #88849C #88849C #88849C;
  color: #3C2269;
}

a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited {
  background-color: #88849C;
  border-color: #88849C #88849C #88849C #88849C;
  color: #AA1738;
}

a.tab.activeTab {
  padding-bottom: 4px;
  top: 1px;
  z-index: 102;
}

div.tabMain {
  background-color: #FFF9C9;
  border: 2pt solid #88849C;
  border-color: #88849C #88849C #88849C #88849C;
  -moz-border-radius: 0pt 1pt 1pt 0pt;
  border-radius-topright: 1pt;
  border-radius-bottomright: 1pt;
  padding: 0pt;
  position: relative;
  z-index: 101;
}

div.tabIframeWrapper {
  width: 100%;
}

iframe.tabContent {
  background-color: #FFF9C9;
  border: 1pt solid #88849C;
  border-color: #88849C #88849C #88849C0 #88849C;
  height: 210pt;
  width: 100%;
}
