/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
    top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
    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: #333;
	/* 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("maskBG.png") !important; /* For browsers Moz, Opera, etc.*/
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	background-color: #fff;
	border: 2px #e4ddc0 solid;	
	display: none;
	padding: 23px 35px 10px;
	position: absolute;
	top: 0;
	left: 0;	
	z-index: 201;
}
#popupInner {
    background-color: #fff;    
}
#popupInner div.popupInnerCloseButton{
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 100%;
}
#popupInner div.popupInnerCloseButton a{
	border: none;
	color: #414042;
	font-size: 9px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	text-decoration: underline;
	outline: none;
}
#popupInner div.popupInnerCloseButton a.closeIcon{
	position: relative;
	left: 2px;
	top: 4px;
    text-decoration: none;    
}
#popupFrame {
	margin: 0;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
