/*<モーダルウインドウ>*/
/*背面の黒い画面*/
#outer_black {
	/*全画面サイズ・配置*/
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #111111;
	/*はみ出した部分は隠す*/
	overflow: hidden;
	/*透明処理*/
	filter: alpha(opacity=90);	/*IE用*/
	opacity: 0.9;				/*IE以外用*/
	/*上に重ねる設定*/
	position: fixed;
	z-index: 1;
	/*非表示設定*/
	display: none;
}

/*前面の白い画面*/
#inner_white {
	/*横幅と左端の設定*/
	left: 50%;				/*左上点を左右中央に移動*/
	width: 800px;
	margin-left: -400px;	/*widthの半分を戻す*/
	/*高さと上端の設定*/
	top: 50%;				/*左上点を上下中央に移動*/
	height: 600px;
	margin-top: -300px;	/*heightの半分を戻す*/
	/*枠内余白・背景色の指定*/
	padding: 5px;
	background: #FFFFFF;
	/*上に重ねる設定*/
	position: fixed;
	z-index: 2;
	/*非表示設定*/
	display: none;
}

/*白い画面内のテキストエリア*/
#inner_white iframe{
	width:795px;
	height:595px;
	/*非表示設定*/
	display: none;
}
.hiddenImg{
	display: none;
}
/*</モーダルウインドウ>*/