@charset "UTF-8";

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

#main{

	background-color:rgb(220,220,255);

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

}


/************************************
          クラスセレクタ
************************************/


table.kiroku {
               width:    600px;  
	border : 1px solid #cccccc; 
	border-collapse : collapse;
}



table.kiroku th {
            width:    200px;
           height :   150px;
	   border : 1px solid #cccccc;
 background-color : #ddeeff;

       font-family: "ＭＳ 明朝";
         font-size:    100%;
	     color:    blue;
	text-align : center;
}



table.kiroku td {
            width:    400px;
           height :   150px;
	   border : 1px solid #cccccc;
 background-color : #f0f0f0;

       font-family: "ＭＳ 明朝";
         font-size:    100%;
	     color:    blue;
	text-align :   left;
}



