.tabbed_content {
	margin:20px;
}
.tabbed_content .tab_holder {
	position:relative;
	float:left;
	height:26px;
	width:100%;
}
.tabbed_content .tab_holder .tab {
	position:relative;
	float:left;
	height:18px;
	line-height: 18px;
	font-size:16px;
	padding:4px;
	color:#ffffff;
	min-width:60px;
	background-color:#dfdfdf;
	border-left:1px solid black;
	border-top:1px solid black;
	border-right:1px solid black;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	margin-right:4px;
	cursor:pointer;
}
.tabbed_content .tab_holder .tab.active {
	background-color:#ffffff;
	color:#1e6ea6;
	z-index:1;
}
.cedar .tabbed_content .tab_holder .tab.active {
	color:#5f4180;
}
.tabbed_content .tab_holder .tab.disabled {
	cursor:default;
}
.tabbed_content .content_holder {
	position:relative;
	float:left;
	min-height:100px;
	width:100%;
}
.tabbed_content .content_holder .tcontent {
	display:none;
	position:relative;
	float:left;
	width:100%;
	height:100%;
}
.tabbed_content .content_holder .tcontent.active {
	display:block;
}
