googleの検索ボックスを固定その2

以前googleの検索ボックスを固定 - 適当めもで書いたやつが、googleのhtmlが変わって動かなくなったから書きなおした。

@-moz-document url-prefix(http://www.google.) {
  /* 検索部分を固定 */
  table.tb[width="100%"] {
    position: fixed !important;
    top: 0px !important;
    left: 5px !important;
    background-color: #f5f5ff !important;
    border-bottom: solid 1px #36c !important;
  }

  /* ログイン情報を固定 */
  div#guser {
    position: fixed !important;
    top: 0px !important;
    right: 5px !important;
    z-index: 5 !important;
  }

  /* 下部の検索ボックスを削除 */
  table.t.bb.bt {
    display: none !important;
  }

  /* その他の表示部分の上に空白を空ける */
  body {
    margin-top: 6em !important;
    z-index: -1 !important;
  }
}