﻿/* C# controlled pop ups for edit windows */
.divPopUpBackground {
    opacity: 0.3;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000000;
    border: 1px solid #888B8D;
    z-index: 11;
    margin-left: auto;
    margin-right: auto;
}
.divPopUpContainer {
    position: fixed;
    top: 50px;
    left: 50px;
    background-color: white;
    border: 1px solid #888B8D;
    padding: 50px;
    z-index: 11;
    box-shadow: 10px 10px 5px #888888;
}

/* java contorlled pop ups for loading messages*/
.divPopupSearchingBackground {
    display: none;
    opacity: 0.3;
    position: fixed;
    _position: absolute; /* hack for internet explorer 6*/
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000000;
    border: 1px solid #888B8D;
    z-index: 11;
}
#divPopupSearchingContainer {
    display: none;
    position: fixed;
    _position: absolute; /* hack for internet explorer 6*/
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    border: 1px solid #888B8D;
    z-index: 12;
}
#divPopupSearching {
    display: none;
    position: fixed;
    _position: absolute; /* hack for internet explorer 6*/
    height: 80px;
    width: 225px;
    background: #E87722;
    background: #63666A;
    color: White;
    z-index: 13;
    padding: 20px 20px 20px 20px;
    font-size: 22px;
    font-style: italic;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    margin: 0px auto 0px auto;
}
.popUpPleaseWait {
}