/******************************************************************************
* 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-size: 73%;
	font-weight: bold;
	padding: 0px 0px 3px 0px;
}

a.tab {
	background-color: #A0A0A0;
	font-size: 8pt;
	color: #404040;
	border: 1px solid;
	border-bottom-width: 0px;
	border-color: #B0B0B0 #808080 #808080 #B0B0B0;
	/*-moz-border-radius: .75em .75em 0em 0em;
	border-radius-topleft: .75em;
	border-radius-topright: .75em;*/
	padding: 2px 5px 2px 5px;
	position: relative;
	text-decoration: none;
	top: 3px;
	z-index: 100;
	
}

a.tab, a.tab:visited {
	color: #E0E0E0;
	font-size: 8pt;
}

a.tab:hover, a.activeTab:hover {
	background-color: #b5b5b5;
	border-color: #E0E0E0 #A0A0A0 #A0A0A0 #F0F0F0;
	color: white;
	font-size: 8pt;
}

a.activeTab, a.activeTab:visited {
	background-color: #E0E0E0;
	color: black;
	font-size: 8pt;
	border: 2px solid #000000;
	border-bottom-width: 0px;
	border-color: #E0E0E0 #A0A0A0 #A0A0A0 #F0F0F0;
	/*-moz-border-radius: .75em .75em 0em 0em;
	border-radius-topleft: .75em;
	border-radius-topright: .75em;*/
	padding: 2px 5px 2px 5px;
	position: relative;
	text-decoration: none;
	top: 3px;
	z-index: 100;
}

a.activeTab {
	padding-bottom: 4px;
	top: 1px;
	z-index: 102;
	font-size: 8pt;
}

div.tabMain {
	background-color: #F8F8F8;
	border: 3px solid;
	border-color: #F0F0F0 #A0A0A0 #A0A0A0 #F0F0F0;
	/*-moz-border-radius: 0em .5em .5em 0em;
	border-radius-topright: .5em;
	border-radius-bottomright: .5em;*/
	padding: .5em;
	z-index: 101;
}

div.tabIframeWrapper {
}

iframe.tabContent {
	background-color: #9070c0;
	border: 1px solid #000000;
	border-color: #b090e0 #7050a0 #7050a0 #b090e0;
	height: 36ex;
}
