@charset "utf-8";
/***************************************
    copyright by MakeWeb.com.tw 
***************************************/

.scrollable_banner {
	position:absolute;
	margin:0;
	padding:0;
	/*border:1px solid #00F;/* 顯示外框(測試用) */
}

/*-------------------------------------------- 
 scrollable-horizontal 
---------------------------------------------*/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable_banner .scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 1000px;
	height:400px;

	/* custom decorations */
	border:0px solid #ccc;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable_banner  .scrollable .items {
	/* this cannot be too large */
	width:2000em;
	position:absolute;
	clear:both;
}

.scrollable_banner  .items div {
	float:left;
	width:1000px;
}

/* single scrollable item */
.scrollable_banner  .scrollable img {
	float:left;
	margin:0px;
	padding:0px;
}


/* active item */
.scrollable_banner  .scrollable .active {
	position:relative;
	cursor:default;
}


/*-------------------------------------------- 
 scrollable-navigator ( 小圓點 )
---------------------------------------------*/

/* position and dimensions of the navigator */
.scrollable_banner .navi {
	position:absolute;
	top:66px;
	z-index:1;
	margin-left:500px;
	width:200px;
	height:20px;
}


/* items inside navigator */
.scrollable_banner .navi a {
	width:15px;
	height:15px;
	float:left;
	margin:3px;
	background:url(images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	outline: none; /* for Firefox */
    hlbr:expression(this.onFocus=this.blur()); /* for IE */
}

/* mouseover state */
.scrollable_banner .navi a:hover {
	background-position:0 -15px;      
}

/* active state (current page state) */
.scrollable_banner .navi a.active {
	background-position:0 -16px;     
}