﻿<style>
/*bodyの初期設定*/
#bd{
   background-color: #ffffff;
}
/*ビューワの設定*/
#view{
   position: absolute;        /*絶対座標で表示*/
   top: 100px;                /*初期表示位置*/
   left: 100px;               /*初期表示位置*/
   width: 500px;              /*幅*/
   height: 300px;             /*高さ*/
   padding: 1em;              /*余白*/
   background-color: #ffffff; /*背景色*/
   text-align: center;        /*中央寄せ表示*/
   display: none;             /*初期状態は無表示*/
}</style>
