@charset "UTF-8";

/************************************
          ＩＤセレクタ
************************************/



/* ---- ページ全体の設定 ここから ----------- */

#page{
	    top:      0px;
	   left:      0px;
         width:    1000px;
   margin-left:     auto;  /* 全体をセンタリングする */
  margin-right:     auto;  /* 全体をセンタリングする */
      position: relative;  /* 相対配置　※絶対配置ではないので注意　*/
   visibility :  visible;
}
/* ---- ページ全体の設定 ここまで ----------- */



/* ------ メインの領域 ここから ------------- */

#main{
	      top:      0px;
	     left:     10px;
           width:    1000px;
	  z-index:        1;
	 position: absolute;  /* 絶対配置 */
	visibility: visible;

	/* background-color:rgb(247,247,255); */
	background-color:rgb(255,255,255);
	padding-top   : 10px;
	padding-right : 10px;
	padding-bottom: 10px;
	padding-left  : 10px;

     /* 文字の設定 */
	font-family: "ＭＳ 明朝";
	font-size: 90%;
	color:    #202020;
	/* color: rgb(0, 0, 139); */ /* 濃い青の場合 */

   /*　下記の設定は bodyでセンタリングしているので必要  
                               （ 削除しちゃダメ！ ） */
	text-align: left;
}
/* ------ メインの領域 ここまで ------------- */



/************************************
          タイプセレクタ
************************************/



/* ------  body  の設定  ここから ----------- */

body {
     margin-top:   10px;
  margin-bottom:   10px;

 /* 下記の設定は全体をセンタリングするために必要
                          （ 削除しちゃダメ！ ） */
     text-align: center;
}



