/* Basic jQuery Slider essential styles */

ul.bjqs {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	display: none;
}
li.bjqs-slide {
	position: absolute;
	display: none;
}
/* 橫幅圖片寬為100% */
li.bjqs-slide a > img{
	width:100%;
	height:auto;
}
 @media screen and (max-width: 1000px) {
li.bjqs-slide a > img{
	width:auto;
	height:100%;
	margin-left:-40%;
}
	 }
	 
ul.bjqs-controls {
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 9999;
}
ul.bjqs-controls.v-centered li a {
	position: absolute;
}

/*橫幅圖片切換右鍵*/
ul.bjqs-controls.v-centered li.bjqs-next a {
	right: 0;
	background:url(../../resources/images/next.png) center center no-repeat;
	background-size:cover;
	text-indent:-9999px;
}

ul.bjqs-controls.v-centered li.bjqs-next a:hover{
	background:url(../../resources/images/nextClick.png) center center no-repeat;
	background-size:cover;
}

/*橫幅圖片切換左鍵*/
ul.bjqs-controls.v-centered li.bjqs-prev a {
	left: 0;
	background:url(../../resources/images/prev.png) center center no-repeat;
	background-size:cover;
	text-indent:-9999px;
}

ul.bjqs-controls.v-centered li.bjqs-prev a:hover {
	background:url(../../resources/images/prevClick.png) center center no-repeat;
	background-size:cover;
}

ol.bjqs-markers {
	display:none;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
ol.bjqs-markers.h-centered {
	text-align: center;
}
ol.bjqs-markers li {
	display: inline;
}
ol.bjqs-markers li a {
	display: inline-block;
}
p.bjqs-caption {
	display: block;
	width: 96%;
	margin: 0;
	padding: 2%;
	position: absolute;
	bottom: 0;
}
