-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1040ScheduleDStyle.xsl
117 lines (108 loc) · 3.36 KB
/
IRS1040ScheduleDStyle.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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template name="IRS1040ScheduleDStyle">
.IRS1040ScheduleD_styTableContainer { /* Scrollable Table Container */
width: 707px;
float:none; clear:both;
overflow-y: auto;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
}
.IRS1040ScheduleD_styTable { /* Table */
font-size: 7pt;
text-align: left;
float:none; clear:both;
width:100%
}
.IRS1040ScheduleD_styTableCellNote { /* Replaces cells a, b, c for 2011 */
width:58.8mm;
height:8mm;
color:black;
padding-top:.5mm;
padding-bottom:.5mm;
text-align:left;
border-style:solid;
border-color:black;
border-width: 0px 1px 1px 0px;
float:left; clear:none;
}
.IRS1040ScheduleD_styTableCellAmt {
width:32mm;
height:8mm;
text-align:right;
padding-top:.5mm;
padding-bottom:.5mm;
padding-right:2px;
border-style:solid; border-color:black;
border-width: 0px 1px 1px 0px;
float:left; clear:none;
}
.IRS1040ScheduleD_styTableCellA { /* Table Cell (a) */
width: 158px; /* 220px;then 60 */
color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
border-color:black
}
.IRS1040ScheduleD_styTableCellB { /* Table Cell (b) */
width: 70px; /* was 87px;to 80 to 77px**/
color: black;
text-align:center;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
border-color:black
}
.IRS1040ScheduleD_styTableCellC { /* Table Cell (c) */
width: 70px; /* was 87px;to 80 to 77px*/
color: black;
text-align:center;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
border-color:black
}
.IRS1040ScheduleD_styTableCellD { /* Table Cell (d) */
width: 126px; /* 91px;then 110 */
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
border-color:black
}
.IRS1040ScheduleD_styTableCellE { /* Table Cell (e) */
width: 126px; /* 91px; */
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
border-color:black
}
.IRS1040ScheduleD_styTableCellF { /* Table Cell (f) */
/*width: 126px; /* 109px; */
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
border-color:black
}
.IRS1040ScheduleD_styTableLastCol { /* Last Table Column */
width: 15px;
color: white;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
display: none;
}
.IRS1040ScheduleD_styLN { /* Line Number */
width: 16px; /* 15px; */
color: black;
font-weight: bold; text-align: right;
float:left
}
.IRS1040ScheduleD_styFormFooter { /* Form Footer */
font-size: 7pt;
text-align: left;
border-style: solid;
border-top-width: 2px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
}
</xsl:template>
</xsl:stylesheet>