@charset "utf-8";
/* CSS Document */

/******************************************************************************
* 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.
-----------------------------------------------------------------------------*/

/* -------------- colors ----------------------*/
a.tab {
  background-color: #a1cff8;
  border: 2px solid #000000;
  border-bottom-width: 0px;
  border-color: #c6e5fe #739ab9 #739ab9 #c6e5fe;
  -moz-border-radius: .75em .75em 0em 0em;
  border-radius-topleft: .75em;
  border-radius-topright: .75em;
}
a.tab, a.tab:visited {
  color: #4a7798;
}
a.tab:hover {
  background-color: #3e729a;
  border-color: #a3ccea #739ab9 #739ab9 #a3ccea;
  color: #ffffff;
}
a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited {
  background-color: #3e729a;
  border-color: #78b1db #739ab9 #739ab9 #78b1db;
  color: #ffffff;
}
div.tabMain {
  background-color: #3e729a;
  border: 2px solid #000000;
  border-color: #78b1db #739ab9 #739ab9 #78b1db;
  -moz-border-radius: 0em .5em .5em 0em;
  border-radius-topright: .5em;
  border-radius-bottomright: .5em;
  padding: .5em;
}
iframe.tabContent {
  /*background-color: #9070c0;*/
  border: 1px solid #000000;
  border-color: #355c7e #739ab9 #739ab9 #355c7e;
  width: 100%;
  height: 36ex;
}



div.tabBox {}

div.tabArea {
  font-size: 80%;
  font-weight: bold;
  padding: 0px 0px 3px 0px;
}

a.tab {
  padding: 2px 1em 2px 1em;
  position: relative;
  text-decoration: none;
  top: 3px;
  z-index: 100;
}




a.tab.activeTab {
  padding-bottom: 4px;
  top: 1px;
  z-index: 102;
}

div.tabMain {
  position: relative;
  z-index: 101;
}

div.tabIframeWrapper {
  width: 100%;
  height: 500px;
}



