
.loading-indicator {
	position: relative;
}
.loading-indicator:after, .loading-indicator:before {
	content: '';
	position: absolute;
}

.loading-indicator:before {
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: #FFFFFF;
	opacity: 0.6;
	filter: alpha(opacity = 60);
}

.loading-indicator:after {
	z-index: 3;
	left: 50%;
	margin-left: -40px;
	top: 50%;
	margin-top: -40px;
	height: 80px;
	width: 80px;
	background: url( '../images/loading.gif' );
	background-repeat: no-repeat;
	background-position: center center;
}
