@charset "utf-8";
/* CSS Document */

* { margin:0; padding:0; }
li { list-style:none; }
#gallery {
	width:380px;
	height:240px;
	
	overflow:hidden;
	
}
/*이미지 영역*/
#slides {
	overflow:hidden;
	position:relative;
	width:380px;
	height:240px;
	
}

#slides ul {
	position:relative;
	left:0;
	top:0;
	width:1500px;       /*이미지1개의 가로길이 * 개수*/      
}
#slides ul li {
	width:380px;
	height:240px;
	float:left;
}

/*버튼*/
#buttons {
	     /*아래쪽 여백:5px*/
	float:right;          /*버튼 영역이 오른쪽에 배치*/
}
#buttons a{
	width:30px;
	height:30px;
	text-indent:-9999px;       /*a태그에 입력한 글자 안보이게 설정*/
	float:left; display:none;            /*next버튼, prev버튼이 나란히 정렬*/
} 


a#prev {
	background-image:url(../images/arrow-prev-icon-ie2.png);
	background-repeat:no-repeat;
	display:none;
}

a#next {
	background-image:url(../images/arrow-next-icon-ie1.png);
	background-repeat:no-repeat;
	display:none;
}

.clear { clear:both; }


