/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	background-color: #444;
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}

#popupInner {
	border: 1px solid #d2d2d1;
	border-radius: 10px;
	box-shadow: 0 0 10px #666;
	-ms-box-shadow: 0 0 10px #666;
	-webkit-box-shadow: 0 0 10px #666;
	-moz-box-shadow: 0 0 10px #666;
	overflow:hidden;
	background:#fff;
	
 
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
	color: white;
	padding: 5px;
	
	border-radius: 0px;
	border:0px solid #666;
	
	position: relative;
	z-index: 203;
	text-align:center
	
	
}
#popupTitle {
	float:left;
	font-size: 15px;
	text-align:center
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}