/**
 * POPUP CONTAINER STYLES
 */
#ppopupMask {
	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("maskBG.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#ppopupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#ppopupInner {
	/*border: 2px solid #000000;
	background-color: #ffffff;*/
}

#ppopupFrame {
	margin: 0px;
	width: 95%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#ppopupTitleBar {
	/*background-color: #ffffff;*/
	color: #ffffff;
	font-weight: bold;
	height: 5px;
	/*padding-right: 20px;*/
	
	border: 0px solid #ffffff;
	/*border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;*/
	position: relative;
	z-index: 203;
	/*background-image:url(premiumtitlebg.png)*/
	background-image:none;
}
#ppopupTitleBar div
{
padding-right:22px;	
padding-bottom:0px;
padding-top:2px;
}
#ppopupTitle {
	float:left;
	font-size: 1.1em;
}
#ppopupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
/* ----------- */

#ppopupInner .b {
  background:url(b.gif);
}

#ppopupInner .tl {
  background:url(tl.gif);
}

#ppopupInner .tr {
  background:url(tr.gif);
}

#ppopupInner .bl {
  background:url(bl.gif);
}

#ppopupInner .br {
  background:url(br.gif);
}


#ppopupInner .popup {
  position: relative;
}

#ppopupInner table {
  margin: auto;
  border-collapse: collapse;
}

#ppopupInner .body {
  padding: 10px;
  padding-left:16px;
  padding-bottom:20px;
  background: #fff;
  font-size:11px;	
  /*width: 370px;*/
  width:480px;
  color:#666666;
  font-weight:normal;
  font-family:Verdana, Arial, Geneva, sans-serif;
 
}

#ppopupInner .loading {
  text-align: center;
}

#ppopupInner .image {
  text-align: center;
}

#ppopupInner img {
  border: 0;
}



#ppopupInner .tl, #ppopupInner .tr, #ppopupInner .bl, #ppopupInner .br {
  height: 10px;
  width: 10px;
  overflow: hidden;
  padding: 0;
  border:1px solid #0000000;
}


