/*
  Gesamtbreite ändern bei    :  body, #fullheightcontainer, #footer, #header  (+ main.css)

  Höhe "Header" ändern bei   :  #header, #clearheaderright                    (+ main.css)

  Breite linke Spalte ändern :  #left -> width (3x)

  Position Content ändern    :  #outer -> margin-left  |  anpassen: #left -> margin-left
  Breite Content ändern      :  #outer -> width        |  anpassen: #float-wrap -> width + #center -> width

  Breite rechte Spalte ändern:  #right -> width (3x, 2.Wert IE) + margin-right (3x) + margin-left
                                #container-right -> width

  Höhe "Fuss" ändern         :  #footer -> height + margin-top  | anpassen: #clearfooterright -> height
*/

html,body{
  margin:0;
  padding:0;
  border:0;
  height:100%;
}
body{
  min-width:994px;
  text-align:center;
}
.clear{
  clear:both;
  height:1px;
  overflow:hidden;
  line-height:1%;
  font-size:0px;
  margin-bottom:0px;
}
* html .clear{ height:auto; margin-bottom:0; }
#fullheightcontainer{
  margin-left:auto;
  margin-right:auto;
  text-align:left;
  position:relative;
  width:994px;
  /* height:100%; */
}
#wrapper{
  min-height:100%;
  height:100%;
}
#outer{
  z-index:1;
  position:relative;
  width:800px;
  height:100%;
}
#float-wrap{
  width:800px;
  float:left;
  display:inline;
}
#right{
  float:left;
  display:inline;
  width:194px;
  margin-right:-194px;
  position:relative;
}
#center{
  width:800px;
  float:right;
  display:inline;
}
#header{
  z-index:1;
  position:absolute;
  top:0px;
  width:994px;
  height:95px;
}
#clearheadercenter,
#clearheaderright {
  height:90px;
  overflow:hidden;
}
#footer{
  z-index:1;
  position:absolute;
  clear:both;
  width:994px;
  height:195px;
  overflow:hidden;
  margin-top:-195px;
}
#clearfootercenter,
#clearfooterright {
  height:195px;
  overflow:hidden;
}