.spinner {
	width: 100px;
	height: 100px;
	
	border: 2px solid #EEE; /* was 6E8396 */
	border-top: 3px solid #6D7C93; /* or #88BE43*/
	border-left: 3px solid #6D7C93; /* or #88BE43*/
	border-radius: 100%;
	
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	
	-moz-animation: spin 1s infinite linear;
	-ms-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
					
	z-index: 1000;
}
@keyframes spin {
	from{
		transform: rotate(0deg);
	}to{
		transform: rotate(360deg);
	}
}
#preloaderOverlay img {;
	width: 85px;
	height: 85px;
	
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
#preloaderOverlay {
	width: 100%;
	height: 100%;
	/*background: rgba(101, 123, 146,1);*/
	background: white;
	position: fixed;
	top: 0;
	left: 0;
	
	z-index: 9999;
}

