.stabs input[type=radio] {
	background: #E9AF5B;
	position: absolute;
	display: none;
	Overflow-y:hidden;
}

.stabs {
	width: auto;
	color: #46412D;
	float: none;
	list-style: none;
	position: relative;
	padding: 0;
	margin: auto;
	height: 380px;
	overflow-x: hidden;
	overflow-y:auto;
}

.stabs li{
       float: left; /* entweder rechts oder links */
}

.stabs label {
	background:#E9AF5B;
	width: 193px;
	color: #46412D;
	display: block;
	cursor: pointer;
	position: relative;
	top: 0;
	height: 20px;
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.stabs label:hover {
	background: #A5B153;
	color: #46412D;
	top: 0;
}

[type=radio]:checked ~ label {
	background: #A5B153;
	color: #46412D;
	top: 0;
}

[type=radio]:checked ~ label ~ .stab-content {
         display: block;
}

.stab-content{
 /* Hier wird des ganz normale Inhalt des Tabs definiert wie Schrift, Farbe, Zeilenhöhe etc */
       z-index: 2;
       display: none;
       text-align: left;
       width: 100%;
    height: 350px;
    overflow: auto; /*Höhe (muss ca 50px kleiner sein als bei .tabs vorgegeben und Overflow sollten definiert werden, da ansonsten überschüssiger Text verschluckt wird */
       font-size: 10px;
       padding-top: 10px;
       padding: 5px;
       color: #737171;
       position: absolute;
       top: 20px;
       left: 0;
       box-sizing: border-box;
       -webkit-animation-duration: 0.5s;
       -o-animation-duration: 0.5s;
       -moz-animation-duration: 0.5s;
       animation-duration: 0.5s;
}
