/*
 * Classes defining the layout of the processing banner.
 * Author: Antonio Rodrigues (GES/C/ACR)
 * Version: 1.0.0 (17.01.2012)
 * Requires: js/infra_processingBanner.js
 */
div.FreezePaneOff {
    position: fixed;
    visibility: hidden;
    display: none;
    top: -100px;
    left: -100px;
}
div.FreezePaneOn {
    position: fixed;
    visibility: visible;
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 150%;
    z-index: 1000;
    background-color: #f9f9f9;
    filter:alpha(opacity=65);
    opacity:0.65;
}
div.InnerFreezePane {
    text-align: center;
    font-size: x-large;
    width: 910px;
    padding: 25px;
    margin: 250px auto;
    z-index: 1001;
    background-color: #0066CC;
    color: #fff;
    filter:alpha(opacity=100);
    opacity:1;
}

.blink {
    font-size: inherit;
    color: inherit;
    text-decoration: blink;
}
/* cross browser opacity */
div.FreezePaneOn {
    zoom: 1; /* required to trigger hasLayout in IE */
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    /* IE 5-7 */
    filter: alpha(opacity=65);
    /* Netscape */
    -moz-opacity: 0.65;
    /* Safari 1.x */
    -khtml-opacity: 0.65;
    /* Modern browsers */
    opacity: 0.65;
}
div.InnerFreezePane {
    zoom: 1; /* required to trigger hasLayout in IE */
    /* IE 8-9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=100);
    /* Netscape */
    -moz-opacity: 1.00;
    /* Safari 1.x */
    -khtml-opacity: 1.00;
    /* Modern browsers */
    opacity: 1.00;
}