@charset "UTF-8";
* { margin: 0px; padding: 0px; box-sizing: border-box; }
a, a:link, a:visited, a:hover, a:active {text-decoration:none;}
img { border: 0px none; }

html, body { 
    position: relative;
	width: 100%; 
	height: 100%;
	color: #000000; 
	font-size: 1.0em;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
	font-family: 'Microsoft JhengHei','Microsoft YaHei',Arial, Helvetica, sans-serif;
	/*background-color: #ffffff;*/
	font-weight: 400;
	}
body.main-bg {	
	background-attachment: fixed;
	padding: 0;
	}
/*****************************/
.font-sm { font-weight: 900; }
.font-lg { font-weight: 600; }
.font-xs { font-weight: 300; }
.italic { font-style: italic; }	
/** 對齊 **/
.text-right { text-align: right;	}
.text-left { text-align: left;	}
.text-center { text-align: center; }	
/** 引用 **/
.text-warning { color: #ff9326; }
.text-error { color: #d90036; }
.text-info { color: #00468c; }
.text-success { color: #00664c; }	
/***********************
Responsive RWD
***********************/
.page-wrapper,
.page-container { 
    width: 100%;
    padding: 0px;
    margin: 0 auto;
	word-wrap: break-word; 
	word-break: normal;
	max-width: 1170px;
	}
	
@media only screen and (max-width: 1920px) {
    .page-wrapper,
	.page-container { 
	max-width: 1170px; 
	padding: 0px 2%;
	} 	
}

@media only screen and (max-width: 1200px) {
    .page-wrapper,
	.page-container { 
	max-width: 1170px; 
	padding: 0px 2%;
	} 	
}

@media only screen and (max-width: 992px) {
	.page-container { max-width: 962px; }
}

@media only screen and (max-width: 768px) {
	.page-container { max-width: 738px; }
}

@media only screen and (max-width: 576px) {
	.page-container { max-width: 546px; }
}	
	
.page-wrapper img, 
.page-container img { max-width: 100%; }

img { vertical-align:middle }

/****************************
開闔按鍵 
****************************/
.toggle-button {
	position: absolute;
    display: none;
	float: left;
	width: 40px;
    height: 40px;
    padding: 5px 5px;
    margin: 5px;
    transition: .25s;
    z-index: 15;
	}
.toggle-button:hover { cursor: pointer; }
.toggle-button .menu-bar {
	position: relative;
    width: 100%;
    transition: .2s;
    }
.toggle-button .menu-bar-top {
    border: 2px solid #111111;
    border-bottom: none;
    top: 0px;
    }
.toggle-button .menu-bar-middle {
    height: 2px;
    background-color: #111111;
    margin: 8px 0px;
    top: 0px;
    }
.toggle-button .menu-bar-bottom {
    border: 2px solid #111111;
    border-top: none;
    top: 0px;
    }
.toggle-button.open .menu-bar-top { 
    transform: rotate(45deg) translate(7px, 7px);
    transition: .2s;
    }
.toggle-button.open .menu-bar-middle {
    transform: translate(0px);
    transition: .1s ease-in;
    opacity: 0;
    }
.toggle-button.open .menu-bar-bottom {
    transform: rotate(-45deg) translate(7px, -7px);
    transition: .2s;
    } 

@media only screen and (max-width: 992px) {
.toggle-button { display: block; }
}


/************************
HEADER
************************/
header .h_menu,
header {
	position: relative; 
	display: inline-block; 
	float: left;
	width: 100%;
	}
header {
	height: 90px;
    background-color: #ffffff;
	}
header .h_menu {
	padding-top: 30px;
	padding-left: 300px; 
	}
	
header .h_logo { 
	position: absolute;
	color:#660000;	
	max-width: 300px;
	max-height: 70px;
	padding: 10px 0px; 
	z-index: 1;
	}
header .h_logo img { 
	position: relative; 
	display: inline-block; 
	max-width: 200px;
	max-height: 70px;
	}

@media only screen and (max-width: 992px) {
header { height: 50px; }
header .h_menu { display: none; }
header .h_menu.open {
	position: absolute; 
	display: block;
	width: 100%;
	z-index: 99;
	top: 50px;
	left: 0px;
	padding: 0px 0px;
	background-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
	}
header .h_top { height: 50px; }
header .h_logo { 
	position: relative; 
	display: inline-block;
	max-width: 100%;
	width: 100%;
	top: 0;
	max-height: 50px;
	padding: 5px 0px; 
	text-align: center;
	}
header .h_logo img { 
	width: auto;
	max-height: 40px;
	}
}

/************************/
nav.main_menu ul li a,	
nav.main_menu ul li,
nav.main_menu ul,
nav.main_menu { 
	position: relative; 
	display: inline-block;
	}
nav.main_menu { 
	float: left; 
	width: 100%;
	text-align: right;
	}
	
nav.main_menu ul { 
	width: auto;
	}

	
nav.main_menu li a {  
    font-size: 1.0em; 
	color: #000000;
	font-weight: 400;
	padding: 3px 10px;
	}
nav.main_menu li a b {  
    font-size: 1.2em; 
	color: #d90036;
	font-weight: 900;
	}
nav.main_menu li.action a { 
    color: #ff8000;
	font-weight: 800;
	}
	
nav.main_menu li a + a {  
    border-left: 1px solid #cccccc;
	}	

nav.main_menu li:hover { 
    color: #000000;
	background-color: #c7e6f1;
	border-radius: 0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	}

header .h_share {
	position: absolute;
	display: inline-block;
	width: 100px;
	right: 0;
	min-height: 30px;
	padding-top: 5px;
	text-align: right;
	z-index: 5;
	}
header .h_share img { 
	position: relative; 
	width: 35px;
	padding: 0px;
	margin: 0px 5px;
	}
	
@media only screen and (max-width: 992px) {
header .h_share {
	position: relative; 
	display: inline-block;
	width: 100%;
	padding: 10px 0px;
	text-align: center;
	}
nav.main_menu ul,	
nav.main_menu { 
	text-align: center;
	width: 100%;
	}	
	
nav.main_menu ul li { 
	float: left; 
	width: 100%;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,0.1);
	}
nav.main_menu ul li:hover { 
	background-color: rgba(204,204,204,0.5);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;	
	}
nav.main_menu li a {  
	color: #000000;
	padding: 5px 0px;
	}
header .h_share {
	position: relative;
	display: inline-block;
	padding: 10px 0px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	}
}

/***********************
LAYOUT 框架
***********************/
section.main_content {
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
	min-height: 600px;
	}
/***********************
FOOTER
***********************/
footer .f_copy,
footer .f_info,
footer { 
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
	}
footer { 
	font-size: 0.9em;
	line-height: 1.4em;
	}

footer .f_top .f_pic,
footer .f_top .f_txt,
footer .f_top { 
	position: relative;
	display: inline-block;
	float: left;
	}
footer .f_top { 
	width: 100%;
	height: 100px;
	padding: 0px 5%;
	color: #ffffff;
	background-color: #02adbf;
	}
footer .f_top .f_txt { 
	width: 50%;
	padding: 30px 0px;
	}
footer .f_top .f_pic { 
	margin-top: -80px;
	}
footer .f_top .f_pic img { 
	position: relative;
	height: 180px;
	}
/**********************/
footer .f_info ul li,	
footer .f_info { 
	position: relative;
	display: inline-block;
	float: left;
	}
footer .f_info {
	width: 100%;
	text-align: left;
	padding: 30px 0px;
	padding-bottom: 50px;
	background-color: #5D8898;
	}
footer .f_info a:hover,
footer .f_info a,
footer .f_info { 
    color: #ffffff;
	}
footer .f_info ul li {
	width: 33.3%;
	padding: 5px 10px;
	}

footer .f_info img.f_logo {
	position: relative;
	max-width: 100%;
	max-height: 70px;
	}	

footer .f_info ul li dt {
	font-size: 1.1em;
	padding: 5px 0px;
	padding-bottom: 10px;
	font-weight: 800;
	}



/**********************/
footer .f_copy { 
	text-align: left;
	font-size: 0.8em;
	padding: 20px 0px;
	color: #ffffff;
	background-color: #364F58;
	}
	
@media only screen and (max-width: 768px) {
footer .f_copy,
footer .f_info ul li { 
   width: 100%; 
   padding: 20px 5%;
   }
	
}
/***********************
TABLE 表格選單
***********************/
table {
	width: 100%;
    margin: 0;
    padding: 0;
	line-height: 1.5em;
    border-collapse: collapse;
    border-spacing: 0;
    background: #f7fdff;
	}
table tr {
    padding: 5px;
	text-align: left;
	border: 1px solid #ffffff;
    }
table th {
    padding: 5px 5px;
    letter-spacing: 1px;
	color: #ffffff;
	background: #5e8898;
	text-align: left;
	border-left: 1px solid #ffffff;
    }	
	
table tr a,
table tr:hover,
.table tr:active { 
	color: #222222;
	}

tr:nth-of-type(odd) { 
    background: #e8f9ff;
    }

table tr td {
    padding: 5px 10px;
	height : 40px;
	text-align: left;
	border-left: 1px solid #ffffff;
    }
/*table tr.odd { background: #fbe5e7; }*/
table .show { display: none; }
	
@media only screen and (max-width: 480px) {
table { border: 0; }
table thead { display: none; }
table tr {
    margin-bottom: 10px;
	border-bottom: 2px solid #ffffff;
    }
table tr td {
	display: block;
    min-height : 40px;
	height : auto;
	padding: 10px 5px;
	text-align: left;
    border-right: 0px solid #ffffff;
	border-bottom: 1px dotted #ffffff;
    }
table td:last-child {
    border-bottom: 0;
    }
table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: 800;
    }
table .show { 
    display: inline-block; 
	padding-right: 10px;
	color: #dc0012;
	}
table td.text-center {
    text-align: left;
    }
}

/***********************
GO TOP 回到頂端
***********************/
#top_rim {
    position: fixed;
	display: block;
    right: 0px; 
    bottom: 30px;
	width: 45px;
	height: auto;	
	z-index: 10;
    padding: 0px;    
	text-align: center;
	}
	
#top_rim a,
#top_rim a.go_top {
	position: relative;
	display: inline-block;
	float: left;
	
	width: 45px;
	height: 45px;
	line-height: 45px;
	margin-bottom: 1px;
    padding: 0px 5px;    
	font-size: 0.9em;
	font-weight: 400;
	text-align: center;
	
    color: #ffffff;
    cursor: pointer;
	background: #20c7ca;
	border-radius: 0px;	
	}
#top_rim img {
	position: relative;
	width: 35px;
	height: 35px;
	}
#top_rim a.go_fb { background: #3A5691; }
#top_rim a.go_ig { background: #A11F88; }
#top_rim a.go_top:hover { color:#ffffff; background: #20c7ca; }
