/* CSS Layouts */

html {  padding: 0; margin: 0; height:100%; }
body {
  padding: 0; margin:0;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  position: relative;
  text-align: center;
}
#display-size { min-width: 1000px; max-width: 1200px; margin: 0 auto; position: relative; height: 100%; }
#layout-header, #layout-body, #layout-footer {

  /*float: left;*/
  text-align: left;
}

#layout-header {
  min-height: 200px !important;
  height: 200px;
}

#layout-body {
  padding: 0 90px 0 140px;
  padding-bottom: 150px;
  /*width: 70% !important;*/
}

#layout-body .layout-left {
  margin-right: 260px;
  /*overflow: hidden;*/
}

#layout-body .layout-right {
  float: right;
  position: relative;
  width: 190px;
  margin-left: -260px;
  padding-left: 70px;
}

#layout-body .layout-left .layout-bottom { padding-top: 30px; }

#layout-left-left {
  float: left; 
  width: 239px;
  position: relative;
  margin-right: -239px;
}

#layout-left-right {
  margin-left: 239px;
}

#layout-footer {
  position: relative;
  padding: 0 90px 0 140px;  
  height: 100px;
  bottom: 0;
  clear: both;
}

#layout-footer .layout-left {
  margin-right: 280px;
}

#layout-footer .layout-right {
  float: right;
  width: 280px;
  margin-left: -280px;
}



