@charset "utf-8";
/* CSS Document */

.gradaccordeon {
  	position: relative;
	height:400px;
	overflow:hidden
}
.gradaccordeon:after {
  	position: absolute;
  	bottom: 0;  
  	height: 400px;
  	width: 100%;
  	content: "";
  background: -webkit-linear-gradient(bottom, rgba(255,255,255, 1) 10%, rgba(255,255,255, 0) 150%);
  background: -o-linear-gradient(bottom, rgba(255,255,255, 1) 10%, rgba(255,255,255, 0) 150%);
  background: linear-gradient(to top, rgba(255,255,255, 1) 10%, rgba(255,255,255, 0) 150%);;
}	
	
.no-after:after{content:none;display:none}
	
.expandme-knopp{position:relative;text-align:center;z-index:10;height:50px;cursor:pointer;border:solid black}
