﻿/*

    Use the LoaderWrapper within an UpdateProgress control, 
    at the very top of the page, within the primary content placeholder.

*/
div.LoaderWrapper {
    position: absolute; 
    text-align: center; 
    width: 768px; 
    z-index: 5000;
}
div.LoaderWrapper div.LoaderBox {
    background: #fff; 
    margin-left: auto; 
    margin-right: auto; 
    margin-top: 100px; 
    padding: 5px;
    text-align: center;
    width: 300px;
    
    opacity: .8;               /* Standard style for transparency */
    -moz-opacity: .8;          /* Transparency for older Mozillas */
    filter: alpha(opacity=80);  /* Transparency for IE */
}
div.LoaderWrapper div.LoaderBox div.LoaderCaption {
    color: #203455;
    font-size: 1.5em;
    font-weight: bold;
}
div.LoaderWrapper div.LoaderBox div.LoaderAnimation {
    background: url("Images/LoadingBar.gif") no-repeat;
    height: 24px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    width: 222px;
}