#dialog
{
	position: fixed;
	width: 525px;
	padding: 0px;
	z-index: 200;
	background: #fff;
	font-family: Verdana, Arial, Helvetica;
	font-size: 14px;
	border-radius: 10px;
}
#dialog-header {
	display: flex;
	position: relative;
	padding: 3px 6px 7px;
	height: 30px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border-radius: 10px 10px 0 0;
	align-content:center;
	justify-content:center;
	align-items:baseline;
}
#dialog-title
{
	justify-self:center;
	text-align: center;
}
#dialog-close {
	position: absolute;
	cursor: pointer;
	margin: 3px 3px 0 0;
	height: 11px;
	width: 11px;
	right: 5px;
	top: 5px;
	background: url(../img/jquery.modaldialog/close.gif) no-repeat;
}
#dialog-content {
	display:block;
	padding: 6px;
	min-height: 160px;
	color: #666666;
	font-size: 16px;
	border-radius: 0px 0px 10px 10px;
}
#dialog-content-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 128px;
}
#dialog-mask
{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #000;
	opacity: .60; /*COR/OPACIDADE BACKGROUND*/

	z-index: 100;
}
#dialog-button-container
{
	text-align: center;
	margin: 2px 6px 6px 2px;
}
#dialog-button {
	font-weight: bold;
	font-family: Arial, sans-serif;
	font-size: 16px;
	padding: 2px 5px 2px 5px;
	width: 100px;
	height: 30px;
	border-radius: 5px;
}
.error
{
	/*background: #fff url(../img/jquery.modaldialog/e_bg.jpg) bottom right no-repeat;*/
	border: 1px solid #924949;
	border-top: none;
}
.errorheader {
	/*background: url(../img/jquery.modaldialog/e_hd.gif) repeat-x;*/
	height:30px;
	background-color: #ff6d6d;
	color: #fff;
	/*border: 1px solid #924949;*/
}
.errorbutton {
	background-color: #ff6d6d;
	border: 1px solid #ff6d6d;
	color: #fff;
}
.warning
{
	background: #fff url(../img/jquery.modaldialog/w_bg.jpg) bottom right no-repeat;
	border: 1px solid #c5a524;
	border-top: none;
}
.warningheader {
	background-color: #eFcC47;
	color: #fff;
	border: 1px solid #eFcC47;
	border-bottom: none;
}
.warningbutton {
	background-color: #eFcC47;
	border: 1px solid #eFcC47;
	color: #fff;
}
.success
{
	background: #fff url(../img/jquery.modaldialog/s_bg.jpg) bottom right no-repeat;
	border: 1px solid #60a174;
	border-top: none;
}
.successheader {
	background-color: #8cd100;
	color: #fff;
	border: 1px solid #8cd100;
	border-bottom: none;
}
.successbutton {
	background-color: #8cd100;
	color: #fff;
}
.prompt
{
	background: #fff url(../img/jquery.modaldialog/p_bg.jpg) bottom right no-repeat;
	border: 1px solid #4f6d81;
	border-top: none;
}
.promptheader {
	color: #355468;
	border: 1px solid #4f6d81;
	border-bottom: none;
}
.promptbutton
{
	background-color: #4F6D81;
	color: #fff;
}
