<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --font: 'Open Sans', 'Roboto', Arial, "å¾®è»Ÿæ­£é»‘é«”", "Microsoft JhengHei", sans-serif;

    --gradient-blue: linear-gradient(270deg, #79D3C3 0%, #41A0DD 100%);

    --primary: #1F81B9;

    --bg: #FFF;
    --text: #333;
    --accent: #FDD000;

    --anchor: #1F81B9;
    --anchor-hover: #3899CF;

    --divider: 1px solid rgba(0, 0, 0, .08);
}

/*------------------------------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
  transition: background-color .3s ease-in-out;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/*------------------------------------------------------------*/

body {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
}

/* Divider */
hr {
    border: 0;
    border-top: var(--divider);
    margin: 20px 0;
}

/* Image Fluid */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Icon Position */
.icon--left {
    margin-right: 4px;
}

.icon--right {
    margin-left: 4px;
}

/* Truncate */
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* List */
ul.no-style {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

ul.inline-list li {
    margin-right: 6px;
    display: inline-block;
}

ol {
    padding-left: 16px;
}

/* Tab Content */
.tab-content &gt; .tab-pane {
	display: none;
}

.tab-content &gt; .active {
	display: block;
}


/* Typography */
h1 {
    font-size: 1.6rem;
}

h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Section */
main, section {
    padding-top: 2rem;;
    padding-bottom: 2rem;
}

.section-title {
    font-weight: bold;
}

.section-title .highlight {
    color: var(--highlight);
}

.at-resp-share-element .at-share-btn {
    margin: 0 0 0 5px !important;
}


/* Collapse / Expand
/*------------------------------------------------------------*/
.collapse {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

.collapse.show {
    display: block;
}


/* Link
/*------------------------------------------------------------*/
a {
    font-weight: 600;
    display: inline-block;
    transition: all .3s ease-in-out;
}

a:link, a:visited {
    color: var(--anchor);
    text-decoration: none;
}

a:hover, a:focus {
    color: var(--anchor-hover);
}

.a-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

a img {
    display: block;
}

/* Plain Text Link */
.text-link {
    font-size: 14px;
}

.text-link .fas {
    transition: transform .3s ease-in-out;
}

.text-link:hover .fa-arrow-right {
    transform: translateX(4px);
}

/* Plain Text Link - Underline */
.text-link--underline span {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    display: inline;
}

.text-link--underline:hover span {
  background-size: 100% 2px;
}

/* Plain Text Link - Backgound Highlight */
.text-link--bg span {
  background-image: linear-gradient(transparent calc(90% - 8px), #E4EDF3 8px);
  background-size: 0;
  background-repeat: no-repeat;
  display: inline;
  transition: 0.5s ease;
}

.text-link--bg:hover span {
  background-size: 100%;
}



/* Animation 
/*------------------------------------------------------------*/
.animation {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
  
/* Dropdown - Form Field */
@keyframes field__slideDownIn {
    0% {
        transform: translateY(30px);
    }
    80% {
        transform: translateY(48px);
    }
    100% {
        transform: translateY(44px);
    }
}
  
.field__slideDownIn {
    animation-name: field__slideDownIn;
}

/* Dropdown - Navigation */
@keyframes nav__slideDownIn {
    0% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(12px);
    }
    100% {
        transform: translateY(0);
    }
}
  
.nav__slideDownIn {
    animation-name: nav__slideDownIn;
}



/* Horizontal Line with Text 
/*------------------------------------------------------------*/
.h-line { 
    width: 100%; 
    text-align: center; 
    border-bottom: 1px solid #ddd; 
    line-height: 0.1em; 
    margin: 2rem 0;
} 

.h-line span {
    background-color: var(--bg);
    padding: 0 10px;
}


/* Full Height Page Layout
/*------------------------------------------------------------*/
.full-height {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}



/* Header
/*------------------------------------------------------------*/
header {
    background: var(--gradient-blue);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

header h1, header p {
    color: #FFF;
    position: relative;
    z-index: 1;
}

header p .highlight {
    font-weight: bold;
    color: #FDD000;
}



/* Extra small devices (landscape phones, 320px and up) */
@media (min-width: 320px) {

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    body {
        font-size: 1rem;
    }

    header {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    header {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    hr {
        margin: 30px 0;
    }

    h1 { 
        font-size: 2rem;
    }

    h2 { 
        font-size: 1.3rem; 
    }

    main, section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

}</pre></body></html>