/*平文のリンク文字制御*/
a:link { color: #00f; text-decoration: none; }
a:visited { color: #4169e1; text-decoration: none; }
a:hover { color: blue; text-decoration: none; }
a:active { color: red; text-decoration: none; }

/*左に配置するサブメニューの制御*/
#menu {
	width: 135px;
	margin: 0;
	padding: 0;
}
#menu li {
	line-height: 1;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline;
}
#menu li a {
	color: #676767;
	font-size: 12px;
	background-color: #fff;
	text-decoration: none;
	position: relative;
	padding: 0.7em 10px;
	display: block;
}
#menu li a:hover {
	color: #4000ff;
	background-color: #fff4dd;
	text-decoration: none;
}
/*テーブルのロールオーバー制御*/
#mask {
}
#mask tbody td { padding-left: 5pt; border-bottom: 1px solid #666; }
#mask tbody tr:hover {
	background-image: url(images/tb_mask.gif);
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: center;
}
#mask tbody a {
	color: blue;
	text-decoration: none;
}
#mask tbody a:hover {
	color: blue;
	text-decoration: none;
}
#mask tbody a:visited {
	color: #4169e1;
	text-decoration: none;
}
