﻿/*
Created By Shilpy
______________________________________________________________________________________________
Add this tag in update panel
----------------------------------------------------------------------------------------------
<asp:UpdateProgress ID="UpdateProgress3" runat="server" DisplayAfter="0" AssociatedUpdatePanelID="UpdatePanelSearch">
                                                <ProgressTemplate>
                                                    <div class='UpdateProgressBackground'>
                                                    </div>

                                                    <script type="text/javascript">document.write("<div class='UpdateProgressBackground'></div> ");</script>

                                                    <center>
                                                        <div class="UpdateProgressContent">
                                                            <img src="Images/loading.gif" />
                                                            Loading...</div>
                                                    </center>
                                                </ProgressTemplate>
                                            </asp:UpdateProgress>
---------------------------------------------------------------------------------------------------------*/ 
         .UpdateProgressContent{  
             padding: 40px;  
             border: 2px solid #8483da;  
             background-color: #FFFFFF;  
             width: 200px;  
             text-align: center;  
             vertical-align: bottom;  
             z-index: 10000001;  
             top: 40%; 
             left:50%;  
             margin:0px;  
             margin-left:-141px;  
             position: absolute;  
         }  
     .UpdateProgressBackground  
   {  
        margin:0px;  
        padding:0px;  
        top:0px; bottom:0px; left:0px; right:0px;  
        position:absolute;  
        z-index:100000; 
        background-color:Black;  
        position: fixed;  
        filter: alpha(opacity=25); 
        -moz-opacity:.25;opacity:.25;
       
        /*opacity: 0.7;  */
    }  
   
