/*ページ設定部分（style.cssなどで設定していれば削除する）*/
* {
	margin: 0;
	padding: 0;
}
body {
	background: #fff;
	font-family: Arial;
}
#container {
	position: relative;
	width: 800px;
	margin: 20px auto;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #ff0000;
	text-decoration: underline;
}
/*ここまでページ設定部分*/


/*ここからSliding JavaScript Menu Highlight 1kbの設定*/
.menu {
	position: relative;
	background: url(../images/menubg.gif);
	background-repeat: repeat-x;
	height: 40px;
	width: 800px
}
.menu ul {
	list-style: none;
	z-index: 10;
	position: absolute;
	z-index: 100;
}
.menu li {
	float: left
}
.menu li a {
	border-right: solid 1px #696969;
	width: 159px;
	color: #fff;
	display: block;
	line-height: 40px;
	text-align: center;
}
.menu a, .menu a:active, .menu a:visited, .menu a:hover {
	text-decoration: none;
	color: #FFF;
}
#slide {
	position: absolute;
	height: 40px;
	background: #5b6356;
	z-index: 10
}
