-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS4684Style.xsl
44 lines (40 loc) · 1.6 KB
/
IRS4684Style.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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="IRS4684Style">
.styIRS4684ScheduleName{ /* Used for the Schedule A TitleName*/
height:4mm;width:23mm;
font-size:8pt;
font-weight:bold;
text-align:center;
float:left;clear:none;
}
.styIRS4684TableCellSmallRB{ /* Table cell with no top Bottom borders */
width: 25mm;
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 1px;
}
.styIRS4684TableCellHeaderNoBorders { /* Table Cell Header */
width: 32mm;
color: black;
text-align: center;
border-style: solid;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
}
.styTableCellNoBorders{ /* Table Cell */
width: 32mm;
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
}
.styIRS4684TableContainer{ /* Table Container with no border */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
width: 187mm; height:4.5mm;
float:none;clear:both;
overflow-y: auto;
}
</xsl:template>
</xsl:stylesheet>