/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 9999;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #fff;
	filter:alpha(opacity=40);
	-moz-opacity: 0.4;
	opacity: 0.4;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 0;
	display:none;
	padding: 0px;
}
#popupInner {
	background: #F0F6FD url(/images/box-grad-b.gif) repeat-x 0 0;
	border: 2px solid #333;
	height: 100%;
}
#popupContent {
padding: 15px;
}
#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 9999;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
