<?xml version="1.0" encoding="UTF-8"?>
<Template>
    <Style>
	<![CDATA[
	body {
	    background: transparent;
	    user-select: none;
	    -moz-user-select: none;
	    -webkit-user-select: none;
	    -khtml-user-select: none; 
	}		
	table {
	    border-collapse: collapse;
	}
	th, td {
	    text-align: left;
	    padding-left: 10px;
	    padding-right: 10px;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    box-sizing: border-box;
	}
	#data {
	    width: 100%;
	    height: 100%;
	}
	.page {
	    width: 100%;
	}
	.nowrap {
	    white-space: nowrap;
	}
	/* Color Conditions:
	   changeUpIncrease - Change Up Green Down Red - Styling for Change Up Green
	   changeUpDecrease - Change Up Green Down Red - Styling for Change Down Red
	   changeDownDecrease - Change Down Green Up Red - Styling for Change Down Green
	   changeDownIncrease - Change Down Green Up Red - Styling for Change Up Red
	   valuePositivePositive - Value Positive Green Negative Red - Styling for Value Positive Green
	   valuePositiveNegative - Value Positive Green Negative Red - Styling for Value Negative Red
	   valueNegativeNegative - Value Negative Green Positive Red - Styling for Value Negative Green
	   valueNegativePositive - Value Negative Green Positive Red - Styling for Value Positive Red */
	.changeUpIncrease, .changeDownDecrease, .valuePositivePositive, .valueNegativeNegative {
	    color: green;
	}
	.changeUpDecrease, .changeDownIncrease, .valuePositiveNegative, .valueNegativePositive {
	    color: red;
	}
	/* Column A */
	.a {}
	/* Column B */
	.b {}
	/* Column C */
	.c {}
	/* Column D */
	.d {}
	/* Over-ride the Heading Font and Data Font. */
	.heading_font-style {}
	.data_font-style {}
	]]>
    </Style>
    <Layout>
	<![CDATA[
	<div id="header">
	    <table>
		<tr class="nowrap heading_font-style">
		    <th>Name</th>
		    <th>Logo</th>
		    <th>Description</th>
		    <th>QR Code</th>
		</tr>
	    </table>
	</div>
	<div id="scrollContainer">
	    <table class="page">
		<tbody>
		    <tr class="separator repeat item data_font-style">
			<td class="a"></td>
			<td class="b image"></td>
			<td class="c"></td>
			<td class="d qrCode"></td>
		    </tr>
		</tbody>
	    </table>
	</div>
	]]>
    </Layout>
</Template>

