/* CSS Document */
body {
	margin: 0;
	padding: 0;
}

/* -- Seitenaufteilung -- */
/* Diese Box enthält alle Inhalte ... navi, main */
/* Damit wird die komplette Seite im Browser horzontal zentriert */
#structure {
	width: 700px;									/* Stell hier ein, wie breit die Box sein soll*/
	height: auto; 
	margin: 5% auto;							/* Abstand nach oben zum Browserrand */
	padding: 0px;									/* Innenabstand */
	background-color: white;
}

/* -- Links -- */
#navi {
	width:20%;
	height:60%;
	margin-top: 0px;
	padding-bottom:10px;
	padding-left:20px;
	padding-top:0px;
	padding-right:20px;
/*	background-color: #CCCCCC; */
	text-align:right;
	line-height:30px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#000000;
	float: left;
	border-right: 1px solid;
	border-color:#FF0000;
}
#navi a {												/* Links in Linkleiste */
/*	background-color:#aaaaaa; */
	border: 0px solid #000000;
	text-decoration:none;
	color: #000000;
	text-align:right;
	font-weight:bold;
	display:block;
}
#navi a:hover {
	color:#FF0000;
}
#navi img {											/* das Logo direkt ansprechen kann (img innerhalb von navi) */
	margin-top: 50px;
}


/* -- Hauptinhalte -- */
#main {												
	width: 55%; 
	margin-left: 20px;
	padding: 0px 20px 0px 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: 20px;
	color: #000000;
/*	border: 1px solid #EEEEEE; 	/* Diesen Rahmen habe ich nur definiert, um die Ausamße der Box noch dezent im Auge behalten zu könne */
	float: left;
}
#main a {												/* Links im Hauptframe */
	text-align:left;
	color:#FF0000;
	text-decoration:none;
}
#main a:hover {
	color:#FF0000;
}
#main a:visited {
	color:#000000;
}
#main img {											/* Darstellung von Bildern im Hauptframe */
	margin: 10px 10px 0px 0px;
	padding: 10px;
	background-color: #FAFAFA;
	border: 1px solid #E8E8E8;
}
.quotation {										/* Zitate */
	margin: 20px 0px 20px 0px;
	padding: 10px;
	color: #555555;
	background-color: #EEEEEE;
	font-style: italic;
	font-size: 11px;
}
.author {												/* Zitatautor */
	font-weight: bold;
}
.adress {												/* Adresse für Austellung */
	margin: 20px 0px 0px 0px;
	padding: 0px;
}
.strong {												/* Hervorhebung in Fliesstext */
	font-weight: bold;
}


