body{
	background-image: url("Bilder/Blume_Mauer_1200.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center bottom;
	font-family: comic Sans MS;
}

body.BrowserChrome.Android{
	/*background fix for chrome on android*/
	background-attachment: scroll;
	background-size: inherit;
	background-position: center top;
}

body.Winter.Tag{
	background-image: url("Bilder/Winter_1200.jpg");
}

body.Fruehling.Tag{
	background-image: url("Bilder/Fruehling_1200.jpg");
}

body.Sommer.Tag{
	background-image: url("Bilder/Sommer_1200.jpg");
}

body.Herbst.Tag{
	background-image: url("Bilder/Herbst_1200.jpg");
}

.Rahmen{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	min-height: 100%;
	text-align: center;
	background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(100, 100, 100, 0.8)), to(rgba(200, 200, 200, 0.8))); 
	background-image: -webkit-linear-gradient(-45deg, rgba(100, 100, 100, 0.8), rgba(200, 200, 200, 0.8)); 
	background-image:    -moz-linear-gradient(-45deg, rgba(100, 100, 100, 0.8), rgba(200, 200, 200, 0.8)); 
	background-image:     -ms-linear-gradient(-45deg, rgba(100, 100, 100, 0.8), rgba(200, 200, 200, 0.8)); 
	background-image:      -o-linear-gradient(-45deg, rgba(100, 100, 100, 0.8), rgba(200, 200, 200, 0.8)); 
	background-image:         linear-gradient(-45deg, rgba(100, 100, 100, 0.8), rgba(200, 200, 200, 0.8));   
}

.BrowserIE > .Rahmen{
	/* internet explorer -> filter*/
	filter:  progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr=#dd555555, endColorstr=#dddddddd); 
}

.Rahmen,
.Bild{
	border-color: #AA2222; /*Fallback for older browsers*/
	border-top-color: rgba(150, 50, 50, 0.8);
	border-left-color: rgba(150, 75, 75, 0.8);
	border-right-color: rgba(150, 75, 75, 0.8);
	border-bottom-color: rgba(150, 100, 100, 0.8);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.Winter.Tag .Rahmen,
.Winter.Tag .Bild{
	border-color: #2222AA; /*Fallback for older browsers*/
	border-top-color: rgba(50, 50, 150, 0.8);
	border-left-color: rgba(75, 75, 150, 0.8);
	border-right-color: rgba(75, 75, 150, 0.8);
	border-bottom-color: rgba(100, 100, 150, 0.8);
}

.Fruehling.Tag .Rahmen,
.Fruehling.Tag .Bild{
	border-color: #22AA22; /*Fallback for older browsers*/
	border-top-color: rgba(50, 150, 50, 0.8);
	border-left-color: rgba(75, 150, 75, 0.8);
	border-right-color: rgba(75, 150, 75, 0.8);
	border-bottom-color: rgba(100, 150, 100, 0.8);
}

.Sommer.Tag .Rahmen,
.Sommer.Tag .Bild{
	border-color: #AAAA22; /*Fallback for older browsers*/
	border-top-color: rgba(150, 150, 50, 0.8);
	border-left-color: rgba(150, 150, 75, 0.8);
	border-right-color: rgba(150, 150, 75, 0.8);
	border-bottom-color: rgba(150, 150, 100, 0.8);
}

.Bild{
	position: absolute;
	top: 0;
	left: 0; 
	width: 100px;
	border-width: 3px;
	border-style: solid;
	border-radius: 5px;
	cursor: pointer; 

	transition: width 0.5s;
	-webkit-transition: width 0.5s; /* Safari */
}

.Bild.BildGross{
	width: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;}
}

.Bild:hover{
	border-color: red;
}

.Kopf{
	text-align: center;
	color: red;
	padding-left: 110px;
	min-height: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
}

.Winter.Tag .Kopf{
	color: blue;
}

.Fruehling.Tag .Kopf{
	color: green;
}

.Sommer.Tag .Kopf{
	color: orange;
}

.Inhalt{
	margin-bottom: 2ex;
	text-align: left;
}

#ICQ-Status{ /* beim Bild laden kein Zeilenumbruch erzeugen*/
	font-size: 10px;
	vertical-align: top;
}

.Mail,
.Icq{
	border-style: solid;
	border-width: 3px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-color: #555555; /*Fallback for older browsers*/
	border-color: rgba(100, 100, 100, 0.8);
	padding: 1px 5px;
	width: 48%;
	display: inline-block;
	height: 6ex;
	text-align: center;
	vertical-align: top;
	margin-bottom: 3ex;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.Copy{
	position: absolute;
	bottom:0;
	color: #555555;
	text-align: left;
}

@media only screen 
and (min-width : 480px)
and (orientation: landscape) {

	.Bild{
		transition: height 0.5s;
		-webkit-transition: height 0.5s; /* Safari */
		width: auto;
		height: 130px;
	}

	.Bild.BildGross{
		width: auto;
		height: 100%;
	}

	.Kopf{
		min-height: 50px;
		height: 50px;
	}

	.Inhalt{
		padding-left: 110px;
		position: absolute;
		top: 50px;
		bottom: 0;
		left: 0;
		right: 0;
		overflow: auto;
	}

	.Mail{
		position: absolute;
		top: 150px;
		height: auto;
	}

	.Icq{
		position: absolute;
		top: 190px;
	}

	.Mail,
	.Icq{
		left: 0;
		width: 100px;
	}

}

@media only screen
and (min-width : 1224px) {

	body{
		background-image: url("Bilder/Blume_Mauer.jpg");
	}

	body.Winter.Tag{
		background-image: url("Bilder/Winter.jpg");
	}

	body.Fruehling.Tag{
		background-image: url("Bilder/Fruehling.jpg");
	}

	body.Sommer.Tag{
		background-image: url("Bilder/Sommer.jpg");
	}

	body.Herbst.Tag{
		background-image: url("Bilder/Herbst.jpg");
	}

	.Rahmen{
		position: absolute;
		height: 600px;
		min-height: 600px;
		width: 1000px;
		left: 50%;
		margin-left: -500px;
		top: 50%;
		margin-top: -300px;
		border-style: solid;
		border-width: 3px;
		border-radius: 5px;
	}

	.Bild{
		left: -20px;
		top: -10px;
		width: 200px;
		height: auto;
		transition: width 0.5s;
		-webkit-transition: width 0.5s; /* Safari */
	}

	.Bild.BildGross{
		width: 350px;
		height: auto;
	}

	.Kopf{
		padding-left: 220px;
		padding-right: 220px;
		margin-top: 20px;
		margin-bottom: 20px;
		min-height: 50px;
	}

	.Inhalt{
		padding-left: 220px;
		padding-right: 50px;
		top: 150px;
	}

	.Mail{
		top: 300px;
	}

	.Icq{
		top: 350px;
	}

	.Mail,
	.Icq{
		width: 120px;
		left: 30px;
	}

	.Copy{
		left: 10px;
	}
}