/*Design mit 3 Spalten*/
.col1,
.col2,
.col3 {
        float:left;
        position:relative;
        padding:0 0 1em 0;        /* no left and right padding on columns, we just make them narrower instead
                                        only padding top and bottom is included here, make it whatever value you need */
        overflow:hidden;
}
.djhmainsite .col1 {
        width:61%;                        /* width of center column content (column width minus padding on either side) 46%     60%*/
        left:102%;                        /* 100% plus left padding of center column 102%               102%*/
}
.djhmainsite .col2 {
        width:159px;                        /* Width of left column content (column width minus padding on either side) 21%          149px*/
        left:21.5%;                        /* width of (right column) plus (center column left and right padding) plus (left column left padding) 31%         23%*/
}
.djhmainsite .col3 {
        width:147px;                        /* Width of right column content (column width minus padding on either side) */
        left:87.5%;                        /* Please make note of the brackets here:             89.5%
                                        (100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
        background:#D8E1EB;
        border:1px solid #808080;         /*ohne border kann width auf 149px!!!*/
        padding:5px;
}
