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

.MooDialog {
	position: fixed;
	width: 710px;
	height:600px;
	top: 50%;
	left: 50%;
	margin: -300px 0 0 -360px;
	padding: 5px;
	z-index: 5001;
	

	background: #ffffff;
	color: black;
	border: 1px solid #767676;
	
}

.MooDialog .content div {
	zoom: 1;
}

.MooDialogSmall {
	position: fixed;
	width: 710px;
	min-height:200px;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -360px;
	padding: 5px;
	z-index: 5001;
	

	background: #ffffff;
	color: black;
	border: 1px solid #767676;
	
}

.MooDialogMiddle {
	position: fixed;
	width: 710px;
	height:250px;
	top: 50%;
	left: 50%;
	margin: -125px 0 0 -360px;
	padding: 5px;
	z-index: 5001;
	

	background: #ffffff;
	color: black;
	border: 1px solid #767676;
	
}

.MooDialogTitle {
	padding-top: 30px;
}

.MooDialog .content {
	height:590px;
	overflow-y:auto;
}

.MooDialog .title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 3px 20px;

	background: #b7c4dc;
	border-bottom: 1px solid #767676;
	font-weight: bold;
	color: black;
	
}

.MooDialog .buttons {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	text-align: right;
}

.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 .MooDialogPromt {
	background: url(dialog-question.png) no-repeat;
}

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