@charset "utf-8";

/* エラーダイアログ */


/* the overlayed element */
.simple_overlay {

/* must be initially hidden */
	display:none;

/* place overlay on top of other elements */
	z-index:10000;

/* styling */
	background-color:#f0f0f0;
	text-align: left;

	width: 665px; 
	min-height: 60px;
	padding: 10px;
	border:1px solid #afafaf;

/* CSS3 styling for latest browsers */
	-moz-box-shadow: 0px 0px 5px #666666;
	-webkit-box-shadow: 0px 0px 5px #666666;
	box-shadow: 0px 0px 5px #666666;
}

.simple_overlay h2 {
	font-size: 14px;
	color: #c00000;
	line-height: 1.0;
	text-align: left;
	font-weight: 900;
	margin-bottom: 5px;
}


/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image: url(../image/btn_error_close.png);
	position: absolute;
	top: -1px;
	right: -1px;
	cursor: pointer;
	width: 30px;
	height: 15px;
}

