body{		/* 全体の背景色 */
	color           : #000000;
	line-height	: 133%;
	font-size	: 11pt;
	margin-left	: 20px;
	margin-right	: 20px;
	margin-top	: 10px;
}
table{
	line-height	: 133%;
	font-size	: 11pt;
}
/** a-link Design **/
a:link{		/* リンク */
	color           : #e00000;	/* 文字色：赤色 */
	text-decoration : none;		/* 下線を消す */
}
a:visited{	/* 既に見たリンク */
	color           : #0000c0;	/* 文字色：青色 */
	text-decoration : none;
}
a:active{	/* クリック時のリンク */
	color           : #000000;	/* 文字色：黒色 */
	text-decoration : none;
}
a:hover{	/* カーソルが上にある時のリンク */
	color           : #e00000;	/* 文字色：赤色 */
	background-color: #c0ffff;	/* 背景色：白色 */
	text-decoration : underline;	/* 下線を表示 */
}
