@charset "utf-8";

.slide_area {
	position:relative; 
	margin:0 auto;
}
.slide {
	position:relative; 
	width:100%; 
	height:475px; 
	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 a {
	position:relative;
	z-index:1;
}
/*.slide li img { width:100%;}*/
.pagination { /* 페이징버튼을 감싸고있는 박스 */
	position:absolute; 
	left:19px; 
	top:24px;
	z-index:2;
}
.pagination:after {
	display:block; 
	content:"";  
	clear:both;
}
.pagination ul {
	float:left;
}
.pagination ul:after {
	display:block; 
	content:"";  
	clear:both;
}
.pagination ul li { /* 오프 버튼 이미지 */
	float:left; 
	width:14px; 
	height:14px; 
	margin:0 0 0 6px; 
	background:url(../images/visual_btn_off.png) no-repeat;
	cursor:pointer; 
}
.pagination ul li.on { /* 온 버튼 이미지 */
	background:url(../images/visual_btn_on.png) no-repeat;
	width:43px;
}
.pagination ul li a {
	display:block;
	width:14px;
	height:14px;
	font-size:0;
	white-space:nowrap; 
}
.pagination ul li.on a { width:43px;}
.slide_btn {
	float:left;
	margin-left:6px;
	z-index:2;
}
.slide_btn .btn_stop { /* 스톱버튼 */
	display:block;
	width:12px;
	height:14px;
	background:url(../images/visual_btn_stop.png) no-repeat;
}
.slide_btn .btn_play { /* 플레이버튼 */
	display:none;
	width:12px;
	height:14px;
	background:url(../images/visual_btn_play.png) no-repeat;
}