/*===== Basis Definitionen für 3 Spalten-Layout =====*/
/*
    Module: 3 column layout
*/
#Outer {
    background-image:url("/C125747A0020D03D/RepositoryFile/images/$File/MainBG.gif"); 
    background-repeat: repeat-y;
    float:left;  /* Mozilla */
}
#navblock,  /* left column */
#homenavblock  { 
    float: left;
    width: 252px; 
}

/*--- 3 Spalten ---*/
#contentblock { /* center column */
    float: left;
    width:562px;
}
#marginal { /* right column */
    float: left; 
    padding-top:15px; 
/*    width: 183px;  */ /* -> MS IE Fehler:  wenn die gesamte Breite genutzt wird, werden Buchstaben des letzten divs ausserhalb des divs wiederholt  -> reduziert auf 180px */
    width: 180px; 
}

/*--- 2 Spalten ---*/
#contentblockBig { /* center column */
    float: left;
    width:740px;
}


/*===== Sonstiges =====*/
div.PrintInfo {
  display:none;
}
.rightalign {
    text-align: right !important;
}
.floatright {
    float: right;
}
.floatleft {
    float: left;
}
.hide {
    position: absolute !important;
    overflow: hidden;
    left: -2000px;
    width: 1px;
    height: 1px;
}
.print {
    display: none;
}
.clearer {
    height: 0;
    clear: left;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}


