-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1065Style.xsl
79 lines (77 loc) · 2.75 KB
/
IRS1065Style.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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- CSS Styles for form 1065 -->
<xsl:template name="IRS1065Style">
.styIRS1065DotLn {
letter-spacing:3.2mm;
font-weight:bold;
float:left;
padding-right:2mm;
}
.styIRS1065LNDesc{ /* Line item description */
height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
float:left; clear: none;
}
.styIRS1065LNAmountBoxNLB{ /* Amount Box with no left border */
width:32mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
text-align:right;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS1065LNLeftLtrBoxTD{ /* Item letter to the left of the page under the three digit number Third Number -- 14a -- */
width:8mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
padding-left:4.4mm;
font-weight:bold;
float:left; clear: none;
}
.styIRS1065VTImageBox{ /* Vertical image holder box */
width:5mm;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 1px;
float:left;clear:none;
}
.styIRS1065BBText{ /* Text with a bottom border */
padding-top:.5mm;
padding-bottom:.5mm;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS1065LNPercentBox{ /* Box for percentages */
width:14mm;
padding-top:.5mm;
padding-bottom:.5mm;
text-align:center;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS1065LNYesNoBox{ /* Box for storing Yes/No Values */
width:6mm;height:4.5mm;
padding-top:.5mm;
padding-bottom:.5mm;
text-align:center;
font-weight:bold;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS1065LNYesNoBoxRB{ /* Box for storing Yes/No Values with a right border */
width:6mm;height:4.5mm;
padding-top:.5mm;
padding-bottom:.5mm;
text-align:center;
font-weight:bold;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 1px;
float:left; clear: none;
}
</xsl:template>
</xsl:stylesheet>