.dialog{
	background:#fff;
	border:2px solid #7eabcd;
	font-size:12px;
	position:absolute;
	padding:1px;
	display:none;
	overflow:hidden;
	-moz-border-radius:5px;
}
.dialog-shadow{
	position:absolute;
	overflow:hidden;
}
.dialog-header{
	background:#7eabcd;
	font-size:12px;
	position:relative;
	height:25px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	text-align:left;
}
.dialog-title{
	color:#fff;
	padding:6px 5px;
	padding-top:4px;
	height:12px;
	font-weight:bold;
}
.dialog-icon{
	width:18px;
	height:18px;
	position:absolute;
	left:2px;
	top:4px;
}
a.dialog-close{
	width:16px;
	height:16px;
	display:block;
	position:absolute;
	right:2px;
	top:4px;
	text-align:right;
	cursor:hand;
	cursor:pointer;
	background:url('images/dialog_tools.gif') no-repeat -16px 0px;
	opacity:0.6;
	filter:alpha(opacity=60);
}
a:hover.dialog-close{
	opacity:1;
	filter:alpha(opacity=100);
}
.dialog-content{
	padding:10px;
	overflow: auto;
	background:#fff url('images/dialog_content_bg.gif') repeat-x;
}
.dialog-button{
	height:30px;
	background:#fafafa;
	padding:5px 0px 0px 0px;
	margin:0px;
	text-align:right;
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
}
.dialog-mask{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	filter:alpha(opacity=40);
	opacity:0.40;
	background:#ccc;
	display:none;
	font-size:1px;
	*zoom:1;
	overflow:hidden;
}
