-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS4136.xsl
6958 lines (6956 loc) · 344 KB
/
IRS4136.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS4136Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="IRS4136Data" select="$RtnDoc/IRS4136"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($IRS4136Data)"/>
</xsl:call-template>
</title>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Cache-Control" content="private"/>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="Description" content="IRS Form 4136"/>
<META name="GENERATOR" content="IBM WebSphere Studio"/>
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"/>
<xsl:call-template name="InitJS"/>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="IRS4136Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="IRS4136">
<xsl:call-template name="DocumentHeader"/>
<!-- BEGIN FORM HEADER -->
<div class="styIRS4136BB" style="width:187mm;">
<div class="styIRS4136FN" style="width:31mm;height:23mm;">
<div>
<span>Form <span style="width: 4px"/>
</span>
<span class="styFormNumber">4136</span>
<br/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$IRS4136Data"/>
</xsl:call-template>
<span style="width:1mm"/>
</div>
<div class="styIRS4136Agency" style="padding-top:4mm;">Department of the Treasury Internal Revenue Service (99)
</div>
</div>
<div class="styGenericDiv" style="width:125mm;height:23mm;text-align:center;font-weight:bold;">
<div class="styMainTitle" style="font-size:16pt;padding-top:4mm;">Credit for Federal Tax Paid on Fuels</div>
<div style="padding-top:3mm;">
</div>
<div class="styFBT" style="height:4mm;">
<br/>
<img src="{$ImagePath}/4136_Bullet.gif" alt="Bullet"/>
Information about Form 4136 and its instructions is at
<a href="http://www.irs.gov/form4136" title="Link to irs.gov Form 4136">
<i>www.irs.gov/form4136.</i>
</a>
</div>
</div>
<div class="styIRS4136TYBox" style="height: 23mm;">
<div class="styIRS4136OMB">OMB No. 1545-0162</div>
<div class="styIRS4136TY">20<span class="styTYColor">12</span>
</div>
<div class="styIRS4136Sequence">Attachment<br/>Sequence No. <b>23</b>
</div>
</div>
</div>
<!-- END FORM HEADER -->
<!-- BEGIN TAXPAYER INFO -->
<div style="width:187mm;">
<div class="styIRS4136BusinessName" style="font-size: 7pt; font-weight: normal;">Name (as shown on your income tax return)
<br/>
<span style="font-family: verdana, arial, sans-serif;font-size: 7pt; font-weight: normal;">
<xsl:choose>
<xsl:when test="$RtnHdrData/ReturnType='1040'">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
</div>
<div class="styEINBox" style="padding-left: 2mm;font-size:7pt;font-weight:bold;">Taxpayer identification number
<div style="padding-top:3mm;font-weight:normal;">
<xsl:choose>
<xsl:when test="$RtnHdrData/ReturnType='1040'">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PrimarySSN</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</div>
</div>
</div>
<!-- END TAXPAYER INFO -->
<!-- Name and Identifying number END-->
<div class="styIRS4136CautionHdr" style="padding-left:1.5mm;">
<span class="styIRS4136CautionHdrTitle" style="padding-left:2mm;padding-right:1mm;">Caution.</span>
<span style="width:160mm;float:left;font-size:7.75pt;padding-right:1mm;">
Claimant has the name and address of the person who sold the fuel to the claimant and the dates of purchase. <br/>
For claims on lines 1c and 2b (type of use 13 and 14), 3d, 4c, and 5, claimant has not waived the right to <br/>
make the claim. For claims on lines 1c and 2b (type of use 13 and 14), claimant certifies that a certificate has <br/>
not been provided to the credit card issuer.
<br/> <br/>
The alternative fuel mixture credit cannot be claimed on this form or on Schedule 3 (Form 8849). It must be taken
as a credit against your taxable fuel liability (gasoline, diesel fuel, and kerosene) reported on Form 720.
<br/> <br/>
</span>
</div>
<!-- END NOTE HEADER -->
<!-- BEGIN BLOCK 1 -->
<!-- BEGIN LINE 1 -->
<!-- Count the number of rows in the table -->
<xsl:variable name="table1RowCount" select="3 + count($IRS4136Data/OtherNontaxableUseOfGasoline)"/>
<div class="styIRS4136NumLine" style="padding-left:2mm;border-top-width: 0px;">
<br/>
<span style="float:left;clear:none;"> 1<span class="styIRS4136NBSP" style="padding-right:3mm;"/> Nontaxable Use of Gasoline</span>
<span style="width:6mm"/>
<b>Note. </b>
<span style="font-weight:normal"> CRN is credit reference number.</span>
<br/>
<span style="width:7mm;text-align:right;float:right; clear: none">
<xsl:call-template name="SetDynamicTableToggleRowCount">
<xsl:with-param name="DataRowCount" select="$table1RowCount"/>
<xsl:with-param name="containerHeight" select="3"/>
<xsl:with-param name="containerID" select=" 'NGctn' "/>
</xsl:call-template>
</span>
</div>
<div class="styIRS4136TableContainer1" id="NGctn">
<!--print logic-->
<xsl:call-template name="SetInitialState"/>
<!--end-->
<!-- Declare all varaible that hold the count of the repeating elements in this block -->
<xsl:variable name="AFRowCount" select="count($IRS4136Data/OtherNontaxableUseOfGasoline)"/>
<table class="styIRS4136Table" cellspacing="0">
<thead class="styIRS4136TableThead">
<tr>
<th style="width:3mm;height:4mm;" scope="col"/>
<th class="styIRS4136TableCellLine" style="border-bottom-width:0px;" scope="col">
<span class="styIRS4136TableCellPad"/>
</th>
<th class="styIRS4136TableCellA" style="text-align: center;" scope="col">
<b>(a) Type of use</b>
</th>
<th class="styIRS4136TableCellB" style="text-align: center" scope="col">
<b>(b) Rate</b>
</th>
<th class="styIRS4136TableCellC" style="text-align: center" scope="col">
<b>(c) Gallons</b>
</th>
<th class="styIRS4136Braces" scope="col">
<span class="styIRS4136TableCellPad"/>
</th>
<th class="styIRS4136TableCellD" style="text-align: center" scope="col">
<b>(d) Amount of credit</b>
</th>
<th class="styIRS4136TableCellE" style="text-align: center" scope="col">
<b>(e) CRN</b>
</th>
</tr>
</thead>
<tfoot/>
<tbody>
<!-- Row 1A OFF-HIGHWAY BUSINESS USE OF GASOLINE -->
<tr>
<td class="styIRS4136LetterCell" style="padding-left:4mm;">
<b>a</b>
</td>
<td class="styIRS4136TableCellLine" style="width:90mm;">Off-highway business use</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style=" text-align:center;">$ .183</td>
<td class="styIRS4136TableCellC" style="text-align:left;">
<xsl:attribute name="style">text-align:right;</xsl:attribute>
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="3"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/OffHwyBusinessGasolineGallons"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces" rowspan="3">
<!-- When the row count of Line 1C is less than 3, then add a border under the bracket to close out the row -->
<xsl:choose>
<xsl:when test="$AFRowCount <2">
<xsl:attribute name="style">border-bottom-width: 1px</xsl:attribute>
</xsl:when>
<xsl:when test="$Print = $Separated">
<xsl:attribute name="style">border-bottom-width: 1px</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="style">border-bottom-width: 0px</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<img src="{$ImagePath}/4136_Bracket_L6.gif" alt="bracket"/>
</td>
<td class="styIRS4136TableCellD" style="text-align:left;vertical-align:top;">
<xsl:choose>
<xsl:when test="$AFRowCount <2">
<xsl:attribute name="rowspan">3</xsl:attribute>
</xsl:when>
<xsl:when test="$Print = $Separated">
<xsl:attribute name="rowspan">3</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="rowspan"><xsl:value-of select="$AFRowCount + 2"/></xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:attribute name="style">text-align:right;vertical-align:middle;</xsl:attribute>$
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/NontaxableUseOfGasolineCredit"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">
<xsl:choose>
<xsl:when test="$AFRowCount < 2">
<xsl:attribute name="rowspan"><xsl:number value="3"/></xsl:attribute>
</xsl:when>
<xsl:when test="$Print = $Separated">
<xsl:attribute name="rowspan">3</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="rowspan"><xsl:value-of select="$AFRowCount + 2"/></xsl:attribute>
</xsl:otherwise>
</xsl:choose>362
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- Row 1B USE OF GASOLINE ON A FARM FOR FARMING PURPOSES -->
<tr>
<td class="styIRS4136LetterCell" style="padding-left:4mm;">
<b>b</b>
</td>
<td class="styIRS4136TableCellLine" style="width:90mm;">Use on a farm for farming purposes</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm;text-align:center">.183</td>
<td class="styIRS4136TableCellC">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="3"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/FarmingPurposesGasolineGallons"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- Loop -->
<!-- Row 1C OTHER NONTAXABLE USE OF GASOLINE -->
<xsl:if test="$AFRowCount = 0 or (($AFRowCount >1) and ($Print = $Separated))">
<tr>
<td class="styIRS4136LetterCell" style="vertical-align:middle;padding-left:4mm;">
<b>c</b>
</td>
<td class="styIRS4136TableCellLine" style="vertical-align:middle; width:92mm;">Other nontaxable use (see <b>Caution</b> above line 1)</td>
<td class="styIRS4136TableCellA">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm; text-align:center;">.183</td>
<td class="styIRS4136TableCellC">
<xsl:if test="($AFRowCount >1) and ($Print = $Separated)">
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$IRS4136Data/NontaxableAviationGasoline"/>
<xsl:with-param name="ShortMessage" select=" 'true' "/>
</xsl:call-template>
</xsl:if>
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="($AFRowCount <=1) or ($Print != $Separated)">
<xsl:for-each select="$IRS4136Data/OtherNontaxableUseOfGasoline">
<tr>
<xsl:if test="position()=1">
<td class="styIRS4136LetterCell" style="vertical-align:middle;padding-left:4mm;padding-right:1.5mm;">
<xsl:attribute name="rowspan"><xsl:value-of select="$AFRowCount"/></xsl:attribute>
<b>c</b>
</td>
<td class="styIRS4136TableCellLine" style="vertical-align:middle;">
<xsl:attribute name="rowspan"><xsl:value-of select="$AFRowCount"/></xsl:attribute>
Other nontaxable use (see <b>Caution </b>above line 1)
</td>
</xsl:if>
<td class="styIRS4136TableCellA">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="TypeOfUse"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm; text-align:center;">.183</td>
<td class="styIRS4136TableCellC">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="Gallons"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<!--If this is the last repeating row in line 1C, then add a blank cell with a bottom border to close out -->
<!--column under the bracket -->
<xsl:if test="position()=$AFRowCount">
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
</xsl:if>
</tr>
</xsl:for-each>
</xsl:if>
<!-- End Loop -->
<!-- Line D position -->
<tr>
<td class="styIRS4136LetterCell" style="border-bottom-width:1px;padding-left:4mm;padding-right:2mm;">
<b>d</b>
</td>
<td class="styIRS4136TableCellLine">
Exported
</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm; text-align:center;">.184</td>
<td class="styIRS4136TableCellC">
<span class="styIRS4136TableCellPad" style="padding-right:1mm;text-align:left;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExportedNontaxableUseOfGasGals"/>
</xsl:call-template>
</span>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExportedNontaxableUseOfGasCr"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">411
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- End Line D -->
<!-- ********************************************************************************** -->
</tbody>
</table>
</div>
<!-- <div style="width:187mm;height:2mm;padding-left:8mm">
*There rates apply after Septemper 30, 2012
</div>-->
<xsl:call-template name="SetInitialDynamicTableHeightRowCount">
<xsl:with-param name="DataRowCount" select="$table1RowCount"/>
<xsl:with-param name="containerHeight" select="2"/>
<xsl:with-param name="containerID" select=" 'NGctn' "/>
</xsl:call-template>
<!-- END LINE 1 -->
<!-- BEGIN BLOCK 2 -->
<!-- BEGIN LINE 2 -->
<!-- Track the number of rows in table 2-->
<xsl:variable name="table2RowCount" select="1 + count($IRS4136Data/NontaxableAviationGasoline)"/>
<div class="styIRS4136NumLine" style="float:none;padding-top:3mm;padding-left:2mm;">
<br/>
<span style="float:left;clear:none;"> 2<span class="styIRS4136NBSP" style="padding-right:3mm;"/> Nontaxable Use of Aviation Gasoline</span>
<br/>
<span style="width:7mm;text-align:right;float:right; clear: none">
<xsl:call-template name="SetDynamicTableToggleRowCount">
<xsl:with-param name="DataRowCount" select="$table2RowCount"/>
<xsl:with-param name="containerHeight" select="2"/>
<xsl:with-param name="containerID" select=" 'AGctn' "/>
</xsl:call-template>
</span>
</div>
<div class="styIRS4136TableContainer2" id="AGctn">
<!--print logic-->
<xsl:call-template name="SetInitialState"/>
<!--end-->
<table class="styIRS4136Table" cellspacing="0">
<thead class="styIRS4136TableThead">
<tr>
<th style="width:3mm;height:4mm;" scope="col"/>
<th class="styIRS4136TableCellLine" style="border-bottom-width:0px">
<span class="styIRS4136TableCellPad"/>
</th>
<th class="styIRS4136TableCellA" style="text-align: center" scope="col">
<b>(a) Type of use</b>
</th>
<th class="styIRS4136TableCellB" style="text-align: center" scope="col">
<b>(b) Rate</b>
</th>
<th class="styIRS4136TableCellC" style="text-align: center" scope="col">
<b>(c) Gallons</b>
</th>
<th class="styIRS4136TableCellD" style="text-align: center" scope="col">
<b>(d) Amount of credit</b>
</th>
<th class="styIRS4136TableCellE" style="text-align: center" scope="col">
<b>(e) CRN</b>
</th>
</tr>
</thead>
<tfoot/>
<tbody>
<!-- ******************************************************************************************* -->
<!-- LINE 2a -->
<tr>
<td class="styIRS4136LetterCell" style="border-bottom-width:0px;padding-left:4mm;padding-right:1.5mm;">
<b>a</b>
</td>
<td class="styIRS4136TableCellLine">Use in commercial aviation (other than foreign trade)</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm;text-align:center;">$ .15</td>
<td class="styIRS4136TableCellC" style="padding-left:2mm;text-align:center;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/AviationGasolineGallons"/>
</xsl:call-template>
<xsl:if test=" ((count($IRS4136Data/ExpNontaxableAviationGasCredit) > 1) and ($Print = $Separated))">
<xsl:attribute name="style">text-align:left;</xsl:attribute>
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$IRS4136Data/AviationGasolineGallons"/>
<xsl:with-param name="ShortMessage" select=" 'true' "/>
</xsl:call-template>
</xsl:if>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD" style="padding-left:3mm;text-align:left;">
<xsl:if test="not(count($IRS4136Data/NontaxableAviationGasoline) = 0) ">
<xsl:attribute name="style">text-align:right;</xsl:attribute>
</xsl:if>$
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/AviationGasolineCredit"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">354
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- END LOOP -->
<!-- ******************************************************************************************* -->
<!-- Row 2B OTHER NONTAXABLE USE -->
<!-- LOOP -->
<xsl:variable name="AGRowCount" select="count($IRS4136Data/NontaxableAviationGasoline)"/>
<xsl:if test="$AGRowCount = 0 or ((count($IRS4136Data/NontaxableAviationGasoline) > 1) and ($Print = $Separated))">
<tr>
<td class="styIRS4136LetterCell" style="vertical-align:middle;padding-left:4mm;padding-right:1.5mm;">
<b>b</b>
</td>
<td class="styIRS4136TableCellLine" style="vertical-align:middle;">Other nontaxable use (see<b> Caution </b> above line 1)
</td>
<td class="styIRS4136TableCellA">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="text-align:center;padding:1.25mm;">.193</td>
<td class="styIRS4136TableCellC" style="text-align:left;">
<span class="styIRS4136TableCellPad"/>
<xsl:if test=" ((count($IRS4136Data/NontaxableAviationGasoline) > 1) and ($Print = $Separated))">
<xsl:attribute name="style">text-align:left;</xsl:attribute>
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$IRS4136Data/NontaxableAviationGasoline"/>
<xsl:with-param name="ShortMessage" select=" 'true' "/>
</xsl:call-template>
</xsl:if>
</td>
<td class="styIRS4136TableCellD">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">324
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
</xsl:if>
<!-- Adding check for the SRD -->
<xsl:if test="($Print != $Separated) or (count($IRS4136Data/NontaxableAviationGasoline) <= 1) ">
<xsl:for-each select="$IRS4136Data/NontaxableAviationGasoline">
<tr>
<xsl:if test="position()=1">
<td class="styIRS4136LetterCell" style="vertical-align:middle;padding-left:4mm;padding-right:1.5mm;">
<xsl:attribute name="rowspan"><xsl:value-of select="$AGRowCount"/></xsl:attribute>
<b>b</b>
</td>
<td class="styIRS4136TableCellLine" style="vertical-align:middle;">
<xsl:attribute name="rowspan"><xsl:value-of select="$AGRowCount"/></xsl:attribute>Other nontaxable use (see <b>Caution </b> above line 1)
</td>
</xsl:if>
<td class="styIRS4136TableCellA">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="TypeOfUse"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm;text-align:center;">.193</td>
<td class="styIRS4136TableCellC" style="padding-left:2mm;text-align:center;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="Gallons"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<xsl:if test="position()=1">
<td class="styIRS4136TableCellD">
<xsl:attribute name="rowspan"><xsl:value-of select="$AGRowCount"/></xsl:attribute>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/NontaxableAviationGasolineCr"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">
<xsl:attribute name="rowspan"><xsl:value-of select="$AGRowCount"/></xsl:attribute>324
<span class="styIRS4136TableCellPad"/>
</td>
</xsl:if>
</tr>
</xsl:for-each>
</xsl:if>
<!-- LINE 2c -->
<tr>
<td class="styIRS4136LetterCell" style="border-bottom-width:0px;padding-left:4mm;padding-right:1.5mm;">
<b>c</b>
</td>
<td class="styIRS4136TableCellLine">Exported</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm;text-align:center;">.194</td>
<td class="styIRS4136TableCellC" style="padding-left:2mm;text-align:center;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExpNontaxableAviationGasGals"/>
</xsl:call-template>
<xsl:if test=" ((count($IRS4136Data/ExpNontaxableAviationGasCredit) > 1) and ($Print = $Separated))">
<xsl:attribute name="style">text-align:left;</xsl:attribute>
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExpNontaxableAviationGasCredit"/>
<xsl:with-param name="ShortMessage" select=" 'true' "/>
</xsl:call-template>
</xsl:if>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD" style="padding-left:3mm;text-align:left;">
<xsl:if test="not(count($IRS4136Data/NontaxableAviationGasoline) = 0) ">
<xsl:attribute name="style">text-align:right;</xsl:attribute>
</xsl:if>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExpNontaxableAviationGasCredit"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">412
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- END LOOP -->
<!-- LINE 2d -->
<tr>
<td class="styIRS4136LetterCell" style="border-bottom-width:1px;padding-left:4mm;padding-right:1.5mm;">
<b>d</b>
</td>
<td class="styIRS4136TableCellLine">LUST tax on aviation fuels used in foreign trade</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:4mm;">.001</td>
<td class="styIRS4136TableCellC" style="padding-left:2mm;text-align:center;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/LUSTTaxAviationFuels"/>
</xsl:call-template>
<xsl:if test=" ((count($IRS4136Data/ExpNontaxableAviationGasCredit) > 1) and ($Print = $Separated))">
<xsl:attribute name="style">text-align:left;</xsl:attribute>
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExpNontaxableAviationGasCredit"/>
<xsl:with-param name="ShortMessage" select=" 'true' "/>
</xsl:call-template>
</xsl:if>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD" style="padding-left:3mm;text-align:left;">
<xsl:if test="not(count($IRS4136Data/NontaxableAviationGasoline) = 0) ">
<xsl:attribute name="style">text-align:right;</xsl:attribute>
</xsl:if>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/LUSTTaxAviationFuelCredit"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">433
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- END LOOP -->
</tbody>
</table>
</div>
<xsl:call-template name="SetInitialDynamicTableHeightRowCount">
<xsl:with-param name="DataRowCount" select="$table2RowCount"/>
<xsl:with-param name="containerHeight" select="2"/>
<xsl:with-param name="containerID" select=" 'AGctn' "/>
</xsl:call-template>
<!-- END LINE 2 -->
<!-- BEGIN BLOCK 3 -->
<!-- BEGIN LINE 3 -->
<div class="styIRS4136NumLine" style="padding-top:4mm;padding-bottom:1mm;padding-left:2mm;float: none; clear: both">3
<span class="styIRS4136NBSP" style="padding-right:3mm;"/> Nontaxable Use of Undyed Diesel Fuel <br/>
</div>
<!-- BEGIN BLOCK DESCRIPTION -->
<div class="styIRS4136DescLine" style="margin-left: 8mm; width:183mm;">Claimant certifies that the diesel fuel did not contain visible evidence of dye.
</div>
<div class="styBB" style="width:180mm;margin-left:4mm;font-size:6.25pt;">
<div style="float:left;padding-top:.5mm;">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedDieselUseException"/>
</xsl:call-template>
<b>Exception.</b> If any of the diesel fuel included in this claim <b>did</b> contain visible evidence of dye, attach an explanation and check here
</label>
</div>
<div style="float:right;padding-right:.5mm;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedDieselUseException"/>
</xsl:call-template>
<span style="letter-spacing:10px;font-weight:bold;"/>
<span style="margin-left: 1mm; margin-right:1mm">
<img src="{$ImagePath}/4136_Bullet.gif" alt="Bullet"/>
</span>
<input alt="UndyedDieselUseException" type="checkbox" class="styIRS4136Ckbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedDieselUseException"/>
<xsl:with-param name="backupName">UndyedDieselUseException</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedDieselUseException"/>
<xsl:with-param name="BackupName">UndyedDieselUseException</xsl:with-param>
</xsl:call-template>
</label>
</div>
</div>
<div style="width:187mm;float:left;clear:left;" id="UDctn">
<table class="styIRS4136Table" cellspacing="0">
<thead class="styIRS4136TableThead">
<tr>
<th style="width:3mm;height:4mm;" scope="col"/>
<th class="styIRS4136TableCellLine" style="border-bottom-width:0px" scope="col">
<span class="styIRS4136TableCellPad"/>
</th>
<th class="styIRS4136TableCellA" style="text-align: center;" scope="col">
<b>(a) Type of use</b>
</th>
<th class="styIRS4136TableCellB" style="text-align: center;" scope="col">
<b>(b) Rate</b>
</th>
<th class="styIRS4136TableCellC" style="text-align: center;border-right-width:0;" scope="col">
<b>(c) Gallons</b>
</th>
<th class="styIRS4136Braces" scope="col">
<span class="styIRS4136TableCellPad"/>
</th>
<th class="styIRS4136TableCellD" style="text-align: center;" scope="col">
<b>(d) Amount of credit</b>
</th>
<th class="styIRS4136TableCellE" style="text-align: center;" scope="col">
<b>(e) CRN</b>
</th>
</tr>
</thead>
<tfoot/>
<tbody>
<!-- Row 3A USE ON A FARM FOR FARMING PURPOSES -->
<!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -->
<!-- LOOP -->
<xsl:variable name="AGRowCount" select="count($IRS4136Data/NontaxableUseOfUndyedDiesel)"/>
<xsl:if test="$AGRowCount = 0 or ((count($IRS4136Data/NontaxableUseOfUndyedDiesel) > 1) and ($Print = $Separated))">
<tr>
<td class="styIRS4136LetterCell" style="padding-left:4mm;padding-right:1.5mm;">
<b>a</b>
</td>
<td class="styIRS4136TableCellLine" style="border-top-width:1px">Nontaxable use</td>
<td class="styIRS4136TableCellA">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:3mm;">$ .243</td>
<td class="styIRS4136TableCellC">
<xsl:attribute name="style">text-align:left;</xsl:attribute>
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$IRS4136Data/NontaxableUseOfUndyedDiesel"/>
<xsl:with-param name="ShortMessage" select=" 'true' "/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD" style="border-bottom:0;">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE" style="border-bottom:0;">
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
</xsl:if>
<!-- Adding check for the SRD -->
<xsl:if test="($Print != $Separated) or (count($IRS4136Data/NontaxableUseOfUndyedDiesel) <= 1) ">
<xsl:for-each select="$IRS4136Data/NontaxableUseOfUndyedDiesel">
<tr>
<xsl:if test="position()=1">
<td class="styIRS4136LetterCell" style="vertical-align:middle;padding-left:4mm;padding-right:1.5mm;">
<xsl:attribute name="rowspan"><xsl:value-of select="$AGRowCount"/></xsl:attribute>
<b>a</b>
</td>
<td class="styIRS4136TableCellLine" style="vertical-align:middle;">
<xsl:attribute name="rowspan"><xsl:value-of select="$AGRowCount"/></xsl:attribute>Nontaxable use
</td>
</xsl:if>
<td class="styIRS4136TableCellA">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="TypeOfUse"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:2mm;text-align:center;">$ .243</td>
<td class="styIRS4136TableCellC">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="Gallons"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<xsl:if test="position()=1">
<td class="styIRS4136TableCellD" style="border-bottom:0;">
<xsl:attribute name="rowspan"><xsl:value-of select="$AGRowCount"/></xsl:attribute>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE" style="border-bottom:0;">
<span class="styIRS4136TableCellPad"/>
</td>
</xsl:if>
</tr>
</xsl:for-each>
</xsl:if>
<!-- Row3B -->
<tr>
<td class="styIRS4136LetterCell" style="padding-left:4mm;padding-right:1.5mm;">
<b>b</b>
</td>
<td class="styIRS4136TableCellLine">Use on a farm for farming purposes</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:5mm;">.243</td>
<td class="styIRS4136TableCellC">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/UseOnFarmUndyedDieselFuelGals"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD">
<span style="float-left;">$</span>
<span style="float-right;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/NontxUseFarmUndyedDslFuelCr"/>
</xsl:call-template>
</span>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">360
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- Row3C USE IN TRAINS -->
<tr>
<td class="styIRS4136LetterCell" style="padding-left:4mm;padding-right:1.5mm;">
<b>c</b>
</td>
<td class="styIRS4136TableCellLine">Use in trains</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:5mm;">.243</td>
<td class="styIRS4136TableCellC">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/TrainUseOfUndyedDieselGal"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/TrainUseOfUndyedDieselCredit"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE">353
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- Row3D USE IN CERTAIN INTERCITY AND LOCAL BUSES -->
<tr>
<td class="styIRS4136LetterCell" style="padding-bottom:3.5mm;padding-left:4mm;padding-right:1.5mm;">
<b>d</b>
</td>
<td class="styIRS4136TableCellLine">Use in certain intercity and local buses (see <b>Caution</b> above line 1)</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:5mm;"> .17</td>
<td class="styIRS4136TableCellC" style="padding-top:2mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/UseOfUndyedDieselBusesGallons"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD" style="padding-top:2mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UseOfUndyedDieselInBusesCredit"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE" style="padding-top:2mm;">350
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
<!-- Row3E EXPORTED -->
<tr>
<td class="styIRS4136LetterCell" style="padding-bottom:.5mm;padding-right:1.5mm;padding-left:4mm;border-bottom-width:1px;">
<b>e</b>
</td>
<td class="styIRS4136TableCellLine">Exported</td>
<td class="styIRS4136TableCellA" style="background-color: lightgrey">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:5mm;">.244</td>
<td class="styIRS4136TableCellC">
<xsl:call-template name="PopulateText">
<xsl:with-param name="MaxSize" select="9"/>
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExportedUndyedDieselFuelGals"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$IRS4136Data/ExportedUndyedDieselFuelCr"/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE" style="padding-top:1mm;">413
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
</tbody>
</table>
</div>
<!-- END LINE 3 -->
<!-- <div style="width:187mm;height:2mm;padding-left:8mm">
* These rates apply after September 30, 2012</div>-->
<!-- BEGIN BLOCK 4 -->
<!-- BEGIN LINE 4 -->
<div class="styIRS4136NumLine" style="padding-top:3mm;padding-bottom:1.5mm;padding-left:2mm;float: none; clear: both"> 4
<span class="styIRS4136NBSP" style="padding-right:3mm;"/> Nontaxable Use of Undyed Kerosene (Other Than Kerosene Used in Aviation)
</div>
<!-- BEGIN BLOCK DESCRIPTION -->
<div class="styIRS4136DescLine" style="margin-left:8mm; width:180mm;margin-right: 5mm;">Claimant certifies that the kerosene did not contain visible evidence of dye.
</div>
<div class="styBB" style="width:179mm;margin-left:4mm;font-size:6.35pt;">
<div style="float:left;padding-top:.5mm;">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedKeroseneUseException"/>
</xsl:call-template>
<b>Exception.</b> If any of the kerosene included in this claim <b>did</b> contain visible evidence of dye, attach an explanation and check here
</label>
</div>
<div style="float:right;padding-right:.5mm;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedKeroseneUseException"/>
</xsl:call-template>
<span style="letter-spacing:10px;font-weight:bold;"/>
<span style="margin-left: 1mm; margin-right:1mm">
<img src="{$ImagePath}/4136_Bullet.gif" alt="Bullet"/>
</span>
<input alt="UndyedKeroseneUseException" type="checkbox" class="styIRS4136Ckbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedKeroseneUseException"/>
<xsl:with-param name="backupName">UndyedKeroseneUseException</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$IRS4136Data/UndyedKeroseneUseException"/>
<xsl:with-param name="BackupName">UndyedKeroseneUseException</xsl:with-param>
</xsl:call-template>
</label>
</div>
</div>
<div style="width:187mm;float:left;clear:left;" id="UDctn">
<table class="styIRS4136Table" cellspacing="0">
<thead class="styIRS4136TableThead">
<tr>
<th style="width:3mm;height:4mm;" scope="col"/>
<th class="styIRS4136TableCellLine" scope="col">
<span class="styIRS4136TableCellPad"/>
</th>
<th class="styIRS4136TableCellA" style="text-align: center;" scope="col">
<b>(a) Type of use</b>
</th>
<th class="styIRS4136TableCellB" style="text-align: center;" scope="col">
<b>(b) Rate</b>
</th>
<th class="styIRS4136TableCellC" style="text-align: center;border-right-width:0;" scope="col">
<b>(c) Gallons</b>
</th>
<th class="styIRS4136Braces" scope="col">
<span class="styIRS4136TableCellPad"/>
</th>
<th class="styIRS4136TableCellD" style="text-align: center;" scope="col">
<b>(d) Amount of credit</b>
</th>
<th class="styIRS4136TableCellE" style="text-align: center;" scope="col">
<b>(e) CRN</b>
</th>
</tr>
</thead>
<tfoot/>
<tbody>
<!-- Row 4A NONTAXABLE USE -->
<!-- ********************************************************************************************************** -->
<!-- LOOP -->
<xsl:variable name="AGRowCount" select="count($IRS4136Data/NontaxableUseOfUndyedKerosene)"/>
<xsl:if test="$AGRowCount = 0 or ((count($IRS4136Data/NontaxableUseOfUndyedKerosene) > 1) and ($Print = $Separated))">
<tr>
<td class="styIRS4136LetterCell" style="padding-left:4mm;padding-right:1.5mm;">
<b>a</b>
</td>
<td class="styIRS4136TableCellLine">Nontaxable use taxed at $.244</td>
<td class="styIRS4136TableCellA">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellB" style="padding-left:3.5mm;">$ .243</td>
<td class="styIRS4136TableCellC">
<xsl:attribute name="style">text-align:left;</xsl:attribute>
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$IRS4136Data/NontaxableUseOfUndyedDiesel"/>
<xsl:with-param name="ShortMessage" select=" 'true' "/>
</xsl:call-template>
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136Braces">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellD" style="border-bottom:0;">
<span class="styIRS4136TableCellPad"/>
</td>
<td class="styIRS4136TableCellE" style="border-bottom:0;">
<span class="styIRS4136TableCellPad"/>
</td>
</tr>
</xsl:if>
<!-- Adding check for the SRD -->