*{
	margin: 0;
	padding: 0;
}

#container{
	width: 600px; /* 클릭했을때 나타나는 가로메뉴 전체 크기 */
	height: 200px;
	position: relative;
	top: 0;
	left: 0;
}

#home{
	width: 50px;
	height: 200px;
	background: #ff9999;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2; /* #home 서브메뉴 보다 위에 올라오게 한다. */
}

ul{
	width: 600px;
	height: 200px;
	list-style: none;
	top: 0;
	left: -600px; /* 왼쪽으로 -600px 옮겨서 익스플로러에서 보이지 않게 한다. */
	position: absolute;
	z-index: 1;
}

ul li{
	float: left;
	width: 200px;
	height: 200px;
	opacity: 0.7; /* 투명도 선언 */
}