﻿/* Beispiele floaten */
#box1, .box2, .clearer {
	width: 300px;
	background-color: #eee;
	padding: 10px;
	
}
#box1 {
	float:left;
	margin-right:10px;
}
figure {
	margin:0;
}
#box1 img {
	width: 100%;
	height: auto;	
}
.box2 {
	float: left;
	border: 1px solid #666;
	width: calc(25% - 3px);
	box-sizing:border-box;
	margin:1px;
	text-align:center;
}
.clearer {
	clear: both;
	width: auto;
	background-color: white;

}
h2.initiale {
	width: 30px;
	font-size: 3em;
	display: block;
	float: left;
	margin-right: 5px;
	margin-top: -3px;
	margin-bottom: 0px;
	font-style: italic;
}
