/*new forms*/

table.formtitle_1
{
	border-bottom: 2px ;
	border-bottom-color: black;
	border-bottom-style: solid;
	text-align: center;
}

.formborder_1
{
	border: 1px ;
	border-color: white;
	border-style: solid;
	text-align: center;
}

th.tdwidth_1
{
	width: 120px;
}

td.tdwidth_0
{
	width: 120px;
}

td.tdwidth_1
{
	width: 120px;
	background: #37657e;
	color: #ffffff;
}

td.tdwidth_2
{
	width: 120px;
	background: #f5aa00;
	color: #ffffff;
}

td.tdwidth_3
{
	width: 120px;
	background: #5eb6e6;
	color: #ffffff;
}

td.tdwidth_4
{
	width: 100px;
	color: #000000;
}

.tdwidth_5
{
	width: 170px;
	text-align: center;
}

td.tdwidth_6
{
	width: 5px;
	background: #37657e;
	color: #ffffff;
}

td.tdwidth_7
{
	width: 5px;
	color: #000000;
}


/* div */

.floatleft
{
	float: left;
}

.marleft
{
	margin-left: 150px;
}

div.divtext_1
{
	width: 20px;
	text-align: center;
	padding: 5px;
	font-weight: bold;
	font-size: 14px;
}

/* three block */

.spanblock_1
{
	height:380px;
	width:240px;
	text-align:center;
	float: left;
}

p.padding_1
{
	padding-left:15px;
	padding-right: 15px;
}

/*block*/
.block_1
{
	 border-color:#000000;
	 border-width:1px;
	 border-style:solid;
	 padding-left: 5px;
	 font-size: 12px;
	 margin-top: 10px;
}


h5.nb1
{
	font-size: 15px;
}


            /*CSS3 transitions*/
.slider_container {
}

.slider_container div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    filter: alpha(opacity=0);
}

/**/
.slider_container div {
    -webkit-animation: round 30s linear infinite;
            animation: round 30s linear infinite;
}

@-webkit-keyframes round {
    6.6% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    33% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    40% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}
@keyframes round {
    6.6% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    33% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    40% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}

/**/
.slider_container div:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.slider_container div:nth-child(2) {
    -webkit-animation-delay: 10s;
            animation-delay: 10s;
}

.slider_container div:nth-child(3) {
    -webkit-animation-delay: 20s;
            animation-delay: 20s;
}

/*.slider_container div:nth-child(4) {
    -webkit-animation-delay: 15s;
            animation-delay: 15s;
}

.slider_container div:nth-child(5) {
    -webkit-animation-delay: 20s;
            animation-delay: 20s;
}*/

/*.slider_container:hover div {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
}*/



    * {box-sizing:border-box}
body {font-family: Verdana,sans-serif;}
.mySlides {display:none}
/* 幻燈片容器 */
.slideshow-container {
  max-width: 1500px;
  position: relative;
  margin: auto;
}

/* 下一張 & 上一張 按鈕 */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* 定位 "下一張" 按鈕靠右 */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* 標題文本 */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* 標籤文本 (1/3 等) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 標記服號 */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* 淡出效果 */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}