.loadmask {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    -moz-opacity: 0.9;
    opacity: .90;
    filter: alpha(opacity=90);
    background-color: #FFF;
    width: 100%;
    height: 100%;
    zoom: 1;
    border-radius: 3px 3px 3px 3px;
    box-sizing: border-box;
}
.loadmask-msg {
    z-index: 20001;
    position: absolute;
    top: 0;
    left: 0;
    padding:2px;
}
.loadmask-msg div {
    border :0px solid #a3bad9;
    color: #000000;
    font: bold 12px tahoma, arial, helvetica, sans-serif;
    cursor: wait;
}
.loadmask-msg div:before {
    font-family: "icomoon";
    content: "\e994";
    margin-right: 10px;
    border: 0px;
    padding: 0px;
    transition: all 0.3s ease 0s;
    display: inline-block;
    animation: anim-rotate 1s infinite linear;
    filter: blur(0);
    font-size: 22px;
    color: #9398a2;
}
div.loadmask-img {
    background: url('../../fe/img/img_loading.gif') no-repeat center center;
    border: 0px solid #a3bad9;
    float: left;
    cursor: wait;
    height: 16px;
    margin-right: 10px;
    margin-top: 15px;
    width: 16px;
    display: none;
}
span.loadmask-img {
    cursor: wait;
    display: none;
}

button::-moz-focus-inner {
  border: 0;
}

.masked-relative { position: relative !important; }
.masked-hidden { visibility: hidden !important; }