﻿#progressBackgroundFilter {
    position:fixed;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    overflow:hidden;
    padding:0;
    margin:0;
    background-color:#000;
    filter:alpha(opacity=50);
    opacity:0.5;
    z-index:1000;
}

#processMessage {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 10px;
    width: 180px;
    z-index: 1001;
    background-color: #fff;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border: 0px solid #000000;
    -webkit-box-shadow: 2px 2px 13px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 13px -5px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 13px -5px rgba(0,0,0,0.75);
}