/* CSS Document 
/******************************************************************
@author: 		mohammed ahmed
@date: 			05.05.2007
@version: 		1.2
@comments:
mobox provides a friendly replacement to the popup box window.
It add the window to the required page in the form of innerHtml.
It can also be used to display another page contents.

@licence: FREE. refernces are made where possible to third party code. 

*******************************************************************/

#overlayBG{
	position: absolute;
	top: 0px;
	left: 0px;
	z-index:100;
	width: 100%;
	height: 100%;
	background-color:#000000;/*background-color must match the rBoxTop & rBoxBottom background-color*/
	margin:0;
	padding:0;
	filter:alpha(opacity=0);
	-moz-opacity: 0.0;
	opacity: 0.0;	
}

#indicator {	
	margin:0;
	padding:0;
	position: absolute;
	z-index:102;
}

#boxFrame {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index:101;
	margin:0;
}

#boxContents{		
	overflow: hidden;
	position:relative;	
	height:100%;
}