#dialogoverlay {
	display: none;
	opacity: .8;
	position: fixed;
	top: 0px;
	left: 0px;
	background: #FFF;
	width: 100%;
	height: 150%;
	z-index: 20;
}

#dialogbox {
	display: none;
	position: fixed;
	background: #000;
	border-radius: 7px;
	width: 500px;
	left: 50%;
	margin-left: -250px;
	margin-top: 100px;
	z-index: 20;
	text-align: center;
}
@media screen and ( max-width: 550px) {
	#dialogbox {
		width: 90%;
		left: 0px;
		margin-left: 20px;
		margin-right: 20px;
	}

}
@media screen and ( max-width: 360px) {
	#dialogbox {
		margin-left: 15px;
	}

}
#dialogbox > div {
	background: #FFF;
	margin: 0px;
}
#dialogbox > div >#dialogboxbody {
	background-color: white;
	padding: 20px;
	color: #4A0320;
	border-top: 4px solid #4A0320;
	border-left: 4px solid #4A0320;
	border-right: 4px solid #4A0320;
	font-size: 200%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#dialogbox > div >#dialogboxfoot {
	background-color: white;
	border-bottom: 4px solid #4A0320;
	border-left: 4px solid #4A0320;
	border-right: 4px solid #4A0320;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.alert-btn {
	margin: 0px;
	margin-bottom: 20px;
}