-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS6197Style.xsl
69 lines (63 loc) · 2.42 KB
/
IRS6197Style.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
<?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 6197 -->
<xsl:template name="IRS6197Style">
.styIRS6197TRB { /* Cell with thick right border */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 2px;
}
.styIRS6197NameTableCell { /* Table Cell that aligns to the left and top for text */
text-align: left;
vertical-align:top;
font-weight:normal;
border-color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS6197TableCellHeaderText { /* Table Cell that aligns to the center for text */
text-align: center;
font-weight:normal;
font-size: 7pt;
border-color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS6197TableCellText { /* Table Cell that aligns to the center for text */
text-align: center;
vertical-align:bottom;
padding-bottom:1px;
font-weight:normal;
font-size: 7pt;
border-color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS6197TableCellVerticalText { /* Table Cell that make text vertical */
border-color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS6197TableCellAmount { /* Table Cell that aligns to the right for amounts */
padding-right:4px;
text-align: right;
vertical-align:bottom;
padding-bottom:1px;
font-weight:normal;
font-size: 6pt;
border-color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS6197TableCellLineNumber { /* Table Cell that aligns to the right for amounts */
padding-right:4px;
text-align: right;
vertical-align:bottom;
padding-bottom:1px;
font-weight:bold;
font-size: 7pt;
border-color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
</xsl:template>
</xsl:stylesheet>