/* Prints a watermark at 60deg on a portrait page  */
@media print and (orientation:portrait) {
        #watermark { 
            display: block;
            position: fixed;
			font-size: 20pt;
			color: #663300;
			transform: rotate(60deg);
			opacity: 0.5;
            top: 600px;
            left: 0;
            z-index: 5;
        }
    }

/* hides watermark on screen */
@media screen {
		#watermark {
			display: none;
		}
	}

/* Prints a watermark at 30deg on a landscape page  */
@media print and (orientation:landscape) {
		#watermark { 
            display: block;
            position: fixed;
			font-size: 20pt;
			color: #663300;
			transform: rotate(30deg);
			opacity: 0.5;
            top: 300px;
            left: 0;
            z-index: 5;
        }
}


/* Puts header and footer on printout */
@media print {
/*	.header:before{
		content: attr(h1);
	} */
	
	a {						/* all links underline and blue */
		text-decoration : underline;
		color : #0000ff;
	} 
	p {
		display: block;
		float: none;
		page-break-inside: auto;
		
		font-family: Georgia, times new roman, times, serif;
		font-size: 11pt;
		line-height: 1.2;
		color: #663300;
		width: 100%; 
		margin-top: 0.5em; 
		margin-bottom: 0.5em;
		word-spacing: 1px; 
		letter-spacing: 0.2px;
		text-align: justify;
	}
	img {
		max-width: 100%;
	}
	h1, nav-button, nav-close{
		display: none;
	}
	.hr.gallery{
		height: 2px; 
		border: 0; 
		box-shadow: none;
	}
}

