/* Basiselemente 					-----------------------------------------------------------------*/

body { /* 'unterste' Box */
	background-color: #fff;
	color: #808080;
	padding: 0;
	margin: 0;
	font-size: 0.75em;
	font-family: Lucida Sans Unicode, Lucida Sans, Lucida Grande, lucida_sansregular, sans-serif, SunSans-Regular;
	line-height: 1.3em;
	
}

#wrapper { /* Inhaltsumschließender Wrapper */
	width: 950px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 50px;
	padding-top: 30px;	
	padding-bottom: 20px;
	background-color: #fff;
	box-shadow: 10px 10px 80px grey
}

#header { /* Kopfbereich */
	min-height: 50px;
	padding-top: 20px;
	background-color: #fff;
}

#navi { /* Navigation */
	position: relative;
	bottom: 2px;
	left: 110px;
	display: inline;
}

/* source: https://positioniseverything.net/easyclearing.html */

.fix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.fix {
	display: inline-block;
}

* html .fix {
	height: 1%;
}

.fix {
	display:block;
}

#content { /* Inhalt */
	min-height: 300px;
	background-color: #fff;
	padding: 5px;
	margin: 1em 1em 1em 2em;
}

.left {
	float: left;
	width: 80px;
	margin: 0px;
	padding-right: 20px;
	clear: both;
}

.center {
	float: left;
	width: 580px;
	margin: 0px;
	padding: 0px;
}

.left2 {
	float: left;
	width: 120px;
	margin: 0px;
	padding: 0px;
	clear: both;
}

.center2 {
	float: left;
	width: 720px;
	margin: 0px;
	padding: 0px;
	position: relative;
}


.right {
	float: left;
	width: 200px;
	margin: 0;
	padding: 0px;
}

#footer { /* Fußbereich */
	min-height: 50px;
	background-color: #fff;
	margin: 1em 2em 1em 2em;
	border-top: 1px dotted #696969;
}

/* weiterführende Elemente 			-----------------------------------------------------------------*/

#header img { /* Bilder im Kopfbereich */
	margin-left: auto;
	margin-right: auto;
	padding: 15px 20px 15px 50px;
}

#navi ul { /* Listen in der Navigation */
	margin-bottom: 0;
	font: normal 10px Lucida Sans Unicode, Lucida Sans, Lucida Grande, lucida_sansregular, sans-serif, SunSans-Regular;
	padding: 0px;
	text-align: right;
	display: inline;
	font-size: 13px;
}

#navi li { /* Listen in der Navigation */
	display: inline;
	list-style-type: none;
	margin: 0 10px 0 0;
}

a { /* Links */
	text-decoration: none; 
	outline: none;
	color: #696969;
}

a:link { /* Links */
  text-decoration: none; /* Links im Text? */
}

a.external {
  background: url(./images/external.png) center left no-repeat;
  padding-left: 24px;
}

p { /* 'Paragraphen' */
	padding: 0 20px 15px 25px;
	text-align: justify;
	margin: 0;
}

.rightcomments {
	font-size: 10px;
}

h1 { /* Überschriften */
	padding: 15px 50px;
	font-weight: normal;
	margin: 0;
	font-size: 24px;
}

#header h1 {
	display: inline;
}

h3 { /* Überschriften */
	color: #696969;
	text-transform: uppercase;
	font: bold 10px Lucida Sans Unicode, Lucida Sans, Lucida Grande, lucida_sansregular, sans-serif, SunSans-Regular;
}

