

/* print test */
@media print{

	  @page 
        {
            size: auto;   /* auto is the current printer page size */
            margin: 5px;  /* this affects the margin in the printer settings */
        }
 

	#detail_content .button,
	#detail_content .title_bar #tool_box,
	.abgne_tab > ul.tabs li,
	.hide_on_print,
	#advert{
		display: none;
	}

	.abgne_tab > ul.tabs li.active{
		display: block;
	}

	#disclaimer{
		page-break-inside:avoid;	
	}


}
