#jquery-msg-bg {
  -moz-opacity: 0.01;
  -khtml-opacity: 0.01;
  opacity: 0.01;
  filter: alpha(opacity=1);
  background: black;
}

.jquery-msg-content {
  -webkit-background-clip: padding-box;
  padding: 0px;
}

.jquery-msg-content img {
	vertical-align: middle;
}

.helperMiddleCenter {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.black-on-white .jquery-msg-content {
  background: white;
  color: #333333;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: 5px 5px 30px 0 black;
  -moz-box-shadow: 5px 5px 30px 0 black;
  box-shadow: 5px 5px 30px 0 black;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -khtml-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  /* ie fix
  -pie-lazy-init: true;
  behavior: url(PIE.htc); */
}

.white-on-black .jquery-msg-content {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  filter: alpha(opacity=50);
  background: black;
  color: white;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -khtml-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  /* ie fix */
  -pie-lazy-init: true;
  behavior: url(PIE.htc);
}

/*///////see http://jsfiddle.net/j65VA/2  /////////*/
.loading {
	border-bottom: 6px solid rgba(8, 64, 87, .1);
	border-left: 6px solid rgba(8, 64, 87, .1);
	border-right: 6px solid rgba(8, 64, 87, .1);
	border-top: 6px solid rgba(8, 64, 87, .4);
	border-radius: 100%;
	height: 25px;
	width: 25px;
-webkit-animation: rot .6s infinite linear;
   -moz-animation: rot .6s infinite linear;
    -ms-animation: rot .6s infinite linear;
     -o-animation: rot .6s infinite linear;
	animation: rot .6s infinite linear;
}

@-webkit-keyframes rot {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(359deg);}
}

@-moz-keyframes rot {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(359deg);}
}

@-ms-keyframes rot {
	from {-ms-transform: rotate(0deg);}
	to {-ms-transform: rotate(359deg);}
}

@-o-keyframes rot {
	from {-o-transform: rotate(0deg);}
	to {-o-transform: rotate(359deg);}
}

@keyframes rot {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}