#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
	border: 0;
	background-color: white;
}

#popupClose {
	float: right;
	cursor: pointer;
	cursor: hand;
	background-image: url(closePortal.png);
	width: 71px;
	height: 18px;
	background-repeat: no-repeat;
}

#popupTitle {
	float:left;
	font-size: 0.9em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

#popupBar {
	background-color: #1C4F8E;
	color: #ffffff;
	font-weight: bold;
	height: 1.3em;
	padding: 5px;
	margin:2px;
	position: relative;
	z-index: 203;
}

#popupModal{
	border: 1px solid #CCC;
	background-color: #FFFFFF;
}

/* Classes obrigatorias para o funcionamento do modal, favor nao modificar */

#popupMask {
	z-index: 2147483646;
	height: 100%;
	width: 100%;
	left: 0px; 
	top: 0px;
	opacity: 0.6;
	background-color: #fff;
	display: none;
	position: absolute; 
	filter:alpha(opacity=60);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
}

body > div#popupMask {
	/* used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser */
	position: fixed;
}

* html div#popupMask {
	/* IE5.5+/Win - this is more specific than the IE 5.0 version */
	left: expression( ( (hack = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( (hack = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

#popupContent {
	z-index: 2147483647;
	position: absolute;
	display: none;
	left: 0px; 
	top: 0px;
}

body > div#popupContent {
	/* used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser */
	position: fixed;
}

* html div#popupContent {
	/* IE5.5+/Win - this is more specific than the IE 5.0 version */
	left: expression( ((hack = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ((hack = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
