.content.fix {
	min-height: auto;
}


/* Базовый контейнер табов */
.tabs {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 2;
}

/* Стили секций с содержанием */
.tabs section {
	display: none;
	padding: 0;
	background: #fff;
	height:700px;
	border: 1px solid #ddd;
	border-bottom: 1px solid #fff;
}
.tabs input.onetab {
	display: none;
	margin: 0;
}
/* Стили вкладок (табов) */
.tabs>label {
	display: inline-block;
	width:200px;
  height: 31px;
	color: #fff;
	font-weight: bold;
	line-height: 31px;
	margin: 0 0 -1px;
	padding: 0 25px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 3px 3px 0 0;
	text-shadow: 0 1px 0 #5D8634;
	background: #004f3e;
	background: linear-gradient(to bottom, #004f3e 0%,#006D55 100%);
}
.tabs>label span{
	height: 31px;
width:100%;
}
/* Изменения стиля заголовков вкладок при наведении */
.tabs>label:hover {
	background: #006D55;
	background: linear-gradient(to bottom, #006D55 0%,#009171 100%);
	cursor: pointer;
}
/* Стили для активной вкладки */
.tabs>input:checked + label {
	background: #c3c3c3;
	background: linear-gradient(to bottom, #c3c3c3 0%,#fff 100%);
	border: 1px solid #ddd;
	border-bottom: 1px solid #fff;
	color:#006d55;
}

/* Активация секций с помощью переключателя :checked
#tab_50:checked ~ #content50,
#tab_51:checked ~ #content51
{
 	display: block;
}*/
