/* 
	Resets defualt browser settings
	reset.css
*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {vertical-align:baseline; }
:focus { outline:0; }
a:active { outline:none; }
ol,ul { list-style:none; }
table { border-collapse:separate; border-spacing:0; }
caption,th,td { text-align:left; font-weight:normal; }
blockquote:before,blockquote:after,q:before,q:after { content:""; }
blockquote,q { quotes:"" ""; }

/*
	Page style
*/
body { 
	-webkit-font-smoothing: subpixel-antialiased;
}

#container {
	width:1160px;
	position:relative;
	z-index:0;
}

#example {
	width:630px;
	height:240px;
	position:relative;
}

#ribbon {
	position:absolute;
	top:-2px;
	left:-2px;
	z-index:500;
}


/*
	Slideshow
*/

#slides {
	position:absolute;
	top:0;
	left:0;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:1160px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/
/* 20230321 JOAN 調整高度 */
.slides_container div.slide {
	width:1160px;
	height:420px;
	display:block;
	background-color: #ccc;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top: 181px;
	left:10px;
	width:36px;
	height:58px;
	display:block;
	z-index:101;
}

#slides .next {
	left:1115px;
}

/*
	Pagination
*/

.pagination {
	display: none; /*20230321 JOAN 隱藏pagination*/
	position:relative;
	z-index:600;
	width:auto;
	float:right;
	margin:-30px 25px 0 0;
}

.pagination li {
	float:left;
	width: 14px;
	height: 14px;
	margin: 0 10px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:14px;
	height:14px;
	background-image:url(../images/img/pagination.png);
	background-position:cetnter 0;
	background-repeat:no-repeat;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -14px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:0;
	left:0;
	padding:5px 20px 0 20px;
	background:#000;
	background:rgba(0,0,0,.5);
	font-size:20px;
	font-family:Verdana, Geneva, sans-serif,"微軟正黑體";
	line-height:40px;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
	display: none;/* 20230321 JOAN 隱藏caption */
}
