/*
	The styles below were ripped from the Media Modal in WordPress 3.5
	~~ Thanks for building a beautiful Modal UI ( that I could steal )
*/
.iframe_modal {
	position: fixed;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	z-index: 160000;
	font-family: sans-serif;
	font-size: 12px;
}
.iframe_modal .iframe_modal-close {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 40px;
	height: 40px;
	z-index: 1000;
	background: #23282d;

	border-radius: 50%;
	opacity: .8;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}
.iframe_modal .iframe_modal-close:hover {
	border-radius: 50%;
	opacity: 1;
	background: #dd4b39;
}
.iframe_modal .iframe_modal-close span {
	display: block;
	margin: 12px auto 0;
	width: 15px;
	height: 15px;
	background: transparent url(../images/close.png) -2px 0 no-repeat; /* --22px for opposite color */
}
.iframe_modal .iframe_modal-close:hover span {
	background: transparent url(../images/close.png) -2px 0 no-repeat;
}
.iframe_modal .iframe_modal-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	min-height: 300px;
	background: #fff;
}
.iframe_modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 360px;
	background: #000;
	opacity: .7;
	z-index: 159900;
}
#iframe_modal-frame {
	position: relative ;
	padding: 0 ;
	margin: 0 ;
	width: 100%;
	height: 100%;
	overflow: hidden ;
}
.ir {
	background-color: transparent;
	border: 0;
	overflow: hidden;
	/* IE 6/7 fallback */
	*text-indent: -9999px;
}

.ir:before {
	content: "";
	display: block;
	width: 0;
	height: 150%;
}

