/*
   New Perspectives on HTML and CSS
   Tutorial 8
   Case Problem 1

   dessertWeb Print Styles
   Author: Ricky Garcia
   Date:   11-10-25

   Filename:         dwprint.css
   Supporting Files: 

*/

@page {                     /* For physical dimensions of print page */
  size: 8.5in 11in;       
  margin: 0.5in;          
}

@media print {              /* For hiding elements not needed in print */
   header,
  footer,
  #left,
  #right,
  nav,
  nav ul,
  aside,
  hgroup h2,
  article p:last-of-type {
    display: none;
  }

     h1{
    font-size: 200%;
    margin-bottom: 0.2in;
  }
  
    h2{font-size: 150%;
    margin-top: 0.5in;
}

    li {
        line-height: 1.5em;
    }
    ol {
        margin-left: 0.5in;
    }
    h2:first-of-type {
    page-break-after: always; /* Forces a page break before this element */
    }
}