@charset "utf-8";
/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 5
   Tutorial Case
   
   Author:   Kaden Smart
   Date:     10-20-2025
   
   Filename: tf_print.css

   This file contains the printer styles used with the Trusted
   Friends page on articles of interest

*/



/* Hidden Objects */

nav.horizontal, aside, footer {
	display: none;
}


/* Page Box Styles */



/* Header Styles */

body > header {
   text-align: right;
}

body > header > img {
   display: block;
   width: 100%;
}


/* Typography Styles */



/* List Styles */



/* Image Styles */




/* Hypertext Styles */

a {
	color: black;
	text-decoration: none;
}

a::after {
	content: " (" attr(href) ") ";
	font-weight: bold;
	word-wrap: break-word;
}



/* Page Break Styles */

img, ol, ul {
	page-break-inside: avoid;
}

p {
	orphans: 3;
	widows: 3;
}
	





