﻿/*---------------------------------------------------------
MasterCSS.css
Created July 18,2012, P. Murray

2/13/2013 - MKL for all styles that are user created classes
not to host name based references like html, body, h1, etc.

This CSS is for common styles in ALL master pages 
----------------------------------------------------------*/

.clearBoth
{
     clear: both;
}

/*----------------------------------------------------*/
/* Progress Indicator 
/*----------------------------------------------------*/
.FreezePaneOff
{
    visibility: hidden;
    display: none;
    position: absolute;
    top: -100px;
    left: -100px;
}
.FreezePaneOn
{
    position: absolute;
    top: 0px;
    left: 0px;
    visibility: visible;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 9999;
    -moz-opacity: 0.9;
    padding-top: 20%;
    margin: 0px auto;
}
.InnerFreezePane {
    text-align: center;
    width: 250px;
    height: 280px;
    /* background-image: url('../Images/ProgressBarGreen.gif');*/
    background-image: url('../Images/loading.gif');
   
    background-position: center;
    background-repeat: no-repeat;
    /*background-color: #fff;*/
    border: solid 1px #fff;
    padding: 5px;
    padding-top: 60px;
    font-family: Trebuchet MS;
    font-size: 18px;
    color: #BE540D;
}
.FreezePane
{
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    z-index: 999;
    padding-top: 20%;
    display: none;
    background-color: #ccc;
}
.innerText
{
	font-family: Trebuchet MS;
	font-size: 12px;
	font-style: italic;
	color: #BE540D;
	margin-left:10px;
	margin-bottom: 2px;
}
/* End progress indicator */