@charset "UTF-8";
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400|Passion+One:400");

#news_pic_area{
	float: left;
	width: 100%;
	height: 250px;
	padding-bottom: 15px;
	border-style: dashed;
	border-width: 0px 0px 1px 0px;
	border-color: #8E8E8E;
}
#pub_board_area{
	float: left;
	width: 100%;
	height: auto;
	padding-bottom: 15px;
	border-style: dashed;
	border-width: 0px 0px 1px 0px;
	border-color: #8E8E8E;
	margin-top: 15px;
}
#pb_menu_area{
	float: left;
	width: 830px;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
}
.pb_menu_button1{
	float: left;
	width: 413px;
	border-style: solid;
	border-width: 1px 1px 0px 1px;
	border-color: #CCC;
	background-color: #325676;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}
.pb_menu_button1:hover{
	background-color: #325676;
}

.pb_menu_button2{
	float: left;
	width: 413px;
	border-style: solid;
	border-width: 1px 1px 0px 0px;
	border-color: #CCC;
	background-color: #6292BC;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}
.pb_menu_button2:hover{
	background-color: #325676;
}

#pb_content_area{
	float: left;
	width: 807px;
	height: 330px;
	border-style: solid;
	border-width: 1px;
	border-color: #CCC;
	margin-top: 1px;
	padding: 10px;
}
.pb_content1{
	width: 100%;
	height: auto;
	display: block;
}
.pb_content2{
	width: 100%;
	height: auto;
	display: none;
}
.pb_content3{
	width: 100%;
	height: auto;
	display: none;
}
.pb_content4{
	width: 100%;
	height: auto;
	display: none;
}
a.pb_line:link,a.pb_line:visited{
	float: left;
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: left;
	vertical-align: middle;
	text-indent: 10px;
	font-size: 11pt;
	color: #333;
	text-decoration: none;
}
a.pb_line:hover,a.pb_line:active{
	background-color: #E0E0E0;
	color: #333;
}

a.pb_line_foot:link,a.pb_line_foot:visited{
	float: right;
	width: 200px;
	height: 30px;
	line-height: 30px;
	text-align: right;
	vertical-align: middle;
	text-indent: 10px;
	font-size: 11pt;
	color: #333;
	text-decoration: none;
}
a.pb_line_foot:hover,a.pb_line_foot:active{
	color: #F30;
}

.coverflow{
    width: 100%;
    height: 100%;
    position: relative;
	float:left;
}
.coverflow>a{
    display: block;
    position: absolute;
    top:0;
    left:0;
    opacity: 0;
    filter: alpha(opacity=0);

    -webkit-animation: silder 24s linear infinite;
    animation: silder 24s linear infinite;
}
.coverflow>a>img{
    max-width: 100%;
}
/* 100/總秒數=A% , A% = 1秒(keyframe) , 4%=0~1秒漸入 , 28%=1~7秒秀圖靜止 , 32%=7~8秒漸出 */
@-webkit-keyframes silder {
    4% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    28% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    32% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}
@keyframes silder {
    4% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    28% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    32% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

.coverflow>a:nth-child(3) {
    -webkit-animation-delay: 16s;
     animation-delay: 16s;
}

.coverflow>a:nth-child(2) {
    -webkit-animation-delay: 8s;
     animation-delay: 8s;
}

.coverflow>a:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;    
}

/*
.coverflow:hover>a{
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
*/