/**
 * 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("images/TranspLayer_maskBG.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;
}
#popupInner {
	border: 0px solid #000000;
	background-color: #ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
/* background: rgb(255,95,3);
background: -moz-linear-gradient(180deg, rgba(255,95,3,1) 66%, rgba(121,44,0,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(255,95,3,1) 66%, rgba(121,44,0,1) 100%);
background: linear-gradient(180deg, rgba(255,95,3,1) 66%, rgba(121,44,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3E5E6F",endColorstr="#792c00",GradientType=1); */
	
	background-color: #3E5E6F;
	
	
	color: #ffffff;
	font-weight: bold;
	height: 45px;
	padding: 0 0 0 0;
	border-bottom: 0px solid #000000;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	position: relative;
	z-index: 203;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
	margin:5px 10px;
}

#redx{
	color:white;
	border:white 2px solid;
	padding: 1px 8px 1px 7px;
	font-size: 16px;
	background-color: red;
	border-radius: 5px;
	margin-left: 2px;
}
