@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

#seite {
    position: relative;
    min-height: 100%;
    width: 550px;
    margin: 0 auto;
    background-color: silver;
}

#inhalt {
    background-color: orange;
    padding-bottom: 2em;
}

#fussbereich {
    position:absolute;
    bottom: 0;
    width: 100%;
    background-color: #000;
    height: 2em;
}
