/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	/*z-index: 200;*/
	z-index: 1000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=50);

	/*background-color:transparent !important; */
	background-color: #333333;
/*	background-image:none;  */
/*	background-repeat: repeat; */
		
	display:none;
}
#popupContainer {
	position: absolute;
	/*z-index: 201;*/
	z-index: 1001;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border: 2px solid #EDEBDE;
	background-color: #ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	/*z-index: 202;*/
	z-index: 1002;
	overflow: hidden;
}
#popupTitleBar {
	background-color: #ECE8DB;
	color: #ffffff;
	font-weight: bold;
	height: 1em;
	padding: 5px 10px;
	border-bottom: 2px solid #EDEBDE;
	border-top: 1px solid #EDEBDE;
	border-left: 1px solid #EDEBDE;
	border-right: 1px solid #EDEBDE;
	position: relative;
	/*z-index: 203;*/
	z-index: 1003;
}
#popupTitle {
	float:left;
	font-size: 1em;
	color: #82620B;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
