@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.
-----------------------------------------------------------------------------*/

div.tabBox {}

/* The tabs consist of simple A tags using style classes designed to make them look like the little tabs found on file folders */
div.tabArea {
  font-size: 90%;
  font-weight: bold;
  padding: 0px 0px 3px 0px;
  
}

div.tabArea a{
	background-color:#006233;
	color:#fff;
}

/*
To make one tab stand out, we define a new style class named "activeTab" which can then be combined with the "tab" class on any link.
*/
a.tab {
  background-color: #fff;
  border: 2px solid #006233;
  border-bottom-width: 0px;
  border-color: #006233 #006233 #006233 #ccc;
  -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:#fff;
  background-color:#006233;
}

a.tab:hover {
  background-color: #F4FCE5;
  border-color: #006233 #006233 #006233 #ccc;
  color: #006233;
  text-decoration:none;
}

a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited {
  background-color: #fff;
  border-color: #006233 #006233 #006233 #ccc;
  color: #006233;
}

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

/*
area where the content for the tabs will be displayed. This will consist of an IFRAME inside of a DIV tag. A style class is defined for the outer DIV to make it match the active tab's style.
*/
div.tabMain {
  background-color: #fff;
  border: 2px solid #fff;
  border-color: #006233 #fff #fff #fff;
  -moz-border-radius: 0em .5em .5em 0em;
  border-radius-topright: .5em;
  border-radius-bottomright: .5em;
  padding: .5em;
  position: relative;
  z-index: 101;
}
/* another DIV tag is used as a wrapper for the IFRAME tag. Both this tag and the inline frame are given a style width of 100%. The inline frame is also given a border. */
div.tabIframeWrapper {
  width: 100%;
}

iframe.tabContent {
  background-color: #f4fce5;
  border: 1px solid #fff;
  border-color: #fff #fff #fff #fff;
  width: 98%;
  height: 120ex;
}

/******************************************************************************
* 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;
}

