/* Grundlegendes */

html,body {
	margin: 0;
    padding: 0;
    font-family: verdana, arial;
    font-size: 12px;
}

#wrapper {
	margin: 10px 20px;
    width: 700px;
    height: auto;
    background-color: #444;
}

/* Header */

#header {
    width: 550px;
    height: 70px;
    float: right;
    background-image: url(gfx/header.gif);
}

/* Navigation */

#navi {
    padding-top: 70px;
    width: 150px;
    background-image: url(gfx/eckeobenlinks.png);
    background-repeat: no-repeat;
    float: left;
}

#navi h1 {
	margin: 0;
    padding: 1px 7px;
    color: #fff;
    background: #222;
    font-size: 13px;
    font-weight: normal;
    border-bottom: 1px solid #fff;
}

#navi ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#navi ul li {
	display: inline;
}

#navi ul li a {
	display: block;
	padding: 1px 7px;
	color: #222;
	background: #eee;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
}

#navi ul li a:hover {
	color: #000;
	background: #fff;
}

/* Content-Bereich */

#content {
	padding-bottom: 15px;
    width: 550px;
    min-height: 280px;
    background-color: #f8f8f8;
    float: right;
}

#content h1 {
	margin: 0;
    padding: 2px 5px;
    color: #000;
    background-color: #ebfac1;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
}

#content h2 {
	margin: 15px 20px 10px 20px;
	padding: 0;
	color: #379;
	font-size: 20px;
	font-weight: bold;
}

#content p {
	margin-left: 20px;
	margin-right: 20px;
}

#content a {
	color: #359;
}

/* Footer */

#footer {
    padding: 2px 5px 2px 0px;
    width: 695px;
    height: auto;
    background-color: #222;
    color: #fff;
    font-size: 10px;
    text-align: right;
    clear: both;
}




