/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
*{
	font-family:Arial, "sans-serif", "微軟正黑體";
}
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(../images/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	padding:0px 20px 0px 7px;
	
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    padding-bottom:1px;
}


/*--------------------------------------------------圖片列表下方的說明文--------------------------------------------------*/
.item {
	border:1px solid #ddd;
	background-color:#fff;
	/*border-top:1px solid #ddd;
	box-shadow:1px 1px 5px rgba(0,0,0,0.3);*/
}
.item a{
	text-decoration:none;
}
.text_title {
	margin:0 auto;	
	padding-top:20px;
	padding-left:3px;
	margin-bottom:20px;
	border-bottom:1px solid #4e4e4e;	
}
.text_title h2 {
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	font-size:21px;
	font-weight:100;
	color:#4e4e4e;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:3px;	
}
.text_ds {
	text-align:left;
	text-decoration:none;
}
.text_ds a{
	text-decoration:none;
}
.text_ds h3 {
	border-top:1px solid #ddd;
	font-size:17px;
	font-weight:100;
	color:#4e4e4e;
	padding:6px 10px 5px 10px;
}
.text_ds h4 {
	font-size:14px;
	font-weight:100;
	color:#4e4e4e;
	line-height:1.5;
	padding:0px 10px 10px 10px;
}
.bg_gray {
	width:100%;
	overflow:hidden;
	background-color:#f6f6f6;
	padding-bottom:30px;
}
.bg_white {
	width:100%;
	overflow:hidden;
	/*background-color:#fff;*/
	background-color:#f6f6f6;
	padding-bottom:30px;
}
.p_b30 {
	padding-bottom:30px;
}
.linktext {
	font-size:14px;
	display:block;
	color:#0060ba;
	text-decoration:none;
	padding:0px 10px 10px 6px;
	margin-top:-6px;
}
.linktext {
	text-decoration:underline;
}
.linktext_white {
	font-size:14px;
	display:block;
	color:#fff;
	text-decoration:none;
	padding:0px 10px 10px 6px;
	margin-top:-6px;
}
body {
	background-color:#f6f6f6;
}

/*--------------------------------------------------popup--------------------------------------------------*/
.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}
.lightbox_box {
	width: 70%;
    max-width:420px;
	max-height:700px;
    height: 80%;
    padding:0px;
    margin: auto;
    box-sizing: border-box;
    border-bottom:5px solid rgba(0, 0, 0, 0.3);
    color: #333;
    font-family:"微軟正黑體 Light", Arial, sans-serif; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    /*-moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);*/
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    overflow: auto;
}
.lightbox_box h5 {
	width:100%;
	font-size:1.000em;
	color:#fff;
	padding:20px;
	text-align:center;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.lightbox_box img {
	/** Pad the lightbox image 
	overflow:auto;
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;*/
}
.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}