body{
	line-height: 20px;		/* 文字の行間の設定 */
	font-size: 13px;		/* 文字の大きさの設定 */
}

font{
	line-height: 20px;		/* 文字の行間の設定 */
	font-size: 13px;		/* 文字の大きさの設定 */
}

/* 内容とコンテンツが書いてある箱をまとめている箱の設定 */
#mainbox {
	height: auto;			/* 高さ（自動調節） */
	width: 820px;			/* 横幅（820ピクセル） */
	margin-right: auto;		/* 右の余白（自動調節） */
	margin-left: auto;		/* 左の余白（自動調節） */
	background-color: #ffffff;	/* 背景色（白） */
	border: thin solid #ffffff;
}


/* 内容が書いてある箱の設定 */
#rightbox {
	font-size: small;		/* 文字の大きさ（小） */
	width: 660px;			/* 横幅（700ピクセル） */
	height: auto;			/* 縦幅　自動 */
	float: right;			/* イラストなどの右側に文字が回り込む */
	text-align: left;		/* 文字の水平方向の位置（左） */
	background-color: #ffffff;	/* 背景の色（白） */
	border: thin solid #ffffff;
}


/* コンテンツが書いてある箱の設定 */
#leftbox {
	font-size: small;		/* 文字の大きさ（小） */
	text-align: center;		/* 文字の水平方向の位置（真ん中） */
	width: 150px;			/* 横幅（150ピクセル） */
	height: auto;			/* 高さ（自動調節） */
	float: left;			/* イラストなどの右側に文字が回り込む */
	background-color: #ffffff;	/* 背景の色（薄めの緑） */
	margin-right: auto;
	margin-left: auto;
	border: thin solid #ffffff;
}


h1{
	font-size: 20px;		/* 文字の大きさ（13ピクセル） */
	color:#000033;			/* 文字の色（赤） */
	font-weight: bold;		/* 文字の太さ（太め） */
    	text-align: center;		/* 文字の水平位置（中央） */
	line-height: 12px;		/* 文字の行間（12ピクセル） */
	letter-spacing: 4px;		/* 文字の間隔（3ピクセル） */
	margin: 0px;
}

/* リンクの設定（文字の色など） */

/* クリックしていない項目の色 */
a:link{
	color: #ff9999;			/* 文字の色（ピンク） */
	text-decoration: none;		/* 下線を消す */
}

/* クリックした項目の色 */
a:visited{
	color: #ff0066;			/* 文字の色 */
	text-decoration: none;		/* 下線を消す */
}

/* 矢印がクリックできる項目の上にあるとき */
a:hover{
	text-decoration: underline;	/* 下線表示 */
}