<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.menu {
	width: 1020px;
    margin: 0;
    font-weight: bolder;
    background: linear-gradient(#ffe283, #ffffe9);
	overflow: hidden;
	height: 30px;
	font-size: 13px;
	border-top: 1px double #e9e9e9;
	border-bottom: 1px double #e9e9e9;
	padding-top: 10px;
	padding-bottom: 10px;
}

#navi {
    width: 1000px;
	margin: 0 auto;
	padding: 0;
    height : 20px;
}

#navi ul {
	list-style:none;
	margin: 0;
	padding: 0;
}

#navi li {
	float : left;
	width : 8em;
	height : 16px;           /*ボタンの色*/
	padding-top: 4px;
	margin-right: 5px;
	padding-bottom: 4px;
}

#navi li:not(:last-child){
    border-right:1px solid #858681;
}

#navi a {
	text-align : center;
	display : block;
	padding : 0;
	width : 100%;
	color : #494549;                        /*メニュー文字色*/
	text-decoration: none;
}

#navi a:hover {
	border-bottom: 2px solid #008AC3; /*下ボーダー色*/
}

.contents {
	overflow: hidden;
	font-size: 13px;
	margin-top: 10px;
}
</pre></body></html>