#modal_wrapper {
	display: none;
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

/* For IE6. */
* html #modal_wrapper {
	position: absolute;
}

#modal_overlay,
#modal_iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

* html #modal_iframe {
	filter: alpha(opacity = 0.1);
}

#modal_overlay {
	background: #000;
	opacity: 0.4;
	filter: alpha(opacity = 40);
}

#modal_window {
	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	border-style: solid;
	border-width: 5px;
	border-color: #bdf;
}

#modal_content {
	overflow: hidden;
}

#modal_content object,
#modal_content embed {
	display: block;
	margin: 0 auto;
}

#modal_content img {
	display: none;
}

#modal_content img.modal_placeholder {
	visibility: hidden;
	width: 100%;
	height: 100px;
}

#modal_image_wrapper img {
	display: block;
	margin: 0 auto;
}

#modal_close {
	background: url(../img/close.gif) no-repeat;
	z-index: 50;
	cursor: default;
	font-size: 0;
	overflow: hidden;
	position: absolute;
	top: 2px;
	right: 2px;
	text-decoration: none;
	text-indent: -9999px;
	width: 28px;
	height: 15px;
}

#modal_close:hover {
	background-position: left bottom;
}

#modal_bar{
	top: -20px;
	color: white;
	padding-left: 10px;
	background-color: #39F;
}

#modal_title{
	color: white;
}