.dialog{
	margin-bottom: 10px;
	border-radius: 5px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
	position: fixed;
	width: 430px;
	background-color: #EFEFEF;
	z-index: 999999;
	display: none;
	top: 10%;
	left: 50%;
	margin-left: -215px;
}

.dialog .title{
	background-color: #222222;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 10px;
	color: #FFFFFF;
	font-weight: bold;
	position: relative;
	font-size: 14px;
}

.dialog .title .close{
	background-color: #444444;
	border-radius: 5px;
	cursor: pointer;
	height: 18px;
	line-height: 18px;
	position: absolute;
	right: 10px;
	text-align: center;
	top: 10px;
	width: 18px;
	font-size: 10px;
}

.dialog .content{
	padding: 10px;
}

.dialog .buttons{
	margin-top: 20px;
	text-align: right;
}

.dialog label{
	font-weight: bold;
	margin-bottom: 3px;
	display: block;
}

.dialog input{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 5px;
	width: 100%;
}



