body{
	width: 200px;
	margin: 20px auto;
	padding: 0;
	font-size: 13px;
	font-family: Arial;
}

ul#navi{
	width: 200px;
	text-indent: 10px;
}

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

/* 1뎁스 li 그룹값에 높이값을 지정해주면 클릭했을때 트리가 안내려온다. */

li.group{
	margin-bottom: 3px;
}

div.title{
	height: 35px;
	line-height: 3;
	background: #9ab92e;
	cursor: pointer;
}


/* 2뎁스 시작  */

ul.sub li{
	height: 35px;
	line-height: 3;
	background: #fdf6dd;
	margin-bottom: 2px;
	cursor: pointer;
}

ul.sub li a{
	text-decoration: none;
	display:block;
	width: 100%;  /* 100% 상속받은 값은 200px */
	height: 100%;  /* 100% 상속받은 값은 35px; */
	color: #333;
}

ul.sub li:hover{
	background: #ccff00;
}