﻿		body{
    font-family: "微軟正黑體", Arial;
    line-height: 30px;
    font-size: 18px;
    background-color: #831300;
    margin-top: 50px;
    background-image: url(images/bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0px;
    background-attachment: fixed;
		}
		.p0{
			padding: 0px;
		}

		.navbar-default{
			background-color: #305500;
			color: #FFF; 
			border-width: 0px;
		}
		.navbar-default .navbar-nav>li>a{
			color: #FFF;
			font-size: 17px;
		}
		.navbar-default .navbar-header>a{
			color: #FFF;
			font-size: 19px;
		}
		.navbar-default .navbar-nav>li>a:hover{
			background-color: #2A9200;
			color: #FFF;
		}
		
		.navbar-default .navbar-toggle{
			border-color: #fee1e9;
		}
		.navbar-default .navbar-toggle .icon-bar{
			background-color: #FFF;
			border-color: #fee1e9;
		}
		.navbar-default .navbar-toggle:hover{
			background-color: #f39700;

		}
		.copyright{
			font-size: 9px;
			text-align: center;
			color: #aaa;
			margin-top: 20px;
		}
		.content{
			background-color: #ffe8c3;
			/*min-height: 300px;*/
		}
		.topimg{
			margin-top: 50px;
			background-image: url(images/bg.jpg);
			background-size: cover;
			background-repeat: no-repeat;
			background-position: 50% 0px;
		}
		.page-header{
			border-bottom-width: 1px;
			border-bottom-style: solid;
			border-bottom-color: #d8a75f;
			color: #884e2c;
			font-size: 36px;
		}
		
		.menu{
			margin-bottom: 20px;
		}
		.mt20{
			margin-top: 10px;
		}
		.carousel-inner .item img{
			width: 100%;

		}

		hr{
			/*color: #2c789f;*/
			background-color: #73c2eb;
			/*height: 1px;*/

		}
		.pager>ul>li>a:link{
			background-color: #000;
		}

		.col-xs-12 col-sm-6{
			background-color: #FFF;
		}

		.tt{
    border-radius: 20px;
    background: linear-gradient(to bottom,  #ccc 0%,#eee 50%,#fff 100%);
    padding: 4%;
    color: #333;
    -webkit-box-shadow: 0px 5px 10px hsla(0,0%,0%,0.50);
    box-shadow: 0px 5px 10px hsla(0,0%,0%,0.50);
		}

		.tt p{
			font-size: 18px;
			line-height: 30px;
		}

		.tt img{
			border-radius: 20px;
			background: #fff;
			-webkit-transition: all 0.3s ease;
   			 -o-transition: all 0.3s ease;
   			 transition: all 0.3s ease ,;
			margin-top: 2%;
		}


		.tt img:hover{
    transform: translate(0px,-6px);
    border-radius: 20px;
    -webkit-box-shadow: 0px 5px 10px hsla(47,100%,21%,0.50);
    box-shadow: 0px 5px 10px hsla(47,100%,21%,0.50);
}

			

		.tt2{
    color: #518E00;
    font-size: 26px;
    padding-left: 15px;
    padding-top: 22px;
    font-weight: bold;
	
		}

		.caption p {
			margin-top: 20px;
			padding-right: 15px;
			padding-left: 15px;
			padding-bottom: 15px;
			text-align: justify;
			text-justify: auto;
		}

		.mt20{
			margin-top: 20px;
		}

		.page-text{
    margin-top: -2%;
    border-radius: 0px 0px 20px 20px;
    padding: 3%;
    color: #FFF;
    font-size: 1.1em;
	text-shadow: 2px 2px 3px hsla(0,0%,0%,1.00);
		}
		.page-text img{
			border-radius: 20px;
		}
		.page-text p{
			font-size: 1.1em;
			line-height: 30px;
			margin: 5% 0 5% 0;
			padding: 0;
		}

			.tt3{
    color: #A1FF80;
    font-size: 2.4em;
    margin: 2% 0 5% 0;;
    font-weight: bold;
    text-align: center;
		}


		.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } 
		.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }







@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -300px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -300px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 300px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 300px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-0s {
  -webkit-animation-delay: 0.0s;
  animation-delay: 0.0s;
}


.animated.delay-1s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}


.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}