/* `Modal
----------------------------------------------------------------------------------------------------*/

#modal_wrapper_n {
	display: none;
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

/* For IE6. */
* html #modal_wrapper_n {
	position: absolute;
}

#modal_overlay_n,
#modal_iframe_n {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

* html #modal_iframe_n {
	filter: alpha(opacity = 0.1);
}

#modal_overlay_n {
	background: #000;
	opacity: 0.4;
	filter: alpha(opacity = 40);
	cursor: pointer;
}

#modal_window_n {
	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9998;
}

#modal_window_n {
	background: #fff;
	border: 0px solid #000;
	/*
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	*/
}

#modal_content_n {
	overflow: hidden;
}

#modal_content_n object,
#modal_content_n embed {
	display: block;
	margin: 0 auto;
}

#modal_content_n img {
	display: none;
}

#modal_content_n img.modal_placeholder {
	visibility: hidden;
	width: 100%;
	height: 100px;
}

#modal_image_wrapper_n img {
	display: block;
	margin: 0 auto;
}