﻿#loading
{
    display:none;
}

.loading-overlay , .loading-content {
	text-align: center;
	padding: 5px 10px 5px 10px;
	cursor: wait;
	display:block;
}

.loading-overlay {
	height: 100%;
	width: 100%;
	border: none;
	margin: 0px;
	padding: 0px;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.6;
	filter: alpha(opacity=60);
	position: fixed;
	z-index: 10000;
}

.loading-content {
	background-color: #333;
	opacity: 0.7;
	filter: alpha(opacity=70);
	color: #fff;
	border: none;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
	position: fixed; 
	top: 50%;
	left: 50%;
	width: 95px; 
	margin-top:-60px;
	margin-left:-50px;
	z-index: 10001;
}

.loading-content .loading-message {
	display: inline-block;
	vertical-align: middle;
	zoom: 1;
}

.loading-content img
{
    width:50px;
    height:50px;   
}