/* フレーム */
#dialog_frame {
	position: fixed;
	/* IE6 */
	_position: absolute;
	_top: expression(eval(document.documentElement.scrollTop+0));
	/* -- */
	width: 300px;
	border-top: 1px solid #eeeeee;
	border-left: 1px solid #eeeeee;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	padding: 0px 0px 0px 0px;
}
/* タイトルバー */
#dialog_titlebar {
	font-size: small;
	background-color: #ffffff;
	color: #ffffff;
	margin: 0px;
	padding-top: 3px;
	padding-right: 12px;
	padding-left: 12px;
	padding-bottom: 0px;
	height: 20px;
	background-image: url(titlebar_bg.gif);
	background-repeat: repeat-x;
	cursor: move;
}
/* メッセージ領域 */
#dialog_msgarea {
	font-size: small;
	color: #4c4c4c;
	background-color: #ffffff;
	margin: 0px;
	padding: 12px;
}
/* ボタン領域 */
#dialog_btnarea {
	font-size: small;
	background-color: #dddddd;
	color: #4c4c4c;
	margin: 0px;
	padding-top: 8px;
	padding-bottom: 0px;
	height: 32px;
	text-align: center;
	background-image: url(btnarea_bg.gif);
	background-repeat: repeat-x;
}
/* ボタン */
#dialog_btnarea .btn {
	margin-left: 6px;
	margin-right: 6px;
}
/* シャドー・マスク */
#dialog_shadow {
	position: fixed;
	left: 0px;
	top: 0px;
	/* IE6 */
	_position: absolute;
	_top: expression(eval(document.documentElement.scrollTop+0));
	/* -- */
	background-color: #000000;
	cursor: wait;
	filter: alpha(opacity=60);  /* Internet Explorer用 */
	-moz-opacity: 0.6;          /* FireFox用 */
	opacity: 0.6;               /* Safari用 */
}
