/* Horizontal Tabbed Panels */

.TabbedPanels {
	margin: 0px;
	padding: 0px;
	clear: both;
	width: 100%px; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

.TabbedPanelTab {
	cursor: pointer;
	position: relative;
	top: 1px;
	float: left;
	padding: 2px 3px;
	margin: 1px 1px 0px 1px;
	text-decoration: none;
	border: 1px solid #666666;
	background: #eeeeee;
	color: #666666;
	font-weight: bold;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.TabbedPanelsContentVisible {
}
.TabbedPanelsTabHover {
	background: #294A6D;
	text-decoration: none;
	color: white;
	
}
.TabbedPanelsTabSelected {
	background: #9A0002;
	color: white;
}
.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;
}

.TabbedPanelContent {
	padding: 5px;
	font-family: sans-serif;
	font-size: 11px;
	text-align: left;
	background-color: #EEEEEE;
}

.TabbedPanelTab a {
	color: black;
	text-decoration: none;
}

/* Vertical Tabbed Panels */

.VTabbedPanels .TabbedPanelsTabGroup {
	float: right;
	width: 20em;
	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 .TabbedPanelTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

.VTabbedPanels .TabbedPanelTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}

.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 40em;
	height: 20em;
}
