/* Horizontal Tabbed Panels */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	clear: both;
 /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
 	width: 100%; /*no diff IE?*/
}
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}
.TabbedPanelsTab {
/* Hack for IE compatability - http://forums.adobe.com/message/187572#187572 */
	position: relative; 
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 1px 0px 0px;
	font: bold 1.0em sans-serif;
	background-color: #003366;
	list-style: none;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	cursor: pointer;
}
.TabbedPanelsTabHover {
	background-color: #CCC;
}
.TabbedPanelsTabSelected {
	background-color: #EEE;
	color: #003366;
	border-bottom: 1px solid #EEE;
}
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}
.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	background-color: #EEE;
}
.TabbedPanelsContent {
	/*	float: left;*/  /*this pushes content below menu for ff */
	padding: 10px; /* was 4 */
		/*width: 100%; *//*went from narrow scroll to 4 inches. still below menu though*/
/*	overflow:auto; */
	height: 600px;
	overflow:scroll;
}
.TabbedPanelsContentVisible {
}
/* Vertical Tabbed Panels */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: *10em; 
	height: 20em;
	background-color: #EEE;
	position: relative;  
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left; /*off ff overwrites menu*/
	padding: 0px;
	/*width: 100%; */ /*on ff content below menu; ie 1" vert grey; writing larger */
	width:auto; /*inherit;*82em;*/
	height: auto;
	margin-bottom: 5px;
	/* IE Hack */
	position: relative;  /*off ie 1" vertical strip first noticed*/  /*on ie ie 1" vertical strip w/scrollbar */
}

