/* 
    Created on : 25.05.2018, 08:49:38
    Author     : Wolf.Mi
*/

@media print {
	/* Voreinstellung für Seite is A4 und Hochformat*/  
	html, body {
		background: #FFF;
	}
	@page {
		size: A4;
	}

	/* linker Seitenrand*/
	@page :left {
		margin-left: 2cm;
	}

	/* linker Seitenrand*/
	@page :right {
		margin-left: 2cm;
	}

	#header {
		display: none;
	}

	/* Text in Slideshow ausblenden*/
	.carousel-caption{
		display: none;   
	}

	#footer {
		display: none;
	}

	/* alle href ausblenden*/
	a[href]::after {
		display: none;
	}
  
	/* in geotool.php und geotool2.php PDF Symbol und vorgesehenen Platz für Symbol entfernt*/
	a.pdflink {
		padding-left: 1px;
		padding-top: 1px;
	}

	/*Seitenumbruch direkt nach Ueberschrift verhindern*/
	h1, h2, h3, h4, h5 {
		page-break-after: avoid;
	}
  
	/* Ueberschriftengroesse anpassen*/
	h1{
		font-size: 20px;
		font-weight: bold;  
	}
	h2{
		font-size: 18px;
		font-weight: bold;
	}
	h3{
		font-size: 16px;  
		font-weight: bold;
	}
	h4{
		font-size: 14px;  
		font-weight: bold;
	}
	h5{
		font-size: 12px;  
		font-weight: bold;
	}
  
	/* Textgroesse anpassen*/
	small{
		font-size: 10px;
	}
	cite {    
		display:block;
		padding:1px 0px;
		font-size: 10px;
	}
	/* Allgemeiner Text mit Serifen für bessere Lesbarkeit*/
	* {
		font-family: "times new roman",times,serif;
		text-align: justify;
		font-size: 12px;
	}
  
	/* Tabellenumbruch bei Seitenende verhindern*/
	table {
		page-break-inside: avoid; 
		border:solid #000 !important;
		border-width:1px 0 0 1px !important;
	}
	th, td {
		border:solid #000 !important;
		border-width:0 1px 1px 0 !important;
	}

	/* Kachelgroesse für Druck*/
    /* Kachelgroesse Kacheln die eine laenge von 12 haben (z.B. auf Startseite)*/
	.col-sm-12 {
        width: 30%;
	}
    /* Kachelgroesse Kacheln die eine laenge von 6 haben (z.B. Kacheln der geologischen Dienste, siehe history.php)*/
	.col-sm-6 {
        width: 20%;
	}

	.listen_element{
		background-color:#EFEFEF;
	}
}