/* vertical centering:  www.jakpsatweb.cz/css/css-vertical-center-solution.html */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  }
#outer {
  display: table;
  height: 100%;
  width: 100%;
  min-height: 554px;
  min-width: 1000px;
  #width: expression((document.documentElement ? document.documentElement.clientWidth : document.body.clientWidth) < 1000 ? '1000px' : '100%');
  #height: expression((document.documentElement ? document.documentElement.clientHeight : document.body.clientHeight) < 554 ? '554px' : '100%');
  #position: relative;
  overflow: hidden;
  }
#middle {
  #position: absolute;
  #top: 50%;
  display: table-cell;
  vertical-align: middle;
  }
#inner {
  #position: relative;
  #top: -50%;
  width: 1000px;
  height: 554px;
  margin: 0 auto;
  }
#signature {
  width: 100%;
  text-align: center;
  }