.dialogModel {
	width:100%;
	height:100%;
	position: fixed;
	z-index:999999;
	background-color:rgba(0,0,0,0.3);
}
.dialogBox{
	border-radius: 3px;
	width:500px;
	height:200px;
	border:1px solid rgba(204,204,204,0.3);
	background:rgba(255,255,255,1);
	
	outline:none;
	z-index:9999999;
}
.dialogTopo{
	width:100%; height:35px;
	position:relative;
	background:#333333;
	overflow:hidden;
}
.dialogTopo span{
	width: auto; height:35px;
	color:#FFF;
	font-size:14px;
	text-transform:uppercase;
	line-height:35px;
	text-align:left;
	vertical-align:middle;
	margin-left:15px;
}

.fechaDialog{
	width:35px; height:35px;
	float: right;
	
}
.fechaDialog {
	width:35px; height:35px;
	display:block;
	outline:none;
	line-height:35px;
	background-image:url(../Imgs/Icones/xb.png);
	background-repeat:no-repeat;
	background-color:transparent;
	background-position:top;
}
.fechaDialog:hover {
	cursor: pointer;
	background-color: rgba(0,102,255,1);
	background-position: bottom;
}
.fechaDialog:focus {
	background-color: rgba(102,102,102,1);
}
.dialogConteudo{
	display: table-cell;
	width:500px; height:120px;
	text-align:center;
	vertical-align:middle;
	line-height:26px;
}
.dialogBotoes{
	position:absolute;
	width:100%; height:40px;
	text-align:center;
	bottom:0px;
	
}
.dialogBotoes{
	position:absolute;
	width:100%; height:40px;
	text-align:center;
	bottom:0px;
	
}
.dialogBotoes button {
	width:auto;
	border:1px solid transparent;
	background: #2692FF;
	color:#FFF;
	outline:none;
	min-width:100px;
	height: 30px;
	margin:0px 15px 0px 15px;
	cursor:pointer;
}
.dialogBotoes button:focus {
	box-shadow:0px 0px 6px rgba(38,146,255,0.7);
	text-shadow:0px 0px 4px rgba(255,255,255,0.5);
}
.dialogBotoes button:active {
	text-shadow:0px 0px 4px rgba(255,255,255,1);
	border:1px solid #D2E9FF;
	box-shadow:0px 0px 6px rgba(38,146,255,0.7);
}