/* print styles */

@media print {
    
header, #logo, body, h1, h2, h4, nav, a, nav a, footer, nav a:visited, p.backtotop a {
    color: #000;
    background-color: #fff;
    }
    
body {
    max-width: 100%;
    border: 0;
        }
    
nav {
    display: none;
    } 
    

 /***** image desaturate courtesy of http://thenewcode.com/532/Convert-Images-To-Black-And-White-With-CSS ******/   
    
img.desaturate {
    filter: grayscale(100%);
}
    
img.desaturate { 
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
    
/**/    
    
blockquote.style2 {
  font-family: 'Oswald', sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 50px;
  padding-left: 15px;
  border-left: 3px solid #000;
    }
    
input.button {
    background-color: #000;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
    
}

@page {
        margin: 1in;
    }
    
    

