/**
 * @package		xartCMS.Site
 * @subpackage	mod_popup
 * @copyright	Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 *
 * HOWTO:
 * - set popup bg image
 * - edit dimensions of popup inner block
 * - edit position of popup inner block and popup close button according to img dimensions
 * - if bg image is too large, set absolute position
 */

#popup {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0%;
	top: 0%;
	z-index: 9997;
	background: transparent url(../../../media/mod_popup/img/popup_bg.png) repeat;
	display: none;
}

#popup .popup-in {
	position: absolute;
	width: 424px;	
	height: 334px;
	left: 50%;
	top: 50%;
	margin-left: -250px;
	margin-top: -216px;
	z-index: 9998;
	cursor: pointer;
	/* SET BG IMAGE HERE */
	/*background: transparent url(../../../media/mod_popup/img/__POPUP_IMAGE__) no-repeat;*/
	text-indent: -9999px;
}

#popup .popup-close {
	position: absolute;
	width: 41px;
	height: 37px;
	left: 50%;
	top: 40%;
	margin-left: 140px;
	margin-top: 150px;
	z-index: 9999;
	text-indent: -9999px;
	cursor: pointer;
}
