@charset "utf-8";
/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 5
   Tutorial Case
   
   Author: Mohammad Z Taieeb
   Date: 03/27/2026
   
   Filename: tf_print.css

   This file contains the printer styles used with the Trusted
   Friends page on articles of interest

*/


/* Hidden Objects */

nav.horizontal, footer, aside {
   display: none;
}


/* Page Box Styles */

@page {
   size: 8.5in 11in;
   margin: 0.5in;
}


/* Header Styles */

body > header {
   text-align: right;
}

body > header > img {
   display: block;
   width: 100%;
}


/* Typography Styles */

body {
   font: 12pt Georgia, "Times New Roman", Times, serif;
   line-height: 1.3;
   background: white;
   color: black;
}

h1 {
   font-size: 24pt;
   margin: 12pt 0;
}

h2 {
   font-size: 16pt;
   margin: 12pt 0;
}

p {
   margin: 6pt 0;
}


/* List Styles */

ul {
   list-style-type: disc;
   margin-left: 20px;
}


/* Image Styles */

img {
   display: block;
   width: 40%;
   float: right;
   margin: 0 0 10pt 10pt;
}


/* Hypertext Styles */

a::after {
   content: " (" attr(href) ")";
   word-wrap: break-word;
}


/* Page Break Styles */

article {
   page-break-after: always;
}

article:last-of-type {
   page-break-after: auto;
}

h1, h2 {
   page-break-after: avoid;
}