.tab-content input[type="radio"] {
  display: none;
}

.tab-content label {
	display: inline-block;
	font-weight: bold;
	font-size: 13px;
	color: #333;
	background-color: #ecf0f1;
	cursor: pointer;
	box-shadow: inset -1px 1px 2px rgba(0, 0, 0, 0.3);
	border-radius: 5px 5px 0 0;
	box-sizing: border-box;
	width:48%;
	text-align:center;
	margin-right: 1%;
	margin-left: 1%;
	padding: 10px;
}
.tab-content label:hover,
.tab-content input[type="radio"]:checked + label {
	color: #fff;
	background-color: #e62e8b;
}

.tab-content .tab-box {
  width: 850px;
  height:auto;
  padding: 20px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  box-sizing: border-box;
}

.tab-content > .tab-box > div {
  display: none;
}

#tab1:checked ~ .tab-box > #tabView1 {
  display: block;
}

#tab2:checked ~ .tab-box > #tabView2 {
  display: block;
}

.center_area .tab-content .tab-box h2 {
	padding: 15px;
	border-bottom:2px solid #dfdfdf;
	margin-bottom:15px;
}
