-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8880Style.xsl
182 lines (153 loc) · 4.31 KB
/
IRS8880Style.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
<?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 8880 -->
<xsl:template name="IRS8880Style">
.styIRS8880LongLNDesc{ /* Line item description */
width:170mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
float:left; clear: none;
}
.styIRS8880MedLNDesc{ /* Line item description */
width:139mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
float:left; clear: none;
}
.styIRS8880ShortLNDesc{ /* Line item description */
width:107mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
float:left; clear: none;
}
.styDottedLine {/* Dotted Lines */
letter-spacing:3.3mm;
font-weight:bold;
padding-right:.5mm
}
.styIRS8880ShortestLNDesc{ /* Line item description */
width:99mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
float:left; clear: none;
}
.styIRS8880BulletList {/* Bullet list */
list-style-type:disc;
}
.styIRS8880TheadCellPt0{ /*Header Cell */
font-size:7pt;
font-weight:normal;
text-align:center;
display:table-header-group;
}
.styIRS8880TheadCellPt1{ /*Header Cell */
font-size:7pt;
font-weight:normal;
text-align:center;
display:table-header-group;
}
.styIRS8880TheadCellPt2{ /*Header Cell */
font-size:7pt;
width:35mm;
font-weight:normal;
text-align:center;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width:0px;
}
.styIRS8880TheadCellPt3{ /*Header Cell */
font-size:7pt;
width:31.5mm;
font-weight:normal;
text-align:center;
display:table-header-group;
border-style: solid;
border-color: black;
border-top-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-right-width:0px;
}
.styFSHeading {/* Filing status Headings */
width:86mm;
text-align:center;
font-weight:normal;
}
.styLimitationHeading {/* Limitation Headings */
width:36mm;
font-size:8pt;
text-align:center;
font-weight:normal;
}
.styIRS8880Medium{/*Medium cell*/
font-size:7pt;
width:63mm;
font-weight:normal;
text-align:left;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width:1px;
.styIRS8880LargeCell{ /*Second Cell */
font-size:7pt;
width:98.5mm;
font-weight:normal;
text-align:left;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width:1px;
}
.styIRS8880TxCell { /*Cell for text */
height:6mm;
width:40mm;
padding-left:2mm;
vertical-align:top;
border-style:solid;
border-color:black;
border-bottom-width:1px;
border-left-width:0px;
border-top-width:0px;
border-right-width:0px;
}
.styDataCell {/* Data cells */
height:4.3mm;
font-size:8pt;
<!-- valign:middle;-->
text-align:center;
<!--border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 1px; -->
}
.styIRS8880TheadCell{ /*Header Cell */
font-size:7pt;
width:3.5mm;
font-weight:normal;
display:table-header-group;
text-align:center;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width:0px;
}
.styIRS8880NumberCellPt0{ /*Header Cell */
font-size:7pt;
width:35mm;
height:2mm;
font-weight:normal;
text-align:left;
display:table-header-group;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 1px; border-right-width:0px;
}
.styIRS8880grayCell{ /* Grey Right number box */
float:left; clear: none;
}
.styIRS8880NumberCellPt1{ /*Header Cell */
font-size:7pt;
width:98.5mm;
height:2mm;
font-weight:normal;
text-align:left;
<!-- display:table-header-group; -->
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 1px; border-right-width:1px;
}
</xsl:template>
</xsl:stylesheet>