/* screen.css */

@import url('nav.css');
@import url('content.css');
@import url('diverse.css');

/* general formatting */
html, body {
    height:100%;
}
body {
    margin:0px;
    padding:0px;
    font-family:verdana, tahoma, sans-serif;
}

/* Wrapper Divsion */
#wrapper {
    width:850px;
    margin:0px auto;
    min-height:100%;
    position:relative;
        border:0px solid red; /* Roter Rahmen zum entwickeln */
}
/* IE Hack for correct height in Wrapper Division */
* html #wrapper {
    height:100%;
}

/* Footer formatting */
#footer {
    position:absolute;
    bottom:0px;
    width:100%;
    background-color:#ff4d00;
    padding:20px 0px 20px 0px;
    height:45px;
    background-image:url(../images/right_top.png);
    background-position:top right;
    background-repeat:no-repeat;
}

/* Horizontale Aufteilung */
#main {
    margin:0px;
    padding:0px 0px 85px 0px;
}

#top {
    height:61px;
    padding:19px 0px 30px 0px;
    width:100%;
}

#bottom {
    padding:50px 0px 50px 0px;
    height:300px;
}

/* Vertikale Aufteilung */
.left {
    width:38%;
    float:left;
}
.right {
    width:62%;
    float:left;
}
.clear {
    height:0px;
    margin:0px;
    padding:0px;
    clear:both;
}

/* Gestaltungselemente */
#logo {
    margin:0px;
    padding:0px;
}
#logo a img {
    border:0px;
}

#topnav {
    margin:0px;
    padding:21px 0px;
}

#maincontent {
    height:300px;
    position:relative;
}


#headline {
    height:25px;
    padding:0px 0px 0px 50px;
}
/* Scrollbox */
#scroll_wrapper {
    height:275px;
    margin:0px;
    padding:0px 0px 0px 50px;
    overflow:auto;
}
.jScrollPaneContainer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.jScrollPaneTrack {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
    height: 100%;
    background: #e6e6e6;
}
.jScrollPaneDrag {
    position: absolute;
    background: #ff4d00;
    cursor: pointer;
    overflow: hidden;
}
.jScrollPaneDragTop {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height:5px;
    background-image:url(../images/scroll_handle_top.png);
    background-repeat:no-repeat;
}
.jScrollPaneDragBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    height:5px;
    background-image:url(../images/scroll_handle_bottom.png);
    background-repeat:no-repeat;
}


/* Footer Content */
.footercontent {
    float:left;
    width:22.8%;
    padding:0px 1%;
}


/* Startseite Boxen */
div.startbox {
    width:49%;
    height:120px;
    position:absolute;
}
.leftTop {
    top:0px;
    left:0px;
}
.rightTop {
    top:0px;
    right:0px;
}
.leftBottom {
    bottom:0px;
    left:0px;
}
.rightBottom {
    bottom:0px;
    right:0px;
}


























