/* 简洁tab样式 */
#simple-tabs {
	width: 100%;
	margin-bottom: 20px;
}
#simple-tabs .tabs-header {
	border-bottom: 2px solid #ffcc33;
	height: 32px;
}
#simple-tabs .tabs-header ul {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#simple-tabs .tabs-header li {
	float: left;
	margin-right: 5px;
}
#simple-tabs .tabs-header li a {
	display: block;
	padding: 0 20px;
	line-height: 30px;
	background: #f5f5f5;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	border-bottom: none;
	font-size: 14px;
}
#simple-tabs .tabs-header li.active a {
	background: #996600;
	color: #fff;
	border-color: #996600;
	font-weight: bold;
}
#simple-tabs .tabs-content {
	padding: 15px;
	border: 1px solid #ddd;
	border-top: none;
	background: #fff;
}
#simple-tabs .tab-pane {
	display: none;
}
#simple-tabs .tab-pane.active {
	display: block;
}
#simple-tabs h3 {
	margin: 0 0 15px 0;
	padding-bottom: 8px;
	border-bottom: 1px dashed #ddd;
	color: #c00;
	font-size: 16px;
}