.tab_container {
	display:block;
	margin:10px 10px 0;
}

.tab_container .tab_labels {
	border-bottom:1px solid #eee;
	display:block;
	height:28px;
	padding:0;
	list-style:none;
	margin:0;
}

.tab_container .tab_labels .tab_label {
	display:block;
	float:left;
	margin-right:5px;
	height:28px;
}

.tab_container .tab_labels .tab_label a {
	border:1px solid #ddd;
	border-radius:6px 6px 0 0;
	border-bottom:none;
	padding:0 10px;
	display:block;
	line-height:28px;
	background:#eee;
	color:#4282b6;
	font-size:13px;
	cursor:pointer;
}

.tab_container .tab_labels .tab_label a:hover {
	background:#f8f8f8;
}

.tab_container .tab_labels .tab_label a.selected {
	background:#fff;
}

.tab_container .tab_labels .tab_label a span {
	float:right;
	display:block;
	font-weight:bold;
	background-color:red;
	padding:2px 1px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	min-width:12px;
	text-align:center;
	color:white;
	line-height:12px ;
	margin:6px 0 6px 8px;
}

.tab_container .tab_labels .tab_label a span.blank {
	background-color:transparent;
}


.tab_container .tab_contents {
	display:block;
	border:1px solid #ddd;
	border-top:none;
	padding:5px;
	clear:both;
}

.tab_container .tab_contents .tab_content {
	display:block;
	overflow:hidden;
	height:0px;
	overflow-x:auto;
}

.tab_container .tab_contents .tab_content.selected {
	height:auto;
}

.tab_container .tab_contents .tab_content .dpDiv {
	position:relative !important;
}

