/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 2000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	background-color: #333333;
// For browsers Moz, Opera, etc.
	background-image:none;
	display:none;
	background: transparent url(/imageassets/maskBG.png) repeat;
}
#popupContainer {
	position: absolute;
	z-index: 2001;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	background-color:#fff;
}
#popupInner {
	border: none;
	background-color: none;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2002;
}
#popupTitleBar {
	height: 30px;
	background-color:#fff;
	position: relative;
	z-index: 2003;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
#popCloseBox {
	position: relative;
	right: 5px;
	top: 5px;
}