
.TabbedPanels {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
	height:32px;
	line-height:32px;
	background:#f0f0f0;
}

.TabbedPanelsTab {
	position: relative;

	float: left;
	padding-left:20px;
	padding-right:20px;

text-align:center;
	color:#175fb1;
	font-size:14px;
	line-height:32px;
	font-weight:bold;
	
	cursor: pointer;
}

.TabbedPanelsTabHover {
	
}

.TabbedPanelsTabSelected {
	border-top:2px solid #175fb3;
	background:#fff;
}


.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

.TabbedPanelsContentGroup {
	clear: both;
	
}
.TabbedPanelsContent {
	overflow: hidden;
	
}

.TabbedPanelsContentVisible {
}

