<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Eric Meyer's CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}

html{
}

body {
	line-height: 1.3;
	font-family:"Microsoft JhengHei", "敺株��迤暺煾��", "Apple LiGothic Medium", "��𧢲�𨅯�瑚葉暺�", "Lucida Grande", "Lucida Sans Unicode", Helvetica;
	font-size:10pt;
	color:#444;
	background-color: #F1F1F1;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
a{
	text-decoration: none;
	color:inherit;
	-webkit-transition: color 0.2s; /* Safari */
    transition: color 0.2s;
    cursor: pointer;
}
a:hover{
	color:#73cde5;
}

.wrapper{
	margin:0 auto;
	max-width: 960px;
	width: 100%;

	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}

/* Header
-----------------------------------------------------------------------------*/
.header {
	width:100%;
	overflow: hidden;
	position: relative;
}
	.topImage{
		width:100%;
		height:440px;
		background: url(../images/topImage_zh.jpg) no-repeat center center;
	}
	.topImage:lang(en){
		background: url(../images/topImage_en.jpg) no-repeat center center;
	}
		.headerBar{
			width:100%;
			height:50px;
			background-color:#FFF;
		}
		.logoBar{
			width:450px;
			height:71px;
			background: url(../images/logoBar.png) no-repeat center center;
		}

	.langMenu{
		position: absolute;
		top:10px;
		right:10px;

		width:84px;
		height:30px;
		padding:4px 0;
		text-align:center;
		background-color: rgba(256,256,256,1);
		border: 1px solid #4c4c4c;
		line-height: 1.5;
		font-size: 10.2pt;
		font-family:"Microsoft JhengHei", "敺株��迤暺煾��", "Apple LiGothic Medium", "��𧢲�𨅯�瑚葉暺�", "Lucida Grande", "Lucida Sans Unicode", Helvetica;
	}
		.langBtn_1{
			float:left;
			margin:0 3px 0 10px;
		}
		.langBtn_2{
			float:left;
			margin:0 5px;
		}
		.langBtn_3{
			float:left;
			margin:0 4px;
	}

/* Middle
-----------------------------------------------------------------------------*/
.content{
	width:100%;
}

	.text1{
		margin:0 30px;
		margin-bottom:20px;
	}

	.sharing_form{
		width:100%;
		max-width:960px;
		margin:0 auto;

		padding:20px 30px;
		text-align: justify;
	}
		.formInfo{
			width:100%;
			margin-bottom: 10px;
		}
		.formField{
			margin:20px auto;
			max-width:960px;

			display: -webkit-flex;
 			display: flex;
 			font-size:12pt;
		}
		.formField:lang(en){
 			font-size:11pt;
		}
		.fieldTitle{
			padding-right: 4px;
			text-align: left;
			-webkit-flex: 2;
          	flex: 2;
		}
		.textField{
			height: 22px;
			-webkit-flex: 3;
          	flex: 3;
		}

		@media screen and (max-width:599px) {
			.formField{
				display: block;
				text-align: left;
			}
			.fieldTitle{
				width:100%;
			}
			.textField{
				margin-top: 4px;
				width:100%;
			}
			.hkd{
				margin-top:5px;
			}
		}

		.submitBtnOuter{
			margin:0 auto;
			width:150px;
			height:50px;
		}
			.submitBtn{
				width:150px;
				height:50px;
				background-image:url("../images/submitBtn_zh.png");
				-webkit-transition: 0.2s; /* Safari */
		    	transition: 0.2s;
		    	cursor: pointer;
				border: 0px;
				background-color: white;
			}
			.submitBtn:hover{
				background-image:url("../images/submitBtn_zh_b.png");
			}
			.submitBtn:lang(en){
				background-image:url("../images/submitBtn_en.png");
			}
			.submitBtn:hover:lang(en){
				background-image:url("../images/submitBtn_en_b.png");
			}

	.terms{
		margin-top:10px;
		width:100%;
		padding:30px 30px;
		background-color:#FFF;
	}
	.termsTitle{
		color:#02488f;
		font-weight:bold;
	}

	.terms{
		margin-top:10px;
		width:100%;
		padding:20px 30px;
		background-color:#FFF;
	}
		.termsTitle{
			border-top:2px dotted #999999;
			padding-top: 30px;
			color:#02488f;
			font-size: 11pt;
			font-weight:bold;
		}
	ol{
		list-style-type: decimal;
	}
	li{
		margin-bottom: 6px;
	}

/* Footer
-----------------------------------------------------------------------------*/
.footer{
    width:100%;

	min-height: 80px;
	padding:12px 30px;
	background:#003571;
	font: 12px Arial, sans-serif;

	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
	.footerContent{
		width:960px;
		max-width:960px;
	}
	
	.footerText{
		float:left;
		color:#629fbe;
	}
	.footerLogo{
		float:right;
		
		width: 220px;
		height:28px;
		margin:12px 0 0 0;
	}
	@media screen and (max-width:599px) {
		.footerLogo{
			margin-bottom:0;
		}
	}</pre></body></html>