-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS990NStyle.xsl
114 lines (111 loc) · 3.3 KB
/
IRS990NStyle.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
<?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 990N -->
<xsl:template name="IRS990NStyle">
.styIRS990NImg {
width: 6mm;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 1px;
float: left; clear: none;
}
.styIRS990NLineItem { /* Line Item */
width: 187mm;
font-size: 7pt;
border-style: solid;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
float: none; clear: both;
}
.styIRS990NLNLeftNumBox {
width: 3mm;
text-align: right;
height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
font-weight:bold;
float:left; clear:none;
padding-left:1mm;
}
.styIRS990NLNLongDesc { /* Line Description */
width: 164mm;
font-size: 6pt;
height:4.5mm;
margin-left:3mm; margin-right: 0px; margin-top: 0px; margin-bottom: 0px;
border-style: solid;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
float: left; clear: none;
}
.styIRS990NTableCellPad { /* Table Cell Padding */
width: 4px;
}
.styIRS990NTableCellA { /* Table Cell (a or 1) */
width: 58mm;
font-size: 7pt;
font-weight: normal;
color: black;
text-align: left;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS990NTableCellB { /* Table Cell (b or 2) */
width: 35mm;
font-size: 7pt;
font-weight: normal;
color: black;
text-align: left;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS990NTableCellC { /* Table Cell (c or 3) */
width: 30mm;
font-size: 7pt;
font-weight: normal;
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS990NTableCellD { /* Table Cell (d) */
width: 34mm;
font-size: 7pt;
font-weight: normal;
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS990NTableCellE { /* Table Cell (e) */
width: 30mm;
font-size: 7pt;
font-weight: normal;
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
}
.styIRS990NNBSP{
width: 16px;
font-weight: bold;
}
.styIRS990NYesNoBox {
width:10mm;
padding-top:.5mm;
padding-bottom:.5mm;
text-align:center;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS990NCkBox{
height: 4mm;
width: 4mm;
}
.styIRS990NUnderlinedBox{
width: 38mm;
font-size: 7pt;
text-align: left;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-right-width: 0px; border-left-width: 0px;
}
</xsl:template>
</xsl:stylesheet>