div#modal_area{
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	
	width: 100%;
	height: 100%;

	/*IE6*/
	_position: absolute;
	_top: expression((documentElement.scrollTop || document.body.scrollTop) + 0 + 'px');
	_left: expression((documentElement.scrollLeft || document.body.scrollLeft) + 0 + 'px');
	_height: expression((documentElement.clientHeight || document.body.clientHeight) + 0 + 'px');
	
	display: none;
}
div#modal_mask{
	width: 100%;
	height:100%;
	background: #000000;
	cursor: pointer;
	-ms-filter: "alpha( opacity=60 )";
	filter: alpha( opacity=60 );
	-moz-opacity: 0.6; 
	opacity: 0.6;
}
div#modal_win{
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: #ffffff;
	border: solid 2px #ffffff;
	border-radius:			4px;
	-moz-border-radius:		4px;
	-webkit-border-radius:	4px;
	behavior: url(/movie/common/css/PIE.htc);
}
div#modal_close{
	position: absolute;
	top: -32px;
	right: -6px;
	width: 102px;
	height: 30px;
	cursor: pointer;
	background-image: url(../img/modal_close.png);
	background-position: 0 0;
	background-repeat: no-repeat;
}
div#modal_close:hover{
	background-position: 0 -30px;
}
iframe#modal_iframe{
	position: relative;
	background: #ffffff;
}

a.zoom{
}

div.zoom_btn{
	position:absolute;
	right:0;
	bottom:0;
	color: #fff;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background-image: url(../img/modal_zoom_off.png);
	background-position: right bottom;
	background-repeat: no-repeat;
}
div.zoom_btn:hover{
	background-image: url(../img/modal_zoom_on.png);
}
div#modal_image{
	position: relative;
	background: #fff;
	width: 100%;
	height: 100%;
	overflow: auto;
}

div#modal_image_inner{
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
/*印刷禁止*/
@media print{
	div#modal_image_inner{
		display: none;
	}
}

div#modal_image img{
	/*margin: 10px;*/
}
div#modal_youtube{
	position: relative;
	background: #fff;
	width: 100%;
	height: 100%;
	overflow: auto;
}
div#modal_div{
	position: relative;
	background: #fff;
	width: 100%;
	height: 100%;
	overflow: auto;
}