/* CSS Document 
Ein Test fuer ein Seitenlayout mit CSS
*/

body {
    margin: 0px;
    padding: 0px;
}

/*
Umfassender Container, damit Content nicht umbricht, wenn leftcolumn vertikal kleiner als content-inhalt ist
*/

#container {
    width: 100%;
    margin:0px;
    background: #FFFFFF;
    border:1px solid gray;}

#header {
    background: #FFFFFF;
    width: 100%;
    clear: left;
}

#leftcolumn {
    background: #FFFFFF;
    float: left;
    width: 108px;
    height: 100%;
}

#rightcolumn {
    background: #FF00FF;
    float: right;
    width: 200px;
    height: 100%;
}

#content {
    background: #FFFFFF;
    margin-left:108px;
    margin-right:2008px;
    width: 75%;
    height: 100%;
}

#footer {
    background: #2D65BA;
    clear: both;
    width: 100%;
}
