﻿/*Horizontal Orientation CSS*/
/*框底色*/
.jscarousal-horizontal
{
	width: 100%; /*整體大小*/
	height: 28px;
	background-color: #fff;
	/*border: solid 1px #CCCCCC;*/
	margin: 0;
	padding: 0;
	/*padding: 6px 8px 22px 8px;*/
	position: relative; /*overflow: hidden;*/
    /*margin: 13px 0 0 22px;*/
}
/*左右箭頭*/
.jscarousal-horizontal-back, .jscarousal-horizontal-forward
{
	float: left;
	width: 23px;
	height: 121px;
	color: White;
	position: relative;
	cursor: pointer;
}
.jscarousal-horizontal-back
{
	background-image: url(left_arrow.jpg);
	background-repeat: no-repeat;
	background-position: left;
}
.jscarousal-horizontal-forward
{
	background-image: url(right_arrow.jpg);
	background-repeat: no-repeat;
	background-position: right;
}
/*圖片內容展示大小*/
.jscarousal-contents-horizontal
{
	width: 924px;
	height: 121px; /*改數值*/
	float: left;
	position: relative;
	overflow: hidden;
}
.jscarousal2-contents-horizontal
{
	width: 900px;
	height: 96px; /*改數值*/
	float: left;
	position: relative;
	overflow: hidden;
}
.jscarousal-contents-horizontal > div
{
	position: absolute;
	width: 100%;
	height: 28px;
}
/*圖片的間隔*/
.jscarousal-contents-horizontal > div > div
{
	float: left ;
	margin:0 15px;
}
/*裡面的圖片大小邊框*/
.jscarousal-contents-horizontal img
{
	/*width: 116px;
	height: 46px;*/
}
/*Horizontal Orientation CSS Ends*/



/*Common*/
.hidden
{
	display: none;
}
.visible
{
	display: block;
}
.thumbnail-active
{
	filter: alpha(opacity=100);
	opacity: 1.0;
	cursor: pointer;
}
.thumbnail-inactive
{
	filter: alpha(opacity=20);
	opacity: 0.2;
	cursor: pointer;
}

