.dialog-modal-box{
	position: fixed;
	left: 0px;
	top: 0px;	
	width: 100%;
	height: 100%;
	background: #000000;
	z-index: 500;
	opacity: 0.3;	
	filter: alpha(opacity = 30);
}

.dialog-box{
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1000;
	background: #FFFFFF;
	border-radius: 5px;
	box-shadow: 0 0 3px #000;	
	
}

.dialog-title-row{
	position: relative;
	background: #eaeaea;
	height: 36px;
	border-bottom: 1px solid #c9c9c9;
	border-radius: 5px 5px 0 0;
}

.dialog-title{
	position: absolute;
	top: 50%;
	left: 10px;
	right: 100px;
	height: 20px;
	line-height: 20px;
	margin-top: -10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
	font-size: 16px;
	font-weight: 700;
	color: #4c4c4c;
}

.dialog-button-close{
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: url(img/close.png) no-repeat center 4px;
}

.dialog-content{
	padding: 20px;
 	background: #FFFFFF;
 	border-top: 1px solid #eeeeee;
 	border-radius: 0 0 5px 5px;	
}