/* Written by: Marc Hollins & Debbie Whitcomb */
/* Last Updated: February 18, 2004 */
/* $Author: whitcomb $ */ 
/* $Revision: 1.2 $ */ 

/******************************************************************************
* 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 {
  position: relative;
  width: 640px;
}

div.tabArea1 {
  position: absolute;
  top: 0;
  font-size: 12px;
  font-weight: bold; 
  line-height: 12px;
  padding: 0px 0px 0px 0px;
  z-index: 100;
}

div.tabArea2 {
  position: absolute;
  top: 0;
  font-size: 12px;
  font-weight: bold; 
  line-height: 12px;
  padding: 0px 0px 0px 0px;
  z-index: 100;
}

div.tabArea3 {
  position: absolute;
  top: 0;
  font-size: 12px;
  font-weight: bold; 
  line-height: 12px;
  padding: 0px 0px 0px 0px;
  z-index: 100;
}

div.tabMain {
  background-color: #fff;
  border: 1px solid #666;
  -moz-border-radius: 0em .5em .5em 0em;  
  border-radius-topright: .5em;
  border-radius-bottomright: .5em;
  position: absolute;
  top: 70;
  z-index: 101;
  padding: 6px 6px 6px 6px;
  width: 100%;
}

a.tab {
  background-color: #bcd;
  border: 1px solid #347;
  -moz-border-radius: .75em .75em 0em 0em;  
  border-radius-topleft: .75em; 
  border-radius-topright: .75em;
  padding: 2px 6px 3px 6px;
  margin: 0px;
  text-decoration: none;
  position: relative;
  top: 10px;
  -Moz-User-Select: none;  
}

a.tab, a.tab:visited {
  color: #303036;
}

a.tab:hover {
  background-color: #46596f;
  color: #fff;
}

a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited {
  background-color: #fff;
  color: #060610;
}

a.tab.activeTab {
  padding-bottom: 6px;
  top: 8px;
  z-index: 103;
  border-bottom-width: 0px;
}

iframe.tabContent {
  background-color: #666;
  border: 1px solid #666;
  width: 100%;
  height: 100%;  
}

