﻿/* 自建網頁導覽列 ====================================================== */


nav.customPageMenu a {
    color: #FFF;
}

nav.customPageMenu {
    margin: 1rem 0;
    background-color: var(--color08);
}

    nav.customPageMenu ul {
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
    }

        nav.customPageMenu ul li {
            display: inline-block;
            background-color: var(--color08);
        }

    nav.customPageMenu a {
        display: block;
        padding: 0 10px;
        color: #FFF;
        font-size: 1rem;
        line-height: 2rem;
        text-decoration: none;
    }

        nav.customPageMenu a:hover {
            background-color: #000000;
        }

    /* Hide Dropdowns by Default */
    nav.customPageMenu ul ul {
        display: none;
        position: absolute;
        top: 2rem; /* the height of the main nav */
    }

    /* Display Dropdowns on Hover */
    nav.customPageMenu ul li:hover > ul {
        display: inherit;
    }

    /* Fisrt Tier Dropdown */
    nav.customPageMenu ul ul li {
        width: 170px;
        float: none;
        display: list-item;
        position: relative;
    }

    /* Second, Third and more Tiers	*/
    nav.customPageMenu ul ul ul li {
        position: relative;
        top: -60px;
        left: 170px;
    }


    /* Change this in order to change the Dropdown symbol */
    nav.customPageMenu li > a:after {
        content: ' +';
    }

    nav.customPageMenu li > a:only-child:after {
        content: '';
    }

/* 自建網頁內容 ================================================== */
div.wraper > div.eachParagraph {
    margin: 1rem 0;
}

    div.wraper > div.eachParagraph > h3.paragraphHeading {
    }



    div.wraper > div.eachParagraph > div.paragraphContent {
        line-height: 2rem;
    }

        div.wraper > div.eachParagraph > div.paragraphContent ol {
            list-style: decimal;
            list-style-position: inside;
        }

        div.wraper > div.eachParagraph > div.paragraphContent ul {
            list-style: circle;
            list-style-position: inside;
        }
