/* version: 1.1.5 */

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix("http"), url-prefix("https")
{
  body
  {
    /* center the page */
    margin-left: auto !important;
    margin-right: auto !important;
  
    /* maximize the page */
    width: -moz-available !important;
  }
  
  body > *
  {
    /* center top-level elements */
    margin-left: auto;
    margin-right: auto;

    /* maximize top-level elements */
    max-width: -moz-available;
  }
  
  /* center image-only pages */
  body > img:only-child
  {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    margin: auto !important;
  }
}