@charset "utf-8";

.slide_area {
	position:relative; 
	margin:0 auto;
}
.slide {
	position:relative; 
	width:100%; 
	height:459px; 
	overflow:hidden;
}
.slide li {
	position:absolute; 
	width:100%;
	left:0; 
	top:0; 
	opacity:0; 
	filter:alpha(opacity=0);
}
.slide li.on {
	opacity:1; 
	filter:alpha(opacity=100);
}
.slide li img { width:100%;}
.pagination { /* 페이징버튼을 감싸고있는 박스 */
	position:absolute; 
	left:19px; 
	top:24px;
}
.pagination:after {
	display:block; 
	content:"";  
	clear:both;
}
.pagination li { /* 오프 버튼 이미지 */
	float:left; 
	width:14px; 
	height:14px; 
	margin:0 0 0 6px; 
	background:url(../images/visual_btn_off.png) no-repeat;
	cursor:pointer; 
}
.pagination li.on { /* 온 버튼 이미지 */
	background:url(../images/visual_btn_on.png) no-repeat;
	width:43px;
}
.pagination li a {
	display:block;
	width:14px;
	height:14px;
	font-size:0;
	white-space:nowrap; 
}
.pagination li.on a { width:43px;}
