/*  ボディ
*      ウィンドウのサイズが変更されても中央に表示されるようにします。
*      ページ外の背景は水色にします。(bitmapデーターは水色と白の縞模様)
*/

html{
  overflow          : scroll;
  width             : 100%;
  height            : 100%;
}
body{
  width             : 100%;
  height            : 100%;
  text-align        : center;
  background        : #ebf5fe url(image/body-background.bmp) repeat scroll left;
 cursor            : default;
}
div#BoxClass1{
  width             : 740px;
  margin-left       : auto;
  margin-right      : auto;
  min-height        : 100%;
  background-color  : #ffffff;
  cursor            : default;
}
/*左右に縦線を入れる場合
div#BoxClass1{
  border:0px #808080 solid;
  border-width:0px 2px;
}
body > #DBOXbody {
  height: auto;
}
