html { display: table; width: 100%; height: 100%;}
body { font: 12px/1.5 "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif; display: table-cell; vertical-align: middle;}

#blockCentering { background: url(images/bg.png) left top no-repeat; text-align: left; margin: 0 auto; padding: 0px; width: 625px; height: 200px;}

/* for IE6 */
* html body { text-align: center; height: 100%;}
* html #blockCentering { display: inline; vertical-align: middle; zoom: 1;}
* html #dummy { width: 0;   height: 100%; vertical-align: middle; display: inline-block;}

/* for IE7 */
*:first-child+html body { text-align: center; height: 100%;}
*:first-child+html #blockCentering { display: inline; vertical-align: middle; zoom: 1;}
*:first-child+html #dummy { width: 0; height: 100%; vertical-align: middle; display: inline-block;}
/* over here */

A.btn {
  display: block;             /* ブロック要素にする */
  width: 80px;                /* 横幅 */
  color: #ffffff;
  background-color: #cc3366;  /* 背景色 */
  border: outset 2px #ff6699; /* 枠の色 */
  margin: 0px;
  padding: 3px 1px 1px 0px;
  font-size: 12px;            /* フォントサイズ */
  line-height: 12px;          /* 行の高さ */
  text-align: center;         /* 水平揃え */
  text-decoration: none;      /* 下線を消す */
}
A.btn:hover {
  color: #eeeeee;
  background-color: #ee5588;  /* 背景色 */
  border: inset 2px #ff88bb;  /* 枠の色 */
  margin: 0px;
  padding: 4px 0px 0px 1px;
}
A.btn:active { color: #ffffff; }
A.btn:visited { color: #ffffff; }