/*
結構:
<box id="screen">
	<img class="prev" src="images/my/index_01.gif"/>
	<box id="sections">
		<ul>
			<box class="section_box"></box>
			<box class="section_box"></box>
		</ul>
	</box>
</box>
搭配init.js,	主要設定元素
事件區域:			#screen
按鈕配置:			.prev .next
顯示區域:			#sections
顯示總長:			.sections_full
捲動區間(Max):	.section_box
捲動區間(Min):	.section_box div
*/
#screen{
	float:left;
	width:100%;
}
#screen .prev{
	float:left;
	padding:50px 2% 0px 2%;
}
#screen .next{
	float:right;
	padding:50px 2% 0px 2%;
}

#sections{
	float:left;
	overflow:hidden;
	background-color:#fff;
	width:753px;
	height:103px;
}

	#sections .sections_full{
		width:3660px;
	}

	#sections .fallen{
		margin-top:369px;
	}
	#sections .section_box{
		float:left;
	}
