-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8867Style.xsl
135 lines (122 loc) · 3.33 KB
/
IRS8867Style.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
<?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 8867 -->
<xsl:template name="IRS8867Style">
.styIRS8867LNDesc {
width:146mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
float:left; clear: none;
}
.styIRS8867LNAmountBox{ /* Box for storing line item amounts. */
width:32mm;height:4mm;
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;
}
.styIRS8867BranchDesc { /* For lines of the form " If you said yes to line..." */
width:154.2mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
padding-left:14mm;
padding-right:3mm;
border-right:1px solid black;
float:left; clear:none;
}
.styIRS8867ChildBranch { /* BranchDesc for part II. */
width:114mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
padding-left:14mm;
padding-right:3mm;
float:left; clear:none;
}
.styIRS8867ChildBox { /* For the three-column part II. Amount box, but narrow. */
width:24mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
padding-left:2mm;
text-align:left;
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;
}
.styIRS8867ChildDesc { /* For the descriptions in part II. */
width:106mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
float:left; clear: none;
}
.styIRS8867Page4Box { /* CheckboxBox container */
width:180.4mm;
border-style:solid;border-color:black;
border-width:0px 0px 0px 0px;
float:left; clear:none;
}
.styIRS8867Page4BoxHeader { /* For page 4 */
width:180mm;height:4mm;
border-style:solid;border-color:black;
border-width:1px 0px 1px 0px;
text-align:center;
font-weight:bold;
background-color:lightgrey;
padding-top:0.5mm;
padding-bottom:0.5mm;
float:left; clear:none;
}
.styIRS8867CheckboxBox { /* For page 4 */
width:90mm;height:4.7mm;
border-style:solid;border-color:black;
border-width:0px 0px 0px 0px;
padding-left:6mm;
padding-top:0.5mm;
padding-bottom:0.5mm;
float:left; clear:none;
}
.styIRS8867CheckboxLetter { /* For page 4 */
font-size:7.5pt;
font-weight:bold;
width: 7mm;
padding-left:2mm;
}
.styIRS8867CheckboxBlank { /* For page 4 */
width:73.5mm;height:4.7mm;
border-style:solid;border-color:black;
border-width:1px 0px 1px 0px;
padding-top:0.5mm;
padding-bottom:0.5mm;
float:left; clear:none;
margin-left:16.5mm;
}
.styIRS8867CheckboxBlankTop { /* For page 4 */
width:73.5mm;height:4.7mm;
border-style:solid;border-color:black;
border-width:1px 0px 0px 0px;
padding-top:0.5mm;
padding-bottom:0.5mm;
float:left; clear:none;
margin-left:16.5mm;
}
.styIRS8867DRDesc { /* For requirements list after line 28 */
width:183mm;height:4mm;
padding-top:2.5mm;
padding-bottom:1mm;
padding-left:0mm;
margin-left:2.5mm;
float:left; clear:none;
}
.styIRS8867Dots { /* For dot leaders */
float:right; clear:none;
text-align:right;
padding-right:3mm;
letter-spacing:16px;
font-weight:bold;
skiplink:display:none;
}
</xsl:template>
</xsl:stylesheet>