@charset "utf-8";

.mb_overlay {
	position:fixed; 
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	opacity:0.5;
	filter:alpha(opacity=50);
	z-index:200;
}

.mb_modal {
	position:absolute;
	background:rgba(0,0,0,0.2);
	border-radius:5px;
	padding:8px;
	z-index:201;
}

.mb_content {
	border-radius:5px;
	background:#fff;
	padding:5px;
	overflow:auto;
	z-index:202;
}

.mb_close {
	position:absolute;
	background:url(../img/mb_close.png) 0 0 no-repeat;
	width:24px;
	height:27px;
	display:block;
	text-indent:-9999px;
	top:-7px;
	right:-7px;
	z-index:203;
}