/*
Projekt: responsive Layout-Vorlage
Kurs: Grundlagen der Web-Programmierung

Farbschema:
#115050 dunkelgrün
#91C90D matt grün
#C9A40D orange
*/

/* Scollbalken immer zu sehen  */

html {
    height: 101%;
}

/* Normalisieren: alle Abstände auf 0 setzen */

* {
    margin: 0;
	
    padding: 0;
}

/* Aufheben des Umflusses */

.stopFloat {
    border: 0;
	
    clear: both;
	
    float: none;
	
    font-size: 0;
	
    height: 0;
	
    line-height: 0;
	
    margin: 0;
	
    padding: 0;
	
    visibility: hidden;
}

/* Positions
************************/

body {
    background: #115050 url(../images/pattern_146.gif);
	
    color: #115050;
	
    font-family: verdana, arial, helvetica, sans-serif;
	
    font-size: 100%;
}

#all {
    width: 1200px;
	
    margin: 20px auto 20px auto;  /* Zentrierung für moderne Browser */
	
    background: #fff;
}

header {
    width: 1200px;
	
    height: 200px;
	
    background: #91C90D;
}

header img {
    border: 0;
	
    float: right;
	
    width: 202px;
}

#wrapper {
    width: 1200px;
	
    background: url(../images/nav-back.gif) repeat-y;
}

#hauptnavigation {
    width: 230px;
	
    float: left;
	
    background: #C9A40D;
	
    padding: 10px;
}

#content {
    width: 910px;
	
    float: left;
	
    min-height: 600px;
	
    background: #fff;
	
    padding: 20px;
}

aside {
    display: inline;
	
    width: 200px;
	
    float: left;
	
    background: #fff;
	
    border: none;
	
    padding: 10px;
	
    margin-right: 100px;
}

.bild {
	width: 550px;
}

footer {
    width: 1190px;
	
    background: #91C90D;
	
    font-size: 0.8em;
	
    padding: 5px;
}

/* Hauptmenü 
********************************/

#hauptnavigation ul {
	margin: 5px 0;
	
	list-style: none;
}

#hauptnavigation ul li {
	margin-left: 0;
	
	padding-bottom: 5px;
}

#hauptnavigation ul li a {
	text-decoration: none;
}

#hauptnavigation a:link, #hauptnavigation a:visited {
	color: #115050;
}

#hauptnavigation a:hover, #hauptnavigation a:active, #hauptnavigation a:focus {
	color: #fff;
}

#current {
	color: #fff;
	
	font-weight: bold;
}

#hauptnavigation  ul ul {
	margin-left: 18px;
}

/* Breadcrumb
********************************/

#breadcrumb {
	font-size: 0.8em;
	
	line-height: 1em;
	
	margin-bottom: 3px;
}

#breadcrumb a {
	text-decoration: underline;
	
	color: #115050;
}

#breadcrumb a:link, #breadcrumb a:visited {

}

#breadcrumb a:hover, #breadcrumb a:active, #breadcrumb a:focus {

}

/* Formatierung der Inhalte
********************************/

H1 {
	font-size: 4em;
	
	color: #fff;
	
	text-transform: uppercase;
	
	padding-left: 5px;
}

H2 {
	padding-left: 10px;
}

#content H3 {
	font-family: Georgia;
	
	font-size: 1.4em;
	
	line-height: 1.8em;
	
	margin: 0 0 15px 0;
}

aside H4 {
	font-size: 1em;
	
	line-height: 1.8em;
	
	margin: 0 0 15px 0
}

#content p {
	font-size: 0.9em;
	
	line-height: 1.4em;
	
	margin: 0 0 10px 0;
}

ul {
	list-style: disc;
	
	margin-left: 0px;
}

li { 
	margin-left: 20px;
}

#content .quelle {
	font-size: 0.6em;
	
	margin-left: 320px;
	
	line-height: 1em;
}

/* Bilder
****************************/

#content img {
	border: solid #115050 2px;
}

/* Links- bzw. Rechsausrichtung für z.B. Bilder */

.links {
	float: left;
	
	margin: 0 5px 0 0;
}

.rechts {
	float: right;
	
	margin: 0 0 0 5px;
}

figure {
	background: #91C90D;
}

figcaption {
	font-size: 0.7em;
	
	line-height: 1.4em;
	
	color: #fff;
	
	font-weight: bold;
	
	padding: 2px;
}







































