@charset "UTF-8";
/* CSS Document */
*{
	box-sizing:border-box;	
}
#wrapper{
	max-width:960px; 
	margin:0.5em auto; 
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:0.9em;
	}
h1{
	text-align:center; 
	font-weight:normal;
}
h2{
	font-weight:normal;
	}
.cols {
    -webkit-column-count: 3; 
    -moz-column-count: 3; 
    column-count: 3;

    -webkit-column-gap: 2%; 
    -moz-column-gap: 2%; 
    column-gap: 2%;
}
p, blockquote{
	line-height:1.4em;	
}
hr{
	clear:both;
	}
code{
	font-size:1.2em; 
	font-weight:bold;
	}
.kolonne{
	width:50%; 
	float:left; 
	padding:0 0 1.5em;
	}
.right{
	padding-left:2%;	
}
img{
	width:100%;
	height:auto;	
}
footer{
	border-top:solid 1px #666; 
	border-bottom:solid 1px #666; 
	text-align:center; 
	margin-top:1.5em;
	padding:0.5em 0; 
	clear:both;
	}
address{
	display:inline;
}
@media screen and (max-width:480px){
	.cols {
		-webkit-column-count: 1; 
    	-moz-column-count: 1; 
    	column-count: 1;
	}
	.kolonne{
		width:98%; 
		float:none;
		margin:0 auto; 
	}
}