﻿/**
*** Core
*   
*** @ 2017, Muzaffer Dede
*   
*** Lexionlu Design Firm
*   
*** Core Style 
*/


/*Resets*/
* {
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
    font-size: 1rem;
    color: #544545;
    font-family: "Montserrat","微軟正黑體", "Microsoft JhengHei", "新細明體", "PMingLiU", sans-serif,Calibri;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/*#Resets*/


.wrapper {
    overflow: hidden;
    max-width: 100%;
}
/*#Wrapper*/


.header {
    z-index: 100;
    right: 0;
    left: 0;
    background: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    position: fixed;
    position: relative\9;
}

    .header .top {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        background: #ffffff;
        justify-content: space-between;
        padding: 1rem 0.5rem;
        padding-bottom: 0;
    }

        .header .top .close-top {
            position: absolute;
            right: 1rem;
            top: 0rem;
            background: no-repeat;
            border: 0;
            font-size: 2rem;
            display: none;
        }

        .header .top .left {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
        }

            .header .top .left .tabs {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                margin-right: 2rem;
            }

                .header .top .left .tabs a {
                    margin-right: 1rem;
                    padding: 0.5rem 1rem;
                    padding-bottom: 1.250rem;
                    border-radius: 0.5rem 0.5rem 0 0;
                    color: #ee5142;
                    text-decoration: none;
                    display: inline-block;
                    white-space: nowrap;
                }

                    .header .top .left .tabs a:last-child {
                        margin-right: 0;
                }

                    .header .top .left .tabs a:hover {
                        color: inherit;
                    }

                    .header .top .left .tabs a.active {
                        background: #e60000;
                        color: #fff;
                    }

            .header .top .left .greeting {
                padding: 0.5rem;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                white-space: nowrap;	/* Vicky */
            }

                .header .top .left .greeting i {
                    margin-right: 0.5rem;
                    font-size: 1.2rem;
                    vertical-align: middle;
                }

        .header .top .right {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
        }

            .header .top .right .search {
                position: relative;
                color: #333;
                margin-right: 1rem;
            }

                .header .top .right .search input[type="text"] {
                    border: none;
                    background: #d7d7d7;
                    color: #333;
                    height: auto;
                    padding: 0.5rem;
                    box-sizing: border-box;
                }

                    .header .top .right .search input[type="text"]::-webkit-input-placeholder {
                        color: #333;
                    }

                .header .top .right .search button {
                    background: no-repeat;
                    color: #333;
                    position: absolute;
                    right: 0.5rem;
                    top: 0.3rem;
                    border: none;
                }

            .header .top .right .costumer-service {
                margin-right: 1rem;
                position: relative;
            }

                .header .top .right .costumer-service button {
                    display: block;
                    width: 2.5rem;
                    border: none;
                    background: no-repeat;
                    border-radius: 3rem;
                }

                .header .top .right .costumer-service .service-links {
                    position: absolute;
                    background: #e9e5dd;
                    z-index: 20222;
                    top: 100%;
                    right: -4rem;
                    white-space: nowrap;
                    padding: 1rem;
                    justify-content: space-around;
                    box-shadow: 0 0.2rem 0.4rem -0.2rem #333;
                    display: none;
                }

                .header .top .right .costumer-service.active .service-links {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    min-width: 58rem;
                }


                    .header .top .right .costumer-service.active .service-links:after {
                        position: absolute;
                        top: -1rem;
                        right: 4.3rem;
                        content: "";
                        width: 0;
                        height: 0;
                        border-left: 1rem solid transparent;
                        border-right: 1rem solid transparent;
                        border-bottom: 1rem solid #e9e5dd;
                    }

                .header .top .right .costumer-service .service-links a {
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    flex-direction: column;
                    padding: 1rem;
                    align-items: center;
                    font-size: 1.688rem;
                    box-sizing: border-box;
                }

                    .header .top .right .costumer-service .service-links a i {
                        font-size: 2rem;
                        margin-bottom: 0.5rem;
                        color: #a29287;
                    }

                    .header .top .right .costumer-service .service-links a:hover,
                    .header .top .right .costumer-service .service-links a:hover i {
                        color: #ed301c;
                    }

            .header .top .right .language-selection {
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                align-self: flex-start;
                padding: 0.5rem;
                line-height: 1rem;
            }

                .header .top .right .language-selection a {
                    margin: 0 0.5rem;
                    position: relative;
                    white-space: nowrap;
                }

                    .header .top .right .language-selection a span {
                        color: #02debc;
                        position: absolute;
                        top: -100%;
                        left: -10%;
                        text-transform: uppercase;
                        font-weight: bold;
                        font-size: 0.875rem;
                        transform: rotate(-10deg);
                }

                    .header .top .right .language-selection a.active {
                        color: #ee5142;
                    }

            .header .top .right .sign-in {
                margin-right: 1rem;
                white-space: nowrap;
            }

                .header .top .right .sign-in.show-scroll {
                    display: none;
                }

                .header .top .right .sign-in a {
                    display: block;
                    padding: 0 0.5rem;
                    border: 1px solid #4a4040;
                    color: #4a4040;
                    border-radius: 0.5rem;
                    line-height: 1.9rem;
                    transition: all 0.3s;
                    -webkit-transition: all 0.3s;
                }

                    .header .top .right .sign-in a:hover {
                        background: #4a4040;
                        color: #fff;
                    }

				.nav.nav-tabs, .nav .nav-link {
				    border: 0;
				}
				.nav .nav-link.active {
				    color: #ee5142;
				}                    
                    
    /*#Top*/

    .header .bottom {
        background: #e60000;
        position: relative;
        z-index: 25;
    }

        .header .bottom .navigation-wrapper {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: space-between;
            font-size: 1.25em;
        }

            .header .bottom .navigation-wrapper > .sign-in {
                display: none;
                right: 0;
                top: 0;
                position: absolute;
            }

            .header .bottom .navigation-wrapper .left {
                flex: 0 0 auto;
                padding: 1rem;
                padding: 15px\9;
            }

                .header .bottom .navigation-wrapper .left a {
                    display: block;
                    text-align: center;
                }

                .header .bottom .navigation-wrapper .left img {
                    display: block;
                    max-width: 100%;
                    margin: 0 auto;
                }

			/*N-202312072社群區調整 Start*/
	        .header .bottom .navigation-wrapper .center {
	            flex: 0 0 auto;
	            padding: 1rem;
	            padding: 15px\9;
	        }

            .header .bottom .navigation-wrapper .center a {
                display: block;
                text-align: center;
            }

            .header .bottom .navigation-wrapper .center img {
                display: block;
                max-width: 100%;
                margin: 0 auto;
            }
			/*N-202312072社群區調整 End*/

            .header .bottom .navigation-wrapper .right {
                flex: 1 1 auto;
            }

                .header .bottom .navigation-wrapper .right > button {
                    width: 4.23rem;
                    height: 4.23rem;
                    color: #fff;
                    font-size: 2rem;
                    background: none;
                    border: 0;
                    display: none;
                }

                .header .bottom .navigation-wrapper .right .menu-trigger.active i:before {
                    content: "\f00d";
                }

.main-menu > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
}

    .main-menu > ul > li {
        text-align: center;
        margin: 0 1rem;
        min-width: 5rem;
    }
    
.main-menu-en.main-menu > ul > li {
    text-align: center;
    margin: 0 0.5rem;
    min-width:unset;
}    

        .main-menu > ul > li > a {
            color: #fff;
            padding: 0 0.5rem;
            display: inline-block;
            text-align: center;
            line-height: 4.40rem;
            position: relative;
        }

        .main-menu > ul > li.lang-link a:after {
            display: none !important;
        }

        .main-menu > ul > li.lang-link > a {
            font-size: 1rem;
        }

        .main-menu > ul > li.lang-link a span.current {
            font-weight: bold;
        }

        .main-menu > ul > li a button {
            display: none;
        }

        .main-menu > ul > li.lang-link a:hover span {
            font-weight: bold;
        }

            .main-menu > ul > li.lang-link a:hover span.current {
                font-weight: normal;
            }

@media only screen and (min-width: 1200px) {
    .main-menu > ul > li:hover > a:after,
    .main-menu > ul > li.active > a:after {
        content: "";
        border-bottom: 3px solid #fff;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.7rem;
        display: block;
    }
}


.main-menu > ul > li > .menu-dropdown {
    position: absolute;
    top: 100%;
    background: rgba(174, 174, 174, 0.90);
    box-shadow: 0 5px 5px -5px #333;
    font-size: 1.2rem;
    display: none;
    left: 0;
    right: 0;
}

    .main-menu > ul > li > .menu-dropdown:before {
        content: "asd";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #333;
        height: 3.75rem;
        z-index: -1;
        border-bottom: 1px solid #fff;
    }

.main-menu > ul > li:hover > .menu-dropdown,
.main-menu > ul > li:hover > .menu-banner-container {
    display: block;
}


.main-menu > ul > li > .menu-dropdown > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    text-align: left;
}

.main-menu > ul > li:hover > .menu-dropdown > ul {
    box-sizing: border-box;
}

.main-menu > ul > li > .menu-dropdown > ul > li {
    width: 100%;
    position: relative;
}

    .main-menu > ul > li > .menu-dropdown > ul > li:after {
        content: "";
        position: absolute;
        left: 0;
        top: 4.3rem;
        bottom: 0;
        border-left: 1px solid #c3c3c3;
    }

    .main-menu > ul > li > .menu-dropdown > ul > li:last-child:before {
        content: "";
        position: absolute;
        right: 0;
        top: 4.3rem;
        bottom: 0;
        border-right: 1px solid #c3c3c3;
    }

    .main-menu > ul > li > .menu-dropdown > ul > li:first-child:after,
    .main-menu > ul > li > .menu-dropdown > ul > li:last-child:before {
        display: none;
    }

    .main-menu > ul > li > .menu-dropdown > ul > li a {
        padding: 1rem 0.6rem;
        color: #fff;
        display: block;
    }

    .main-menu > ul > li > .menu-dropdown > ul > li:hover > a,
    .main-menu > ul > li > .menu-dropdown > ul > li.active > a {
        box-shadow: inset 0 -3px 0 0 #fff;
    }

    .main-menu > ul > li > .menu-dropdown > ul > li .sub-dropdown {
        display: block;
        padding-top: 0.5rem;
        padding-bottom: 1.5rem;
    }

        .main-menu > ul > li > .menu-dropdown > ul > li .sub-dropdown > ul {
            padding: 0 0.5rem;
        }

            .main-menu > ul > li > .menu-dropdown > ul > li .sub-dropdown > ul > li {
                text-align: left;
            }

                .main-menu > ul > li > .menu-dropdown > ul > li .sub-dropdown > ul > li a {
                    display: inline-block;
                    padding: 0.2rem;
                    font-size: 0.93rem;
                    border-radius: 0.2rem;
                }


                .main-menu > ul > li > .menu-dropdown > ul > li .sub-dropdown > ul > li.active > a,
                .main-menu > ul > li > .menu-dropdown > ul > li .sub-dropdown > ul > li:hover > a {
                    background: #a7d8fd;
                    color: #fff;
                }


.main-menu > .extra-top {
    display: block;
    text-align: center;
    display: none;
}

    .main-menu > .extra-top .tabs {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        border-top: 1px solid #aba19f;
        border-bottom: 1px solid #aba19f;
        margin-top: 0.063em;
    }

        .main-menu > .extra-top .tabs a {
            width: 100%;
            padding: 0.5rem;
            box-sizing: border-box;
        }

            .main-menu > .extra-top .tabs a.active {
                color: #fff;
                background: #ed301c;
            }


    .main-menu > .extra-top .search {
        padding: 1rem;
        position: relative;
        border-bottom: 1px solid #aba19f;
    }

        .main-menu > .extra-top .search input[type="text"] {
            background: #ccc;
            border: 0;
            padding: 0.5rem;
            box-sizing: border-box;
            width: 100%;
        }

        .main-menu > .extra-top .search button {
            background: no-repeat;
            color: #333;
            position: absolute;
            right: 2rem;
            top: 1.5rem;
            border: none;
        }

    .main-menu > .extra-top .costumer-service {
        margin-bottom: 1rem;
        border-bottom: 1px solid #aba19f;
        padding: 0.5rem;
    }

        .main-menu > .extra-top .costumer-service.language-selection a {
            width: 100%;
            border: none;
        }

        .main-menu > .extra-top .costumer-service.language-selection > a {
            margin-bottom: 0;
        }       

        .main-menu > .extra-top .costumer-service .service-links {
            flex-direction: column;
            border-top: 1px solid #aba19f;
            padding: 1rem;
            margin-top: 0.5rem;
            display: none;
        }

        .main-menu > .extra-top .costumer-service.active .service-links {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
        }

        .main-menu > .extra-top .costumer-service .service-links a {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
        }

            .main-menu > .extra-top .costumer-service .service-links a i {
                margin-right: 1rem;
                width: 2rem;
            }

            .main-menu > .extra-top .costumer-service .service-links a:hover {
                color: #ed301c;
            }

        .main-menu > .extra-top .costumer-service img {
            width: 3rem;
        }


    .main-menu > .extra-top .language-selection a {
        padding: 0 1rem;
        margin-bottom: 1rem;
        display: inline-block;
    }

        .main-menu > .extra-top .language-selection a.active {
            color: #ed301c;
        }

    .main-menu > .extra-top .home-btn {
        padding: 1rem;
    }

        .main-menu > .extra-top .home-btn a {
            padding: 0.5rem;
            border: 1px solid #aba19f;
            border-radius: 0.5rem;
            width: 100%;
            box-sizing: border-box;
            display: block;
        }

            .main-menu > .extra-top .home-btn a:hover {
                background: #4a4040;
                color: #fff;
            }

/*#Menu*/

/*#Header*/



.footer {
    background: #f5f2ed;
}

    .footer .top {
        padding: 15px\9 30px\9;
        padding: 1rem 2rem;
        text-align: center;
        background: #e9e5dd;
        margin-bottom: 1rem;
    }

        .footer .top h2 {
            font-size: 2rem;
            color: inherit;
            text-align: center;
            margin-bottom: 0.5rem;
            font-weight: normal;
        }

        .footer .top .social {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            justify-content: center;
        }

            .footer .top .social a {
                font-size: 2rem;
                width: 3rem;
                height: 3rem;
                line-height: 3rem;
                background: #c9c0b9;
                color: #fff;
                border-radius: 3rem;
                margin: 0.5rem;
            }

                .footer .top .social a:hover {
                    background: #b4a79e;
                }

                .footer .top .social a i.fa-line {
                    background: url(img/line-messenger.svg) no-repeat center;
                    background-size: 100%;
                    display: block;
                    height: 100%;
                    width: 100%;
                }
                
                /*N-202312072社群區調整 Start*/
                .footer .top .social a i.fa-win {
                    background: url(img/win.svg) no-repeat center;
                    background-size: 100%;
                    display: block;
                    height: 100%;
                    width: 100%;
                }                                

                .footer .top .social a i.fa-youtube {
                    display: flex;
                    height: 100%;
                    width: 100%;                    
                    justify-content: center;
                    align-items: center;
                }
                .footer .top .social a i.fa-facebook {
                    display: flex;
                    height: 100%;
                    width: 100%;                   
                    justify-content: center;
                    align-items: center;                                        
                }                
                /*N-202312072社群區調整 End*/

    .footer .mid {
        background: #f5f2ed;
    }

        .footer .mid .row {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #ece8e3;
        }

            .footer .mid .row:last-child {
                border-bottom: none;
            }

            .footer .mid .row .item {
                width: 10rem;
                padding: 0.5rem;
                margin: 0 0.3rem;
                box-sizing: border-box;
            }

                .footer .mid .row .item h2 {
                    font-size: 1rem;
                    margin-bottom: 0.5rem;
                    position: relative;
                }

                    .footer .mid .row .item h2:after {
                        font-family: FontAwesome;
                        content: "\f055";
                        position: absolute;
                        top: 1rem;
                        right: 1rem;
                        display: none;
                        font-weight: normal;
                        font-size: 1.4rem;
                        color: #aba19f;
                        vertical-align: middle;
                        flex-direction: column;
                        justify-content: center;
                    }

                    .footer .mid .row .item h2 span {
                        display: block;
                    }

                .footer .mid .row .item ul li a {
                    line-height: 2rem;
                }

                .footer .mid .row .item a:hover {
                    color: #ed301c;
                }

    .footer .bottom {
        background: #ed301c;
        color: #fff;
        text-align: center;
        padding: 10px\9;
        padding: 0.5rem;
    }
/*#Footer*/
.page {
    overflow: hidden;
    padding-top: 8.6rem;	/*N-202312072社群區調整*/
    position: relative;
    margin: 0 auto;
}

    .page.-external {
        padding-top: 4rem;
    }

        .page.-external .page-wrapper ol,
        .page.-external .page-wrapper ul {
            margin-left: 20px\9;
        }

        .page.-external .page-wrapper li {
            margin-bottom: 10px\9;
        }

        .page.-external .page-wrapper h3, .page.-external .page-wrapper p {
            margin-bottom: 15px\9;
        }

    .page .key-image {
        overflow: hidden;
        z-index: 20;
    }

        .page .key-image.-no-bottom {
            margin-bottom: 0;
        }

        .page .key-image .carousel-indicators {
            top: 1rem;
            right: 1rem;
            left: auto;
            bottom: auto;
            text-align: right;
            width: auto;
            margin-right: 0;
        }

            .page .key-image .carousel-indicators li {
                background: #fff;
                border-radius: 0;
                width: 1rem;
                height: 0.3rem;
            }

            .page .key-image .carousel-indicators .active {
                background: #ed301c !important;
                border: 0;
            }

        .page .key-image .item {
            display: none;
            position: relative;
        }

            .page .key-image .item.active {
                display: block;
            }

            .page .key-image .item img {
                max-width: 100%;
                margin: 0 auto;
                display: block;
                width: 100%;
            }
            
            /* Vicky */
            .page .key-image .carousel-item img {
                max-width: 100%;
                margin: 0 auto;
                display: block;
                width: 100%;
            }			

            .page .key-image .item .item-description {
                color: #ed301c;
                position: absolute;
                background: rgba(0, 0, 0, 0.08);
                padding: 1rem;
                top: 4rem;
                padding: 1rem 2rem;
                right: calc(30% - 11%);
                position: absolute;
            }

@media only screen and (max-width: 1600px) {
    .page .key-image .item .item-description {
        right: 6vw;
    }
}

.page .key-image .item .item-description h2 {
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
}

.page-wrapper {
    padding: 0.5rem;
    padding-top: 30px\9;
    padding-top: 2rem;
}

    .page-wrapper.-full {
        padding: 0;
    }

    .page-wrapper.homepage {
        padding: 0;
        z-index: 25;
        position: relative;
    }
/*#Page*/



/*ie10*/

html[data-useragent*='MSIE 10.0'] .login-widget {
    display: block;
}

    html[data-useragent*='MSIE 10.0'] .login-widget > .bottom > .panel {
        flex-wrap: wrap;
        align-items: center;
    }

        html[data-useragent*='MSIE 10.0'] .login-widget > .bottom > .panel > .left {
            align-items: center;
            flex-wrap: wrap;
        }

        html[data-useragent*='MSIE 10.0'] .login-widget > .bottom > .panel > .right {
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 0.25rem;
            -ms-flex-negative: 1;
        }

            html[data-useragent*='MSIE 10.0'] .login-widget > .bottom > .panel > .right .btn {
                min-width: 10rem;
                -ms-flex-negative: 1;
            }

        html[data-useragent*='MSIE 10.0'] .login-widget > .bottom > .panel > .left .widget-forms .rows {
            display: -webkit-inline-flex;
            display: -ms-inline-flexbox;
            display: inline-flex;
            flex-wrap: wrap;
            margin-bottom: 0;
            flex: 1;
            width: 100%;
            -ms-flex-negative: 1;
        }

            html[data-useragent*='MSIE 10.0'] .login-widget > .bottom > .panel > .left .widget-forms .rows .colm {
                box-sizing: border-box;
                margin: 0.25rem 0.5rem;
                max-width: 100%;
                -ms-flex-negative: 1;
            }

/* AI */

.ai-box {
 
    position: fixed;
    right: 0rem;
    /* top: 300px; */
    top: 185px;
    z-index: 1000;
    width: 15.4rem;
    
}
.ai-info-box {
    background: url('../../images/homepage/background.png');
    background-repeat: no-repeat;
    height: 14rem;
}
.ai-box .ai-info-title {
    height: 2.1rem;
    padding: 0 1.6rem;
    color: #ffffff;
    font-size: 1.0625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    padding-top: 1.9rem;
}

    .ai-box .ai-info-content {
        position: relative;
        width: 100%;

        height: 5.9375rem;
        padding-top: 1.8125rem;
        padding-left: 4.6875rem;
        font-size: 0.9375rem;
        color: #4c371d;
    }

        .ai-box .ai-info-content .robot {
            position: absolute;
            left: 0.875rem;
            top: 1rem;
            width: 3.375rem;
            height: 4.25rem;
        }

.ai-box .ai-info-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #EA3228;
    height: 2.25rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-left: 2.8rem;
}

.ai-msg-btn {
    position: fixed;
    right: 0px;
    top: 245px;
    z-index: 995;
}

@media print {
    .ai-msg-btn {
        display: none;
    }
}

/* best browsing tips */
    .wwv-100 .modal-content {
        border-radius: 25px;
    }
    .wwv-100 img {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .wwv-100 .btn.-primary {
        margin-top: 2rem;
        box-shadow: none;
        margin-bottom: 1rem;
    }
    
/* forgot passward */
.login-widget > .right .widget-help a i.fa-lock { 
	font-size: 1.8rem; 
}

