﻿/*
	01. General elements 
	02. Div elements
	03. Headline elements
	04. Link elements
	05. Image elements
	06. Paragraph elements
	07. Span elements
	08. List elements
	09. Table elements
	10. Form elements
	11. Other html elements
*/ 

@media print 
{
	/* 01. General elements */
	html, body
	{
		background:none;
		color:Black;
	}
	
	/* 02. Div elements */
	div#navigation, div#additionalNavigation, div#subNavigation, div.buttons, div#content_footer, div#header, div.footerLinks
	{
		display:none;
	}
	
	div#banner, div#container, div#page_footer 
	{
		/*background:none;*/
	}
	
	/* 03. Headline elements */
	h1 {
		font-size:1.8em;
		font-weight:bold;
		line-height:26px;
		margin-bottom:24px;
		padding:0;
	}
	

	div.orderHeader h2 {
		color:black;
		background:none;
		font-size:1em;
		font-weight:normal;
		text-decoration:underline;
		padding:0.1em 0 0.1em 0.2em;
		text-align:left;
		margin-bottom:0.5em;
		}
	
	/* 04. Link elements */
	
	/* 05. Image elements */
	
	/* 06. Paragraph elements */
	
	/* 07. Span elements */
	
	/* 08. List elements */
	
	/* 09. Table elements */
	
	table.dataView tr.footerRow td {
		background:none;
		border-top:1px solid Black;
		border-left:1px solid Black;
		color:inherit;
		font-weight:bold;
		padding:0.4em;
	}
	
	table.dataView th 
	{
		background:none;
		border-left:1px solid Black;
		border-bottom:1px solid Black;
		color:Black;
		padding:0.4em;
	}
	
	.normalrow {
		border:medium 1px Black;
	}
	/* 10. Form elements */
	
	/* 11. Other html elements */
 
}


