        /*
            Make sure everything in the page template is absolutely positioned.
            All positions are relative to the page container.
        */
        .pdf-page-template > * {
            position: absolute;
            left: 20px;
            right: 20px;
            font-size: 80%;
        }
        .pdf-page-template .pdf-header {
            top: 20px;
            border-bottom: 1px solid #000;
        }
        .pdf-page-template .pdf-footer {
            bottom: 20px;
            border-top: 1px solid #000;
        }

        /*
            Use the DejaVu Sans font for display and embedding in the PDF file.
            The standard PDF fonts have no support for Unicode characters.
        */
        .pdf-page-template .k-grid {
            font-family: "DejaVu Sans", "Arial", sans-serif;
            width: 400px;
        }