-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8283.xsl
3280 lines (3248 loc) · 179 KB
/
IRS8283.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="IRS8283Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form8283Data" select="$RtnDoc/IRS8283"/>
<xsl:variable name="FRTbl1">5</xsl:variable>
<xsl:variable name="FRTbl2">5</xsl:variable>
<xsl:template match="/">
<html xmlns="http://www.irs.gov/efile" xmlns:efile="http://www.irs.gov/efile">
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form8283Data)"/>
</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 8283"/>
<META name="GENERATOR" content="IBM WebSphere Studio"/>
<xsl:call-template name="GlobalStylesForm"/>
<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="IRS8283Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
</head>
<body class="styBodyClass">
<form name="Form8283">
<xsl:call-template name="DocumentHeader"/>
<div style="width:187mm;">
<div class="styFNBox" style="width:32mm;height:27mm;">
<div>
<span style="padding-top:1mm;">Form<span style="width:6px;"/>
</span>
<span class="styFormNumber">8283</span>
</div>
<div class="styAgency" style="width:30mm;padding-bottom:2mm;">(Rev. December 2012)
<span style="width:3px;"/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form8283Data"/>
<xsl:with-param name="IDstring">Form8283Data</xsl:with-param>
</xsl:call-template>
</div>
<div>
<span class="styAgency">Department of the Treasury</span>
<br/>
<span class="styAgency">Internal Revenue Service</span>
</div>
</div>
<div class="styFTBox" style="width:125mm;">
<div class="styMainTitle">Noncash Charitable Contributions
</div>
<br/>
<div class="styFBT" style="font-size: 7pt;padding-bottom:1mm;">
<img src="{$ImagePath}/8283_Bullet_Sm.gif" alt="bullet image pointing to right"/>
<span style="width:3px;"/>Attach to your tax return if you claimed a total deduction<br/>
of over $500 for all contributed property.
</div>
<div class="styFBT">
<img src="{$ImagePath}/8283_Bullet_Sm.gif" alt="bullet image pointing to right"/>
<span style="width:1mm;"/>See separate instructions.
</div>
</div>
<div class="styTYBox" style="width:30mm;height:10.5mm;border-bottom-width:1px;">
<br/>
<div style="font-size:7pt;">
<span style="width:6px;"/>OMB No.1545-0908
</div>
</div>
<div class="styTYBox" style="width:30mm;height:16.5mm">
<br/>
<div style="font-size:7pt;text-align:left;">
<span style="width:6px;"/>Attachment<br/>
<span style="width:6px;"/>Sequence No.
<span style="font-family:Arial;font-size:9pt;font-weight:bold;">155</span>
</div>
</div>
<!-- Name(s) & EIN Box -->
<div class="styBB" style="width:187mm;border-top-width:1px">
<div class="styNameBox" style="font-size:7pt;width:139mm;height:10mm;font-weight:normal;">Name(s) shown on your income tax return
<!-- WARNING: Return Type will need to be update with various future form 1040 return type -->
<xsl:choose>
<xsl:when test="$RtnHdrData/ReturnType='1040'">
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<br/>
<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>
</div>
<div class="styEINBox" style="font-size:7pt;width:47mm;height:4mm;padding-left:2mm;">Identifying number<br/><br/>
<span style="font-weight:normal;">
<!-- WARNING: Return Type will need to be update with various future form 1040 return type-->
<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>
</span>
</div>
</div>
</div>
<!--Name(s) & EIN Box -->
<!--Note -->
<div style="width:187mm;">
<div class="styBB" style="width:187mm;border-top-width:0px">
<span style="font-size:8pt;">
<b>Note.</b>
</span>
<span style="width:6px;"/>Figure the amount of your contribution deduction before completing this form. See your tax return instructions.
</div>
<!--Section A -->
<div style="width:187mm;">
<div class="styBB" style="width:187mm;border-top-width:0px;border-bottom-width:0px;">
<span style="font-size:8pt;">
<b>Section A. Donated Property of $5,000 or Less and Certain Publicly Traded Securities—</b>
</span>
List in this section <b>only</b>
<span style="width:19.45mm;"/>items (or groups of similar items) for which you claimed a deduction of $5,000 or less. Also, list certain publicly traded
<span style="width:19.45mm;"/>securities even if the deduction is more than $5,000 (see instructions).
</div>
</div>
</div>
<!--Part I -->
<div class="styBB" style="width:187mm;border-top-width:1px">
<div class="styPartName" style="width:15mm;">Part I</div>
<div class="styPartDesc" style="padding-left:3mm;width:150mm;border-top-width:1px;">
Information on Donated Property—<span class="styNormalText">If you need more space, attach a statement.</span>
</div>
<div style="float:right;">
<xsl:call-template name="SetDynamicTableToggleButton">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
<xsl:with-param name="containerHeight" select="5"/>
<xsl:with-param name="headerHeight" select="1"/>
<xsl:with-param name="containerID" select=" 'TPctn' "/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;" id="TPctn" class="styTableContainerNBB">
<xsl:call-template name="SetInitialState"/>
<table cellspacing="0" summary="Part I Information on Donated Property" style="" name="TYTable" id="TYTable" class="styTable">
<thead class="styTableThead">
<tr>
<th scope="col" class="styTableCell" style="width:6mm;text-align:center;font-size:7pt;font-weight:bold;border-color:black;border-right:none;">1</th>
<th scope="col" class="styTableCell" style="width:61mm;text-align:center;font-size:7pt;border-color:black;font-weight:normal;" >
<span class="styBoldText">(a)</span>
<span style="width:1mm;"/>
<span style="font-size:7pt;">Name and address of the donee organization</span>
</th>
<th scope="col" class="styTableCell" style="width:61mm;text-align:center;font-size:7pt;border-color:black;font-weight:normal;" >
<span class="styBoldText">(b)</span>
<span style="width:1mm;"/>
<span style="font-size:7pt;">if donated property is a vehicle (see instructions), check the box. Also enter the vehicle identification number (unless Form 1098-C is attached)</span>
</th>
<th scope="col" class="styTableCell" style="width:60mm;text-align:center;font-size:7pt;border-color:black;border-right:none;font-weight:normal;" >
<span class="styBoldText">(c)</span>
<span style="width:1mm;"/>
<span style="font-size:7pt;">Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage, unless Form 1098-C is attached)</span>
</th>
</tr>
</thead>
<tfoot/>
<tbody>
<!-- If the Print parameter is not set to be Separated, or there are less elements than the container height (5), execute -->
<xsl:if test="($Print !=$Separated) or (count($Form8283Data/InformationOnDonatedProperty) <= 5)">
<xsl:for-each select="$Form8283Data/InformationOnDonatedProperty">
<tr>
<td class="styTableCell" style="width:10mm;text-align:left;padding-left:3mm;font-size:7pt;font-weight:bold;border-color:black;">
<xsl:choose>
<xsl:when test="PropertyIdentifier">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="PropertyIdentifier"/>
</xsl:call-template>
<span class="styTableCellPad"/>
</xsl:when>
<xsl:otherwise>
<span style="width:4px;float:center;"/>
</xsl:otherwise>
</xsl:choose>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
</xsl:call-template>
</td>
<td class="styTableCell" style="width:60mm;text-align:left;font-size:7pt;font-weight:normal;border-color:black;" >
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NameOfDoneeOrganization/BusinessNameLine1"/>
</xsl:call-template>
<xsl:if test="NameOfDoneeOrganization/BusinessNameLine2">
<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NameOfDoneeOrganization/BusinessNameLine2"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="USAddressOfDoneeOrganization">
<br/>
<xsl:call-template name="PopulateUSAddressTemplate">
<xsl:with-param name="TargetNode" select="USAddressOfDoneeOrganization"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="FrgnAddressOfDoneeOrganization">
<br/>
<xsl:call-template name="PopulateForeignAddressTemplate">
<xsl:with-param name="TargetNode" select="FrgnAddressOfDoneeOrganization"/>
</xsl:call-template>
</xsl:if>
</td>
<td class="styTableCell" style="width:60mm;text-align:left;font-size:7pt;font-weight:normal;border-color:black;" >
<span style="width:34mm"/>
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode"
select="DonatedPropertyVehicleInd"/>
<xsl:with-param name="BackupName">
IRS8283 DonatedPropertyVehicleInd<xsl:number value="position()"/>
</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="DonatedPropertyVehicleInd"/>
<xsl:with-param name="BackupName">
<!-- IRS8283 DonatedPropertyVehicleInd<xsl:number value="position()"/>-->
IRS8283 DonatedPropertyVehicleInd
</xsl:with-param>
</xsl:call-template>
</label>
<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="VehicleIdentificationNumber"/>
</xsl:call-template>
</td>
<td class="styTableCell" style="width:60mm;text-align:left;font-size:7pt;font-weight:normal;border-color:black;
border-right:none;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="DescriptionOfDonatedProperty"/>
</xsl:call-template>
<!-- <xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="VehicleYear"/>
</xsl:call-template>-->
</td>
</tr>
</xsl:for-each>
</xsl:if>
<xsl:if test="(count($Form8283Data/InformationOnDonatedProperty) < 1) or
(($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5))">
<tr>
<td class="styTableCell" style="width:6mm;text-align:left;padding-left:3mm;font-size: 7pt;font-weight:bold;border-color:black;">A<span class="styTableCellPad"/>
</td>
<xsl:if test="($Print != $Separated) or (count($Form8283Data/InformationOnDonatedProperty) < 1)">
<td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;" >
<span class="styTableCellPad"/>
</td>
</xsl:if>
<!-- Insert additional data message if Print is set to separated and there are five or more elements -->
<xsl:if test="($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<td class="styTableCell" style="width:60mm;text-align:left;font-size:7pt;font-weight:normal;border-color:black;">
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
</xsl:call-template>
</td>
</xsl:if>
<td class="styTableCell" style="width:60mm;padding-right:38mm;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8283Data/testA"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesA
</xsl:with-param>
</xsl:call-template>
</input>
<span style="width: 2mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8283Data/testA"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesA</xsl:with-param>
</xsl:call-template>
</label>
</td>
<!-- <td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;" >
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</label>
</td>-->
<td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;border-right:none;" >
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 2 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:6mm;text-align:left;padding-left:3mm;font-size: 7pt;font-weight:bold;border-color:black;">B<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:60mm;padding-right:38mm;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8283Data/testB"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesB</xsl:with-param>
</xsl:call-template>
</input>
<span style="width: 2mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8283Data/testB"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesB</xsl:with-param>
</xsl:call-template>
</label>
</td>
<!-- <td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;
" >
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</label>
</td>-->
<td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;border-right:none;" >
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 3 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:6mm;text-align:left;padding-left:3mm;font-size: 7pt;font-weight:bold;border-color:black;">C<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;" >
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:60mm;padding-right:38mm;font-weight:bold;border-color:black;" >
<span class="styTableCellPad"/>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8283Data/testC"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesC</xsl:with-param>
</xsl:call-template>
</input>
<span style="width: 2mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8283Data/testC"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesC</xsl:with-param>
</xsl:call-template>
</label>
</td>
<!-- <td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;
" >
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</label>
</td>
--> <td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;border-right:none;" >
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 4 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:6mm;text-align:left;padding-left:3mm;font-size: 7pt;font-weight:bold;border-color:black;">D<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:81mm;text-align:center;font-weight:bold;border-color:black;" >
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:81mm;;padding-right:38mm;font-weight:bold;border-color:black;" >
<span class="styTableCellPad"/>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8283Data/testD"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesD</xsl:with-param>
</xsl:call-template>
</input>
<span style="width: 2mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8283Data/testD"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesD</xsl:with-param>
</xsl:call-template>
</label>
</td>
<!-- <td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;
" >
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/CorporationIsAForeignBank"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYes</xsl:with-param>
</xsl:call-template>
</label>
</td> -->
<td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;border-right:none;" >
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 5 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:6mm;text-align:left;padding-left:3mm;font-size: 7pt;font-weight:bold;border-color:black;">E<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:81mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:81mm;padding-right:38mm;font-weight:bold;border-color:black;" >
<span class="styTableCellPad"/>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8283Data/testE"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesE</xsl:with-param>
</xsl:call-template>
</input>
<span style="width: 2mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8283Data/testE"/>
<xsl:with-param name="BackupName">IRS1120FSchIForeignBankYesE</xsl:with-param>
</xsl:call-template>
</label>
</td>
<td class="styTableCell" style="width:60mm;text-align:center;font-weight:bold;border-color:black;border-right:none;" >
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
</tbody>
</table>
</div>
<xsl:call-template name="SetInitialDynamicTableHeight">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
<xsl:with-param name="containerHeight" select="5"/>
<xsl:with-param name="headerHeight" select="1"/>
<xsl:with-param name="containerID" select=" 'TPctn' "/>
</xsl:call-template>
<!--Table expand/collapse toggle button -->
<div style="width:187mm;">
<span class="styGenericDiv" style="float:right;clear:none;text-align:right;">
<xsl:call-template name="SetDynamicTableToggleButton">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
<xsl:with-param name="containerHeight" select="5"/>
<xsl:with-param name="headerHeight" select="2"/>
<xsl:with-param name="containerID" select=" 'TP1ctn' "/>
</xsl:call-template>
</span>
<!--Table expand/collapse toggle button end -->
</div>
<div style="width:187mm;" id="TP1ctn" class="styTableContainerNBB">
<xsl:call-template name="SetInitialState"/>
<table cellspacing="0" summary="Part I Information on Donated Property If the amount you claimed as a deduction for an item is $500 or less, you do not have to complete columns (d), (e), and (f)." class="styTable" style="" name="TYTable1" id="TYTable1">
<thead class="styTableThead">
<tr>
<th scope="col" colspan="7" class="styTableCell" style="width:187mm;text-align:left;font-size:7pt;border-right:none;font-weight:normal;border-top-width:0px;border-color:black;">
<span class="styBoldText">Note.</span>
<span style="width:1mm;"/>
<span style="font-size: 7pt;">If the amount you claimed as a deduction for an item is $500 or less, you do not have to complete columns (e), (f), and (g).</span>
</th>
</tr>
<tr>
<th scope="col" class="styTableCell" style="width:7mm;background-color:lightgrey;border-right:1 solid black;border-bottom:1 solid black;">
<span style="width:1mm;"/>
</th>
<th scope="col" class="styTableCell" style="width:28mm;text-align:center;font-size: 7pt;font-weight:normal;border-color:black;">
<span class="styBoldText">(d)</span>
<span style="width:1mm;"/>Date of the contribution
</th>
<th scope="col" class="styTableCell" style="width:27mm;text-align:center;font-size: 7pt;font-weight:normal;border-color:black;">
<span class="styBoldText">(e)</span>
<span style="width:1mm;"/>Date acquired by donor (mo., yr.)
</th>
<th scope="col" class="styTableCell" style="width:26mm;text-align:center;font-size: 7pt;font-weight:normal;border-color:black;">
<span class="styBoldText">(f)</span>
<span style="width:1mm;"/>How acquired by donor
</th>
<th scope="col" class="styTableCell" style="width:36mm;text-align:center;font-size: 7pt;font-weight:normal;border-color:black;">
<span class="styBoldText">(g)</span>
<span style="width:1mm;"/>Donor's cost or adjusted basis
</th>
<th scope="col" class="styTableCell" style="width:36mm;text-align:center;font-size: 7pt;font-weight:normal;border-color:black;">
<span class="styBoldText">(h)</span>
<span style="width:1mm;"/>Fair market value (see instructions)
</th>
<th scope="col" class="styTableCell" style="width:26mm;text-align:center;font-size: 7pt;font-weight:normal;border-color:black;border-right:none;">
<span class="styBoldText">(i)</span>
<span style="width:1mm;"/>Method used to determine the fair market value
</th>
</tr>
</thead>
<tfoot/>
<tbody>
<!-- If the Print parameter is not set to be Separated, or there are less elements than the container height (5), execute -->
<xsl:if test="($Print !=$Separated) or (count($Form8283Data/InformationOnDonatedProperty) <= 5)">
<xsl:for-each select="$Form8283Data/InformationOnDonatedProperty">
<tr>
<td class="styTableCell" style="width:7mm;text-align:left;padding-left:2mm;font-size: 7pt;font-weight:bold;border-color:black;">
<xsl:choose>
<xsl:when test="PropertyIdentifier">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="PropertyIdentifier"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<span style="width:4px;float:center;"/>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="styTableCell" style="float:right;width:28mm;text-align:center;font-size: 7pt;font-weight:normal;
border-color:black;">
<span style="width:0.1mm;float:left;">
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Part I Line 1 Columns (c) - (f) Donor line detail</xsl:with-param>
<xsl:with-param name="TargetNode" select="DonorLineDetail/@scheduleK-1Indicator"/>
<xsl:with-param name="Style">padding-left:3mm;</xsl:with-param>
</xsl:call-template>
</span>
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="DonorLineDetail/DateOfTheContribution"/>
</xsl:call-template>
</td>
<td class="styTableCell" style="width:27mm;font-size: 7pt;font-weight:normal;border-color:black;">
<span style="width:0.1mm;float:left;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="DonorLineDetail/DateAcquiredByDonor"/>
</xsl:call-template>
</span>
<span style="width:19mm;text-align:center;">
<xsl:choose>
<xsl:when test="DonorLineDetail/DateAcquiredByDonor = 'VARIOUS' ">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="DonorLineDetail/DateAcquiredByDonor"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateMonth">
<xsl:with-param name="TargetNode" select="DonorLineDetail/DateAcquiredByDonor"/>
</xsl:call-template>-<xsl:call-template name="PopulateYear">
<xsl:with-param name="TargetNode" select="DonorLineDetail/DateAcquiredByDonor"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
<span style="width:2px;"/>
<!-- Tags are pushed up against the hyphen to prevent spaces from getting between the hyphen and numbers -Kevin Chang -->
</td>
<td class="styTableCell" style="width:26mm;text-align:left;font-size: 7pt;font-weight:normal;border-color:black;">
<span style="text-align:left;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="DonorLineDetail/HowAcquiredByDonor"/>
</xsl:call-template>
</span>
</td>
<td class="styTableCell" style="width:36mm;text-align:right;font-size: 7pt;font-weight:normal;border-color:black;">
<!--span style="width:21.5mm;float:left;text-align:right;"-->
<div class="styGenericDiv" style="text-align:left;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="DonorLineDetail/DonorsCostOrAdjustedBasis"/>
</xsl:call-template>
</div>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="DonorLineDetail/DonorsCostOrAdjustedBasis"/>
</xsl:call-template>
<span style="width:0.1mm;"/>
</td>
<td class="styTableCell" style="width:36mm;text-align:right;font-size: 7pt;font-weight:normal;border-color:black;">
<div class="styGenericDiv" style="text-align:left;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="FairMarketValue"/>
</xsl:call-template>
</div>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="FairMarketValue"/>
</xsl:call-template>
<span style="width:0.1mm;"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:left;font-size: 7pt;font-weight:normal;border-color:black;border-right:none;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="FairMarketValueMethod"/>
</xsl:call-template>
</td>
</tr>
</xsl:for-each>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 1 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:7mm;text-align:left;padding-left:2mm;font-size: 7pt;font-weight:bold;border-color:black;">A<span class="styTableCellPad"/>
</td>
<xsl:choose>
<xsl:when test="($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<td class="styTableCell" style="float:right;width:26mm;text-align:left;font-size: 7pt;font-weight:normal;border-color:black;">
<span class="styTableCellPad" style="width:26mm">
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
<xsl:with-param name="ShortMessage" select="'true'"/>
</xsl:call-template>
</span>
</td>
</xsl:when>
<xsl:otherwise>
<td class="styTableCell" style="float:right;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
</xsl:otherwise>
</xsl:choose>
<td class="styTableCell" style="float:left;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:44mm;text-align:center;font-weight:bold;border-color:black;border-right:none;">
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 2 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:7mm;text-align:left;padding-left:2mm;font-size: 7pt;font-weight:bold;border-color:black;">B<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:right;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:left;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:44mm;text-align:center;font-weight:bold;border-color:black;border-right:none;">
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 3 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:7mm;text-align:left;padding-left:2mm;font-size: 7pt;font-weight:bold;border-color:black;">C<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:right;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:left;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:44mm;text-align:center;font-weight:bold;border-color:black;border-right:none;">
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 4 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:7mm;text-align:left;padding-left:2mm;font-size: 7pt;font-weight:bold;border-color:black;">D<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:right;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:left;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:44mm;text-align:center;font-weight:bold;border-color:black;border-right:none;">
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($Form8283Data/InformationOnDonatedProperty) < 5 or
($Print = $Separated) and (count($Form8283Data/InformationOnDonatedProperty) > 5)">
<tr>
<td class="styTableCell" style="width:7mm;text-align:left;padding-left:2mm;font-size: 7pt;font-weight:bold;border-color:black;">E<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:right;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="float:left;width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:26mm;text-align:center;font-weight:bold;border-color:black;">
<span class="styTableCellPad"/>
</td>
<td class="styTableCell" style="width:44mm;text-align:center;font-weight:bold;border-color:black;border-right:none;">
<span class="styTableCellPad"/>
</td>
</tr>
</xsl:if>
</tbody>
</table>
</div>
<xsl:call-template name="SetInitialDynamicTableHeight">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
<xsl:with-param name="containerHeight" select="5"/>
<xsl:with-param name="headerHeight" select="2"/>
<xsl:with-param name="containerID" select=" 'TP1ctn' "/>
</xsl:call-template>
<!-- PART II -->
<div style="width:187mm;height:34mm;" id="TPXctn">
<xsl:call-template name="SetInitialState"/>
<table cellspacing="0" summary="Part II Partial Interests and Restricted Use Property" class="styIRS8283TableContainer" style="width:183mm;border-top:none;" name="TYTable3" id="TYTable3">
<!--Display empty Section A Part II -->
<xsl:if test="(not($Form8283Data/InformationOnDonatedProperty)) or (((count($Form8283Data/InformationOnDonatedProperty) > 5) and ($Print = $Separated)))">
<tr>
<th scope="col" colspan="7" class="styTableCell" style="width:187mm;text-align:left;font-size:7pt;border-right:none;">
<div style="width:187mm;border-top-width:0px">
<span class="styPartName" style="width:16mm;">Part II</span>
<span style="font-family:verdana;font-size:8pt;">
<span style="width:6px;"/>
<b>Partial Interests and Restricted Use Property—</b>
</span>
<span style="font-family:verdana;font-size:8pt;font-weight:normal;">
Complete lines 2a through 2e if you gave less than an entire interest in
a property listed in Part I. Complete lines 3a through 3c if conditions were placed on a contribution listed in Part I; also attach the required statement (see instructions).
</span>
</div>
</th>
</tr>
<tr>
<td colspan="7" class="styTableCell" style="width:187mm;text-align:left;
font-size:7pt;border-right:none;">
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4mm;">2a</div>
<div class="styLNDesc" style="height:4mm;font-weight:normal;">Enter the letter from Part I that identifies the property for which you gave less than an entire interest</div>
<div class="" style="float:right;">
<img src="{$ImagePath}/8283_Bullet_Sm.gif" alt="bullet image pointing to right"/>
<span style="width:6px;"/>
<span style="width:32mm;border-bottom:1 solid black;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="PropertyIdentifier"/>
</xsl:call-template>
</span>
</div>
</div>
<div style="width:187mm;padding-left:8mm;">
If Part II applies to more than one property, attach a separate statement.</div>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">b</div>
<div class="styLNDesc" style="width:179mm;height:4mm;font-weight:normal;">
<div class="styGenericDiv" style="width:95mm;">
Total amount claimed as a deduction for the property listed in Part I:
</div>
<div class="styGenericDiv" style="padding-left:0mm;width:48mm;">
<b>(1)</b>
<span style="width:12px;"/>For this tax year
</div>
<div class="" style="float:right;">
<img src="{$ImagePath}/8283_Bullet_Sm.gif" alt="bullet image pointing to right"/>
<span style="width:6px;"/>
<span style="width:32mm;border-bottom:1 solid black;padding-left:3mm;">
<xsl:choose>
<xsl:when test="((count($Form8283Data/InformationOnDonatedProperty) > 5) and ($Print = $Separated))">
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$Form8283Data/InformationOnDonatedProperty"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="TotalDeductionClaimedThisTY"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
</div>
</div>
</div>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"/>
<div class="styLNDesc" style="width:179mm;height:4mm;font-weight:normal;">
<div class="styGenericDiv" style="width:95mm;">
</div>
<div class="styGenericDiv" style="padding-left:0mm;width:48mm;">
<b>(2)</b>
<span style="width:12px;"/>For any prior tax years
</div>
<div class="" style="float:right;">
<img src="{$ImagePath}/8283_Bullet_Sm.gif" alt="bullet image pointing to right"/>
<span style="width:6px;"/>
<span style="width:32mm;border-bottom:1 solid black;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="TotDeductionClaimedAnyPriorTY"/>
</xsl:call-template>
</span>
</div>
</div>
</div>
<div class="styLNLeftLtrBox" style="height:4.5mm;">c</div>
<div class="styLNDesc" style="width:172mm;height:4.5mm;border-bottom-width:1px;font-weight:normal;">Name and address of each organization to which any such contribution was made in a prior year (complete only if different from the donee organization above):</div>
<br/>
<div class="styBB" style="width:180mm;margin-left:4mm;float:left;"/>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">
<span style="width:1mm;"/>
</div>
<div style="font-size:6pt;font-weight:normal;">Name of charitable organization (donee)</div>
</div>
<div class="styBB" style="width:180mm;margin-left:4mm;float:left;">
<span style="width:1px;"/>
</div>
<div style="width:172mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">
<span style="width:1mm;"/>
</div>
<div style="font-size:6pt;font-weight:normal;">Address (number, street, and room or suite no.)</div>
</div>
<div class="styBB" style="width:180mm;margin-left:4mm;float:left;">
<span style="width:1px;"/>
</div>
<div style="width:172mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">
<span style="width:1mm;"/>
</div>
<div style="font-size:6pt;font-weight:normal;">City or town, state, and ZIP code</div>
</div>
<div class="styBB" style="width:180mm;margin-left:4mm;float:left;"/>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">d</div>
<div class="styLNDesc" style="width:179mm;height:4mm;font-weight:normal;">For tangible property, enter the place where the property is located or kept
<img src="{$ImagePath}/8283_Bullet_Sm.gif" alt="bullet image pointing to right"/><span style="width:7mm;"/>
<span style="width: 2mm;"/>
<span style="border-bottom: 1px solid black; width: 20mm;"/>
</div>
</div>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">e</div>
<div class="styLNDesc" style="width:179mm;height:4mm;font-weight:normal;">Name of any person, other than the donee organization, having actual possession of the property
<img src="{$ImagePath}/8283_Bullet_Sm.gif" alt="bullet image pointing to right"/>
<span style="width:5mm;"/>
<span style="border-bottom: 1px solid black; width: 20mm;"/>
</div>
</div>
<div class="styBB" style="width:180mm;margin-left:4mm;float:left;"/>
<xsl:choose>
<xsl:when test="$Form8283Data/InformationOnDonatedProperty/RestrictionOnDonatedProperty=1">
<div style="width:186mm;float:left;">
<div class="styLNLeftLtrBox" style="height:4mm;">3a</div>
<div class="styLNDesc" style="width:166mm;height:4mm;font-weight:normal;">Is there a restriction, either temporary or permanent, on the donee's right to use or dispose of the donated
</div>
<div class="styIRS8283LNYesNoBox" style="width:6mm;height:4mm;font-weight:bold;border-top-width:1px;">Yes</div>
<div class="styIRS8283LNYesNoBox" style="width:6mm;height:4mm;font-weight:bold;border-top-width:1px;">No</div>
</div>
<div style="width:186mm;float:left;">
<div class="styLNLeftLtrBox" style="height:4mm;"/>
<div class="styLNDesc" style="width:166mm;height:4mm;font-weight:normal;padding-bottom:0mm;padding-top:0mm">
property?
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:8px;">.</span>
</div>
<div class="styIRS8283LNYesNoBox" style="width:6mm;height:4.5mm;font-weight:bold;border-top-width:0px;padding-bottom:0mm;padding-top:0mm"/>
<div class="styIRS8283LNYesNoBox" style="width:6mm;height:4.5mm;font-weight:bold;border-top-width:0px;padding-bottom:0mm;padding-top:0mm"/>
</div>
</xsl:when>
<xsl:otherwise>
<div style="width:186mm;float:left;">
<div class="styLNLeftLtrBox" style="height:4mm;">a</div>
<div class="styLNDesc" style="width:166mm;height:4mm;font-weight:normal;">Is there a restriction, either temporary or permanent, on the donee's right to use or dispose of the donated
</div>
<div class="styIRS8283LNYesNoBox" style="width:6mm;height:4mm;font-weight:bold;border-top-width:1px;">Yes</div>
<div class="styIRS8283LNYesNoBox" style="width:6mm;height:4mm;font-weight:bold;border-top-width:1px;">No</div>
</div>
<div style="width:186mm;float:left;">
<div class="styLNLeftLtrBox" style="height:4mm;padding-bottom:0mm;padding-top:0mm"/>
<div class="styLNDesc" style="width:166mm;height:4mm;font-weight:normal;padding-bottom:0mm;padding-top:0mm">
property?
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>
<span class="styBoldText" style="width:20px;">.</span>