#alertLayers {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:100000;
}

#alertLayers_backarea {
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:#000;
  opacity:0.4;
  filter:alpha(opacity=40);
  z-index:100001;
}

.alertLayer {
  line-height:20px;
  position:absolute;
/*  
  top:10%;
  border:1px solid #999;
  border-radius:6px;
*/  
  box-shadow:0px 3px 7px rgba(0,0,0,0.3);
  background:#fff;
  width:500px;
  margin:0 0 0 -250px;
  z-index:100002;
  
  border:0px; 
  top:45%; 
  left:50%;  
  margin-top:-80px; 
  padding:20px; 
  border-radius:30px;   
}

.alertLayer_body {
  padding:25px 15px 15px 15px;
  border-radius:6px 6px 0 0;
  min-height:30px;
  border-bottom:1px solid #ddd;
  border:0px; 
  margin:0 0 1px 0;
  text-align:center;
  font-size:16px;
  vertical-align:center;
  color:#333;
}

.alertLayer_foot {
  padding:7px;
  background:#eee;
  border-radius:0 0 6px 6px;
  position:relative;
  font-size:16px;
}

.alertLayer_header {
  padding:7px;
  background:#f5f5f5;
  border-radius:6px 6px 0 0 ;
  position:relative;
  height:30px; /* btn_confirm */
}

.alertLayer_close {
	position:relative; 
	white-space:nowrap;
	cursor:pointer;
	overflow:hidden;
	text-align:center;
	width:100%; 
	padding:10px 0px;
}


@media only screen and (max-width:800px){
	.alertLayer { width:90%; left:5%; top:40%; margin:0px; }
}