div.mask{
  display:none;
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color:rgb(240,240,240);
  background-color:rgba(255,255,255,.7);
  z-index:9999999999999998;
}

div#mask2{
	
	z-index:2000;
}

div#alert{
  display:none;
  position:fixed;
  top:10%;
  left:50%;
  width:400px;
  margin-left:-220px;
  z-index:99999999;
  font-family:arial,sans-serif;
  
  background: -webkit-linear-gradient(#ececec, #f5f5f5); 
  background: -o-linear-gradient(#ececec, #f5f5f5); 
  background: -moz-linear-gradient(#ececec, #f5f5f5); 
  background: linear-gradient(#ececec, #f5f5f5);  
  
  -webkit-box-shadow: 0px 0px 8px #aaa;
  -o-box-shadow: 0px 0px 8px #aaa;
  -moz-box-shadow: 0px 0px 8px #aaa;
  box-shadow: 0px 0px 8px #aaa;
  
  padding:20px;

}



div#alert .message {
	line-height:1.3em;
	font-weight:bold;
	padding-bottom:30px;
}

div#alert .toolbar{
	
	text-align:right;
}

div#alert button{
	padding:5px 10px;
	margin-left:15px;
	border:none;
	border-radius:4px;
	box-shadow:2px 2px 2px #00000044;
	font-size:16px;
	cursor:pointer;
}

div#alert button.positive{
	
	background-color: #4ea688;
	color:#fff;
}

div#alert button.negative{
	
	background-color:#c00;
	color:#fff;
}

div#alert button label{
	cursor:pointer;
}

div#popup-iframe{
  display:none;
  position:fixed;
  top:4%;
  bottom:4%;
  left:4%;
  right:4%;
  z-index:9999999999999999;
  
   background-color:#fff;
  
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  
  -webkit-box-shadow: 0px 0px 8px #aaa;
  -o-box-shadow: 0px 0px 8px #aaa;
  -moz-box-shadow: 0px 0px 8px #aaa;
  box-shadow: 0px 0px 8px #aaa;
  
  padding:0px;

}

div#popup-iframe iframe{
  border:none;
  margin:1%;
  width:98%;
  height:98%;
  overflow-y:auto;
}

div#hidden-iframe{
  display:none;
}

.close-dialog{
  position:absolute;
  right:-10px;
  top:-10px;
  width:24px;
  height:24px;
  background-color:#900;
  color:#fff;
  font-size:12px;
  line-height:24px;
  text-align:center;
  cursor:pointer;
  -webkit-border-radius:12px;
  -moz-border-radius:12px;
  -ms-border-radius:12px;
  border-radius:12px;
}

#loading{
	display:none;
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-image:url(../images/ellipsis.gif);
	background-repeat:no-repeat;
	background-position:center center;
	z-index:9999999999999999;
}