/* ======================================================================
layout.css: Base CSS layout for Roller's web UI (position and sizing only)
====================================================================== */

#banner {
    margin: 0px;
    padding: 0px 0px 0px 0px;
}
.bannerBox {
    width: 100%;
    margin-bottom: 0px;
}
.bannerStatusBox {
    width: 980px;
    height: 30px;
    color: #fff;
    background-color: #fff;
    margin-bottom: 5px;
    margin-top: 0px;
}
.sidebarBodyHead {
    height: 25px;
   width: 100%;
}
.searchSidebarHead {
   height: 5px;
   width: 100%;
}
.searchSidebarBody {
   margin: 0px 0px 0px 0px;
   width: 100%;
}
.searchSidebarBody input {
   margin: 5px;
   width: 90%;
}
#menu {
    padding: 0px 10px 0px 10px;
}
#content {
    width: 930px;
}
/*
    NOTE: these wrap divs are kinda lame, however they are necessary.
    the problem is that when 2 divs are floated side-by-side then the
    calculation of their widths does not include padding or margins.

    so without the wrap divs then putting a margin or padding value in any
    of the XXXcontent divs forces the width calculation to be > 100% and
    the divs don't fit next to each other anymore :(

    to get around this we put a XXXcontent_wrap around the XXXcontent divs
    to do the float and set the width.  margin, padding, borders, etc
    should be applied directly to the XXXcontent div.
*/
#kolonne_1_wrap {
    float: left;
    display: inline;
}
#kolonne_1 {
    margin: 5px;
}
#kolonne_2_wrap {
    float: left;
    display: inline;
}
#kolonne_2 {
    margin: 5px;
}
#kolonne_3_wrap {
    float: left;
    display: inline;
}
#kolonne_3 {
    margin: 5px;
}
#kolonne_4_wrap {
    float: right;
    display: inline;
}
#kolonne_4 {
    margin: 5px;
}

#footer {
    clear: both;
    padding: 15px 0px 15px 0px;
    font-size: smaller;
    text-align: center;
}
.prop {
    height: 300px;
    float: right;
    width: 1px;
}
.clear {
    clear: both;
    height: 1px;
    overflow: hidden;
}


