/******************************************************************************
* 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-weight: bold;
  padding: 0px 0px 3px 0px;
}

a.tab {
  background-color: #ffe4b0;
  border: 2px solid #000000;
  border-bottom-width: 0px;
  border-color: #ffe5d0 #e0c190 #e0c190 #ffe5d0;
  -moz-border-radius: .75em .75em 0em 0em;
  border-radius-topleft: .75em;
  border-radius-topright: .75em;
  padding: 2px 1em 2px 1em;
  position: relative;
  text-decoration: none;
  top: 3px;
  z-index: 100;
}

a.tab, a.tab:visited {
  color: #b08960;
}

a.tab:hover {
  background-color: #ff9900;
  border-color: #c0a0f0 #bo8960 #bo8960 #c0a0f0;
  color: #fff1e0;
}

a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited {
  background-color: #eba325;
  border-color: #e0c190 #ea881e #ea881e #e0c190;
  color: #fff1e0;
}

a.tab.activeTab {
  padding-bottom: 4px;
  top: 1px;
  z-index: 102;
}

div.tabMain {
  background-color: #ffbb00;
  border: 2px solid #000000;
  border-color: #e0c190 #ea881e #ea881e #e0c190;
  -moz-border-radius: 0em .5em .5em 0em;
  border-radius-topright: .5em;
  border-radius-bottomright: .5em;
  padding: .5em;
  position: relative;
  z-index: 101;
}

div.tabIframeWrapper {
  width: 100%;
}

iframe.tabContent {
  background-color: #eba325;
  border: 1px solid #000000;
  border-color: #ea881e #e0c190 #e0c190 #ea881e;
  width: 100%;
  height: 100ex;
}

/******************************************************************************
* Additional styles.                                                          *
******************************************************************************/

h4#title {
  background-color: #ff9900;
  border: 1px solid #000000;
  border-color: #ea881e #e0c190 #e0c190 #ea881e;
  color: #ffe4b0;
  font-weight: bold;
  font-family: tahoma;
  margin-top: 0em;
  margin-bottom: .5em;
  padding: 2px .5em 2px .5em;
}


