﻿.horiAndVertMainMenuCssVariables {
    /* Font Size */
    --node-font-size: 18px;
    /* Font Weight */
    --node-font-weight: bold;
    /* Font Color */
    --node-font-color: var(--color06);
    --desktop-node-font-color-level1: var(--color-blue07);
    --desktop-node-font-color-level0: var(--color08);
    --desktop-current-node-font-color-level0: #734706;  /* Brown */
    --desktop-arrow-color: #555555;
    --desktop-node-font-color-hover-level0: #164aa6; /*Dark Blue*/
    --desktop-node-font-color-hover-level1: var(--color12);
    --current-node-font-color-level0: var(--color08);
    --current-node-icon-font-color-hover-level0: darkorange;
    /* Line Height */
    --node-line-height: 1em;
    --desktop-sep-line-height-level0: 60%;
    --desktop-node-font-line-height: 1.5em;
    /* Background */
    --block-bg-level0: rgba(247,245,203,0.98);
    --mobile-hamburger-bg: #FFFFFF;
    --desktop-block-bg-level0: transparent;
    --desktop-node-bg-level0: var(--color14);
    --desktop-block-bg-level1: #FFFFFF;
    --desktop-node-bg-hover-level1: #f4f5b5; /* Light Yellow */
    /* Padding */
    --mobile-node-padding: calc(var(--node-font-size) * 0.7222) calc(var(--node-font-size) * 1.1111);
    --desktop-node-padding-level1: calc(var(--node-font-size) * 0.3) calc(var(--node-font-size) * 1.1111);
    /* Margin */
    --desktop-node-icon-margin-bottom: 20px;
    /* Width */
    --mobile-block-width: 100%;
    --desktop-node-width-level0: 150px;
    --desktop-node-icon-max-width: 50%;
    /* Border */
    --block-border-level0: 0 none;
    --mobile-node-border-top: 1px solid rgba(0, 0, 0, 0.05);
    --desktop-block-border-color: #bbbbbb;
    --desktop-block-border-level1: 1px solid var(--desktop-block-border-color);
    --desktop-node-icon-border: none 3px var(--color01);
    --desktop-node-icon-border-hover: solid 3px orange;
    --desktop-sep-line: solid 1px #dddddd;
    /* Height */
    --mobile-block-max-height: 80vh;
    /* Others */
    --link-text-decoration: none;
    --block-shadow-level0: none;
    --menu-radius: 5px;
    --mobile-hamburger-button-size: 40px;
    --mobile-hamburger-line-color: var(--color08);
    --mobile-hamburger-shadow: none;
    --block-bg-level1: rgba(162, 162, 162, 0.1);
    --mobile-plus-sign: '+';
    --mobile-minus-sign: '-';
    --desktop-block-shadow-level1: 0 5px 9px rgba(0, 0, 0, 0.2);
    --desktop-node-icon-aspect-ratio: 1;
    --desktop-node-icon-border-radius: 20%;
    --current-node-icon-level0: "\f005";
    --current-node-icon-level1: "\f005";
}


    /* 整個主導覽列外圍 */
    .mp主導覽列8 .fspsMainNav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 4;
        max-height: var(--mobile-block-max-height);
        overflow-y: scroll;
        width : 100%;
    }

    .mp主導覽列8:after {
        clear: both;
        content: "\00a0"; /*Unicode Character 'NO-BREAK SPACE'*/
        display: block;
        height: 0;
        font: 0px/0 serif;
        overflow: hidden;
    }

/* ul 主導覽列節點容器 */
#main-menu {
    clear: both;
    /* Custom Setting */
    box-shadow: var(--block-shadow-level0);
    border: var(--block-border-level0);
    background-color: var(--block-bg-level0);
}

@media (min-width: 768px) {
    #main-menu {
        clear: none;
        background-color: var(--desktop-block-bg-level0);
    }

    .mp主導覽列8 .fspsMainNav {
        text-align: center;
        position: static;
        max-height: initial;
        overflow-y: unset;
    }
}

/* 手機版, 整個主導覽列開合按鈕 */
.mp主導覽列8 .main-menu-btn {
    float: right;
    margin: 6px 10px;
    position: relative;
    display: inline-block;
    width: var(--mobile-hamburger-button-size);
    height: var(--mobile-hamburger-button-size);
    text-indent: var(--mobile-hamburger-button-size);
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-shadow: var(--mobile-hamburger-shadow);
    background-color: var(--mobile-hamburger-bg);
    border-radius : 50%;
    border : solid 2px #1db322; 
}

/* hamburger icon，張開用 */
.mp主導覽列8 .main-menu-btn-icon,
.mp主導覽列8 .main-menu-btn-icon:before,
.mp主導覽列8 .main-menu-btn-icon:after {
    position: absolute;
    top: 45%;
    left: calc(var(--mobile-hamburger-button-size) * 0.2);
    height: calc(var(--mobile-hamburger-button-size) * 0.1);
    width: calc(var(--mobile-hamburger-button-size) * 0.5);
    background: var(--mobile-hamburger-line-color);
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

    .mp主導覽列8 .main-menu-btn-icon:before {
        content: '';
        top: calc(-0.22 * var(--mobile-hamburger-button-size));
        left: 0;
    }

    .mp主導覽列8 .main-menu-btn-icon:after {
        content: '';
        top: calc(var(--mobile-hamburger-button-size) * 0.22);
        left: 0;
    }

/* x icon，關閉用 */
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
    height: 0;
    background: transparent;
}

    #main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
        top: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

    /* hide the menu in mobile view */
    #main-menu-state:not(:checked) ~ #main-menu {
        display: none;
        width: var(--mobile-block-width);
    }

    #main-menu-state:checked ~ #main-menu {
        display: block;
        width: var(--mobile-block-width);
    }

@media (min-width: 768px) {

    /* 1st level node */
    #main-menu > li.level1 {
        text-align: center;
        width: var(--desktop-node-width-level0);
    }
    /* Hide Home Node*/
    #main-menu > li.level1.menuNode1 {
        display : none;
    }

    /* 不顯示展開按鈕 */
    .mp主導覽列8 .main-menu-btn {
        position: absolute;
        top: -99999px;
    }

    /* always show the menu in desktop view */
    #main-menu-state:not(:checked) ~ #main-menu {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-content: stretch;
        width: 100%;
    }
}

/* ============================================================================================================= */

/* 整個主導覽列 ul */
.mp主導覽列8 .sm-clean {
    border-radius: var(--menu-radius);
}

.mp主導覽列8 .menuLogo {
    display: none;
}

/*預設節點樣式*/
.mp主導覽列8 .sm-clean a, .mp主導覽列8 .sm-clean a:hover, .mp主導覽列8 .sm-clean a:focus, .mp主導覽列8 .sm-clean a:active {
    padding: var(--mobile-node-padding);
    /* make room for the toggle button (sub indicator) */
    padding-right: calc(var(--node-font-size) * 3.2);
    color: var(--node-font-color);
    font-size: var(--node-font-size);
    font-weight: var(--node-font-weight);
    line-height: var(--node-line-height);
    text-decoration: var(--link-text-decoration);
}

    /* 現選節點預設樣式 */
    .mp主導覽列8 .sm-clean a.currentTopNode {
        color: var(--current-node-font-color-level0);
    }

    /* 已停用節點預設樣式 */
    .mp主導覽列8 .sm-clean a.disabled {
        color: #bbbbbb;
    }

    /* 有下層節點的節點的符號（+,-）樣式 */
    .mp主導覽列8 .sm-clean a .sub-arrow {
        position: absolute;
        top: 50%;
        margin-top: calc(var(--node-font-size) * -0.944);
        left: auto;
        right: calc(var(--node-font-size) * 0.222);
        width: calc(var(--node-font-size) * 1.8889);
        height: calc(var(--node-font-size) * 1.8889);
        overflow: hidden;
        font: bold calc(var(--node-font-size) * 0.8889)/calc(var(--node-font-size) * 1.8889) monospace !important;
        text-align: center;
        text-shadow: none;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20%;
    }

        /* 未被展開時 */
        .mp主導覽列8 .sm-clean a .sub-arrow::before {
            content: var(--mobile-plus-sign);
        }

    /* 已被展開後 */
    .mp主導覽列8 .sm-clean a.highlighted .sub-arrow::before {
        content: var(--mobile-minus-sign);
    }

/* 左上、右上角圓角 */
.mp主導覽列8 .sm-clean > li:first-child > a, .mp主導覽列8 .sm-clean > li:first-child > :not(ul) a {
    border-radius: var(--menu-radius) var(--menu-radius) 0 0;
}

/* 左下、右下角圓角 */
.mp主導覽列8 .sm-clean > li:last-child > a, .mp主導覽列8 .sm-clean > li:last-child > *:not(ul) a, .mp主導覽列8 .sm-clean > li:last-child > ul, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul {
    border-radius: 0 0 var(--menu-radius) var(--menu-radius);
}

    .mp主導覽列8 .sm-clean > li:last-child > a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > *:not(ul) a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .mp主導覽列8 .sm-clean > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
        border-radius: 0;
    }

/* 每個節點之間 */
.mp主導覽列8 .sm-clean li {
    border-top: var(--mobile-node-border-top);
}

/* Home 節點 */
.mp主導覽列8 .sm-clean > li:first-child {
    border-top: 0;
}

/* 第2層或以下 */
.mp主導覽列8 .sm-clean ul {
    background: var(--block-bg-level1);
}

    /* 第2層及以下現選節點 */
    .mp主導覽列8 .sm-clean ul a.currentNode {
    }

        .mp主導覽列8 .sm-clean ul a.currentNode .linkText::after, .mp主導覽列8 .sm-clean ul a.parentNode .linkText::after {
            content: var(--current-node-icon-level1);
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            display: inline;
            margin-left: 5px;
            color: inherit;
        }

    /* 第2層或以下節點 */
    .mp主導覽列8 .sm-clean ul a, .mp主導覽列8 .sm-clean ul a:hover, .mp主導覽列8 .sm-clean ul a:focus, .mp主導覽列8 .sm-clean ul a:active {
        font-size: calc(var(--node-font-size) * 0.8889);
        border-left: calc(var(--node-font-size) * 0.4444) solid transparent;
    }

    /* 第3層節點 */
    .mp主導覽列8 .sm-clean ul ul a,
    .mp主導覽列8 .sm-clean ul ul a:hover,
    .mp主導覽列8 .sm-clean ul ul a:focus,
    .mp主導覽列8 .sm-clean ul ul a:active {
        border-left: calc(var(--node-font-size) * 0.8889) solid transparent;
    }

    /* 第4層節點 */
    .mp主導覽列8 .sm-clean ul ul ul a,
    .mp主導覽列8 .sm-clean ul ul ul a:hover,
    .mp主導覽列8 .sm-clean ul ul ul a:focus,
    .mp主導覽列8 .sm-clean ul ul ul a:active {
        border-left: calc(var(--node-font-size) * 1.4) solid transparent;
    }

    /* 第5層節點 */
    .mp主導覽列8 .sm-clean ul ul ul ul a,
    .mp主導覽列8 .sm-clean ul ul ul ul a:hover,
    .mp主導覽列8 .sm-clean ul ul ul ul a:focus,
    .mp主導覽列8 .sm-clean ul ul ul ul a:active {
        border-left: calc(var(--node-font-size) * 1.8) solid transparent;
    }

    /* 第6層節點 */
    .mp主導覽列8 .sm-clean ul ul ul ul ul a,
    .mp主導覽列8 .sm-clean ul ul ul ul ul a:hover,
    .mp主導覽列8 .sm-clean ul ul ul ul ul a:focus,
    .mp主導覽列8 .sm-clean ul ul ul ul ul a:active {
        border-left: calc(var(--node-font-size) * 2.3) solid transparent;
    }

.mp主導覽列8 .sm-clean li.notShowInMobileMode {
    display: none;
}


@media (min-width: 768px) {
    /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
    /* start... (it's not recommended editing these rules) */
    .mp主導覽列8 .sm-clean ul {
        position: absolute;
        width: 12em;
    }

    .mp主導覽列8 .sm-clean li.notShowInMobileMode {
        display: inherit;
    }

    .mp主導覽列8 .sm-clean ul a {
        white-space: normal;
    }

    .mp主導覽列8 .sm-clean .sm-nowrap > li > a, .mp主導覽列8 .sm-clean .sm-nowrap > li > :not(ul) a {
        white-space: nowrap;
    }

    /* 第一層的大圖 */
    .mp主導覽列8 .menuLogo {
        display: block;
        aspect-ratio: var(--desktop-node-icon-aspect-ratio);
        margin: 0 auto 0 auto;
        border-radius: var(--desktop-node-icon-border-radius);
        transition: all 0.3s ease-in-out;
        margin-bottom: var(--desktop-node-icon-margin-bottom);
        max-width: var(--desktop-node-icon-max-width);
        border: var(--desktop-node-icon-border);
    }

        .mp主導覽列8 .menuLogo:hover {
            margin-bottom: 5px;
            margin-top: var(--desktop-node-icon-margin-bottom);
            border: var(--desktop-node-icon-border-hover);
        }

    /* 第一層節點文字 */
    .mp主導覽列8 .level1 .linkText {
        line-height: var(--desktop-node-font-line-height); 
    }

    /* 第一層節點文字 */
    .mp主導覽列8 .menuLogo:hover + .linkText {
        background-color: var(--desktop-node-bg-level0);
        color: var(--desktop-node-font-color-hover-level0);
        border-radius : 5px;
    }

    /* ...end */

    /* static Block 靜態方塊 */
    .mp主導覽列8 .sm-clean {
        padding: 0 calc(var(--node-font-size) * 0.5556);
    }

    /* 節點間的調節線條 */
    .mp主導覽列8 .bgdiv {
        height: var(--desktop-sep-line-height-level0); /*垂直線高度*/
        width: 100%;
        position: absolute;
        bottom: 10%; /* 垂直線位置 */
        z-index: -1;
        border-right: var(--desktop-sep-line);
    }

    /* 節點間的調節線條 */
    .mp主導覽列8 li.level1:last-child .bgdiv {
        border-right: none 0px;
    }

    /* 節點預設樣式 */
    .mp主導覽列8 .sm-clean a, .mp主導覽列8 .sm-clean a:hover, .mp主導覽列8 .sm-clean a:focus, .mp主導覽列8 .sm-clean a:active, .mp主導覽列8 .sm-clean a.highlighted {
        color: var(--desktop-node-font-color-level0);
        border-radius: 0 !important;
        padding: 0px;
    }

        /* 第一層，節點 Hover 樣式 */
        .mp主導覽列8 .sm-clean a:hover, .mp主導覽列8 .sm-clean a:focus, .mp主導覽列8 .sm-clean a:active, .mp主導覽列8 .sm-clean a.highlighted {
            color: var(--desktop-node-font-color-hover-level0);
        }

        /* 第一層，現選節點 */
        .mp主導覽列8 .sm-clean a.currentTopNode {
            color: var(--desktop-current-node-font-color-level0);
        }

            .mp主導覽列8 .sm-clean a.currentTopNode .linkText::after {
                content: var(--current-node-icon-level0);
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                display: inline;
                margin-left: 5px;
                color: var(--current-node-icon-font-color-hover-level0);
            }

        /* 第一層，停用節點 */
        .mp主導覽列8 .sm-clean a.disabled {
            color: #bbbbbb;
        }

        .mp主導覽列8 .sm-clean a.has-submenu {
        }

        /* 第一層，向下箭頭 */
        .mp主導覽列8 .sm-clean a .sub-arrow {
            top: 50%;
            right: 12px;
            width: 0;
            height: 0;
            border-width: calc(var(--node-font-size) * 0.3);
            border-style: solid dashed dashed dashed;
            border-color: var(--desktop-arrow-color) transparent transparent transparent;
            background: transparent;
            border-radius: 0;
            font: bold 6px/4px monospace !important;
        }

    #main-menu > li.level1 > a > .sub-arrow {
        position: static;
    }

    /* 桌面版不顯示 '+'  */
    .mp主導覽列8 .sm-clean a .sub-arrow::before {
        display: none;
    }

    /* 桌面版節點間不顯示 Border */
    .mp主導覽列8 .sm-clean li {
        border-top: 0;
    }

    /*第2層的向上箭頭*/
    .mp主導覽列8 .sm-clean > li > ul::before,
    .mp主導覽列8 .sm-clean > li > ul::after {
        content: '';
        position: absolute;
        top: -18px;
        left: 30px;
        width: 0;
        height: 0;
        overflow: hidden;
        border-width: 9px;
        border-style: dashed dashed solid dashed;
        border-color: transparent transparent var(--desktop-block-border-color) transparent;
    }

    .mp主導覽列8 .sm-clean > li > ul::after {
        top: -16px;
        left: 31px;
        border-width: 8px;
        border-color: transparent transparent var(--desktop-block-bg-level1) transparent;
    }

    /* 第2層方塊 */
    .mp主導覽列8 .sm-clean ul {
        border: var(--desktop-block-border-level1); /* 顏色(3)邊框 */
        padding: 5px 0;
        background: var(--desktop-block-bg-level1);
        border-radius: var(--menu-radius) !important;
        box-shadow: var(--desktop-block-shadow-level1);
        margin-top: -60px;
    }

        /* 第 2 層節點 */
        .mp主導覽列8 .sm-clean ul a, .mp主導覽列8 .sm-clean ul a:hover, .mp主導覽列8 .sm-clean ul a:focus, .mp主導覽列8 .sm-clean ul a:active, .mp主導覽列8 .sm-clean ul a.highlighted {
            border: 0 !important;
            /*  */
            padding: var(--desktop-node-padding-level1);
            color: var(--desktop-node-font-color-level1);
        }

            /* 第 2 層節點 Hover */
            .mp主導覽列8 .sm-clean ul a:hover, .mp主導覽列8 .sm-clean ul a:focus, .mp主導覽列8 .sm-clean ul a:active, .mp主導覽列8 .sm-clean ul a.highlighted {
                background: var(--desktop-node-bg-hover-level1);
                color: var(--desktop-node-font-color-hover-level1);
            }

            /* 第 2 層節點現選 */
            .mp主導覽列8 .sm-clean ul a.currentNode {
                color: var(--desktop-node-font-color-hover-level1); /* 顏色(6)文字 */
            }

                .mp主導覽列8 .sm-clean ul a.currentNode::after {
                    color: inherit;
                }

            /* 第 2 層節點停用 */
            .mp主導覽列8 .sm-clean ul a.disabled {
                background: #fff;
                color: #cccccc; /* 顏色(7)文字 */
            }

            /* 有下一層，右方預備空間顯示箭頭 */
            .mp主導覽列8 .sm-clean ul a.has-submenu {
                padding-right: calc(var(--node-font-size) * 1.8);
            }

            /* 第 2 層節點，下層箭頭 */
            .mp主導覽列8 .sm-clean ul a .sub-arrow {
                right: 8px;
                top: 50%;
                margin-top: -5px;
                border-width: calc(var(--node-font-size) * 0.27778);
                border-style: dashed dashed dashed solid;
                border-color: transparent transparent transparent var(--desktop-arrow-color);
            }

    .mp主導覽列8 .sm-clean .scroll-up,
    .mp主導覽列8 .sm-clean .scroll-down {
        position: absolute;
        display: none;
        visibility: hidden;
        overflow: hidden;
        background: #fff;
        height: 20px;
    }

        .mp主導覽列8 .sm-clean .scroll-up:hover,
        .mp主導覽列8 .sm-clean .scroll-down:hover {
            background: #eeeeee;
        }

            .mp主導覽列8 .sm-clean .scroll-up:hover .scroll-up-arrow {
                border-color: transparent transparent rgb(49,152,199) transparent;
            }

            .mp主導覽列8 .sm-clean .scroll-down:hover .scroll-down-arrow {
                border-color: rgb(49,152,199) transparent transparent transparent;
            }

    /*彈出方塊，當不夠高度顯示時，顯示的箭頭*/
    .mp主導覽列8 .sm-clean .scroll-up-arrow,
    .mp主導覽列8 .sm-clean .scroll-down-arrow {
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -6px;
        width: 0;
        height: 0;
        overflow: hidden;
        border-width: 6px;
        border-style: dashed dashed solid dashed;
        border-color: transparent transparent #555555 transparent;
    }

    .mp主導覽列8 .sm-clean .scroll-down-arrow {
        top: 8px;
        border-style: solid dashed dashed dashed;
        border-color: #555555 transparent transparent transparent;
    }
}

/* 彈出 menu 的動畫 */
@media (min-width:768px) {
    #main-menu {
        -webkit-font-smoothing: subpixel-antialiased;
    }

        /* show animation */
        #main-menu ul.show-animation {
            animation: show-animation 0.7s;
        }

    @keyframes show-animation {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /* hide animation */
    #main-menu ul.hide-animation {
        animation: hide-animation 0.7s;
    }

    @keyframes hide-animation {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }
}







/*Vertical Menu Container Start (Do not change nor remove)*/

.verticalMenuExist {
    --vertical-menu-padding: 1rem;
    --variable-content-padding: 1rem;
}

    .verticalMenuExist .fullWidthContainer {
        width: 100%;
    }

    /* Container for left(Vertical Menu) and right(Main Content) side */
    .verticalMenuExist .fspsFixedWidthRow {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: stretch;
    }

/* Vertical Menu */
    .verticalMenuExist .fspsVerticalMenuPH {
        flex-basis: 20%;
        min-width: 200px;
        max-width: 300px;
        flex-grow: 1;
        flex-shrink: 0;
        position: relative;
        padding: 0;
        border: solid var(--vertical-menu-padding) transparent;
    }

/* Main Content */
    .verticalMenuExist .variableContent
    , .verticalMenuExist .realContent {
        flex-basis: auto;
        width: 80%;
        flex-grow: 6;
        flex-shrink: 1;
    }

    .verticalMenuExist #fspsFirstRow .variableContent {
        padding: var(--variable-content-padding) var(--variable-content-padding) 0 var(--variable-content-padding);
    }

    .verticalMenuExist .fspsContentRow .realContent {
        padding: 0 var(--variable-content-padding);
    }

        .verticalMenuExist .lowerLeverVerticalMenu {
            position: absolute;
            top: 0;
            z-index: 1;
            width: 100%;
        }

    .verticalMenuExist .fspsContentRow {
        
    }

/*Vertical Menu Container End (Do not change nor remove)*/


/*Vertical Menu CSS Start (Do not change nor remove)*/

/* Hide vertical Menu */
.verticalMenuExist .fspsVerticalMenuPH {
    display: none;
}

@media (min-width: 768px) {

    .verticalMenuExist .fspsVerticalMenuPH {
        display: block;
    }

    /* show vertical menu */
    .verticalMenuExist .lowerLeverVerticalMenu {
        --highlight-color: #f2a535;
        /* Font Size */
        --v-heading-font-size: 1.2em;
        --v-node-font-size: 18px;
        --v-node-font-size-level1: 18px;
        --v-arrow-size: 1.3em;
        /* Font Weight */
        --v-node-font-weight: bold;
        --v-node-font-weight-level1: bold;
        --v-icon-font-weight: 900;
        /* Font Color */
        --v-heading-font-color: #FFFFFF;
        --v-node-font-color: var(--color08);
        --v-node-font-color-level1: var(--color08);
        --v-node-font-color-level1-hover: #000000;
        --v-current-node-font-color: var(--color02);
        /* Line Height */
        --v-node-line-height: 1.5em;
        --v-node-line-height-level1: 2em;
        /* Background */
        --v-heading-bg: linear-gradient(to bottom, var(--color02), var(--color03));
        --v-node-bg: linear-gradient(90deg, var(--color10) 0%, var(--color04) 2%, rgb(255,255,255) 3%, rgb(255,255,255) 100%);
        --v-node-bg-hover: linear-gradient(90deg, var(--highlight-color) 0%, var(--highlight-color) 2%, rgb(255,255,255) 3%, rgb(255,255,255) 100%);
        --v-node-bg-hover-level1: linear-gradient(135deg, #FFFFFF 70%, var(--color13) 100%);
        --v-block-bg-level1: #FFFFFF;
        /* Padding */
        --v-heading-padding: 0.3em 0.5em;
        --v-node-padding: 0.5em 0.6em;
        --v-node-padding-level1: 0 1em;
        /* Margin */
        --v-heading-margin: 0 0 0.5em 0;
        --v-icon-margin-right: 0.6em;
        --v-current-node-icon-margin-left: 0.5em;
        /* Width */
        /* Border */
        --v-border-bottom: solid 1px var(--color04);
        --v-border-bottom-hover: solid 1px rgba(0, 0, 0, 0.2);
        --v-node-border-left-hover-level1: 5px solid var(--highlight-color); /* Orange */
        --v-node-border-left-level1: 1px dotted rgba(0, 0, 0, 0.2);
        /* Height */
        /* Others */
        --v-block-max-height: 80vh;
        --v-border-radius: 0.3em;
        --v-animation-time: 0.15s;
        --v-block-indent-level1: 1em;
        --v-icon-font-family: "Font Awesome 6 Free";
        --v-current-node-icon: "\f185";
        color: #000000;
    }

        /* Curent Displaying webpage node on the top of vertical Menu */
        .verticalMenuExist .lowerLeverVerticalMenu .topNode {
            font-weight: 800;
            margin: var(--v-heading-margin);
            font-size: var(--v-heading-font-size);
            background-image: var(--v-heading-bg);
            color: var(--v-heading-font-color);
            padding: var(--v-heading-padding);
            border-radius: var(--v-border-radius);
        }

        /* vertical menu itself */
        .verticalMenuExist .lowerLeverVerticalMenu .mainmenu {
            border-radius: var(--v-border-radius);
            overflow: hidden;
            max-height: var(--v-block-max-height);
            overflow-y: auto;
        }

        .verticalMenuExist .lowerLeverVerticalMenu ul {
            margin: 0;
            padding: 0;
        }

        .verticalMenuExist .lowerLeverVerticalMenu a:hover {
            cursor: pointer;
        }

        /* level 1 nodes */
        .verticalMenuExist .lowerLeverVerticalMenu > ul > li > a:first-child {
            margin: 0;
            background-image: var(--v-node-bg);
            padding: var(--v-node-padding);
            font-size: var(--v-node-font-size);
            font-weight: var(--v-node-font-weight);
            line-height: var(--v-node-line-height);
            display: block;
            color: var(--v-node-font-color);
            text-decoration: none;
            border-bottom: var(--v-border-bottom);
            cursor: pointer;
        }

        /* level 1 last node */
        .verticalMenuExist .lowerLeverVerticalMenu > ul > li:last-child > a:first-child {
            border-bottom: none 0px;
        }

        /* level 1 node hover */
        .verticalMenuExist .lowerLeverVerticalMenu > ul > li > a:first-child:hover {
            border-bottom: var(--v-border-bottom-hover);
            background-image: var(--v-node-bg-hover);
        }

        /* font awesome icon */
        .verticalMenuExist .lowerLeverVerticalMenu i {
            margin-right: var(--v-icon-margin-right);
        }

        .verticalMenuExist .lowerLeverVerticalMenu li {
            list-style-type: none;
        }

        /* all nodes */
        .verticalMenuExist .lowerLeverVerticalMenu ul li a {
            position: relative;
        }

        /* level 2 or lower node */
        .verticalMenuExist .lowerLeverVerticalMenu ul ul li a {
            color: var(--v-node-font-color-level1);
            text-decoration: none;
            font-size: var(--v-node-font-size-level1);
            font-weight: var(--v-node-font-weight-level1);
            line-height: var(--v-node-line-height-level1);
            display: block;
            padding: var(--v-node-padding-level1);
            transition: all var(--v-animation-time);
        }

            /* level 2 or lower node hover */
            .verticalMenuExist .lowerLeverVerticalMenu ul ul li a:hover {
                background: var(--v-node-bg-hover-level1);
                border-left: var(--v-node-border-left-hover-level1);
                color: var(--v-node-font-color-level1-hover);
            }

        /* level 2 or lower block */
        .verticalMenuExist .lowerLeverVerticalMenu .mainmenu ul {
            display: none;
            background-color: var(--v-block-bg-level1);
        }

        /* child block of current selected node */
        .verticalMenuExist .lowerLeverVerticalMenu li.active > ul {
            display: block;
        }

        /* level 3 or lower block */
        .verticalMenuExist .lowerLeverVerticalMenu ul ul ul {
            margin-left: var(--v-block-indent-level1);
            border-left: var(--v-node-border-left-level1);
        }

        .verticalMenuExist .lowerLeverVerticalMenu a:not(:only-child)
        {
            position : relative;
        }

        /* has children node, arrow point to right, child block is hidden */
        .verticalMenuExist .lowerLeverVerticalMenu a:not(:only-child):after {
            content: "\f104";
            font-family: var(--v-icon-font-family);
            font-weight: var(--v-icon-font-weight);
            position: absolute;
            right: 10px;
            top: 10px;
            font-size: var(--v-arrow-size);
        }

        .verticalMenuExist .lowerLeverVerticalMenu ul ul a:not(:only-child):after {
            top: 0px;
        }

        /* has children node, arrow point down, child block is opened */
        .verticalMenuExist .lowerLeverVerticalMenu .active > a:not(:only-child):after {
            font-family: var(--v-icon-font-family);
            font-weight: var(--v-icon-font-weight);
            content: "\f107";
        }

        /* current page node,  wheel icon */
        .verticalMenuExist .lowerLeverVerticalMenu .current:after {
            content: var(--v-current-node-icon);
            font-family: var(--v-icon-font-family);
            font-weight: var(--v-icon-font-weight);
            display: inline;
            margin-left: var(--v-current-node-icon-margin-left);
            color: inherit;
        }

        /* no children node */
        .verticalMenuExist .lowerLeverVerticalMenu .noChild {
        }

            /* no children node hover */
            .verticalMenuExist .lowerLeverVerticalMenu .noChild:hover {
            }
}


/*Vertical Menu CSS End (Do not change nor remove)*/


/*Color Variable Start*/
.mainMenuColors
{
--color01 : rgb(48,146,192); /*C*/
--color02 : rgb(49,152,199); /*C*/
--color03 : rgb(46,140,184); /*C*/
--color04 : rgb(161,209,232); /*C*/
--color05 : rgb(45,137,180); /*C*/
--color06 : rgb(41,124,162); /*C*/
--color07 : rgb(0,104,146); /*C*/
--color08 : rgb(0,97,135); /*C*/
--color09 : rgb(0,111,156); /*C*/
--color10 : rgb(68,178,229); /*C*/
--color11 : rgb(108,182,216); /*C*/
--color12 : rgb(61,158,204); /*C*/
--color13 : rgb(174,213,232); /*C*/
--color14 : rgb(46,180,242); /*C*/
--color15 : rgb(54,188,249); /*C*/
}
/*Color Variable End*/











