ユーザースタイルシートでZend Frameworkのドキュメントを見やすく

http://framework.zend.com/manual/ja/

Zend Frameworkのドキュメントは充実していてすばらしいのですが、幅固定のレイアウトとかがどうにも気に入らないのでFirefoxの拡張Stylishを使ってユーザースタイルシートを適用させて不満解消。

以下、適当に書きなぐったCSSです。

@-moz-document domain(framework.zend.com) {
  .content {
    width: auto !important;
    padding: 0 5% !important;
    font-size: 100% !important;
  }
  .content-in {
    position: relative;
  }
  .left-side {
    width: auto !important;
    margin-right: 300px;
  }
  .right-nav {
    position: absolute;
    top: 35px;
    right: 0px;
  }
  .content pre.programlisting {
    font-weight: normal;
    line-height: 1.2;
  }
}