@charset "utf-8";
/* Einfache fließende Medien
   Hinweis: Für fließende Medien müssen Sie die Attribute 'height' und 'width' des Medium aus dem HTML-Code entfernen
   http://www.alistapart.com/articles/fluid-images/
*/
img, object, embed, video {
        max-width: 100%;
}
/* IE 6 unterstützt keine maximale Breite, verwenden Sie daher eine Standardbreite von 100% */
.ie6 img {
        width: 100%;
}
/*
        Dreamweaver-Eigenschaften für fließende Raster
        ----------------------------------
        dw-num-cols-mobile:                8;
        dw-num-cols-tablet:                16;
        dw-num-cols-desktop:        16;
        dw-gutter-percentage:        25;

        Idee durch den Artikel "Responsive Web Design" von Ethan Marcotte
        http://www.alistapart.com/articles/responsive-web-design

        und "Golden Grid System" von Joni Korpi
        http://goldengridsystem.com/
*/

/* Layout für Mobilgeräte: 480 px oder weniger. */

.gridContainer {
        margin-left: auto;
        margin-right: auto;
        width: 88.725%;
        padding-left: 0;
        padding-right: 0;
        background-color: #fdf4d6;
}
#obenlinks {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
        background-color: #e3bf7c;
}
#obenrechts {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
        background-color: #e3bf7c;
}
#untenlinks {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
		height: 100%;
        display: block;
        background-color: #e3bf7c;
}
#content {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
		height: 100vh;
        display: block;
		overflow-y: scroll;
}

/* Layout für Tablet-PCs: 481 bis 768 px. Erbt Stile vom: Layout für Mobilgeräte. */

@media only screen and (min-width: 481px) {
.gridContainer {
        width: 94%;
        padding-left: 0;
        padding-right: 0;
        background-color: #fdf4d6;
}
#obenlinks {
        clear: both;
        float: left;
        margin-left: 0;
        width: 35%;
		height:auto;
        display: block;
        background-color: #e3bf7c;
}
#obenrechts {
        clear: none;
        float: left;
        margin-left: 0;
        width: 65%;
		height:auto;
        display: block;
        background-color: #e3bf7c;
}
#untenlinks {
        clear: both;
        float: left;
        margin-left: 0;
        width: 35%;
		height: 100vh;
        display: block;
        background-color: #e3bf7c;
}
#content {
        clear: none;
        float: left;
        margin-left: 0;
        width: 65%;
		height: 100vh;
        display: block;
		overflow-y: scroll;

}
}

/* Desktoplayout: 769 bis maximal 1232 px.  Erbt Stile von: den Layouts für Mobilgeräte und Tablet-PCs. */

@media only screen and (min-width: 769px) {
.gridContainer {
        width: 100%;
        max-width: 1232px;
        margin: auto;
        background-color: #fdf4d6;
}
#obenlinks {
        clear: both;
        float: left;
        margin-left: 0;
        width: 24%;
        display: block;
        background-color: #e3bf7c;
}
#obenrechts {
        clear: none;
        float: left;
        margin-left: 0;
        width: 76%;
        display: block;
        background-color: #e3bf7c;
}
#untenlinks {
        clear: both;
        float: left;
        margin-left: 0;
        width: 24%;
        display: block;
        background-color: #e3bf7c;
}
#content {
        clear: none;
        float: left;
        width: 76%;
		height: 100vh;
        display: block;
		overflow-y: scroll;
}
}