﻿@media print {

/* default font styling for all elements */
html * { font-family: Arial, Helvetica, sans-serif; font-size: 12px; }

/* style for a caption that is inline with other text */
.inlineCaption {display:inline;font-weight:bold;color: #333333;}

/* class to specifically hide element during printing */
.noPrint { display:none; }

/* class to indicate that a page break should follow the element */
.breakAfter { page-break-after:always; }

/* class to indicate that a page break should follow the element */
.breakBefore { page-break-before:always; }

/******************************************************************************************/
/* styles that control the layout of the admin page                                       */
/******************************************************************************************/

#storeHeader { display:none;}
#footer {display:none;}

/* style for the header panel */
#rightSidebar { display:none; width:1px; overflow:hidden; }

/* style for the footer panel */
#leftSidebar { display:none; width:1px; overflow:hidden; }

/* provide margin for main panel - otherwise right border fails to print in IE */
#mainPanel { margin:4px; }

.breadCrumbs {display:none;}

#innerPageContainer {border:none;}
    #pageHeader, #pageHeader h1 {
        font-weight:bold;
        padding:0;
        margin:5px 0;
        border:none;
    }
a[href]::after {
    content: ""
}

.thirdsColumn {
    float:left;
    width:33%;
}

div.address {
    float:left;
    width:30%;
}

div.items {
    float:right;
    width:70%;
}

div.links {display:none;}

div.addNoteForm {display:none;}

/* close the print media selector */
}