#dialog-mask {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	width: 100%;
	/*background: #000;
		opacity: .75;
		filter: alpha(opacity=75);*/
	background: transparent url(../images/dialog/overlay_bg.png) top left repeat;
	z-index: 100;
}
#dialog {
	position: absolute; 
	width: 425px; 
	padding: 10px; 
	z-index: 200; 
	background: transparent url(../images/dialog/dialog_bg.png) top left repeat;
}
#dialog-header {
	display: block; 
	position: relative; 
	width: 407px; 
	padding: 3px 8px 7px; 
	height: 14px; 
	font-size: 14px; 
	font-weight:bold;
}
#dialog-title {
	float: left;
	font-weight: bold;
}
#dialog-close {
	float: right;
	cursor: pointer; 
	margin: 3px 3px 0 0; 
	height: 11px; 
	width: 11px; 
	background:url(../images/dialog/dialog_close.gif) no-repeat;
}
#dialog-content {
	display: block;
	padding: 8px;
	color: #666;
	font-size: 13px;
	overflow: auto;
}
	#dialog-content.error {background: #fff url(../images/dialog/error_bg.jpg) bottom right no-repeat; border: 1px solid #924949; border-top: none}
	#dialog-header.errorheader {background:url(../images/dialog/error_header.gif) repeat-x; color:#6f2c2c; border:1px solid #924949; border-bottom:none}
	#dialog-content.warning {background:#fff url(../images/dialog/warning_bg.jpg) bottom right no-repeat; border:1px solid #c5a524; border-top:none}
	#dialog-header.warningheader {background:url(../images/dialog/warning_header.gif) repeat-x; color:#957c17; border:1px solid #c5a524; border-bottom:none}
	#dialog-content.success {background:#fff url(../images/dialog/success_bg.jpg) bottom right no-repeat; border:1px solid #60a174; border-top:none}
	#dialog-header.successheader {background:url(../images/dialog/success_header.gif) repeat-x; color:#3c7f51; border:1px solid #60a174; border-bottom:none}
	#dialog-content.prompt {background:#fff url(../images/dialog/prompt_bg.jpg) bottom right no-repeat; border:1px solid #4f6d81; border-top:none}
	#dialog-header.promptheader {background:url(../images/dialog/prompt_header.gif) repeat-x; color:#355468; border:1px solid #4f6d81; border-bottom:none}
	
	#dialog-content.fullscreen {background: #fff; border: 1px solid #4f6d81; border-top: none;}
	#dialog-header.fullscreenheader {background:url(../images/dialog/prompt_header.gif) repeat-x; color:#355468; border:1px solid #4f6d81; border-bottom:none}
	
	#dialog-content p {
		padding-bottom: 1em;
	}
	#dialog-content textarea {
		width: 99%;
		height: 55px;
	}
	#dialog-content textarea.error {
		border: 1px solid red;
	}
	#dialog-content div.button {
		clear: both;
		float: none;
		height: 30px;
		display: block;
	}
	#dialog-content em {
		color: red;
	}
	#dialog-content label {
		float: none;
		font-weight: normal;
		margin: 0;
		display: inline;
		border: 0 none;
		color: #666;
		width: auto;
	}
	#dialog-content p.error, #dialog-content div.error {
		color: red;
	}
