/* 通常CSS */
/* リンクの色 */
a:link {
	color:#0000ff;
}

/* リンクにマウスカーソルを重ねた時の変化 */
a:hover {
	color:greenyellow;
	background-color:black;
}

/* 訪問済み */
a:visited {
	color:tomato;
}

/* デフォルトの背景色、文字色、フォントサイズ */
body{
	background-color:#fffee1;
	color:black;
	font-size:medium;
	margin-left:20px;
	margin-top:10px;
	margin-right:20px;
}


div {
}
/* トップメニューの項目 */
.title {
	font-size:x-large;
	text-align:center;
	font-weight:bold;
}

.bold {
	font-weight:bold;
}

.red {
	color:red;
}

.table {
	table-layout:auto;
	table-border:0%;
	empty-cells:show;
	font-size:medium;
}

.image{
	filter:invert();
}

