.tabs, .tabs1, .tabs2, .tabs3, .tabs4, .tabs5 {
	min-width: 200px;
	max-width: 100%;
	padding: 0px;
	margin: 0 auto;
}

.tabs > section, .tabs1 > section, .tabs2 > section, .tabs3 > section, .tabs4 > section, .tabs5 > section {
	display: none;
	padding: 15px;
	background: #fff;
	border: 1px solid #ddd;
}

.tabs > section > p, .tabs1 > section > p, .tabs2 > section > p, .tabs3 > section > p, .tabs4 > section > p, .tabs5 > section > p {
	margin: 0 0 5px;
	line-height: 1.5;
	color: #58595b;

	-webkit-animation-duration: 1s;	animation-duration: 1s;	-webkit-animation-fill-mode: both;
	animation-fill-mode: both; -webkit-animation-name: fadeIn;	animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.tabs > input, .tabs1 > input, .tabs2 > input, .tabs3 > input, .tabs4 > input, .tabs5 > input {
	display: none;
	position: absolute;
}

.tabs > label, .tabs1 > label, .tabs2 > label, .tabs3 > label, .tabs4 > label, .tabs5 > label {
	display: inline-block;
	margin: 0 0 -1px;
	padding: 8px 15px;
	font-weight: 500;
	text-align: center;
	color: rgb(119, 0, 0);
	border: 0px solid #ddd;
	border-width: 1px 1px 1px 1px;
	background: #f1f1f1;
	border-radius: 3px 3px 0 0;
}

.tabs > label:before, .tabs1 > label:before, .tabs2> label:before, .tabs3 > label:before, .tabs4 > label:before, .tabs5 > label:before {
	margin-right: 10px;
}

.tabs > label:hover, .tabs1 > label:hover, .tabs2 > label:hover, .tabs3 > label:hover, .tabs4 > label:hover, .tabs5 > label:hover {
	color: #888;
	cursor: pointer;
}

.tabs > input:checked + label, .tabs1 > input:checked + label, .tabs2 > input:checked + label, .tabs3 > input:checked + label, .tabs4 > input:checked + label, .tabs5 > input:checked + label {
	color: #555;
	border-top: 1px solid #a89561;
	border-bottom: 1px solid #fff;
	background: #fff;
}

#tab1:checked ~ #content-tab1,
#tab2:checked ~ #content-tab2,
#tab3:checked ~ #content-tab3,
#tab4:checked ~ #content-tab4,
#tab5:checked ~ #content-tab5,
#tab11:checked ~ #content-tab11,
#tab21:checked ~ #content-tab21,
#tab31:checked ~ #content-tab31,
#tab41:checked ~ #content-tab41,
#tab51:checked ~ #content-tab51,
#tab12:checked ~ #content-tab12,
#tab22:checked ~ #content-tab22,
#tab32:checked ~ #content-tab32,
#tab42:checked ~ #content-tab42,
#tab52:checked ~ #content-tab52,
#tab13:checked ~ #content-tab13,
#tab23:checked ~ #content-tab23,
#tab33:checked ~ #content-tab33,
#tab43:checked ~ #content-tab43,
#tab53:checked ~ #content-tab53{
	display: block;
}

@media screen and (max-width: 680px) {
	.tabs > label, .tabs1 > label, .tabs2 > label, .tabs3 > label, .tabs4 > label, .tabs5 > label {
		font-size: 0;
	}
	.tabs > label:before, .tabs1 > label:before, .tabs2 > label:before, .tabs3 > label:before, .tabs4 > label:before, .tabs5 > label:before {
		margin: 0;
		font-size: 18px;
	}
}

@media screen and (max-width: 400px) {
	.tabs > label, .tabs1 > label, .tabs2 > label, .tabs3 > label, .tabs4 > label, .tabs5 > label {
		padding: 15px;
	}
}