    /* How TO - Hoverable Dropdown
        https://www.w3schools.com/howto/howto_css_dropdown.asp */

    /* The container <div> - needed to position the dropdown content */
    .ougcPagesDropdownCategory {
        position: relative;
    }

    /* Dropdown Content (Hidden by Default) */
    .ougcPagesDropdownCategoryList {
        display: none;
        position: absolute;
        min-width: 9rem;
        right: 0;
    }

    /* Change color of dropdown links on hover */
    .ougcPagesDropdownCategoryListLink {
        padding: 0 !important;
        background-image: none !important;
        display: block !important;
        text-align: center;
    }

    /* Show the dropdown menu on hover */
    .ougcPagesDropdownCategory:hover .ougcPagesDropdownCategoryList {
        display: block;
    }