.tabDATA {
	padding: 5vh 0;
}

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px;
	width: 100%;

}

ul.tabs li {
	font-family: 'CenturyGothic',
		'cwTeXHei',
		'Microsoft JhengHei';
	float: left;
	margin: 0;
	cursor: pointer;
	padding: 0px 21px;
	border-right: 1px solid #7f7f7f;
	color: black;
	font-size: 1.8vh;
	overflow: hidden;
	position: relative;
	margin-bottom: 3vh;
}

ul.tabs li:nth-child(1) {
	padding: 0px 21px 0px 0;
}

ul.tabs li:nth-child(4) {
	border-right: 0px solid black;
}


ul.tabs li:hover {
	color: rgb(184, 171, 171);
}

ul.tabs li.active {
	color: white;
	display: block;
}

.tab_container {
	border-top: none;
	clear: both;
	float: left;
	width: 80%;
	overflow: auto;
	margin: 5vh 0;
}

.tab_content {
	padding: 50px 0px;
}

.tab_content h4 {
	padding: 0px 0 10px 0;
}

.tab_drawer_heading {
	font-family: 'CenturyGothic',
		'cwTeXHei',
		'Microsoft JhengHei';
	display: none;
}

.progress {
	height: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: transparent;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 0px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, .1);
}

.progress-bar-info {
	border-radius: 4px;
	background-color: #1466c4;
}

.progress-bar-black {
	border-radius: 4px;
	background-color: #585c64;
}

@media screen and (max-width: 960px) {
	.tab_container {
		border-top: none;
		clear: both;
		float: left;
		width: 100%;
		overflow: auto;
		margin: 5vh 0;
	}

	.tab_content {
		padding: 20px 0px;
	}

	.tabs {
		display: none;
	}

	.tab_drawer_heading {
		font-size: 18px;
		background: rgba(0, 0, 0, .1);
		margin: 0;
		padding: 15px 20px;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		border-bottom: 1px solid gray;
	}

}