	
	#popup-wrapper { 
		position: absolute;
		top: 0px;
		left: 0px;
		z-index: 100;
	}

		#popup-overlay { 
			position: relative;
			top: 0px;
			left: 0px;
			z-index: 101;
		}
		
		#popup-container { 
			position: absolute;
			z-index: 102;
			display: none;
		}
		
			#popup-content {
				background: #ffffff;
				border: 1px solid #bcbcbc;
				background-image: url('../images/bg-popup-content.png');
				background-repeat: repeat-x;
				background-position: bottom;
			}
			
				#popup-content iframe {
					width: 100%;
					height: 100%;
				}
			
			#popup-header {
				background-image: url('../images/bg-popup-uparrow.png');
				background-repeat: no-repeat;
				background-position: center;
				height: 14px;
				margin-bottom: -1px;
			}
			
			#popup-footer {
				background-image: url('../images/bg-popup-downarrow.png');
				background-repeat: no-repeat;
				background-position: center;
				height: 14px;
				margin-top: -1px;
			}
			
			#popup-loader {
				width: 100%;
				height: 16px;
				position: absolute;
				top: 0px;
				display: none;
				background-image: url('../images/gr-popup-loader.gif');
				background-repeat: no-repeat;
				background-position: bottom center;
			}
			
			#popup-close {
				position: absolute;
				top: -15px;
				right: -15px;
				background-image: url('../images/gr-popup-close.png');
				background-repeat: no-repeat;
				width: 30px;
				height: 30px;
				cursor: pointer;
			}
