/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	background-color:transparent !important;
	background-color: #333333;
	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */
	background-image: url("Img/ModalMaskBG.png") !important; /* For browsers Moz, Opera, etc.	*/
	/*background-image:none;*/
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display: none;
	padding: 0px;
	justify-content: center;
	align-items:center;
}
#popupInner {
	/*border: 2px solid #6c8ebc;*/
	/*background-color: #ffffff;*/
	/*border-radius: 5px;*/
	/*box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;*/
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height:50vh;
	position: relative;
	z-index: 202;
	display: block; /* Removes trailing space after inline element in Firefox */

}



	#popupTitleBar {
		color: white;
		font-weight: bold;
		text-transform: uppercase;
		height: 65px;
		padding: 0px 20px 0px 20px;
		z-index: 203;
		background: rgba(102,45,131,1);
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
#popupTitle {
	font-size: 18px;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
	font-size:22px;
}