
/*
 * dialogs.css
 */

.dlg_overlay {
	background-color: #777777;
	display: none;
	position: fixed;
	opacity: 0.5;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
}

.dlg_wrapper {
	color: #303030;
	background-color: #E0E0E0;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #808080;
}

.dlg_caption {
	cursor: default;
	color: #FFFFFF;
	background-color: #808080;
	padding: 5px;
	font-weight: bold;
}

.dlg_content {
	float: left;
	padding: 10px 5px;
}
.dlg_buttons {
	clear: both;
	float: right;
	padding: 5px;
}

.dlg_button {
	cursor: default;
	background-color: #F0F0F0;
	display: inline-block;
	padding: 5px;
	margin-left: 5px;
	border-radius: 5px;
	border: 1px solid #808080;
	text-align: center;
	min-width: 70px;
}

.dlg_button:hover {
	background-color: #FFFFFF;
}

.dlg_button_close {
	background-image: url(../bilder/ui/messagebox_close.png);
	width: 12px;
	height: 12px;
	float: right;
}

.msgbox_icon_critical_64 {
	background-image: url(../bilder/ui/messagebox_critical_64.png);
	width: 64px;
	height: 64px;
	float: left;
}

.msgbox_icon_warning_64 {
	background-image: url(../bilder/ui/messagebox_warning_64.png);
	width: 64px;
	height: 64px;
	float: left;
}

.msgbox_icon_info_64 {
	background-image: url(../bilder/ui/messagebox_info_64.png);
	width: 64px;
	height: 64px;
	float: left;
}

.msgbox_wrapper {
	float: left;
}

.msgbox_content {
	margin-left: 10px;
	float: left;
}
