@charset "utf-8";
/* container for slides */
.images {  
	position:relative;	
	width:1180px;  
	cursor:pointer; 
}
.images:after {content:''; display:block; clear:both;}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		 
	font-size:12px;
}
 
/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	position:absolute;
	bottom:10px;
	left:45%;
}

/* single tab */
.slidetabs a {
	width:9px;
	height:9px;
	float:left;
	margin:3px;
	background:url('/content/images/common/navigato.png') 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

/* mouseover state */
.slidetabs a:hover { background-position:0 -9px; } 
/* active state (current page state) */
.slidetabs a.current { background-position:0 -9px; } 	


/* prev and next buttons */
.forward, .backward { 
	display:block;
	width:64px;
	height:64px; 
	cursor:pointer;
	font-size:16px; 
	color:#333;
}
.forward span {
	width:100px;
	display:block;
	float:right;
	margin-top:70px;
	margin-right:-15px;
	text-align:center;
}
.backward span{
	width:100px;
	display:block;
	float:left;
	margin-top:70px;
	margin-left:-15px;
	text-align:center;
}
/*이전 다음페이지 텍스트
.name_prev{
	position:absolute;
	top:135px;
	left:35px;
	display:block;
	width:100px;
	text-align:center;
	font-size:16px;
	color:#333;
}
.name_next{
	position:absolute;
	top:135px;
	right:35px;
	display:block;
	width:100px;
	text-align:center;
	font-size:16px;
	color:#333;
}*/
/* next */ 
.forward {
	width:64px;
	height:64px;
	position:absolute;
	top:60px;
	right:50px;
	background:url('/content/images/common/title_next_off.png') no-repeat center 0;   
}
.forward:hover,
.forward:active { background:url('/content/images/common/title_next_on.png') no-repeat center 0; }
  
/* prev */
.backward {
	position:absolute;
	top:60px;
	left:50px;
	background:url('/content/images/common/title_prev_off.png') no-repeat 0 0;  
}
.backward:hover,
.backward:active { background:url('/content/images/common/title_prev_on.png') no-repeat 0 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}
