body{}table {text-align : center ;	/* ブロック内の要素を中央にそろえます（ブロック全体を中央にするにはmargin-left,margin-rightをautoにする設定を併用します） */margin-right : auto ;		/* ボックスの右マージンを自動設定 */margin-left : auto ;	/* ボックスの左マージンを数値で指定．emとex以外の単位が使用できます．*/}td{	border : solid 1px :}th{background-color :rgb(239,237,194) ; border : solid 0px transparent ;min-width : 40px ;	/* ブロックやimg要素の最小幅を数値や%で指定．ウィンドウサイズが変わってもこのサイズより小さくなりません */	}	.kyousan{font-size : large ;font-weight : bold ;	/* font-weight: 700; と同じ指定になります */padding-top : 15px ;	/* ボックスの上パディングを数値で指定．*/padding-bottom : 0px ;	/* ボックスの下パディングを数値で指定．*/} /* === １つ目の赤いボタン ======================================================================= */.greet a {	display : block; /* この記述は必須 */	width : 100px; /* 画像（＝ボタン）の幅と高さも必須 */	height :30px;	background : white url("info/greet_1.gif")  no-repeat; /* マウスをのせない時の画像ファイル */	border : solid 5px transparent ;	/* 上下左右のボーダーの[style] [width] [color]を半角スペースで区切り，任意の順番で記述 */}.greet a:hover { /* マウスをのせた時の動作 */	background : white url("info/greet_2.gif")  no-repeat; /* マウスをのせた時の画像ファイル */}/* === ２つ目の青いボタン ======================================================================= */.access a {	display : block;	width : 100px;	height :30px;	background : white url("info/access_1.gif")  no-repeat;	border : solid 5px transparent 	/* 初期値 */ ;	/* 上下左右のボーダーの[style] [width] [color]を半角スペースで区切り，任意の順番で記述 */}.access a:hover {	background : white url("info/access_2.gif")  no-repeat;}