﻿/* = Image to be print 
---------------------------------------- 
*/
@media print {
    @page {
		size: landscape;
    }
	
	.page {
		-webkit-transform: rotate(-90deg); -moz-transform:rotate(-90deg);
		filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	}
	
	.printL ,.printR {
		position:absolute;
		height:83%;
		width:auto;
		left: 0;
	}

	.printR {
		left:50%;
	}

	/* = Popup Size Page 
	---------------------------------------- 
	*/
	.printPageLT ,.printPageLP,.printPageRT,.printPageRP {
		position:absolute;
		display:block;
		height:83%;
		width:auto;
		left: 0;
	}

	.printPageRT,.printPageRP {
		left:50%;
	}

	.printPageRP {
		z-index:3;
	}

	.printPageRT {
		z-index:4;
	}

	.printPageLP {
		z-index:1;
	}

	.printPageLT {
		z-index:2;
	}
}