/***********************************/
/* CSS specific to printing a page */
/***********************************/

/* foundation.css has a hide-for-print media query but it's embedded in a 
 * bunch of other undesirable stuff.  Use this class for a simple way to 
 * prevent an on-screen object from being printed.
 */
@media print {
    .hide-for-print-simple {
        display: none !important;
    } 
} 

@media print{
    /*hide one of two logos when using mobile responsive*/
    #header_logo img.no_desktop,
    #mobile_cart,
    #mobile_xtra_links {
        display: none;
    }

}
