#loading {
    width: auto;
    padding: 2px 11px 7px;
    margin: 0 auto;
    left: 45%;
    left:calc(50% - 50px);
    border: 1px solid #aaa;
    border-width: 0 1px 2px;
    font-size: 1em;
    background: #E6E7E7;
    position: fixed;
    top:-60px;
    color: #fff;
    text-align: center;    
    height: 70px;
    z-index:1000;
    opacity:0;
    border-radius:4px;
    transition: top 1s, opacity 1.3s linear
}
#loading.show{
	opacity:1!important;
	top:48px!important;
}
.loading-img{
	background:url("/image/lsa/ui/ajaxLoading.gif") no-repeat center transparent;
	height:28px;
}
#loading span{
	margin:0 auto;
	display:block;
	}
	
#loading p {
	color:#555;
	padding-top:30px;
	text-align:center;
	width:100px;
}
/* !--- rwd: small and medium--- */
@media screen and (max-width:801px) {
	#loading {
		width:40%;
		margin:0 auto;
		left:30%;
	}
	#loading:hover{
		top:64px;
	}
	#loading p {
		color:#555;
		padding-top:30px;
		text-align:center;
		width:auto;
	}
}
