@charset "UTF-8";
/* CSS Document */

.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #A3DB24;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}


#progressbar {
	display:none;
}

progress {
    background-color: #f3f3f3;
    border: 0;
    height: 1px;
    width:400px;
	position:absolute;
	right:50%;
	top:50%;
	margin-right:-200px;
	margin-top:45px;
}

progress::-moz-progress-bar {
     background-color: #A3DB24;
}

progress::-webkit-progress-bar {
    background-color: #333333;
}

.rayLoadText {
	text-transform: uppercase;
text-align: center;
display: none;
height: auto;
width: 400px;
position: absolute;
color: #FFF;
right: 50%;
top: 50%;
margin-right: -200px;
margin-top: 10px;
border-bottom: solid 1px #333;
padding-bottom: 16px;
}

.loadingText {
	text-align: center;
display: none;
height: auto;
width: 600px;
position: absolute;
color: #999;
right: 50%;
top: 50%;
margin-right: -300px;
margin-top: 50px;
font-size: 16px;
line-height: 1.5;
padding-top: 16px;


}