/*************************************
*                                    *
*   MessageBox2 CSS                  *
*   Avery Brooks - 2006-9            *
*                                    *
*************************************/

.msg_wrapper {
	margin: 0; padding: 0;
}

.msg_background {
	float: left;
	background: #000;
	position: absolute;
	top: 0; left: 0;
	margin: 0; padding: 0;
	width: 100%; height: 100%;
	/** covering all the bases here */
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

.msg_curtain {
	float: left;
	position: absolute; top: 0; left: 0;
	margin: 0; padding: 0;
	width: 100%; height: 100%; 
	background: #000;
	/** covering all the bases here */
	filter:alpha(opacity=99);
	-moz-opacity: 0.99;
	opacity: 0.99;
}

.msg_contents {
	float: left;
	background: #fff;
	position: absolute;
	top: 0; left: 50%;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

	.msg_error {border: 2px solid #a00; padding: 10px;}
	.msg_prompt {border: 2px solid #fa0; padding: 10px;}
		.msg_prompt h3 {color: #d70;}

	.msg_message {border: 2px solid #05f; padding: 10px;}
	.msg_image {border: 0; padding: 0;}
		.imagePreview {
			margin: 10px;
		}

.msg_icon {
	float: right;
	display: block;
	margin: 5px;
}

.msg_contents h3 {
	margin: 5px; padding: 0;
	font: bold 10pt verdana;
}

.msg_contents p {
	margin: 0 5px 5px 5px; padding: 0;
	font: 8pt verdana;
}

.msg_nav_elements {
	clear: both;
	text-align: right;
	border-top: 1px dashed #666;
	padding-top: 5px;
	/* margin: 25px 5px 5px 5px; */
	margin: 5px;
}

.msg_nav_elements p {font-style: italic;}

.msg_button {
	display: inline;
	border: 2px outset #666;
	background-color: #fff;
	color: #000;
	font: 8pt verdana;
	margin: 0; padding: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.msg_button:active { border: 2px inset #aaa; }
.msg_button:focus {	background-color: #f0f0f0; outline: none; } 
.msg_button + .msg_button { margin-left: 5px; }


.msg_button_system {
	font-size: 13px;
	line-height: 20px;
}

