*{
	margin: 0;
	padding: 0;
}

#nav{
	width: 800px;
	height: 100px;
	margin: 100px auto;
}

#nav ul:after{ /* 1댑스 메뉴 마지막 cf */
	content:"";
	display: block;
	clear: both;
}

#nav ul li{
	float: left;
	list-style: none;
	position: relative;
	width: 200px;
}

#nav ul li a{
	display: block; /* 디스플에이 블럭을 시켜야 가로 세로 값을 줄 수 있다. */
	width: 200px;
	height: 30px;
	line-height: 30px;
	background: #ccc;
	text-align: center;
	text-decoration: none;
	color: #000;
}

#nav ul li.on a{ /* 스크립트에서 불러올 가상 클래스 */
	font-weight: bold;
	text-decoration: underline;
	background: #33ccff;
	color: #fff
}