#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
	display: block;
}

#loading:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #fff;
	display: block;
  font-family: arial;
}

#loading .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  margin: -120px 0 0 -300px;
  text-align: center;
  width: 600px;
  height: 200px;
}

#loading .inner .logo {
  display: block;
  background-repeat: no-repeat;
  background-image: url(images/loading/logo.png);
  width: 283px;
  height: 183px;
  position: relative;
  margin: 0 auto;
  text-indent: -2000em;
  overflow: hidden;
  background-position: center;
}



#loading .inner .bar {
  width: 55%;
  height: 6px;
  margin: 20px auto 0;
  background: #ccc;
  overflow: hidden;
  border-radius: 2px;
    display:none;
	
}

#loading .inner .bar .progress {
  display: block;
  width: 0;
  height: 100%;
  background: #be6c07;
  background: #00b9ff;
}

#loading .inner .text {
  margin: 15px 0 0;
  font-size: 24px;
  font-weight: bold;
  color: #b80412;
}

#loading .inner .text .current {
  font-style: normal;
}