/*body{
    width: 100%;
  
    overflow-y: hidden;
	}*/

.spinner{
    width: 90px;
    height: 90px;
	border: 2px solid #f0f0f0;
    border-top:2px solid #c1c1c1;
    border-radius: 100%;
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right: 0;
    margin: auto;
    
    animation: spin 1s infinite linear;
	}

.spinnerLogo {
    width: 100%;
    height: 100%;
	}
.spinnerIMG {
    width: 55px;
    height: 55px;
	float: none;
	text-align: center;
	position: absolute;
    top:0;
    bottom:0;
    left:0;
    right: 0;
    margin: auto;
	}


@keyframes spin {
    from{
        transform: rotate(0deg);
    }to{
        transform: rotate(360deg);
    }
}

#overlay{
	height:100%;
	width:100%;
	background:rgba(255, 255, 255, 1);
	position:fixed;
	left:0;
	top:0;
	z-index: 999999;
	}