@charset "UTF-8";

@media print {
	body * {
		visibility: hidden; /* 전체 숨김 */
	}

	.area_document, 
	.area_document *, 
	.area_document-content, 
	.area_document-content * {
		visibility: visible; /* 두 영역만 보이게 */
	}

	.area_document {
		position: absolute;
		left: 0;
		top: 140px; /* 필요시 위치 조정 */
		width: 100%;
	}

	.area_document-content {
		position: absolute;
		left: 0;
		top: 0; /* 상단에 위치 */
		width: 100%;
	}
}