/* screen.css */

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

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

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

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

/* Horizontale Aufteilung */
#main {
    float:left;
    width:100%;
    margin:0px;
    padding:0px 0px 5px 0px;
}

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

#bottom {
    padding:0px;
    min-height:600px;
}

/* Vertikale Aufteilung */
.left {
    width:260px;
    float:left;
}
.right {
    width:740px;
    float:right;
}
.clear {
    height:0px;
    margin:0px;
    padding:0px;
    clear:both;
}
.clearfix {
  display:inline-block;
}

.clearfix:after {
  clear:both;
  content:".";
  display:block;
  font-size:0;
  height:0;
  line-height:0;
  visibility:hidden;
}

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

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

#maincontent {
    min-height:600px;
    width:720px;
    padding:0px 10px;
}

#headline {
    height:25px;
    padding:0px;
}
/* Scrollbox */
#scroll_wrapper {
    min-height:1px;
    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 5px;
}


/* 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;
}
