/*
You can include customized CSS print file using $customize_template to rewrite default CSS print styles.
*/

/*
set print margins
https://stackoverflow.com/questions/1542320/margin-while-printing-html-page 
*/
@page  
{ 
    size: auto;   /* auto is the initial value */ 
    /* this affects the margin in the printer settings */ 
    margin: 25mm 17mm 25mm 17mm;  
} 

body.dm_print 
{
	padding: 0;
	font-size: 14px;
}


@media screen {
	body.dm_print {
		margin: 20px 0 0 0; 
	}
}

@media print {
	body.dm_print {
		 /* this affects the margin on the content before sending to printer */ 
		margin: 0;
	}
}

.dm_print .envelope {
	width: 100%;
	max-width: 900px;
	margin: 0 auto; 
}


/* plugin Daily Menu */

.dm_print h1 {
	font-size: 16px;
	font-weight: bold;
	line-height: 19px;
	margin: 0; padding: 0;
	margin-bottom: 10px;
	padding-left: 4px;
}

.dm_print table.daily_menu tr.day td {
	text-transform: none;
	font-size: 14px;
	line-height: 18px;
}
.dm_print table.daily_menu tr.week div.week_date {
	font-size: 16px;
}
.dm_print table.daily_menu tr.week div.week_time {
	font-size: 14px;
}

/* end of: table daily_menu */

