#maskZss{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 15;
    background-color: #000;
}
#maskZss .maskZssDiv{
    margin-left: -170px;
    margin-top: -70px;
    width: 300px;
    height: 100px;
    padding: 20px;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
}
#maskZss .maskZssTextStyle{
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 5px;
}
#maskZss .spinnerRotate{
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    background: url(./resources/images/spinner28x28.png) no-repeat;
    -webkit-animation: rotate 0.8s steps(4) infinite;
	-moz-animation: rotate 0.8s steps(4) infinite;
	animation: rotate 0.8s steps(4) infinite;
}
@-webkit-keyframes rotate
{
	0%   {}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotate
{
	0%   {}
	100% {-moz-transform: rotate(360deg);}
}
@keyframes rotate
{
	0%   {}
	100% {transform: rotate(360deg);}
}
