-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8888Style.xsl
110 lines (95 loc) · 2.54 KB
/
IRS8888Style.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
<?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 8888 -->
<xsl:template name="IRS8888Style">
.styIRS8888LnDescOcc{ /* Line description for the various tables in this form*/
width:62mm;
height:8mm;
font-size:7pt;
padding-left:2mm;
border-style: solid;
border-color: black;
border-right-width: 1px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
float:left; clear:none;
}
.styIRS8888SSNBox{ /* Line description for the various tables in this form*/
width:35mm;
height:8mm;
font-size:7pt;
font-weight: bold;
padding-left:2mm;
border-top-width: 0px;
border-left-width:1px;
float:left; clear:none;
}
.styIRS8888ColBox{ /* Column box */
width:32mm;
height:13mm;
font-size:8pt;
padding-top:4mm;
padding-bottom:0mm;
text-align:right;
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;
}
.styIRS8888ColBoxGrey{ /* Column box */
width:32mm;
height:13mm;
padding-top:4mm;
padding-bottom:0mm;
text-align:right;
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;
background-color:#B8B8B8;
float:left; clear: none;
}
.styIRS8888TableContainer { /* Scrollable Table Container */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
width: 187mm;
float:none;clear:none;
overflow:hidden;
}
.styIRS8888TB { /* Top Border */
border-style: solid; border-color: black;
border-top-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
float: left; clear: left;
}
.styIRS8888IndividualLetterBox{ /* Item letter to the left of the page */
width:.5mm;
height:.5mm;
padding-top:0mm;
text-align:center;
border:1 solid black;
border-right-width:0;
clear:none;float:left
}
.styNameForBondBox{ /*box for primary and secondary name for bonds */
width:160mm;
height:4mm;
padding-top:0mm;
padding-bottom:.5mm;
font-weight:normal;
float:left;
clear:none;
text-align:center;
border-style:solid;
border-color:black;
border-top-width:1px;
border-bottom-width:1px;
border-left-width:1px;
border-right-width:1px;
}
</xsl:template>
</xsl:stylesheet>