/* Created by Arian Stolwijk <http://www.aryweb.nl> */

.MooDialog {
	position: fixed;
	width: 300px;
	height: 100px;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -150px;
	padding: 10px;
	z-index: 50000;

	background:#D0F1CC;
	color: #194800;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.MooDialogTitle {
	padding-top: 30px;
}

.MooDialog .content {
	height: 80px;
}

.MooDialog .title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 3px 20px;
	background: linear-gradient(180deg, #8CDD92 0%, #34AA37 67%, #58DD6B 97%);
	border: 1px solid #12C82C;
	font-weight: bold;
	font-size:18px;
	text-shadow: 1px 1px 0 #000;
	color: #fff;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
}

.MooDialog .close {
	position: absolute;
	width: 16px;
	height: 16px;
	top: 7px;
	left: 298px;

	background: url(dialog-close.png) no-repeat;
	display: block;
	cursor: pointer;
}

.MooDialog .buttons {
	margin-top: -15px;
	margin-left: -5px;
	padding:0px;
	border: 0;
	background:url(no.gif) no-repeat;
	background-position: center center;
	text-align: right;
	height: 26px;
	
}
.MooDialog .buttons2 {
	margin-top: -15px;
	margin-left: -5px;
	padding:0px;
	border: 0;
	background:url(da.gif) no-repeat;
	background-position: center center;
	text-align: right;
	height: 26px;
	
}
button{
display:none;
}

.MooDialog .iframe {
	width: 100%;
	height: 100%;
}

.MooDialog .textInput {
	width: 200px;
	float: left;
}

.MooDialog .MooDialogAlert,
.MooDialog .MooDialogConfirm,
.MooDialog .MooDialogPrompt,
.MooDialog .MooDialogError {
	padding-left: 40px;
	min-height: 40px;
	background: url(dialog-warning.png) no-repeat;
}

.MooDialog .MooDialogConfirm,
.MooDialog .MooDialogPrompt {
	background: url(dialog-question.png) no-repeat;
}

.MooDialog .MooDialogError {
	background: url(dialog-error.png) no-repeat;
}
