
/*

	This stylesheet has the generic styles inherited by the overlay accross all pages
	Refer to the pages' stylesheets for local styles

*/

/********************************************************************************************************
 *
 *	GENERIC
 *
 *
 *
 */

body{
	/* 
		Set body position to relative to insure fallback covers the whole window. 
		If body is not parent of overlay this is not required 
	*/
	position: relative; 
	padding: 1px 0;
}


/********************************************************************************************************
 *
 *	FALLBACK
 *
 *
 *
 */
  
#fallback{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	background: transparent url("../images/fallback.png");
	background: rgba(0,0,0,0.5);
	
	
	
	display: none;
	opacity: 0;
	
} 




/********************************************************************************************************
 *
 *	OVERLAY
 *
 *
 *
 */
 
 
#overlay{
	position: absolute;
	top: 50px; /* Set a smaller to insure the default position is closer to the top of the window */
	right: 6%; /* Percentage to rely on browser for horizontal positioning */

	width: 710px;
	padding: 0px;
	background:none;
	display: none;
	opacity: 0;
	margin:0px !important;	
	padding:0 0px;
	z-index:99;
}
iframe {border:none;}
body {padding:0px; margin:0px;}
 
/********************************************************************************************************
 *
 *	CLOSE BUTTON
 *
 *
 *
 */ 
 
#overlay .close{
	position: absolute;
	top: 10px;
	right: 10px;
	
	width: 156px;
	height: 19px;
	
	background: url(../images/close-icon1.png) no-repeat top left;
	
	text-decoration: none;
	opacity:1;
	text-indent:-5555px;	
} 

#overlay .close:hover{
}
 
 
