/*
   New Perspectives on HTML and CSS
   Tutorial 8
   Case Problem 1

   dessertWeb Print Styles
   Author: David Katelansky
   Date:   07/10/2015

   Filename:         dwprint.css
   Supporting Files: 

*/

/* Styles to be used for print displays */
@page
{
   size: 8.5in 11in portrait;
   margin: 0.5in;
}


/* Hide page elements that will not be printed */
header, #left, #right, nav, aside, #headgroup h2, article p:last-of-type, footer
{
   display: none;
}

/* Styles for the h1 heading */
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;
   list-style-type: decimal;
}

h2:last-of-type
{
   page-break-before: always;
}