	#preloader {
		/*background-color: #fff;*/
		background-color: rgba(20,20,20, 0.9);
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9998;
		}


	.spinner {
		width: 70px;
		height: 70px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-top: -35px;
		margin-left: -35px;
		z-index: 9999;
		background-color: #fff;
		border-radius: 100%;  
		-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
		animation: sk-scaleout 1.0s infinite ease-in-out;
		}

	@-webkit-keyframes sk-scaleout {
		0% { -webkit-transform: scale(0) }
		100% {
		-webkit-transform: scale(2.8);
		opacity: 0;
	  }
	}

	@keyframes sk-scaleout {
		0% { 
		-webkit-transform: scale(0);
		transform: scale(0);
		} 100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
		opacity: 0;
		}
	}
