﻿/* style for popup locker */
.btnLink {
    font-size: 10pt;
    display: block;
    clear: both;
}

.LockOff {
    display: none;
    visibility: hidden;
}

.LockOn {
    display: block;
    visibility: visible;
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
    padding-top: 250px;
    width: 100%;
    height: 100%;
    margin: 0 0;
    background-color: rgba(110, 110, 110, 0.98); /*rgb(219,229,241);*/
    text-align: center;
}

.divLock {
    font-size: 10pt;
    font-weight: bold;
    color: Navy;
    border: solid 3px Navy;
    border-radius: 15px;
    background-color: white; /*#00092b rgb(0,0,155);*/
    width: 500px;
    height: 200px;
    padding: 15px;
    margin: 0 auto;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.9);
}

.popUpLockOn {
    display: block;
    visibility: visible;
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    margin: 0 0;
    background-color: rgba(130, 130, 130, 0.8); /*rgb(219,229,241);*/
    text-align: center;
}
