#auszug {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-content: stretch;
		align-items: stretch;
		font-family: "Special Elite";
		font-size: 1em;
		letter-spacing: 2px;
		border:1px solid #ccc;
	}
	
	div#loch {
		order: 0;
		flex: 0 1 5%;
		align-self: auto;
		background-color: #C0C0C0;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-content: flex-start;
		align-items: center;
	}
	div#loch span.dot {
		height: 25px;
		width: 25px;
		background-color: #535353;
		border-radius: 50%;
		display: inline-block;
		order: 0;
		flex: 0 1 auto;
		align-self: auto;
	}
		
	div#inhalt {
		order: 0;
		flex: 0 1 97%;
		align-self: auto;
		background-color: #fff;
	}
	#auszug #inhalt div:nth-child(2n){
		background:#eaeaea;
	}
		
	#auszug #inhalt div.title{
		background: linear-gradient(to right, rgba(103,16,55,1) 1%,rgba(137,21,96,1) 100%); 
	}
	#auszug #inhalt div.title h2{
		font-family:"PrestigeEliteStd Bd";		
		color: #fff;
		padding: 10px 0px;
		font-size:1.8em;
		margin: 0px;
		margin-left: 20px;
	}
	#auszug #inhalt div.title p{
		color: #fff;
		padding: 10px 0px;
		font-size:1em;
		margin: 0;
	}
	
	#auszug #inhalt div{
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		padding:7px 0px;
	}	
	#auszug #inhalt div span.zweck{
		order: 1;
		flex: 0 1 50%;
		align-self: auto;
		margin-left: 20px;
	}
	#auszug #inhalt div span.betrag{
		order: 2;
		flex: 0 1 50%;
		align-self: auto;
		text-align: right;
	}
	#auszug #inhalt div.letztes{
		border-top: 2px solid #aaa;
		border-bottom:3px double #aaa;
		line-height: 30px;
		font-weight: 700;
		background-color:  #dadada;
		margin: 10px 0px;
		font-size: 1.3em;
	}
	#auszug #inhalt span.betrag:after{
		content: " +";
	}
	#auszug #inhalt span.letztes:after, #auszug #inhalt span.first:after {
		content: "";
	}
	#auszug #inhalt.right{
		text-align: right;
	}
	@media screen and (max-width:650px){
			#auszug #inhalt div.title h2{
				font-size: 1.4em;
				text-align: center;
				margin: auto;
			}
			#auszug #inhalt div{
				flex-wrap: wrap;
			}
			#auszug #inhalt div span.betrag{
				order: 2;
				flex: 0 1 100%;
				text-align: center;
				font-size: 1.1em;
			}
			#auszug #inhalt div span.zweck{
				order: 1;
				flex: 0 1 100%;
				text-align: center;
				font-size: 0.8em;
				letter-spacing: 0;
			}
			#auszug #inhalt div:nth-child(2), div#loch{
				display: none;
			}
			#auszug #inhalt span.betrag:after{
				content: "";
			}
			#auszug #inhalt span.betrag:before{
				content: " +";
			}
			div#inhalt {
				flex: 0 1 100%;
			}
			
		}							