body 
{
    background-color: lightcyan; /* 背景色を lightcyan に設定 */
    font-size: 12pt /* デフォルトフォントサイズを 12pt */
}

/****** リンクに関するスタイル設定 ******/
a /* a タグでのデフォルト */
{
	color: blue;
	text-decoration: none;  /* 下線を引かない */
}

a:hover /* a タグ文字上にマウスポインタを合わせた時 */
{
	color: red; /* 赤色にする */
	text-decoration: underline; /* 下線を引く */
}

/****** その他 ******/
span.date /* 日付を指定する場合 */
{
	font-size: 12pt;
	font-style: italic;
}

address /* Copyright やメールアドレスを書く場合 */
{
	text-align: center;
}

div.back
{
	text-align: right;
}

/***** メニュー用の設定 *****/
table.menu
{
	font-size: 9pt
}

tr.menu_focused
{
	background-color: #ffffaa;
	font-weight: bold;
	font-size: 10pt
}


/***** コンテンツのタイトルバー *****/
td.title
{
	font-size: 14pt;
	background-color: blue; 
	color : white; 
	font-weight: bold;
	font-family: Helvetica
}
