/*!
 *  Webseite (css)

 *  +++ W3Schools 'How TO - Make a Website' +++
 *  Quelle: 
 *  - https://www.w3schools.com/howto/howto_make_a_website.asp
 *  - https://www.w3schools.com/howto/tryit.asp?filename=tryhow_make_a_website_footer
 *
 */

@media print {
	* { }

	/* Style the body */
	body {
  		font-family: Arial, Helvetica, Sans-serif;
		margin: 0;
		}

	/* Style the header */
	/* Header: Logo Title */
	.header {
		padding: 10px;
		text-align: center;
		color: white;
		}
		
	/* Increase the font size of the heading */
	/* Increase the font size of the h1 element */
	.header h1 {
		font-size: 40px;
		}

	.header { 
		/* Quelle (Hintergrundbilder): http://windows.microsoft.com/de-de/windows/wallpaper */
		/* background-image: url(../../images/bg_blau.jpg); */
		background-image: url(../images/hintergrund/bg_hintergrund.jpg); 
		background-repeat: repeat; 
		background-position: top left; 
		background-attachment: fixed;
		background-size: cover;	
		}

	.navbar, .side, .fakeimg {
    	display: none;
		} 

	/* Column container */
	.row {   
		}

	.main { 
		width:100%;  
		background-color: white;
		padding: 20px; 
		font-size:12px;
	}

	/* 
	Druckversion und print.css einer Website: 
	Quelle: https://blog.kulturbanause.de/2012/07/druckversion-und-print-css-einer-website/ 
	*/ 
	table, img {
		page-break-inside: avoid;
		}
	table {
		page-break-after: always;
		}

	h1, h2, h3, h4, h5, h6 {
		page-break-after: avoid;
		}

}
