-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS851Style.xsl
40 lines (32 loc) · 1.28 KB
/
IRS851Style.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
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="IRS851Style">
<!-- CSS Styles Go Here -->
/* BEGIN PAGE SPECIFIC STYLES */
.styIRS851PageBreak {
page-break-after: always
}
.styIRS851TableContainer { /* 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;
}
.styIRS851TableContainer1 { /* 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:47.6mm;
float:none;clear:both;
overflow-y: auto;
}
.styIRS851TableContainer2 { /* 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:33mm;
float:none;clear:both;
overflow-y: auto;
}
/* END PAGE SPECIFIC STYLES */
</xsl:template>
</xsl:stylesheet>