-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS990ScheduleHStyle.xsl
137 lines (113 loc) · 3.89 KB
/
IRS990ScheduleHStyle.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
136
137
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template name="IRS990ScheduleHStyle">
.styIRS990ScheduleHTable { /* Scrollable Table Container */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
width: 187mm; height:4.5mm;
float:none;clear:both;
overflow-y: auto;
}
.styIRS990ScheduleHTableContainerNBB { /* Scrollable Table Container with no bottom 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;
}
.styIRS990ScheduleHTheadCell{ /*Header Cell */
font-size:6.5pt;
width:25mm;
font-weight:normal;
text-align:center;
display:table-header-group;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
}
.styIRS990ScheduleHCell { /*Cell for amounts */
font-size:6pt;
padding-right:.5mm;
font-weight:normal;
text-align:right;
vertical-align:bottom;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 1px;border-left-width:1px; border-right-width: 0px;
}
.styIRS990ScheduleHFormHeader { /* Form Header */
width: 187mm;
font-size: 6pt;
page-break-before: always;
}
.styIRS990ScheduleHFormFooter { /* Form Footer */
width:187mm;
font-size: 6pt;
text-align: left;
border-style: solid;
border-top-width: 2px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
}
.styIRS990ScheduleHUnderlinedBox{
width: 28mm;
font-size: 7pt;
text-align:center;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-right-width: 0px; border-left-width: 0px;
}
.styIRS990ScheduleHUnderlinedText{
width: 30mm;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
float: none; clear: none;
}
.styIRS990SchHVTImageBox{ /* Vertical image holder box */
width:6mm;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
float:left;clear:none;
}
.IRS990ScheduleH_LineContainer {
clear:both;
width:187mm;
}
.IRS990ScheduleH_LineIndex { /* line index */
padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 15px;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
float:left;
height:4mm;
width:8mm;text-align:right;font-weight:bold;
}
.IRS990ScheduleH_LineDesc { /* description space */
padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 1px;
float:left;
height:4mm;width:156mm;
}
.IRS990ScheduleH_LineIndexMid { /* subline index 2 */
padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
float:left;
height:4mm;
width:8mm;text-align:center;font-weight:bold;
}
.IRS990ScheduleH_Checkbox {
height:4mm;
width:4mm;
}
.styIRS990ScheduleHBB {
width:187mm;
height:8mm;
clear:both;
border-bottom:1 solid black
}
.styIRS990ScheduleHBB1 {
width:100%;
border-bottom:1 solid black;
height:8mm;
padding-top:1mm;
}
</xsl:template>
</xsl:stylesheet>