/*定义使用图标文字对应的字体*/
/*支持css3渐变，filter需重写*/
/*css3样式*/
/*外阴影样式*/
/*内阴影样式*/
/*阴影样式*/
/*文字阴影样式*/
/*盒模型设置*/
/*圆角样式*/
.dialog {
  position: fixed;
  box-sizing: border-box;
  z-index: 999;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  color: #404040;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border:1px solid #ddd\9;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}
.dialog > h3 {
  position: relative;
  margin: 1px;
  width: auto;
  height: 35px;
  color: #333333;
  background: transparent;
  line-height: 35px;
  padding-left: 15px;
  background-image: -webkit-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
  background-image: -moz-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
  background-image: -ms-linear-gradient(top, #f8f8f8, #e8e8e8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#e8e8e8', GradientType=0);
  font-size: 14px;
  font-weight: 900;
  font-family: "Arial";
  font-style: normal;
  border-bottom: 1px solid #cccccc;
}
.dialog > h3 s {
  position: absolute;
  width:16px;
  height:16px;
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  text-decoration:none;
  font-size: 12px;
  font-weight: 100;
  font-family: "Arial";
  background:url(../images/delete.png) no-repeat;
  font-style: normal;
  cursor: pointer;
  opacity:0.7;
}
.dialog > h3 s:hover {
  opacity:1;
}
.dialog .dlg_btn {
 /** position:absolute;**/
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 1px;
  width: auto;
  height: 35px;
  color: #333333;
  background: #f5f5f5;
  padding-top:5px;
  padding-right: 5px;
  border-top: 1px solid #dddddd;
  box-shadow: inset 0 1px 0 #ffffff;
  text-align: right;
  border-radius: 0 0 6px 6px;
}
.dialog .dlg_btn button {
  display: inline-block;
  margin-right:5px;
  padding: 4px 12px!important;
}
.dialog.drag h3 {
  cursor: move;
}
.dlg_mask {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  color: #333333;
  background: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity:0.2;
  filter:alpha(opacity=20);
}
.dlg_content{
	overflow:auto;
}
.dlg_content > p {
  padding: 10px 20px;
  min-width: 140px;
}
.dlg_content > ul{
	width:80%;
	padding: 10px 20px;
	margin:0 auto;
}

.dlg_content > ul > li{
	list-style:none;
	line-height:30px;
	font-size:14px;
}
.dlg_content > p.alert-info{
	width:95%;
	margin:15px auto;
	color: #3a87ad;
	background-color: #d9edf7;
	border:1px solid #bce8f1;
	padding: 14px 35px 14px 14px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	border-radius:4px;
}
.dlg_content > p.warn{
	/** width:160px;**/
	margin:15px auto;
	/**color: #b94a48; **/
	/**background-color: #f2dede;**/
	/**border:1px solid #eed3d7;**/
	/** padding: 14px 35px 14px 14px; **/
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	text-align: center;
	border-radius:4px;
	font-size:14px;
}
.dlg_content > p.success{
	width:160px;
	margin:15px auto;
	color: #468847;
	background-color: #dff0d8;
	border:1px solid #d6e9c6;
	padding: 14px 35px 14px 14px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	border-radius:4px;
}
/*告警框样式*/
#alert{
	position:absolute;
	left:50%;
	top:50%;
	margin-left:-120px;
	margin-top:-53px;
	width:240px;
	height:105px;
	background:#fff;
	padding:1px;
	border:1px solid #8ea4c1;
	border-radius:2px;
	box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);
	z-index: 1003;
}
#alert > div{
	height:105px;
	background:#ccd9e8;
}

#alert > div h3{
	position:relative;
	font-size:12px;
	color:#15428b;
	padding:5px;
}

#alert > div h3.drag{
	cursor:move;
}

#alert > div h3 s{
	display:block;
	position:absolute;
	right:6px;
	top:3px;
	width:15px;
	height:15px;
	background:url(../images/tool-sprites.gif);
	cursor:pointer;
}
#alert > div p{
	margin-left:20px;
	padding:10px 50px;	
}

#alert > div p.warn{
	background:url(../images/icon-warning.gif) no-repeat;
}

#alert > div p.success{
	padding:10px 20px;
}

#alert button{
	position:absolute;
	width:75px;
	height:22px;
	bottom:10px;
	left:80px;
	background:url(../images/btn.png) no-repeat;
	border:none;
	cursor:pointer;
}

#mask_alert{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	background:url(../images/ui-bg_flat_0_aaaaaa_40x100.png) repeat;
	opacity:0.3;
	filter:alpha(opacity=30);
	z-index: 1001;
}
#attenWrap > div.dlg_content, #warnWrap > div.dlg_content, #errorWrap > div.dlg_content,#successWrap > div.dlg_content{
	margin:6px auto;
	width:180px;
	line-height:38px;
	height:40px;
	text-align:center;
	border-radius:4px;
}
#attenWrap > div.dlg_content{	
	color: #3a87ad;
	background-color: #d9edf7;
	border: 1px solid #bce8f1;
}
#warnWrap > div.dlg_content{	
	color: #c09853;
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
}
#errorWrap > div.dlg_content{	
	color: #b94a48;
	background-color: #f2dede;
	border: 1px solid #eed3d7;
}
#successWrap > div.dlg_content{	
	color: #468847;
	background-color: #dff0d8;
	border:1px solid  #d6e9c6;
}
.mask{
	position:fixed;
	z-index:998;
	width:100%;
	height:100%;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:rgba(0,0,0,.2);
}