/**
 * POPUP CONTAINER STYLES
 */
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	border-radius: 10px;        
	overflow: hidden;
}

#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .6;
	background-color: #000000;
	background-image:none;
	background-repeat: repeat;
	display:none;
}

#popupInner {
	border: 2px solid #a49e9e;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
	background-color: #a49e9e;
	color: #000000;
	font-weight: bold;
	height: 1.9em;
	padding: 0px;
	border-bottom: 1px solid #a49e9e;
	border-top: 1px solid #a49e9e;
	border-left: 1px solid #a49e9e;
	border-right: 1px solid #a49e9e;
	position: relative;
	z-index: 203;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
