﻿#divBusyIndicatorOverLay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9999;
    background-color: rgba(255, 250, 250, 0.50);
}

#divBusyIndicator {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

    #divBusyIndicator > div {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }

#divBusyIndicatorText {
    margin-top: 30px;
    line-height: 30px;
    background-color: white;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    padding: 20px;
    -webkit-box-shadow: 2px 2px 5px black;
    -moz-box-shadow: 2px 2px 5px black;
    -o-box-shadow: 2px 2px 5px black;
    box-shadow: 2px 2px 5px black;
}