html{
	box-sizing:border-box;
	overflow-x:scroll;
	overflow-y:scroll;
		/*verhindert, dass das Leyout hüpft*/
}	

*{/*ALLES-Selektor*/
		margin:0;
		padding:0; /*erst mal alle Abstände raus*/
		box-sizing:inherit; /*vererbt die border-box*/
}
#aussen{
	max-width:65rem;
	margin:1.875rem  auto; /*30px:o,u auto:li:re*/
	}
	
body{
	background:#0b083a;
	color: #0b083a;
	font-family:"Segoe UI",Segoe,Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif;
	font-size:1.0625rem;/*17px; 17px / 16px*/
}	
	
	
header{
	background:#ececec; /*url(../bilder/Logo-Car.gif) no-repeat;die Farbe zuvor wird definiert um bei Ladehämmung nicht so krassen Unterscheid zu sehen*/
	text-align:right;
	border:5px solid white;
}
header h2{ /*Kontextselektor: IN=leerzeichen im Selektor*/
	min-height:8.125rem; /*130px*/
	padding:1.5rem 2rem 0; /*45px o 40px 0 u*/
	color:#0b083a;
	font-weight:bold;
	text-shadow:2.25px -0.75px 1.5px #868686;
	text-align:right;
}
/*Navigation*/
nav{
	padding:1.5rem 0rem 0;
	overflow:hidden;
	
}
nav ul{/*Alle unsortiertenListen IN nav*/
	list-style-type:none; /*hier kann der Dachziegel eingefügt werden. Siehe Einbinden von images */
	float:right;
}
nav li{ 	
	float:left;
	}
nav a, nav strong{
	text-decoration:none;
	padding:0.5rem 1.5rem;
	/*display:block; */
	float:left;
	font-weight:normal;
}
nav a:link, nav a:visited{
	color: #ececec;
	background:#0b083a;
	text-decoration:none;
}
nav a:focus, nav a:hover, nav a:active{
	color: #0b083a;
	background:#ffffff;
}
nav strong{ 
	color: #0b083a;
	background:#868686;
}
/*Navigation*/
main{
	background:#ececec;
	padding:2.5rem; /*Innenabstand*/
	min-height:31.25rem; /*500px*/
	border:5px solid white
}
footer{
	padding:1.25rem 2.5rem 0.25rem; /*20px 40 px*/
	color: #0b083a;
	background:#ffffff;
	font-size:0.75rem
	border:5px solid white;
}
/*Inhalte*/
main li{ 	
	margin-left:5rem; 
	padding-left:1.5rem;
	text-align:left;
	}


main h1, h3, p, blockquote{
	margin-bottom:1rem;
}
main h1{ 
		font-size:2.125rem;/*34px*/
		color:#0b083a;
		padding:0.5rem 0rem 0; /*45px o 40px 0 u*/
		text-shadow:3px -0.75px 1.5px #969696;
}
h2{
		 font-size:1.5rem;/*24px;*/
		 color:#0b083a;
		 text-shadow:2.25px -0.75px 1.5px #969696;
		 text-align:center;
		 padding-top:0.5rem; 
		 padding-bottom:1.5rem;
}
h3{
	 color:#0b083a;
	 font-size:1.25rem;/*20px;*/
	 text-shadow:2.25px -0.75px 1.5px #969696;
}
img{ 
	max-width:100%; /*höchstens*/
	height:auto; /*automatisch, Proportionen beibehalten*/
}
a{
			text-decoration:none;
}
		a:link{ /*frisch*/
			color:#0b083a;
			text-decoration:underline;
		      }
		a:visited{ /*besucht*/
			color:#0b083a;
			}
		a:focus, a:active, a:hover{ 
			color:#0b083a;
			background:#969696;
			text-decoration:none;
			outline:none;
			text-shadow:2px -0.75px 1.5px #ffffff;
					    }
.schwebtlinks{
			float:left;
			margin-left:0.5rem;
			margin-top:0rem;
			margin-right:1.5rem;
	}

.schwebtrechts{
			float:right;
			margin-right:1.5rem;
			margin-top:0rem;
			margin-left:1.5rem;
			
	}	
.schwebtueber{
			float:left;
			margin-left:3rem;
			margin-top:3rem;
		
	}
	
.stop{
		clear:both;
	}