a:link
{
	color: RoyalBlue; 
	text-decoration: underline; /* 下線 */
}
a:visited
{
	color: LightSeaGreen; 
} 
a:active 
{
	color: DarkOrange;
}
a:hover 
{
	color: Yellow;
	background-color: #000080; /* 背景色 */
	text-decoration: none; /* 下線 */
	position: relative; /* ポジション移動 */
	top: 1px; /* 1px 下に移動 */
	left: 1px; /* 1px 右に移動 */
}
hr.type1 {
  color: #000080; /* 線の色(IE用) */
  background-color: #000080; /* 線の色(NN用) */
  height: 3px; /* 線の太さ */
  border: 0px; /* 枠の太さ */
  filter: Alpha(opacity=50, finishopacity=0, style=3); /* フィルタ */
}
body
{
	color: Navy;
	background-color: #FFFFFF;
	background-image: url("../images/back.jpg");
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: left top;
}
table
{
	table-border-color-light: LightBlue;
	table-border-color-dark: Darkblue; 
}

h1
{
	color: Darkblue;
}
h2
{
	color: SteelBlue; 
}
h3
{
	color: MidnightBlue; 
}
h4
{
	color: MidnightBlue;
}
h5
{
	color: Darkblue;
}
h6
{
	color: Darkblue;
}




