 html,
body,
.st-container,
.st-pusher,
.st-content {
	height: 100%;
}
body {

	margin:0;
	overflow: hidden;

}

a {
	text-decoration: none;

	outline: none;
}

a:hover, a:focus {
	outline: none;
}



button {
	border: none;

	background: #31363C;
	color: #fff;
	cursor: pointer;


}



.st-content {

    overflow-y: scroll;
}




/*alles mit Pusher kann auch weg*/
.st-pusher {
	position: relative;
	left: 0;
	z-index: 5;
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;


}

.st-pusher::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu-open .st-pusher::after {
	width: 100%;
	z-index: 100;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}


.st-menu {
	position: absolute;
	overflow-y: scroll ;/*Scrollbar an Nav seite*/
    top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	width: 290px;
	height: 100%;
	background: #31363C;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 1;
	z-index: 100;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	z-index: 100;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;

}

.st-menu h2 {
	margin: 0;
	font-family: 'Raleway', sans-serif;
	padding: 1em;
	color: #FFFFFF;
	font-weight: 300;
	font-size: 2em;
}

.st-menu ul li a {                 /*die Links des Menüs*/
	display: block;
	padding: 1em 1em 1em 1.2em;
	outline: none;
	box-shadow: inset 0 -1px #3A865A;
	color: #DEDEDE;
	font-family: 'Raleway', sans-serif;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}

.st-menu ul li:first-child a {
	box-shadow: inset 0 -1px #3A865A, inset 0 1px #3A865A;
}

.st-menu ul li a:hover {
	background: #3A865A;
	box-shadow: inset 0 -1px #3A865A;
	color: #FFFFFF;
}

/* Individual effects */

/* Effect 1: Slide in on top */
.st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.st-effect-1.st-menu::after {
	display: none;
}


/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
	padding-left: 300px;
}










.ac-container label{
    font-family: 'Raleway', sans-serif;
	position: relative;
	z-index: 20;
	display: block;
	height: 50px;
	cursor: pointer;
    background: #31363C;
    padding-left: 1em  ;
    color: #DEDEDE;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
	border-top : 1px #3A865A solid;
	border-bottom : 1px #3A865A solid;


}
.ac-container label:hover{
	background: #3A865A;
	color: #FFFFFF;
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
background: #3A865A;
	color: #FFFFFF;
}

.ac-container input{
	display: none;
}


.ac-container article{
	background: #4D5258;
	margin-top: -1px;
	overflow: hidden;
	height: 0px;
	position: relative;
	z-index: 10;
	-webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}

.ac-container input:checked ~ article{
	-webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
.ac-container input:checked ~ article.ac-small{
	height: 157px;
}
.ac-container input:checked ~ article.ac-medium{
	height: 210px;
}
.ac-container input:checked ~ article.ac-large{
	height: 263px;
}
.ac-table{
    padding-top:0px;
    height:50px;
    width:100%;
}