﻿@import "../scripts/PopMenu_Colors.css";
.POP_MenuOff {
    display: none !important;
}

.POP_MenuOut {
    position: fixed;
    z-index: 1;
    opacity: 0.0;
    display: none;
    max-height: 20px;
    -webkit-animation: menuFadeOut 1.0s ease-out;
    -moz-animation: menuFadeOut 1.0s ease-out;
    -o-animation: menuFadeOut 1.0s ease-out;
    animation: menuFadeOut 1.0s ease-out;
}

.POP_ICO16Fix{
    display: block;
    min-width: 16px;
    width: 16px;
    height: 16px;
}

.POP_MenuTD {
    text-align: left;
    vertical-align: middle;
    padding-left: 26px;
    padding-right: 6px;
    background-image: url(/graphics/VertLink.jpg);
    background-position: left center;
    background-repeat: repeat-y;
}

.POP_MenuTDFlat {
    text-align: left;
    vertical-align: middle;
    padding-left: 6px;
    padding-right: 6px;
}

.POP_Divider {
    height: 2px;
    cursor: default;
    width: 100% !important;
    padding: 1px;
    opacity: 1;
    background-color: #C0C0C0;
    line-height: 2px;
}

@media only screen and (max-width : 499px)
{
    .POP_MenuOn {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        position: absolute;
        z-index: 1;
        left: 2% !important;
        width: 96% !important;
        display: block;
        font-family: 'Roboto', sans-serif;
        color: #3b3b3b;
        font-size: 14px;
        background-color: white;
        border-style: solid;
        border-width: 1px;
        border-top-color: lightgray;
        border-right-color: lightgray;
        border-bottom-color: darkgray;
        border-left-color: darkgray;
        text-align: right;
        border-radius: 5px;
        padding-bottom: 15px;
        box-shadow: 2px 2px 12px #000000;
    }

    .POP_MenuItem{
        height: 36px;
        color: #202020;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        width: 100%!important;
        padding-top: 12px;
        padding-bottom: 12px;
        white-space: nowrap;
        opacity: 0.7;
        -webkit-transition: all 0.4s; 
        -moz-transition: all 0.4s; 
        -ms-transition: all 0.4s; 
        -o-transition: all 0.4s; 
        transition: all 0.4s;
        background-color: #FFFFFF;
        border-bottom-color: white;
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }

    .POP_MenuItem:hover{
        opacity: 1.0;
        background-color: #E0E0FF;
        border-bottom-color: silver;
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }

    .POP_MenuHeader {
        text-align: right;
        width: 100%;
        padding-top: 6px;
        padding-right: 6px;
        padding-bottom: 6px;
        white-space: nowrap;
        border-radius: 5px;
        border: none;
        background-color: var(--pop-header-background-color);
        background-image: var(--pop-header-background-image);
        margin-bottom: 15px;
    }

}
@media only screen and (min-width : 500px)
{
    .POP_MenuOn {
        position: absolute;
        z-index: 1;
        display: block;
        font-family: 'Roboto', sans-serif;
        color: #3b3b3b;
        font-size: 12px;
        cursor: pointer;
        background-color: white;
        border-radius: 5px;
        padding-bottom: 15px;
        box-shadow: 2px 2px 12px #000000;
    }

    .POP_MenuOn tr {
    }

    .POP_MenuItem{
        height: 26px;
        color: #202020;
        cursor: pointer;
        font-weight: bold;
        text-align: center;
        width: auto!important;
        white-space: nowrap;
        opacity: 0.7;
        -webkit-transition: all 0.4s; 
        -moz-transition: all 0.4s; 
        -ms-transition: all 0.4s; 
        -o-transition: all 0.4s; 
        transition: all 0.4s;
        background-color: #FFFFFF;
        border-bottom-color: white;
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }

        .POP_MenuItem:hover {
            opacity: 1.0;
            background-color: #a3e3e1;
            border-bottom-color: silver;
            border-bottom-style: solid;
            border-bottom-width: 1px;
        }

    .POP_MenuHeader {
        text-align: right;
        width: 100%;
        white-space: nowrap;
        border-radius: 5px;
        border: none;
        border: 1px solid var(--pop-main-border-color);
        background-color: var(--pop-header-background-color);
        background-image: var(--pop-header-background-image);
        margin-bottom: 15px;
    }

}

.fadeOut {
    opacity: 0.0;
    animation: fadeOut 5s;
    -webkit-animation: fadeOut 5s;
    -moz-animation: fadeOut 5s;
    -o-animation: fadeOut 5s;
    -ms-animation: fadeOut 5s;
}


@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0.20;
    }

    100% {
        opacity: 0.0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0.20;
    }

    100% {
        opacity: 0.0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0.20;
    }

    100% {
        opacity: 0.0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0.20;
    }

    100% {
        opacity: 0.0;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0.20;
    }

    100% {
        opacity: 0.0;
    }
}
