@charset "utf-8";
/* CSS Document */

/* --- ナビゲーションバー --- */
div.nav {
	width: 180px; /* ナビゲーションの幅 */
	font-size: 78%;
	float: left;
	clear: both;
}

/* --- メニューエリア --- */
div.nav ul.nl {
margin: 10px;
padding: 0;
list-style-type: none;
text-align: left;
}

/* --- メニュー項目 --- */
div.nav ul.nl li {
	margin-bottom: 0px; /* 項目の下マージン */
	border-bottom: 1px #8ca654 dotted; /* 項目の下境界線 */
}

/* --- リンク --- */
div.nav ul.nl li a {
	display: block;
	position: relative; /* IE6用 */
	padding: 12px 10px; /* リンクエリアのパディング（上下、左右） */
	background: #d5eba5 url(../imge/sub-menu1.gif) repeat-y right; /* リンクエリアの背景 */
	color: #FFF; /* 文字色 */
	text-decoration: none; /* テキストの下線（なし） */
}
/* --- ポイント時の設定 --- */
div.nav ul.nl li a:hover {
	text-decoration: underline; /* テキストの下線（あり） */
	background-color: #dbeeb1;
	background-image: url(../imge/sub-menu2.gif);
	background-repeat: repeat-y;
	background-position: right;
	color: #FC3;
}
