﻿.foo {
}
/* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain RARELY CHANGED rules used when the Menu control adapter is enabled. */
/* These rules correspond to the "pure CSS menu" technique that have been evolving over the past several years. */
/* See WhitePaper.aspx for details. */

#downloadToggle {
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
    position: relative;
}

#downloadPanel {
    display: none;
    position: absolute;
    top: 10rem;    
    left: -8rem;
    right: 1rem;
    width: 400px;
    margin: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 1.5rem;
}

.store {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .store img.qr {
        width: 150px;
        height: 150px;
        object-fit: contain;
        border: 1px solid #ccc;
        border-radius: 2px;
    }

    .store a.store-link {
        display: inline-block;
        font-size: 1.5rem;
        color: #0070cc;
        text-decoration: none;
        font-weight: bold;
    }

        .store a.store-link:hover {
            text-decoration: underline;
        }

ul.AspNet-Menu, .AspNet-Menu-Vertical > ul {
    position: relative;
    z-index: 2000;
}

    ul.AspNet-Menu, ul.AspNet-Menu ul, .AspNet-Menu-Vertical > ul, .AspNet-Menu-Vertical > ul ul {
        display: block;
        margin: 15px 0 0 0;
        padding: 0;
    }

        ul.AspNet-Menu li, .AspNet-Menu-Vertical > ul li {
            float: left;
            list-style: none;
            position: relative;
            width: 163px;
        }

            ul.AspNet-Menu li a, ul.AspNet-Menu li span, .AspNet-Menu-Vertical > ul li a, .AspNet-Menu-Vertical > ul li span {
                background-color: transparent;
                border-bottom: 1px solid #C0C0C0;
                display: block;
                margin-left: 17px;
                padding: 8px 0 8px 8px;
                width: 160px;
            }

                ul.AspNet-Menu li a:hover, ul.AspNet-Menu li span:hover, ul.AspNet-Menu li:hover, .AspNet-Menu-Vertical > ul li a:hover {
                    background-color: #8fbacd;
                    cursor: pointer
                }

a.AspNet-Menu-Link {
    color: #4d4d4f;
    padding: 4px;
    padding-left: 20px;
    text-decoration: none;
}

    a.AspNet-Menu-Link:hover {
        background-color: #8fbacd;
        color: #4d4d4f;
    }

a.AspNet-Menu-Selected {
    color: #4d4d4f;
}

span.AspNet-Menu-NonLink {
    color: #4d4d4f;
    padding-left: 12px;
}

li.AspNet-Menu-WithChildren ul {
    background-color: rgb(237, 241, 244);
    border: 2px solid #cecdcd;
    margin: -32px 0 0 200px;
    width: 200px;
}

ul.AspNet-Menu ul {
    position: absolute;
    visibility: hidden;
}

/* Add more rules here if your menus have more than three (3) tiers */

ul.AspNet-Menu li:hover ul ul, ul.AspNet-Menu li.AspNet-Menu-Hover ul ul {
    visibility: hidden;
}

/* Add more rules here if your menus have more than three (3) tiers */

ul.AspNet-Menu li:hover ul, ul.AspNet-Menu li li:hover ul, ul.AspNet-Menu li li li:hover ul, ul.AspNet-Menu li.AspNet-Menu-Hover ul, ul.AspNet-Menu li li.AspNet-Menu-Hover ul, ul.AspNet-Menu li li li.AspNet-Menu-Hover ul {
    visibility: visible;
}

.AspNet-Menu-Vertical ul.AspNet-Menu li, .AspNet-Menu-Vertical > ul li a {
    width: 100%;
}

.LeftMenu {
    padding: 10px;
}

    .LeftMenu a {
        color: black;
        display: block;
        padding: 15px 5px 15px 5px;
    }

    .LeftMenu td {
        border-bottom: 1px solid #C0C0C0;
        border-top: 1px solid #C0C0C0;
    }

    .LeftMenu div a {
        padding: 10px 5px 10px 5px;
    }

    .LeftMenu a:hover {
        background-color: #8fbacd;
    }

    .LeftMenu table {
        width: 100%;
    }

        .LeftMenu table td:first-child {
            width: 20px;
        }

    .LeftMenu div table td:nth-child(1) {
        width: 5px;
    }

        .LeftMenu div table td:nth-child(1) div {
            width: 10px !important;
        }

    .LeftMenu div table td:nth-child(2) {
        width: 20px;
    }

    .LeftMenu div div table td:nth-child(2) {
        width: 10px;
    }

        .LeftMenu div div table td:nth-child(2) div {
            width: 10px !important;
        }

    .LeftMenu div div table td:nth-child(3) {
        width: 20px;
    }

    .LeftMenu div table:first-child td {
        border-top-width: 0px;
    }

    .LeftMenu div table td {
        border-bottom-width: 0px;
    }

    .LeftMenu div div table:first-child td {
        border-top-width: 1px;
    }

    .LeftMenu div:last-child table:last-child td {
        border-bottom-width: 1px;
    }
