﻿@charset "utf-8";
/* CSS 文件 */

/* root element for the scrollable.
   when scrolling occurs this element stays still.
---------------------------------------------------------------------- */
.scrollable
{
	/* custom decorations and required settings */
	background: url(images/global_gradient_h300.gif) repeat-x;
	width: 854px;
	height: 160px;
	border: 1px solid #CCCCCC;
	position: relative;
	overflow: hidden;
	margin-bottom:50px;/* 作品圖片下邊高度 */
}

/* 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 .items
{
	width: 20000em; /* this cannot be too large */
	clear: both;
	position: absolute;
}

/* single scrollable item */
.scrollable a
{
	display: block;
	width: 120px;
	height: 130px;
	float: left;
	padding: 0px;
	margin: 12px 10px 14px 11px;
	_margin: 12px 8px 14px 8px;
	position: relative;
}
.scrollable img/* 圖片尺寸.距離 */
{
	background-color: #FFFFFF;
	width: 120px;
	height: 130px;
	padding: 2px;/* 圖片邊框距離 */
	border: 1px solid #CCCCCC;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

/* active item */
.scrollable .active
{
	border: 2px solid #000000;
	position: relative;
	z-index: 9999;
}



