/* Use loadmask to disable the UI with default spinner/loading animation. */
.loadmask {
    z-index: 100;
    position: absolute;
    top:0;
    left:0;
    -moz-opacity: 0.5;
    opacity: .50;
    filter: alpha(opacity=50);
    background-color: #CCC;
    width: 100%;
    height: 100%;
    zoom: 1;
	cursor:wait;
}
.loadmask-message {
    z-index: 20001;
    position: absolute;
    top: 0;
    left: 0;
}
.loadmask-message div {
	width: 220px;
	height: 19px;
    background: transparent url('images/loading.gif') no-repeat;
    color:#222;
    cursor:wait;
}

/* Use blockmask to disable the UI with no spinner/loading animation. */ 
.blockmask {
    z-index: 100;
    position: absolute;
    top:0;
    left:0;
    -moz-opacity: 0.5;
    opacity: .50;
    filter: alpha(opacity=50);
    background-color: #CCC;
    width: 100%;
    height: 100%;
    zoom: 1;
    cursor:default;
}
.blockmask-message {
    z-index: 20001;
    position: absolute;
    top: 0;
    left: 0;
}
.blockmask-message div {
    padding: 1em 2em;
    border: 1px solid;
    background-color:#FFF;
    cursor:default;
}

.masked {
    overflow: hidden !important;
}
.masked-relative {
    position: relative !important;
}
.masked-hidden {
    visibility: hidden !important;
}