﻿/* `Rotator >> `Wrapper
----------------------------------------------------------------------------------------------------*/

#rotator_wrapper {
	overflow: hidden;
	position: relative;
	width: 100%; /* 이미지 크기 */
	height: 600px;
}

#rotator_wrapper li {
	list-style: none;
}

#banner_wrapper {
	position: relative;
}

/* `Rotator
----------------------------------------------------------------------------------------------------*/

#rotator,
#rotator li{
	width: 100%; /* 이미지 크기 */
	height: 600px;
}

#rotator {
/*	background: #343b51; rotator 안에 bgcolor */
	position: relative;
}

#rotator li {
	position: relative; /* 2016-07-11 hwantasy 수정 absolute->relative */
	top: 0;
	
}

/* `Rotator >> `Controls
----------------------------------------------------------------------------------------------------*/

/* 페이지 숫자 위치조절 */
#rotator_number {
	position: absolute;
	top: -265px;
	left:-100px;
	height: 40px;
}

#rotator_controls {
	overflow: hidden;
	position: relative;
	
	width: 100%;
	text-align: center;

	top: 780px;
	left: 935px;
}




/* 페이지 숫자 간격조절 */
#rotator_controls li {
	display: inline;
	float: left;
	margin: 0 0 0 3px;
	width: 50px;
	z-index:20000;
}

#rotator_play_pause,
#rotator_controls a {
/*	background: #f8f8f8 url(images/gradient.gif) repeat-x; */
	background: #f6f6f6 repeat-x; /* 숫자 네모박스안 bgcolor */
	border: 1px solid #113446;    /* 숫자 네모박스 border color */
	color: #0f508b;                  /* 숫자 네모박스안 select 전 font color */
	display: block;
	font: 10px Verdana, sans-serif;
	padding: 0px 5px 2px;
	text-align: center;
	text-decoration: none;
}

#rotator_controls a.current {
	margin-top:-1px;
	background: #000;
	border-color: #fff;
	color: #fff;
	font-weight:bold;
	height:18px;
	/* text-decoration: underline; */
}

#rotator_play_pause:hover,
#rotator_controls a:hover {
	background: #000;
	border-color: #fff;
	color: #fff;
}

#rotator_play_pause {
	position: absolute;
	top: 5px;
	right: 5px;
}

/* For IE6. */
* html #rotator_play_pause,
* html #rotator_controls a {
	height: 1%;
}