/******************************************************************************
* 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 {
  padding: 0px 0px 3px 0px;
  }

a.tab {
  background-color: #dedeef;
  border: 1px solid #00F;
  border-bottom-width: 0px;
  border-color: #000;
  -moz-border-radius: .5em .5em 0em 0em;
  border-radius-topleft: .5em;
  border-radius-topright: .5em;
  padding: 2px 1em 2px 1em;
  position: relative;
  text-decoration: none;
  top: 55px;
  z-index: 100;
  color: #000;
  font-weight:bold;
}

a.tab, a.tab:visited {
  color: #00F;
}

a.tab:hover {
  background-color: #adadef;
  border-color: #95B3DE;
  color: #000;
}
a.tab:active {
  color:#000; background: #adadef; border-style:none;
}
a.tab:focus {
  color:#FFF; background: #00F; border-style:none;
}

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

div.tabMain {
  background-color: #95B3DE;
  border: 2px solid #000000;
  border-color: #95B3DE;
  -moz-border-radius: 0em .5em .5em 0em;
  border-radius-topright: .5em;
  border-radius-bottomright: .5em;
  padding: .1em;
  position: relative;
  z-index: 101;
  width: 920px;
  height: 700px;
  top: 55px;
}

div.tabIframeWrapper {
  width: 920px;
  height: 700px;
  font-size: 10 pt;
  top: 55px;
}

iframe.tabContent {
  background-color: #FFF;
  border: 1px solid #FFF;
  border-color: #95B3DE;
  width: 920px;
  height: 700px;
}

/******************************************************************************
* Additional styles.                                                          *
******************************************************************************/

h4#title {
  background-color: #503080;
  border: 1px solid #000000;
  border-color: #7050a0 #b090e0 #b090e0 #7050a0;
  color: #d0b0ff;
  font-weight: bold;
  margin-top: 0em;
  margin-bottom: .5em;
  padding: 2px .5em 2px .5em;
}