metanorma-iec 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/bin/rspec +18 -0
- data/lib/asciidoctor/iec/biblio.rng +949 -0
- data/lib/asciidoctor/iec/converter.rb +68 -0
- data/lib/asciidoctor/iec/iec_intro_en.xml +15 -0
- data/lib/asciidoctor/iec/iec_intro_fr.xml +15 -0
- data/lib/asciidoctor/iec/isodoc.rng +1132 -0
- data/lib/asciidoctor/iec/isostandard.rng +789 -0
- data/lib/asciidoctor/iec/reqt.rng +162 -0
- data/lib/isodoc/iec/base_convert.rb +69 -0
- data/lib/isodoc/iec/html/header.html +160 -0
- data/lib/isodoc/iec/html/html_iec_intro.html +34 -0
- data/lib/isodoc/iec/html/html_iec_titlepage.html +62 -0
- data/lib/isodoc/iec/html/htmlstyle.scss +840 -0
- data/lib/isodoc/iec/html/isodoc.scss +785 -0
- data/lib/isodoc/iec/html/scripts.html +176 -0
- data/lib/isodoc/iec/html/word_iec_intro.html +72 -0
- data/lib/isodoc/iec/html/word_iec_titlepage.html +92 -0
- data/lib/isodoc/iec/html/wordstyle.scss +1849 -0
- data/lib/isodoc/iec/html_convert.rb +33 -0
- data/lib/isodoc/iec/i18n-en.yaml +3 -0
- data/lib/isodoc/iec/i18n-fr.yaml +3 -0
- data/lib/isodoc/iec/i18n-zh-Hans.yaml +3 -0
- data/lib/isodoc/iec/metadata.rb +20 -0
- data/lib/isodoc/iec/word_convert.rb +165 -0
- data/lib/metanorma-iec.rb +12 -0
- data/lib/metanorma/iec.rb +8 -0
- data/lib/metanorma/iec/processor.rb +40 -0
- data/lib/metanorma/iec/version.rb +6 -0
- data/metanorma-iec.gemspec +47 -0
- data/spec/asciidoctor-iec/base_spec.rb +609 -0
- data/spec/asciidoctor-iec/blocks_spec.rb +467 -0
- data/spec/asciidoctor-iec/cleanup_spec.rb +766 -0
- data/spec/asciidoctor-iec/inline_spec.rb +162 -0
- data/spec/asciidoctor-iec/lists_spec.rb +190 -0
- data/spec/asciidoctor-iec/macros_spec.rb +21 -0
- data/spec/asciidoctor-iec/refs_spec.rb +268 -0
- data/spec/asciidoctor-iec/section_spec.rb +341 -0
- data/spec/asciidoctor-iec/table_spec.rb +307 -0
- data/spec/asciidoctor-iec/validate_spec.rb +132 -0
- data/spec/examples/rice.adoc +723 -0
- data/spec/examples/rice.doc +19162 -0
- data/spec/examples/rice.html +1787 -0
- data/spec/examples/rice.xml +1951 -0
- data/spec/isodoc/i18n_spec.rb +642 -0
- data/spec/isodoc/inline_spec.rb +265 -0
- data/spec/isodoc/iso_spec.rb +319 -0
- data/spec/isodoc/metadata_spec.rb +153 -0
- data/spec/isodoc/postproc_spec.rb +569 -0
- data/spec/isodoc/section_spec.rb +686 -0
- data/spec/isodoc/terms_spec.rb +206 -0
- data/spec/isodoc/xref_spec.rb +1323 -0
- data/spec/metanorma/processor_spec.rb +88 -0
- data/spec/spec_helper.rb +253 -0
- metadata +325 -0
@@ -0,0 +1,176 @@
|
|
1
|
+
<script>
|
2
|
+
//TOC generation
|
3
|
+
$('#toc').toc({
|
4
|
+
//'selectors': 'h1,h2:not(.TermNum)', //elements to use as headings
|
5
|
+
'selectors': toclevel(), //elements to use as headings
|
6
|
+
'container': 'main', //element to find all selectors in
|
7
|
+
'smoothScrolling': true, //enable or disable smooth scrolling on click
|
8
|
+
'prefix': 'toc', //prefix for anchor tags and class names
|
9
|
+
'onHighlight': function(el) {}, //called when a new section is highlighted
|
10
|
+
'highlightOnScroll': true, //add class to heading that is currently in focus
|
11
|
+
'highlightOffset': 100, //offset to trigger the next headline
|
12
|
+
'anchorName': function(i, heading, prefix) { //custom function for anchor name
|
13
|
+
return prefix+i;
|
14
|
+
},
|
15
|
+
'headerText': function(i, heading, $heading) { //custom function building the header-item text
|
16
|
+
return $heading.text();
|
17
|
+
},
|
18
|
+
'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
|
19
|
+
return $heading[0].tagName.toLowerCase();
|
20
|
+
}
|
21
|
+
});
|
22
|
+
</script>
|
23
|
+
|
24
|
+
<script>
|
25
|
+
//TOC toggle animation
|
26
|
+
$('#toggle').on('click', function(){
|
27
|
+
if( $('nav').is(':visible') ) {
|
28
|
+
$('nav').animate({ 'left': '-353px' }, 'slow', function(){
|
29
|
+
$('nav').hide();
|
30
|
+
});
|
31
|
+
$('body').animate({ 'margin-left': '0' }, 'slow');
|
32
|
+
}
|
33
|
+
else {
|
34
|
+
$('nav').show();
|
35
|
+
$('nav').animate({ 'left': '0px' }, 'slow');
|
36
|
+
$('body').animate({ 'margin-left': '298px' }, 'slow');
|
37
|
+
}
|
38
|
+
});
|
39
|
+
</script>
|
40
|
+
|
41
|
+
<script>
|
42
|
+
// Scroll to top button
|
43
|
+
window.onscroll = function() {scrollFunction()};
|
44
|
+
|
45
|
+
function scrollFunction() {
|
46
|
+
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
|
47
|
+
document.getElementById("myBtn").style.display = "block";
|
48
|
+
} else {
|
49
|
+
document.getElementById("myBtn").style.display = "none";
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// When the user clicks on the button, scroll to the top of the document
|
54
|
+
function topFunction() {
|
55
|
+
document.body.scrollTop = 0;
|
56
|
+
document.documentElement.scrollTop = 0;
|
57
|
+
}
|
58
|
+
</script>
|
59
|
+
|
60
|
+
<script>
|
61
|
+
/*
|
62
|
+
$(document).ready(function() {
|
63
|
+
$('[id^=toc]').each(function ()
|
64
|
+
{
|
65
|
+
var currentToc = $(this);
|
66
|
+
var url = window.location.href;
|
67
|
+
currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "'></a>");
|
68
|
+
});
|
69
|
+
});
|
70
|
+
*/
|
71
|
+
</script>
|
72
|
+
|
73
|
+
|
74
|
+
<script>
|
75
|
+
|
76
|
+
// jQuery Inline Footnotes v1.0.3
|
77
|
+
// Copyright (c) 2011 Vesa Vänskä, released under the MIT License.
|
78
|
+
|
79
|
+
// Generated by CoffeeScript 1.6.1
|
80
|
+
(function() {
|
81
|
+
|
82
|
+
(function($) {
|
83
|
+
$.inlineFootnote = function(el, options) {
|
84
|
+
var _this = this;
|
85
|
+
this.el = $(el);
|
86
|
+
this.el.data("inlineFootnote", this);
|
87
|
+
this.initialize = function() {
|
88
|
+
this.options = $.extend({}, $.inlineFootnote.defaultOptions, options);
|
89
|
+
this.footnoteId = this.el.attr("href").match(/#(.*)/)[1];
|
90
|
+
if (this.footnoteId) {
|
91
|
+
this.el.mouseenter(this.openBox);
|
92
|
+
return $("body").mousemove(this.closeBox);
|
93
|
+
}
|
94
|
+
};
|
95
|
+
this.openBox = function(event) {
|
96
|
+
var footnoteContent, linkOffset;
|
97
|
+
if (!_this.box) {
|
98
|
+
footnoteContent = $("[id='" + _this.footnoteId + "']").children().filter(":not('" + _this.options.hideFromContent + "')");
|
99
|
+
linkOffset = _this.el.offset();
|
100
|
+
_this.box = $("<div />", {
|
101
|
+
id: _this.options.boxId,
|
102
|
+
html: footnoteContent.clone().find(_this.options.hideFromContent).remove().end(),
|
103
|
+
css: {
|
104
|
+
position: "absolute",
|
105
|
+
top: linkOffset.top,
|
106
|
+
left: linkOffset.left + _this.el.outerWidth()
|
107
|
+
}
|
108
|
+
}).appendTo("body");
|
109
|
+
return _this.positionBox();
|
110
|
+
}
|
111
|
+
};
|
112
|
+
this.closeBox = function(event) {
|
113
|
+
if (_this.box) {
|
114
|
+
if (_this.isHoveringFootnote(event)) {
|
115
|
+
clearTimeout(_this.closeTimeout);
|
116
|
+
return _this.closeTimeout = null;
|
117
|
+
} else {
|
118
|
+
if (!_this.closeTimeout) {
|
119
|
+
return _this.closeTimeout = setTimeout((function() {
|
120
|
+
_this.box.remove();
|
121
|
+
return _this.box = null;
|
122
|
+
}), _this.options.hideDelay);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
};
|
127
|
+
this.isHoveringFootnote = function(event) {
|
128
|
+
return this.box.is(event.target) || $(event.target).closest(this.box).length > 0 || event.target === this.el[0];
|
129
|
+
};
|
130
|
+
this.positionBox = function() {
|
131
|
+
var boxHorizontalPadding, boxLeft, boxWidth, linkLeftOffset, windowWidth;
|
132
|
+
boxHorizontalPadding = parseInt(this.box.css("padding-left")) + parseInt(this.box.css("padding-right"));
|
133
|
+
linkLeftOffset = this.el.offset().left;
|
134
|
+
windowWidth = $(window).width();
|
135
|
+
if ((windowWidth / 2) > linkLeftOffset) {
|
136
|
+
boxLeft = linkLeftOffset + 20;
|
137
|
+
boxWidth = windowWidth - boxLeft - boxHorizontalPadding - this.options.boxMargin * 2;
|
138
|
+
if (boxWidth > this.options.maximumBoxWidth) {
|
139
|
+
boxWidth = this.options.maximumBoxWidth;
|
140
|
+
}
|
141
|
+
} else {
|
142
|
+
boxWidth = linkLeftOffset - boxHorizontalPadding - this.options.boxMargin * 2;
|
143
|
+
if (boxWidth > this.options.maximumBoxWidth) {
|
144
|
+
boxWidth = this.options.maximumBoxWidth;
|
145
|
+
}
|
146
|
+
boxLeft = linkLeftOffset - boxWidth - this.options.boxMargin * 2;
|
147
|
+
}
|
148
|
+
return this.box.css({
|
149
|
+
width: boxWidth,
|
150
|
+
left: boxLeft
|
151
|
+
});
|
152
|
+
};
|
153
|
+
return this.initialize();
|
154
|
+
};
|
155
|
+
$.inlineFootnote.defaultOptions = {
|
156
|
+
boxMargin: 20,
|
157
|
+
hideDelay: 200,
|
158
|
+
hideFromContent: "[rel=footnote]",
|
159
|
+
maximumBoxWidth: 500,
|
160
|
+
boxId: "footnote_box"
|
161
|
+
};
|
162
|
+
return $.fn.inlineFootnote = function(options) {
|
163
|
+
return this.each(function() {
|
164
|
+
return new $.inlineFootnote(this, options);
|
165
|
+
});
|
166
|
+
};
|
167
|
+
})(jQuery);
|
168
|
+
|
169
|
+
}).call(this);
|
170
|
+
</script>
|
171
|
+
|
172
|
+
<script>
|
173
|
+
$(function() {
|
174
|
+
$("[rel=footnote]").inlineFootnote();
|
175
|
+
});
|
176
|
+
</script>
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
|
2
|
+
border-bottom:none;mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:
|
3
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 0cm 4.0pt;
|
4
|
+
margin-left:5.1pt;margin-right:5.1pt'>
|
5
|
+
|
6
|
+
<p class="zzCopyright" align="left" style='margin-top:2.0pt;margin-right:0cm;
|
7
|
+
margin-bottom:12.0pt;margin-left:0cm;text-align:left;page-break-before:always;
|
8
|
+
mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-top-alt:
|
9
|
+
solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-right-alt:
|
10
|
+
solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 0cm 4.0pt'><span
|
11
|
+
lang="EN-GB" style='color:windowtext'>© {{ agency }} {{ docyear }}, Published in Switzerland.<o:p></o:p></span></p>
|
12
|
+
|
13
|
+
<p class="zzCopyright" style='margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;
|
14
|
+
margin-left:0cm;mso-layout-grid-align:none;text-autospace:none;border:none;
|
15
|
+
mso-border-left-alt:solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;
|
16
|
+
padding:0cm;mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB"
|
17
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;color:windowtext'>All rights
|
18
|
+
reserved. Unless otherwise specified, no part of this publication may be
|
19
|
+
reproduced or utilized otherwise in any form or by any means, electronic or
|
20
|
+
mechanical, including photocopying, or posting on the internet or an intranet,
|
21
|
+
without prior written permission. Permission can be requested from either IEC
|
22
|
+
at the address below or IEC’s member body in the country of the requester.<o:p></o:p></span></p>
|
23
|
+
|
24
|
+
<p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
|
25
|
+
mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
|
26
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
|
27
|
+
mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
|
28
|
+
mso-bidi-font-size:11.0pt;color:windowtext'>IEC Central Office<o:p></o:p></span></p>
|
29
|
+
|
30
|
+
<p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
|
31
|
+
mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
|
32
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
|
33
|
+
mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
|
34
|
+
mso-bidi-font-size:11.0pt;color:windowtext'>3, rue de Varembé<o:p></o:p></span></p>
|
35
|
+
|
36
|
+
<p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
|
37
|
+
mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
|
38
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
|
39
|
+
mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
|
40
|
+
mso-bidi-font-size:11.0pt;color:windowtext'>CH-1211 Geneva 20,
|
41
|
+
Switzerland<o:p></o:p></span></p>
|
42
|
+
|
43
|
+
<p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
|
44
|
+
mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
|
45
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
|
46
|
+
mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
|
47
|
+
mso-bidi-font-size:11.0pt;color:windowtext'>Tel. + 41 22 919 02 11<o:p></o:p></span></p>
|
48
|
+
|
49
|
+
<p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
|
50
|
+
mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
|
51
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
|
52
|
+
mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
|
53
|
+
mso-bidi-font-size:11.0pt;color:windowtext'>Fax + 41 22 919 03 00<o:p></o:p></span></p>
|
54
|
+
|
55
|
+
<p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
|
56
|
+
mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
|
57
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
|
58
|
+
mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
|
59
|
+
mso-bidi-font-size:11.0pt;color:windowtext'>info@iec.ch<o:p></o:p></span></p>
|
60
|
+
|
61
|
+
<p class="zzCopyright" style='margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;
|
62
|
+
margin-left:0cm;text-indent:20.15pt;mso-layout-grid-align:none;text-autospace:
|
63
|
+
none;border:none;mso-border-left-alt:solid windowtext .5pt;mso-border-bottom-alt:
|
64
|
+
solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
|
65
|
+
mso-padding-alt:0cm 4.0pt 1.0pt 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
|
66
|
+
mso-bidi-font-size:11.0pt;color:windowtext'>www.iec.ch<o:p></o:p></span></p>
|
67
|
+
|
68
|
+
</div>
|
69
|
+
|
70
|
+
<p class="zzContents" style='margin-top:0cm'><span lang="EN-GB">Contents</span></p>
|
71
|
+
|
72
|
+
WORDTOC
|
@@ -0,0 +1,92 @@
|
|
1
|
+
{% if tc_docnumber %}
|
2
|
+
<p class="MsoNormal" align="right" style='text-align:right'><b style='mso-bidi-font-weight:
|
3
|
+
normal'><span lang="EN-GB" style='font-size:14.0pt;mso-no-proof:yes'>{{ tc_docnumber }}</span></b><b
|
4
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:14.0pt'><o:p></o:p></span></b></p>
|
5
|
+
{% else %}
|
6
|
+
<p class="MsoNormal" align="right" style='text-align:right'><b style='mso-bidi-font-weight:
|
7
|
+
normal'><span lang="EN-GB" style='font-size:14.0pt;mso-no-proof:yes'>{{ docnumber }}(E) {{ draftinfo }}</span></b><b
|
8
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:14.0pt'><o:p></o:p></span></b></p>
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
{% if revdate %}
|
12
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB" style='mso-no-proof:yes'>Date: {{ revdate }}</span></p>
|
13
|
+
{% endif %}
|
14
|
+
|
15
|
+
{% if tc_docnumber %}
|
16
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB" style='mso-no-proof:yes'>{{ docnumber }}(E) {{ draftinfo }}</span></p>
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
20
|
+
style='mso-no-proof:yes'>{{ agency }}/{{ editorialgroup | join: "/" }}</span></p>
|
21
|
+
|
22
|
+
<p class="MsoNormal" align="right" style='margin-bottom:100.0pt;text-align:right'><span lang="EN-GB">Secretariat: <span style='mso-no-proof:yes'>{{ secretariat }}</span></span></p>
|
23
|
+
|
24
|
+
<p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt'>
|
25
|
+
<span class="title"><b>{{ doctitleintro }}{% if doctitleintro and doctitlemain %} — {% endif %}</b></span><b><span class="subtitle">{{ doctitlemain }}{% if doctitlemain and doctitlepart %} —{% endif %}</b></span>
|
26
|
+
{% if doctitlepart %}
|
27
|
+
</p><p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;margin-top:6.0pt;font-size:16.0pt'>
|
28
|
+
{% if doctitlepartlabel %}<span class="partlabel">{{ doctitlepartlabel }}: </span><br/>{% endif %}
|
29
|
+
<span class="part"><b>{{ doctitlepart }}</b></span>
|
30
|
+
{% endif %}
|
31
|
+
</p>
|
32
|
+
|
33
|
+
<br/>
|
34
|
+
<p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt'>
|
35
|
+
<span class="title">{{ docsubtitleintro }}{% if docsubtitleintro and docsubtitlemain %} — {% endif %}</span><span class="subtitle">{{ docsubtitlemain }}{% if docsubtitlemain and docsubtitlepart %} —{% endif %}</span>
|
36
|
+
{% if docsubtitlepart %}
|
37
|
+
</p><p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt'>
|
38
|
+
<br/>
|
39
|
+
{% if docsubtitlepartlabel %}<span class="partlabel">{{ docsubtitlepartlabel }}: </span><br/>{% endif %}
|
40
|
+
<span class="part">{{ docsubtitlepart }}</span>
|
41
|
+
{% endif %}
|
42
|
+
</p>
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
<p class="MsoNormal" style='margin-top:100.0pt'><span lang="EN-GB"><o:p> </o:p></span></p>
|
48
|
+
|
49
|
+
<div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
|
50
|
+
mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
|
51
|
+
margin-left:4.25pt;margin-right:4.25pt'>
|
52
|
+
|
53
|
+
<p class="MsoNormal" align="center" style='text-align:center;border:none;
|
54
|
+
mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span
|
55
|
+
lang="EN-GB" style='font-size:40.0pt'>{% if unpublished %}{{ stageabbr }} stage{% endif %}<o:p></o:p></span></p>
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt'><span lang="EN-GB"><o:p> </o:p></span></p>
|
60
|
+
|
61
|
+
{% if unpublished %}
|
62
|
+
|
63
|
+
<div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
|
64
|
+
mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
|
65
|
+
margin-left:4.25pt;margin-right:4.25pt'>
|
66
|
+
|
67
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
68
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
69
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
70
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning for WDs
|
71
|
+
and CDs<o:p></o:p></span></b></p>
|
72
|
+
|
73
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
74
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
75
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This
|
76
|
+
document is not an ISO International Standard. It is distributed for review and
|
77
|
+
comment. It is subject to change without notice and may not be referred to as
|
78
|
+
an International Standard.<o:p></o:p></span></p>
|
79
|
+
|
80
|
+
<p class="MsoNormal" style='border:none;mso-border-alt:solid windowtext .5pt;
|
81
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
82
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>Recipients
|
83
|
+
of this draft are invited to submit, with their comments, notification of any
|
84
|
+
relevant patent rights of which they are aware and to provide supporting
|
85
|
+
documentation.</span><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:
|
86
|
+
11.0pt'><o:p></o:p></span></p>
|
87
|
+
|
88
|
+
{% endif %}
|
89
|
+
|
90
|
+
</div>
|
91
|
+
|
92
|
+
|
@@ -0,0 +1,1849 @@
|
|
1
|
+
/* Font Definitions */
|
2
|
+
@font-face
|
3
|
+
{font-family:Wingdings;
|
4
|
+
panose-1:5 0 0 0 0 0 0 0 0 0;
|
5
|
+
mso-font-charset:2;
|
6
|
+
mso-generic-font-family:decorative;
|
7
|
+
mso-font-pitch:variable;
|
8
|
+
mso-font-signature:0 268435456 0 0 -2147483648 0;}
|
9
|
+
@font-face
|
10
|
+
{font-family:SimSun;
|
11
|
+
panose-1:2 1 6 0 3 1 1 1 1 1;
|
12
|
+
mso-font-alt:SimSun;
|
13
|
+
mso-font-charset:134;
|
14
|
+
mso-generic-font-family:auto;
|
15
|
+
mso-font-pitch:variable;
|
16
|
+
mso-font-signature:3 680460288 22 0 262145 0;}
|
17
|
+
@font-face
|
18
|
+
{font-family:"MS Gothic";
|
19
|
+
panose-1:2 11 6 9 7 2 5 8 2 4;
|
20
|
+
mso-font-alt:"MS Gothic";
|
21
|
+
mso-font-charset:128;
|
22
|
+
mso-generic-font-family:modern;
|
23
|
+
mso-font-pitch:fixed;
|
24
|
+
mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}
|
25
|
+
@font-face
|
26
|
+
{font-family:"Cambria Math";
|
27
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
28
|
+
mso-font-charset:0;
|
29
|
+
mso-generic-font-family:roman;
|
30
|
+
mso-font-pitch:variable;
|
31
|
+
mso-font-signature:-536870145 1107305727 0 0 415 0;}
|
32
|
+
@font-face
|
33
|
+
{font-family:Calibri;
|
34
|
+
panose-1:2 15 5 2 2 2 4 3 2 4;
|
35
|
+
mso-font-charset:0;
|
36
|
+
mso-generic-font-family:swiss;
|
37
|
+
mso-font-pitch:variable;
|
38
|
+
mso-font-signature:-536859905 -1073732485 9 0 511 0;}
|
39
|
+
@font-face
|
40
|
+
{font-family:Cambria;
|
41
|
+
panose-1:2 4 5 3 5 4 6 3 2 4;
|
42
|
+
mso-font-charset:0;
|
43
|
+
mso-generic-font-family:roman;
|
44
|
+
mso-font-pitch:variable;
|
45
|
+
mso-font-signature:-536870145 1073743103 0 0 415 0;}
|
46
|
+
@font-face
|
47
|
+
{font-family:"Arial Bold";
|
48
|
+
panose-1:2 11 6 4 2 2 2 2 2 4;
|
49
|
+
mso-font-alt:Arial;
|
50
|
+
mso-font-charset:0;
|
51
|
+
mso-generic-font-family:roman;
|
52
|
+
mso-font-pitch:auto;
|
53
|
+
mso-font-signature:0 0 0 0 0 0;}
|
54
|
+
@font-face
|
55
|
+
{font-family:"\@SimSun";
|
56
|
+
panose-1:2 1 6 0 3 1 1 1 1 1;
|
57
|
+
mso-font-charset:134;
|
58
|
+
mso-generic-font-family:auto;
|
59
|
+
mso-font-pitch:variable;
|
60
|
+
mso-font-signature:3 680460288 22 0 262145 0;}
|
61
|
+
@font-face
|
62
|
+
{font-family:"\@MS Gothic";
|
63
|
+
panose-1:2 11 6 9 7 2 5 8 2 4;
|
64
|
+
mso-font-charset:128;
|
65
|
+
mso-generic-font-family:modern;
|
66
|
+
mso-font-pitch:fixed;
|
67
|
+
mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}
|
68
|
+
/* Style Definitions */
|
69
|
+
/* IEC: PARAGRAPH */
|
70
|
+
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
71
|
+
{mso-style-unhide:no;
|
72
|
+
mso-style-qformat:yes;
|
73
|
+
mso-style-parent:"";
|
74
|
+
mso-style-link:"PARAGRAPH Char";
|
75
|
+
margin-top:5.0pt;
|
76
|
+
margin-right:0cm;
|
77
|
+
margin-bottom:10.0pt;
|
78
|
+
margin-left:0cm;
|
79
|
+
text-align:justify;
|
80
|
+
mso-pagination:widow-orphan;
|
81
|
+
layout-grid-mode:char;
|
82
|
+
font-size:10.0pt;
|
83
|
+
font-family:"Arial",sans-serif;
|
84
|
+
mso-fareast-font-family:"Times New Roman";
|
85
|
+
letter-spacing:.4pt;
|
86
|
+
mso-ansi-language:EN-GB;
|
87
|
+
mso-fareast-language:ZH-CN;}
|
88
|
+
p.MsoNormalIndent, li.MsoNormalIndent, div.MsoNormalIndent
|
89
|
+
{mso-style-noshow:yes;
|
90
|
+
mso-style-priority:99;
|
91
|
+
margin-top:0cm;
|
92
|
+
margin-right:0cm;
|
93
|
+
margin-bottom:0cm;
|
94
|
+
margin-left:1.0cm;
|
95
|
+
margin-bottom:.0001pt;
|
96
|
+
text-align:justify;
|
97
|
+
mso-pagination:widow-orphan;
|
98
|
+
font-size:10.0pt;
|
99
|
+
font-family:"Arial",sans-serif;
|
100
|
+
mso-fareast-font-family:"Times New Roman";
|
101
|
+
letter-spacing:.4pt;
|
102
|
+
mso-ansi-language:EN-GB;
|
103
|
+
mso-fareast-language:ZH-CN;}
|
104
|
+
p.MsoBlockText, li.MsoBlockText, div.MsoBlockText
|
105
|
+
{mso-style-noshow:yes;
|
106
|
+
mso-style-priority:59;
|
107
|
+
mso-style-unhide:no;
|
108
|
+
margin-top:0cm;
|
109
|
+
margin-right:72.0pt;
|
110
|
+
margin-bottom:6.0pt;
|
111
|
+
margin-left:72.0pt;
|
112
|
+
text-align:justify;
|
113
|
+
mso-pagination:widow-orphan;
|
114
|
+
font-size:10.0pt;
|
115
|
+
font-family:"Arial",sans-serif;
|
116
|
+
mso-fareast-font-family:"Times New Roman";
|
117
|
+
letter-spacing:.4pt;
|
118
|
+
mso-ansi-language:EN-GB;
|
119
|
+
mso-fareast-language:ZH-CN;}
|
120
|
+
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
|
121
|
+
{mso-style-priority:34;
|
122
|
+
mso-style-unhide:no;
|
123
|
+
mso-style-qformat:yes;
|
124
|
+
margin-top:0cm;
|
125
|
+
margin-right:0cm;
|
126
|
+
margin-bottom:0cm;
|
127
|
+
/* do not put in margin-left, it is specific to list level */
|
128
|
+
/* margin-left:1.0cm; */
|
129
|
+
margin-bottom:.0001pt;
|
130
|
+
text-align:justify;
|
131
|
+
mso-pagination:widow-orphan;
|
132
|
+
font-size:10.0pt;
|
133
|
+
font-family:"Arial",sans-serif;
|
134
|
+
mso-fareast-font-family:"Times New Roman";
|
135
|
+
letter-spacing:.4pt;
|
136
|
+
mso-ansi-language:EN-GB;
|
137
|
+
mso-fareast-language:ZH-CN;}
|
138
|
+
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
|
139
|
+
{mso-style-priority:34;
|
140
|
+
mso-style-unhide:no;
|
141
|
+
mso-style-qformat:yes;
|
142
|
+
margin-top:0cm;
|
143
|
+
margin-right:0cm;
|
144
|
+
margin-bottom:0cm;
|
145
|
+
/* do not put in margin-left, it is specific to list level */
|
146
|
+
mso-pagination:widow-orphan;
|
147
|
+
margin-bottom:.0001pt;
|
148
|
+
text-align:justify;
|
149
|
+
mso-pagination:widow-orphan;
|
150
|
+
font-size:10.0pt;
|
151
|
+
font-family:"Arial",sans-serif;
|
152
|
+
mso-fareast-font-family:"Times New Roman";
|
153
|
+
letter-spacing:.4pt;
|
154
|
+
mso-ansi-language:EN-GB;
|
155
|
+
mso-fareast-language:ZH-CN;}
|
156
|
+
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
|
157
|
+
{mso-style-priority:34;
|
158
|
+
mso-style-unhide:no;
|
159
|
+
mso-style-qformat:yes;
|
160
|
+
margin-top:0cm;
|
161
|
+
margin-right:0cm;
|
162
|
+
margin-bottom:0cm;
|
163
|
+
/* do not put in margin-left, it is specific to list level */
|
164
|
+
margin-bottom:.0001pt;
|
165
|
+
text-align:justify;
|
166
|
+
mso-pagination:widow-orphan;
|
167
|
+
font-size:10.0pt;
|
168
|
+
font-family:"Arial",sans-serif;
|
169
|
+
mso-fareast-font-family:"Times New Roman";
|
170
|
+
letter-spacing:.4pt;
|
171
|
+
mso-ansi-language:EN-GB;
|
172
|
+
mso-fareast-language:ZH-CN;}
|
173
|
+
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
|
174
|
+
{mso-style-priority:34;
|
175
|
+
mso-style-unhide:no;
|
176
|
+
mso-style-qformat:yes;
|
177
|
+
margin-top:0cm;
|
178
|
+
margin-right:0cm;
|
179
|
+
margin-bottom:0cm;
|
180
|
+
/* do not put in margin-left, it is specific to list level */
|
181
|
+
margin-bottom:.0001pt;
|
182
|
+
text-align:justify;
|
183
|
+
mso-pagination:widow-orphan;
|
184
|
+
font-size:10.0pt;
|
185
|
+
font-family:"Arial",sans-serif;
|
186
|
+
mso-fareast-font-family:"Times New Roman";
|
187
|
+
letter-spacing:.4pt;
|
188
|
+
mso-ansi-language:EN-GB;
|
189
|
+
mso-fareast-language:ZH-CN;}
|
190
|
+
div.figure
|
191
|
+
{text-align: center;}
|
192
|
+
|
193
|
+
h1.main
|
194
|
+
{mso-style-unhide:no;
|
195
|
+
mso-style-qformat:yes;
|
196
|
+
mso-style-parent:Normal;
|
197
|
+
mso-style-next:Normal;
|
198
|
+
margin-top:10.0pt;
|
199
|
+
margin-right:0cm;
|
200
|
+
margin-bottom:10.0pt;
|
201
|
+
margin-left:19.85pt;
|
202
|
+
text-align:left;
|
203
|
+
text-indent:-19.85pt;
|
204
|
+
mso-pagination:widow-orphan;
|
205
|
+
page-break-after:avoid;
|
206
|
+
mso-outline-level:1;
|
207
|
+
mso-list:l26 level1 lfo40;
|
208
|
+
mso-hyphenate:none;
|
209
|
+
tab-stops:list 19.85pt;
|
210
|
+
layout-grid-mode:char;
|
211
|
+
font-size:11.0pt;
|
212
|
+
font-family:"Arial",sans-serif;
|
213
|
+
letter-spacing:.4pt;
|
214
|
+
mso-font-kerning:0pt;
|
215
|
+
mso-ansi-language:EN-GB;
|
216
|
+
mso-fareast-language:ZH-CN;
|
217
|
+
font-weight:bold;}
|
218
|
+
/* IEC: p.ANNEXtitle */
|
219
|
+
h1.Annex
|
220
|
+
{mso-style-name:ANNEX_title;
|
221
|
+
mso-style-unhide:no;
|
222
|
+
mso-style-qformat:yes;
|
223
|
+
/* mso-style-parent:MAIN-TITLE; */
|
224
|
+
mso-style-next:ANNEX-heading1;
|
225
|
+
margin-top:0cm;
|
226
|
+
margin-right:0cm;
|
227
|
+
margin-bottom:10.0pt;
|
228
|
+
margin-left:0cm;
|
229
|
+
text-align:center;
|
230
|
+
/* text-indent:25.5pt; */
|
231
|
+
page-break-before:always;
|
232
|
+
mso-pagination:widow-orphan;
|
233
|
+
mso-outline-level:1;
|
234
|
+
mso-list:l4 level1 lfo19;
|
235
|
+
layout-grid-mode:char;
|
236
|
+
font-size:12.0pt;
|
237
|
+
font-family:"Arial",sans-serif;
|
238
|
+
mso-fareast-font-family:"Times New Roman";
|
239
|
+
letter-spacing:.4pt;
|
240
|
+
mso-ansi-language:EN-GB;
|
241
|
+
mso-fareast-language:ZH-CN;
|
242
|
+
/*font-weight:bold;*/
|
243
|
+
font-weight:normal;}
|
244
|
+
/*
|
245
|
+
h1
|
246
|
+
{ mso-list:l26 level1 lfo40;}
|
247
|
+
*/
|
248
|
+
.h2Annex, h2
|
249
|
+
{mso-style-unhide:no;
|
250
|
+
mso-style-qformat:yes;
|
251
|
+
mso-style-parent:"Heading 1";
|
252
|
+
mso-style-next:Normal;
|
253
|
+
margin-top:5.0pt;
|
254
|
+
margin-right:0cm;
|
255
|
+
margin-bottom:5.0pt;
|
256
|
+
margin-left:31.2pt;
|
257
|
+
text-align:left;
|
258
|
+
text-indent:-31.2pt;
|
259
|
+
mso-pagination:widow-orphan;
|
260
|
+
page-break-after:avoid;
|
261
|
+
mso-outline-level:2;
|
262
|
+
mso-hyphenate:none;
|
263
|
+
tab-stops:list 31.2pt;
|
264
|
+
layout-grid-mode:char;
|
265
|
+
font-size:10.0pt;
|
266
|
+
font-family:"Arial",sans-serif;
|
267
|
+
letter-spacing:.4pt;
|
268
|
+
mso-ansi-language:EN-GB;
|
269
|
+
mso-fareast-language:ZH-CN;
|
270
|
+
font-weight:bold;}
|
271
|
+
h2
|
272
|
+
{ mso-list:l26 level2 lfo40;}
|
273
|
+
.h3Annex, h3
|
274
|
+
{mso-style-unhide:no;
|
275
|
+
mso-style-qformat:yes;
|
276
|
+
mso-style-parent:"Heading 2";
|
277
|
+
mso-style-next:Normal;
|
278
|
+
margin-top:5.0pt;
|
279
|
+
margin-right:0cm;
|
280
|
+
margin-bottom:5.0pt;
|
281
|
+
margin-left:42.55pt;
|
282
|
+
text-align:left;
|
283
|
+
text-indent:-42.55pt;
|
284
|
+
mso-pagination:widow-orphan;
|
285
|
+
page-break-after:avoid;
|
286
|
+
mso-outline-level:3;
|
287
|
+
mso-hyphenate:none;
|
288
|
+
tab-stops:list 42.55pt;
|
289
|
+
layout-grid-mode:char;
|
290
|
+
font-size:10.0pt;
|
291
|
+
font-family:"Arial",sans-serif;
|
292
|
+
letter-spacing:.4pt;
|
293
|
+
mso-ansi-language:EN-GB;
|
294
|
+
mso-fareast-language:ZH-CN;
|
295
|
+
font-weight:bold;}
|
296
|
+
h3 {mso-list:l26 level3 lfo40;}
|
297
|
+
.h4Annex, h4
|
298
|
+
{mso-style-unhide:no;
|
299
|
+
mso-style-qformat:yes;
|
300
|
+
mso-style-parent:"Heading 3";
|
301
|
+
mso-style-next:Normal;
|
302
|
+
margin-top:5.0pt;
|
303
|
+
margin-right:0cm;
|
304
|
+
margin-bottom:5.0pt;
|
305
|
+
margin-left:53.85pt;
|
306
|
+
text-align:left;
|
307
|
+
text-indent:-53.85pt;
|
308
|
+
mso-pagination:widow-orphan;
|
309
|
+
page-break-after:avoid;
|
310
|
+
mso-outline-level:4;
|
311
|
+
mso-hyphenate:none;
|
312
|
+
tab-stops:list 53.85pt;
|
313
|
+
layout-grid-mode:char;
|
314
|
+
font-size:10.0pt;
|
315
|
+
font-family:"Arial",sans-serif;
|
316
|
+
letter-spacing:.4pt;
|
317
|
+
mso-ansi-language:EN-GB;
|
318
|
+
mso-fareast-language:ZH-CN;
|
319
|
+
font-weight:bold;}
|
320
|
+
h4 {mso-list:l26 level2 lfo40;}
|
321
|
+
.h5Annex, h5
|
322
|
+
{mso-style-unhide:no;
|
323
|
+
mso-style-qformat:yes;
|
324
|
+
mso-style-parent:"Heading 4";
|
325
|
+
mso-style-next:Normal;
|
326
|
+
margin-top:5.0pt;
|
327
|
+
margin-right:0cm;
|
328
|
+
margin-bottom:5.0pt;
|
329
|
+
margin-left:65.2pt;
|
330
|
+
text-align:left;
|
331
|
+
text-indent:-65.2pt;
|
332
|
+
mso-pagination:widow-orphan;
|
333
|
+
page-break-after:avoid;
|
334
|
+
mso-outline-level:5;
|
335
|
+
mso-hyphenate:none;
|
336
|
+
tab-stops:list 65.2pt;
|
337
|
+
layout-grid-mode:char;
|
338
|
+
font-size:10.0pt;
|
339
|
+
font-family:"Arial",sans-serif;
|
340
|
+
letter-spacing:.4pt;
|
341
|
+
mso-ansi-language:EN-GB;
|
342
|
+
mso-fareast-language:ZH-CN;
|
343
|
+
font-weight:bold;}
|
344
|
+
h5 {mso-list:l26 level5 lfo40;}
|
345
|
+
h6
|
346
|
+
{mso-style-unhide:no;
|
347
|
+
mso-style-qformat:yes;
|
348
|
+
mso-style-parent:"Heading 5";
|
349
|
+
mso-style-next:Normal;
|
350
|
+
margin-top:5.0pt;
|
351
|
+
margin-right:0cm;
|
352
|
+
margin-bottom:5.0pt;
|
353
|
+
margin-left:76.55pt;
|
354
|
+
text-align:left;
|
355
|
+
text-indent:-76.55pt;
|
356
|
+
mso-pagination:widow-orphan;
|
357
|
+
page-break-after:avoid;
|
358
|
+
mso-outline-level:6;
|
359
|
+
mso-hyphenate:none;
|
360
|
+
tab-stops:list 76.55pt;
|
361
|
+
layout-grid-mode:char;
|
362
|
+
font-size:10.0pt;
|
363
|
+
font-family:"Arial",sans-serif;
|
364
|
+
letter-spacing:.4pt;
|
365
|
+
mso-ansi-language:EN-GB;
|
366
|
+
mso-fareast-language:ZH-CN;
|
367
|
+
font-weight:bold;}
|
368
|
+
h6 {mso-list:l26 level6 lfo40;}
|
369
|
+
p.MsoHeading7, li.MsoHeading7, div.MsoHeading7
|
370
|
+
{mso-style-unhide:no;
|
371
|
+
mso-style-qformat:yes;
|
372
|
+
mso-style-parent:"Heading 6";
|
373
|
+
mso-style-next:Normal;
|
374
|
+
margin-top:5.0pt;
|
375
|
+
margin-right:0cm;
|
376
|
+
margin-bottom:5.0pt;
|
377
|
+
margin-left:87.9pt;
|
378
|
+
text-align:left;
|
379
|
+
text-indent:-87.9pt;
|
380
|
+
mso-pagination:widow-orphan;
|
381
|
+
page-break-after:avoid;
|
382
|
+
mso-outline-level:7;
|
383
|
+
mso-hyphenate:none;
|
384
|
+
tab-stops:list 87.9pt;
|
385
|
+
layout-grid-mode:char;
|
386
|
+
font-size:10.0pt;
|
387
|
+
font-family:"Arial",sans-serif;
|
388
|
+
mso-fareast-font-family:"Times New Roman";
|
389
|
+
letter-spacing:.4pt;
|
390
|
+
mso-ansi-language:EN-GB;
|
391
|
+
mso-fareast-language:ZH-CN;
|
392
|
+
font-weight:bold;}
|
393
|
+
p.MsoHeading7 {mso-list:l26 level7 lfo40;}
|
394
|
+
p.MsoHeading8, li.MsoHeading8, div.MsoHeading8
|
395
|
+
{mso-style-unhide:no;
|
396
|
+
mso-style-qformat:yes;
|
397
|
+
mso-style-parent:"Heading 7";
|
398
|
+
mso-style-next:Normal;
|
399
|
+
margin-top:5.0pt;
|
400
|
+
margin-right:0cm;
|
401
|
+
margin-bottom:5.0pt;
|
402
|
+
margin-left:99.25pt;
|
403
|
+
text-align:left;
|
404
|
+
text-indent:-99.25pt;
|
405
|
+
mso-pagination:widow-orphan;
|
406
|
+
page-break-after:avoid;
|
407
|
+
mso-outline-level:8;
|
408
|
+
mso-hyphenate:none;
|
409
|
+
tab-stops:list 99.25pt;
|
410
|
+
layout-grid-mode:char;
|
411
|
+
font-size:10.0pt;
|
412
|
+
font-family:"Arial",sans-serif;
|
413
|
+
mso-fareast-font-family:"Times New Roman";
|
414
|
+
letter-spacing:.4pt;
|
415
|
+
mso-ansi-language:EN-GB;
|
416
|
+
mso-fareast-language:ZH-CN;
|
417
|
+
font-weight:bold;}
|
418
|
+
p.MsoHeading8 {mso-list:l26 level8 lfo40;}
|
419
|
+
p.MsoHeading9, li.MsoHeading9, div.MsoHeading9
|
420
|
+
{mso-style-unhide:no;
|
421
|
+
mso-style-qformat:yes;
|
422
|
+
mso-style-parent:"Heading 8";
|
423
|
+
mso-style-next:Normal;
|
424
|
+
margin-top:5.0pt;
|
425
|
+
margin-right:0cm;
|
426
|
+
margin-bottom:5.0pt;
|
427
|
+
margin-left:110.55pt;
|
428
|
+
text-align:left;
|
429
|
+
text-indent:-110.55pt;
|
430
|
+
mso-pagination:widow-orphan;
|
431
|
+
page-break-after:avoid;
|
432
|
+
mso-outline-level:9;
|
433
|
+
mso-hyphenate:none;
|
434
|
+
tab-stops:list 110.55pt;
|
435
|
+
layout-grid-mode:char;
|
436
|
+
font-size:10.0pt;
|
437
|
+
font-family:"Arial",sans-serif;
|
438
|
+
mso-fareast-font-family:"Times New Roman";
|
439
|
+
letter-spacing:.4pt;
|
440
|
+
mso-ansi-language:EN-GB;
|
441
|
+
mso-fareast-language:ZH-CN;
|
442
|
+
font-weight:bold;}
|
443
|
+
p.MsoHeading9 {mso-list:l26 level9 lfo40;}
|
444
|
+
p.MsoToc1, li.MsoToc1, div.MsoToc1
|
445
|
+
{ mso-style-priority:39;
|
446
|
+
mso-style-unhide:no;
|
447
|
+
margin-top:0cm;
|
448
|
+
margin-right:34.0pt;
|
449
|
+
margin-bottom:5.0pt;
|
450
|
+
margin-left:22.7pt;
|
451
|
+
text-align:left;
|
452
|
+
text-indent:-22.7pt;
|
453
|
+
mso-pagination:widow-orphan;
|
454
|
+
mso-hyphenate:none;
|
455
|
+
tab-stops:22.7pt right dotted 453.5pt;
|
456
|
+
layout-grid-mode:char;
|
457
|
+
font-size:10.0pt;
|
458
|
+
font-family:"Arial",sans-serif;
|
459
|
+
mso-fareast-font-family:"Times New Roman";
|
460
|
+
letter-spacing:.4pt;
|
461
|
+
mso-ansi-language:EN-GB;
|
462
|
+
mso-fareast-language:ZH-CN;
|
463
|
+
mso-no-proof:yes;}
|
464
|
+
p.MsoToc2, li.MsoToc2, div.MsoToc2
|
465
|
+
{mso-style-priority:39;
|
466
|
+
mso-style-unhide:no;
|
467
|
+
mso-style-parent:"TOC 1";
|
468
|
+
margin-top:0cm;
|
469
|
+
margin-right:34.0pt;
|
470
|
+
margin-bottom:3.0pt;
|
471
|
+
margin-left:49.65pt;
|
472
|
+
text-align:left;
|
473
|
+
text-indent:-35.45pt;
|
474
|
+
mso-pagination:widow-orphan;
|
475
|
+
mso-hyphenate:none;
|
476
|
+
tab-stops:49.65pt right dotted 453.5pt;
|
477
|
+
layout-grid-mode:char;
|
478
|
+
font-size:10.0pt;
|
479
|
+
font-family:"Arial",sans-serif;
|
480
|
+
mso-fareast-font-family:"Times New Roman";
|
481
|
+
letter-spacing:.4pt;
|
482
|
+
mso-ansi-language:EN-GB;
|
483
|
+
mso-fareast-language:ZH-CN;
|
484
|
+
mso-no-proof:yes;}
|
485
|
+
p.MsoToc3, li.MsoToc3, div.MsoToc3
|
486
|
+
{mso-style-priority:39;
|
487
|
+
mso-style-unhide:no;
|
488
|
+
mso-style-parent:"TOC 2";
|
489
|
+
margin-top:0cm;
|
490
|
+
margin-right:34.0pt;
|
491
|
+
margin-bottom:3.0pt;
|
492
|
+
margin-left:72.3pt;
|
493
|
+
text-align:left;
|
494
|
+
text-indent:-49.6pt;
|
495
|
+
mso-pagination:widow-orphan;
|
496
|
+
mso-hyphenate:none;
|
497
|
+
tab-stops:78.0pt right dotted 453.5pt;
|
498
|
+
layout-grid-mode:char;
|
499
|
+
font-size:10.0pt;
|
500
|
+
font-family:"Arial",sans-serif;
|
501
|
+
mso-fareast-font-family:"Times New Roman";
|
502
|
+
letter-spacing:.4pt;
|
503
|
+
mso-ansi-language:EN-GB;
|
504
|
+
mso-fareast-language:ZH-CN;
|
505
|
+
mso-no-proof:yes;}
|
506
|
+
p.MsoToc4, li.MsoToc4, div.MsoToc4
|
507
|
+
{mso-style-noshow:yes;
|
508
|
+
mso-style-unhide:no;
|
509
|
+
mso-style-parent:"TOC 3";
|
510
|
+
margin-top:0cm;
|
511
|
+
margin-right:34.0pt;
|
512
|
+
margin-bottom:3.0pt;
|
513
|
+
margin-left:130.4pt;
|
514
|
+
text-align:left;
|
515
|
+
text-indent:-45.35pt;
|
516
|
+
mso-pagination:widow-orphan;
|
517
|
+
mso-hyphenate:none;
|
518
|
+
tab-stops:78.0pt 130.4pt right dotted 453.5pt;
|
519
|
+
layout-grid-mode:char;
|
520
|
+
font-size:10.0pt;
|
521
|
+
font-family:"Arial",sans-serif;
|
522
|
+
mso-fareast-font-family:"Times New Roman";
|
523
|
+
letter-spacing:.4pt;
|
524
|
+
mso-ansi-language:EN-GB;
|
525
|
+
mso-fareast-language:ZH-CN;
|
526
|
+
mso-no-proof:yes;}
|
527
|
+
p.MsoToc5, li.MsoToc5, div.MsoToc5
|
528
|
+
{mso-style-noshow:yes;
|
529
|
+
mso-style-unhide:no;
|
530
|
+
mso-style-parent:"TOC 4";
|
531
|
+
margin-top:0cm;
|
532
|
+
margin-right:34.0pt;
|
533
|
+
margin-bottom:3.0pt;
|
534
|
+
margin-left:184.25pt;
|
535
|
+
text-align:left;
|
536
|
+
text-indent:-53.85pt;
|
537
|
+
mso-pagination:widow-orphan;
|
538
|
+
mso-hyphenate:none;
|
539
|
+
tab-stops:78.0pt 184.3pt right dotted 453.5pt;
|
540
|
+
layout-grid-mode:char;
|
541
|
+
font-size:10.0pt;
|
542
|
+
font-family:"Arial",sans-serif;
|
543
|
+
mso-fareast-font-family:"Times New Roman";
|
544
|
+
letter-spacing:.4pt;
|
545
|
+
mso-ansi-language:EN-GB;
|
546
|
+
mso-fareast-language:ZH-CN;
|
547
|
+
mso-no-proof:yes;}
|
548
|
+
p.MsoToc6, li.MsoToc6, div.MsoToc6
|
549
|
+
{mso-style-noshow:yes;
|
550
|
+
mso-style-unhide:no;
|
551
|
+
mso-style-parent:"TOC 5";
|
552
|
+
margin-top:0cm;
|
553
|
+
margin-right:34.0pt;
|
554
|
+
margin-bottom:3.0pt;
|
555
|
+
margin-left:246.65pt;
|
556
|
+
text-align:left;
|
557
|
+
text-indent:-62.35pt;
|
558
|
+
mso-pagination:widow-orphan;
|
559
|
+
mso-hyphenate:none;
|
560
|
+
tab-stops:78.0pt 246.65pt right dotted 453.5pt;
|
561
|
+
layout-grid-mode:char;
|
562
|
+
font-size:10.0pt;
|
563
|
+
font-family:"Arial",sans-serif;
|
564
|
+
mso-fareast-font-family:"Times New Roman";
|
565
|
+
letter-spacing:.4pt;
|
566
|
+
mso-ansi-language:EN-GB;
|
567
|
+
mso-fareast-language:ZH-CN;
|
568
|
+
mso-no-proof:yes;}
|
569
|
+
p.MsoToc7, li.MsoToc7, div.MsoToc7
|
570
|
+
{mso-style-noshow:yes;
|
571
|
+
mso-style-unhide:no;
|
572
|
+
mso-style-parent:"TOC 6";
|
573
|
+
margin-top:0cm;
|
574
|
+
margin-right:34.0pt;
|
575
|
+
margin-bottom:5.0pt;
|
576
|
+
margin-left:22.7pt;
|
577
|
+
text-align:left;
|
578
|
+
text-indent:-22.7pt;
|
579
|
+
mso-pagination:widow-orphan;
|
580
|
+
mso-hyphenate:none;
|
581
|
+
tab-stops:22.7pt right 453.5pt;
|
582
|
+
layout-grid-mode:char;
|
583
|
+
font-size:10.0pt;
|
584
|
+
font-family:"Arial",sans-serif;
|
585
|
+
mso-fareast-font-family:"Times New Roman";
|
586
|
+
letter-spacing:.4pt;
|
587
|
+
mso-ansi-language:EN-GB;
|
588
|
+
mso-fareast-language:ZH-CN;
|
589
|
+
mso-no-proof:yes;}
|
590
|
+
p.MsoToc8, li.MsoToc8, div.MsoToc8
|
591
|
+
{mso-style-noshow:yes;
|
592
|
+
mso-style-unhide:no;
|
593
|
+
mso-style-parent:"TOC 7";
|
594
|
+
margin-top:0cm;
|
595
|
+
margin-right:34.0pt;
|
596
|
+
margin-bottom:5.0pt;
|
597
|
+
margin-left:36.0pt;
|
598
|
+
text-align:left;
|
599
|
+
text-indent:-36.0pt;
|
600
|
+
mso-pagination:widow-orphan;
|
601
|
+
mso-hyphenate:none;
|
602
|
+
tab-stops:22.7pt right dotted 453.5pt;
|
603
|
+
layout-grid-mode:char;
|
604
|
+
font-size:10.0pt;
|
605
|
+
font-family:"Arial",sans-serif;
|
606
|
+
mso-fareast-font-family:"Times New Roman";
|
607
|
+
letter-spacing:.4pt;
|
608
|
+
mso-ansi-language:EN-GB;
|
609
|
+
mso-fareast-language:ZH-CN;
|
610
|
+
mso-no-proof:yes;}
|
611
|
+
p.MsoToc9, li.MsoToc9, div.MsoToc9
|
612
|
+
{mso-style-noshow:yes;
|
613
|
+
mso-style-unhide:no;
|
614
|
+
mso-style-parent:"TOC 8";
|
615
|
+
margin-top:0cm;
|
616
|
+
margin-right:34.0pt;
|
617
|
+
margin-bottom:5.0pt;
|
618
|
+
margin-left:36.0pt;
|
619
|
+
text-align:left;
|
620
|
+
text-indent:-36.0pt;
|
621
|
+
mso-pagination:widow-orphan;
|
622
|
+
mso-hyphenate:none;
|
623
|
+
tab-stops:22.7pt right dotted 453.5pt;
|
624
|
+
layout-grid-mode:char;
|
625
|
+
font-size:10.0pt;
|
626
|
+
font-family:"Arial",sans-serif;
|
627
|
+
mso-fareast-font-family:"Times New Roman";
|
628
|
+
letter-spacing:.4pt;
|
629
|
+
mso-ansi-language:EN-GB;
|
630
|
+
mso-fareast-language:ZH-CN;
|
631
|
+
mso-no-proof:yes;}
|
632
|
+
p.MsoHeader, li.MsoHeader, div.MsoHeader
|
633
|
+
{mso-style-unhide:no;
|
634
|
+
margin:0cm;
|
635
|
+
margin-bottom:.0001pt;
|
636
|
+
text-align:justify;
|
637
|
+
mso-pagination:widow-orphan;
|
638
|
+
tab-stops:center 8.0cm right 16.0cm;
|
639
|
+
layout-grid-mode:char;
|
640
|
+
font-size:10.0pt;
|
641
|
+
font-family:"Arial",sans-serif;
|
642
|
+
mso-fareast-font-family:"Times New Roman";
|
643
|
+
letter-spacing:.4pt;
|
644
|
+
mso-ansi-language:EN-GB;
|
645
|
+
mso-fareast-language:ZH-CN;}
|
646
|
+
p.MsoFooter, li.MsoFooter, div.MsoFooter
|
647
|
+
{mso-style-noshow:yes;
|
648
|
+
mso-style-priority:29;
|
649
|
+
mso-style-unhide:no;
|
650
|
+
mso-style-parent:Header;
|
651
|
+
margin:0cm;
|
652
|
+
margin-bottom:.0001pt;
|
653
|
+
text-align:justify;
|
654
|
+
mso-pagination:widow-orphan;
|
655
|
+
tab-stops:center 8.0cm right 16.0cm;
|
656
|
+
layout-grid-mode:char;
|
657
|
+
font-size:10.0pt;
|
658
|
+
font-family:"Arial",sans-serif;
|
659
|
+
mso-fareast-font-family:"Times New Roman";
|
660
|
+
letter-spacing:.4pt;
|
661
|
+
mso-ansi-language:EN-GB;
|
662
|
+
mso-fareast-language:ZH-CN;}
|
663
|
+
span.MsoFootnoteReference
|
664
|
+
{mso-style-noshow:yes;
|
665
|
+
mso-style-unhide:no;
|
666
|
+
mso-style-parent:"";
|
667
|
+
mso-ansi-font-size:8.0pt;
|
668
|
+
mso-bidi-font-size:8.0pt;
|
669
|
+
font-family:"Arial",sans-serif;
|
670
|
+
mso-ascii-font-family:Arial;
|
671
|
+
mso-hansi-font-family:Arial;
|
672
|
+
position:relative;
|
673
|
+
top:-2.0pt;
|
674
|
+
mso-text-raise:2.0pt;
|
675
|
+
vertical-align:baseline;}
|
676
|
+
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
|
677
|
+
{mso-style-noshow:yes;
|
678
|
+
mso-style-unhide:no;
|
679
|
+
margin-top:0cm;
|
680
|
+
margin-right:0cm;
|
681
|
+
margin-bottom:5.0pt;
|
682
|
+
margin-left:14.2pt;
|
683
|
+
text-align:justify;
|
684
|
+
text-indent:-14.2pt;
|
685
|
+
mso-pagination:widow-orphan;
|
686
|
+
layout-grid-mode:char;
|
687
|
+
font-size:8.0pt;
|
688
|
+
font-family:"Arial",sans-serif;
|
689
|
+
mso-fareast-font-family:"Times New Roman";
|
690
|
+
letter-spacing:.4pt;
|
691
|
+
mso-ansi-language:EN-GB;
|
692
|
+
mso-fareast-language:ZH-CN;}
|
693
|
+
a:link, span.MsoHyperlink
|
694
|
+
{mso-style-priority:99;
|
695
|
+
mso-style-unhide:no;
|
696
|
+
mso-style-parent:"";
|
697
|
+
color:windowtext;
|
698
|
+
text-decoration:none;
|
699
|
+
text-underline:none;}
|
700
|
+
a:visited, span.MsoHyperlinkFollowed
|
701
|
+
{mso-style-priority:99;
|
702
|
+
mso-style-unhide:no;
|
703
|
+
mso-style-parent:Hyperlink;
|
704
|
+
color:windowtext;
|
705
|
+
text-decoration:none;
|
706
|
+
text-underline:none;}
|
707
|
+
span.Heading1Char
|
708
|
+
{mso-style-name:"Heading 1 Char";
|
709
|
+
mso-style-priority:1;
|
710
|
+
mso-style-unhide:no;
|
711
|
+
mso-style-locked:yes;
|
712
|
+
mso-style-parent:"";
|
713
|
+
mso-style-link:"Heading 1";
|
714
|
+
mso-ansi-font-size:11.0pt;
|
715
|
+
font-size:11.0pt;
|
716
|
+
font-family:"Arial",sans-serif;
|
717
|
+
letter-spacing:.4pt;
|
718
|
+
mso-font-kerning:0pt;
|
719
|
+
mso-ansi-language:EN-GB;
|
720
|
+
mso-fareast-language:ZH-CN;
|
721
|
+
font-weight:bold;}
|
722
|
+
span.Heading2Char
|
723
|
+
{mso-style-name:"Heading 2 Char";
|
724
|
+
mso-style-priority:2;
|
725
|
+
mso-style-unhide:no;
|
726
|
+
mso-style-locked:yes;
|
727
|
+
mso-style-parent:"";
|
728
|
+
mso-style-link:"Heading 2";
|
729
|
+
mso-ansi-font-size:10.0pt;
|
730
|
+
font-size:10.0pt;
|
731
|
+
font-family:"Arial",sans-serif;
|
732
|
+
letter-spacing:.4pt;
|
733
|
+
mso-ansi-language:EN-GB;
|
734
|
+
mso-fareast-language:ZH-CN;
|
735
|
+
font-weight:bold;}
|
736
|
+
span.Heading3Char
|
737
|
+
{mso-style-name:"Heading 3 Char";
|
738
|
+
mso-style-priority:3;
|
739
|
+
mso-style-unhide:no;
|
740
|
+
mso-style-locked:yes;
|
741
|
+
mso-style-parent:"";
|
742
|
+
mso-style-link:"Heading 3";
|
743
|
+
mso-ansi-font-size:10.0pt;
|
744
|
+
font-size:10.0pt;
|
745
|
+
font-family:"Arial",sans-serif;
|
746
|
+
letter-spacing:.4pt;
|
747
|
+
mso-ansi-language:EN-GB;
|
748
|
+
mso-fareast-language:JA;
|
749
|
+
font-weight:bold;
|
750
|
+
mso-bidi-font-weight:normal;}
|
751
|
+
span.Heading4Char
|
752
|
+
{mso-style-name:"Heading 4 Char";
|
753
|
+
mso-style-priority:4;
|
754
|
+
mso-style-unhide:no;
|
755
|
+
mso-style-locked:yes;
|
756
|
+
mso-style-parent:"";
|
757
|
+
mso-style-link:"Heading 4";
|
758
|
+
mso-ansi-font-size:10.0pt;
|
759
|
+
font-size:10.0pt;
|
760
|
+
font-family:"Arial",sans-serif;
|
761
|
+
letter-spacing:.4pt;
|
762
|
+
mso-ansi-language:EN-GB;
|
763
|
+
mso-fareast-language:JA;
|
764
|
+
font-weight:bold;
|
765
|
+
mso-bidi-font-weight:normal;}
|
766
|
+
span.Heading5Char
|
767
|
+
{mso-style-name:"Heading 5 Char";
|
768
|
+
mso-style-priority:5;
|
769
|
+
mso-style-unhide:no;
|
770
|
+
mso-style-locked:yes;
|
771
|
+
mso-style-parent:"";
|
772
|
+
mso-style-link:"Heading 5";
|
773
|
+
mso-ansi-font-size:10.0pt;
|
774
|
+
font-size:10.0pt;
|
775
|
+
font-family:"Arial",sans-serif;
|
776
|
+
letter-spacing:.4pt;
|
777
|
+
mso-ansi-language:EN-GB;
|
778
|
+
mso-fareast-language:JA;
|
779
|
+
font-weight:bold;
|
780
|
+
mso-bidi-font-weight:normal;}
|
781
|
+
span.Heading6Char
|
782
|
+
{mso-style-name:"Heading 6 Char";
|
783
|
+
mso-style-priority:6;
|
784
|
+
mso-style-unhide:no;
|
785
|
+
mso-style-locked:yes;
|
786
|
+
mso-style-parent:"";
|
787
|
+
mso-style-link:"Heading 6";
|
788
|
+
mso-ansi-font-size:10.0pt;
|
789
|
+
font-size:10.0pt;
|
790
|
+
font-family:"Arial",sans-serif;
|
791
|
+
letter-spacing:.4pt;
|
792
|
+
mso-ansi-language:EN-GB;
|
793
|
+
mso-fareast-language:JA;
|
794
|
+
font-weight:bold;
|
795
|
+
mso-bidi-font-weight:normal;}
|
796
|
+
p.a2, li.a2, div.a2
|
797
|
+
{mso-style-name:a2;
|
798
|
+
mso-style-priority:11;
|
799
|
+
mso-style-unhide:no;
|
800
|
+
mso-style-next:Normal;
|
801
|
+
margin-top:13.5pt;
|
802
|
+
margin-right:0cm;
|
803
|
+
margin-bottom:12.0pt;
|
804
|
+
margin-left:0cm;
|
805
|
+
text-indent:0cm;
|
806
|
+
line-height:13.5pt;
|
807
|
+
mso-pagination:widow-orphan;
|
808
|
+
page-break-after:avoid;
|
809
|
+
mso-outline-level:1;
|
810
|
+
mso-list:l0 level2 lfo12;
|
811
|
+
tab-stops:1.0cm 36.0pt;
|
812
|
+
font-size:13.0pt;
|
813
|
+
mso-bidi-font-size:11.0pt;
|
814
|
+
font-family:$bodyfont;
|
815
|
+
mso-fareast-font-family:$headerfont;
|
816
|
+
mso-bidi-font-family:$headerfont;
|
817
|
+
mso-ansi-language:EN-GB;
|
818
|
+
mso-fareast-language:JA;
|
819
|
+
font-weight:bold;
|
820
|
+
mso-bidi-font-weight:normal;}
|
821
|
+
p.a3, li.a3, div.a3
|
822
|
+
{mso-style-name:a3;
|
823
|
+
mso-style-priority:12;
|
824
|
+
mso-style-unhide:no;
|
825
|
+
mso-style-next:Normal;
|
826
|
+
margin-top:3.0pt;
|
827
|
+
margin-right:0cm;
|
828
|
+
margin-bottom:12.0pt;
|
829
|
+
margin-left:0cm;
|
830
|
+
text-indent:0cm;
|
831
|
+
line-height:12.5pt;
|
832
|
+
mso-pagination:widow-orphan;
|
833
|
+
page-break-after:avoid;
|
834
|
+
mso-outline-level:1;
|
835
|
+
mso-list:l0 level3 lfo12;
|
836
|
+
tab-stops:20.15pt list 36.0pt;
|
837
|
+
font-size:12.0pt;
|
838
|
+
mso-bidi-font-size:11.0pt;
|
839
|
+
font-family:$bodyfont;
|
840
|
+
mso-fareast-font-family:$headerfont;
|
841
|
+
mso-bidi-font-family:$headerfont;
|
842
|
+
mso-ansi-language:EN-GB;
|
843
|
+
mso-fareast-language:JA;
|
844
|
+
font-weight:bold;
|
845
|
+
mso-bidi-font-weight:normal;}
|
846
|
+
p.a4, li.a4, div.a4
|
847
|
+
{mso-style-name:a4;
|
848
|
+
mso-style-priority:13;
|
849
|
+
mso-style-unhide:no;
|
850
|
+
mso-style-next:Normal;
|
851
|
+
margin-top:3.0pt;
|
852
|
+
margin-right:0cm;
|
853
|
+
margin-bottom:12.0pt;
|
854
|
+
margin-left:0cm;
|
855
|
+
text-indent:0cm;
|
856
|
+
line-height:12.0pt;
|
857
|
+
mso-pagination:widow-orphan;
|
858
|
+
page-break-after:avoid;
|
859
|
+
mso-outline-level:1;
|
860
|
+
mso-list:l0 level4 lfo12;
|
861
|
+
tab-stops:20.15pt 44.0pt list 54.0pt;
|
862
|
+
font-size:11.0pt;
|
863
|
+
font-family:$bodyfont;
|
864
|
+
mso-fareast-font-family:$headerfont;
|
865
|
+
mso-bidi-font-family:$headerfont;
|
866
|
+
mso-ansi-language:EN-GB;
|
867
|
+
mso-fareast-language:JA;
|
868
|
+
font-weight:bold;
|
869
|
+
mso-bidi-font-style:italic;}
|
870
|
+
p.a5, li.a5, div.a5
|
871
|
+
{mso-style-name:a5;
|
872
|
+
mso-style-priority:14;
|
873
|
+
mso-style-unhide:no;
|
874
|
+
mso-style-next:Normal;
|
875
|
+
margin-top:3.0pt;
|
876
|
+
margin-right:0cm;
|
877
|
+
margin-bottom:12.0pt;
|
878
|
+
margin-left:0cm;
|
879
|
+
text-indent:0cm;
|
880
|
+
line-height:12.0pt;
|
881
|
+
mso-pagination:widow-orphan;
|
882
|
+
page-break-after:avoid;
|
883
|
+
mso-outline-level:1;
|
884
|
+
mso-list:l0 level5 lfo12;
|
885
|
+
tab-stops:20.15pt list 54.0pt left 62.35pt 68.0pt;
|
886
|
+
font-size:11.0pt;
|
887
|
+
font-family:$bodyfont;
|
888
|
+
mso-fareast-font-family:$headerfont;
|
889
|
+
mso-bidi-font-family:$headerfont;
|
890
|
+
mso-ansi-language:EN-GB;
|
891
|
+
mso-fareast-language:JA;
|
892
|
+
font-weight:bold;
|
893
|
+
mso-bidi-font-style:italic;}
|
894
|
+
p.a6, li.a6, div.a6
|
895
|
+
{mso-style-name:a6;
|
896
|
+
mso-style-priority:15;
|
897
|
+
mso-style-unhide:no;
|
898
|
+
mso-style-next:Normal;
|
899
|
+
margin-top:3.0pt;
|
900
|
+
margin-right:0cm;
|
901
|
+
margin-bottom:12.0pt;
|
902
|
+
margin-left:0cm;
|
903
|
+
text-indent:0cm;
|
904
|
+
line-height:12.0pt;
|
905
|
+
mso-pagination:widow-orphan;
|
906
|
+
page-break-after:avoid;
|
907
|
+
mso-outline-level:1;
|
908
|
+
mso-list:l0 level6 lfo12;
|
909
|
+
tab-stops:20.15pt 62.35pt 68.0pt list 72.0pt;
|
910
|
+
font-size:11.0pt;
|
911
|
+
font-family:$bodyfont;
|
912
|
+
mso-fareast-font-family:$headerfont;
|
913
|
+
mso-bidi-font-family:$headerfont;
|
914
|
+
mso-ansi-language:EN-GB;
|
915
|
+
mso-fareast-language:JA;
|
916
|
+
font-weight:bold;}
|
917
|
+
span.FooterChar
|
918
|
+
{mso-style-name:"Footer Char";
|
919
|
+
mso-style-noshow:yes;
|
920
|
+
mso-style-priority:99;
|
921
|
+
mso-style-unhide:no;
|
922
|
+
mso-style-locked:yes;
|
923
|
+
mso-style-parent:"";
|
924
|
+
mso-style-link:Footer;
|
925
|
+
mso-ansi-font-size:11.0pt;
|
926
|
+
mso-bidi-font-size:11.0pt;
|
927
|
+
mso-ansi-language:EN-GB;}
|
928
|
+
span.HeaderChar
|
929
|
+
{mso-style-name:"Header Char";
|
930
|
+
mso-style-noshow:yes;
|
931
|
+
mso-style-priority:99;
|
932
|
+
mso-style-unhide:no;
|
933
|
+
mso-style-locked:yes;
|
934
|
+
mso-style-parent:"";
|
935
|
+
mso-style-link:Header;
|
936
|
+
mso-ansi-font-size:11.0pt;
|
937
|
+
mso-bidi-font-size:11.0pt;
|
938
|
+
mso-ansi-language:EN-GB;
|
939
|
+
font-weight:bold;
|
940
|
+
mso-bidi-font-weight:normal;}
|
941
|
+
/* IEC:PARAGRAPH Char */
|
942
|
+
span.BodyTextChar
|
943
|
+
{mso-style-name:"Body Text Char";
|
944
|
+
mso-style-unhide:no;
|
945
|
+
mso-style-locked:yes;
|
946
|
+
mso-style-parent:"";
|
947
|
+
mso-style-link:"Body Text";
|
948
|
+
font-family:"Arial",sans-serif;
|
949
|
+
mso-ascii-font-family:Arial;
|
950
|
+
mso-hansi-font-family:Arial;
|
951
|
+
mso-bidi-font-family:Arial;
|
952
|
+
letter-spacing:.4pt;
|
953
|
+
mso-fareast-language:ZH-CN;}
|
954
|
+
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
|
955
|
+
{mso-style-noshow:yes;
|
956
|
+
mso-style-priority:99;
|
957
|
+
mso-style-link:"Comment Text Char";
|
958
|
+
margin-top:0cm;
|
959
|
+
margin-right:0cm;
|
960
|
+
margin-bottom:12.0pt;
|
961
|
+
margin-left:0cm;
|
962
|
+
text-align:justify;
|
963
|
+
line-height:12.0pt;
|
964
|
+
mso-pagination:widow-orphan;
|
965
|
+
tab-stops:20.15pt;
|
966
|
+
font-size:12.0pt;
|
967
|
+
font-family:$bodyfont;
|
968
|
+
mso-fareast-font-family:$bodyfont;
|
969
|
+
mso-bidi-font-family:$bodyfont;
|
970
|
+
mso-ansi-language:EN-GB;
|
971
|
+
mso-fareast-language:EN-US;}
|
972
|
+
span.MsoCommentReference
|
973
|
+
{mso-style-noshow:yes;
|
974
|
+
mso-style-unhide:no;
|
975
|
+
mso-style-parent:"";
|
976
|
+
mso-ansi-font-size:8.0pt;
|
977
|
+
mso-bidi-font-size:8.0pt;}
|
978
|
+
p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
|
979
|
+
{mso-style-noshow:yes;
|
980
|
+
mso-style-priority:99;
|
981
|
+
mso-style-parent:"Comment Text";
|
982
|
+
mso-style-link:"Comment Subject Char";
|
983
|
+
mso-style-next:"Comment Text";
|
984
|
+
margin-top:0cm;
|
985
|
+
margin-right:0cm;
|
986
|
+
margin-bottom:12.0pt;
|
987
|
+
margin-left:0cm;
|
988
|
+
text-align:justify;
|
989
|
+
line-height:12.0pt;
|
990
|
+
mso-pagination:widow-orphan;
|
991
|
+
tab-stops:20.15pt;
|
992
|
+
font-size:10.0pt;
|
993
|
+
font-family:$headerfont;
|
994
|
+
mso-fareast-font-family:$headerfont;
|
995
|
+
mso-bidi-font-family:$headerfont;
|
996
|
+
mso-ansi-language:EN-GB;
|
997
|
+
mso-fareast-language:EN-US;
|
998
|
+
font-weight:bold;}
|
999
|
+
p.Tablebody, li.Tablebody, div.Tablebody
|
1000
|
+
{mso-style-name:"Table body";
|
1001
|
+
mso-style-noshow:yes;
|
1002
|
+
mso-style-unhide:no;
|
1003
|
+
margin-top:3.0pt;
|
1004
|
+
margin-right:0cm;
|
1005
|
+
margin-bottom:3.0pt;
|
1006
|
+
margin-left:0cm;
|
1007
|
+
line-height:10.5pt;
|
1008
|
+
mso-pagination:widow-orphan;
|
1009
|
+
font-size:10.0pt;
|
1010
|
+
mso-bidi-font-size:11.0pt;
|
1011
|
+
font-family:$bodyfont;
|
1012
|
+
mso-fareast-font-family:$bodyfont;
|
1013
|
+
mso-bidi-font-family:$bodyfont;
|
1014
|
+
mso-ansi-language:EN-GB;}
|
1015
|
+
.MsoChpDefault
|
1016
|
+
{mso-style-type:export-only;
|
1017
|
+
mso-default-props:yes;
|
1018
|
+
mso-ascii-font-family:$bodyfont;
|
1019
|
+
mso-fareast-font-family:$bodyfont;
|
1020
|
+
mso-hansi-font-family:$bodyfont;}
|
1021
|
+
p.MsoList, li.MsoList, div.MsoList
|
1022
|
+
{mso-style-unhide:no;
|
1023
|
+
mso-style-qformat:yes;
|
1024
|
+
margin-top:0cm;
|
1025
|
+
margin-right:0cm;
|
1026
|
+
margin-bottom:5.0pt;
|
1027
|
+
margin-left:17.0pt;
|
1028
|
+
text-align:justify;
|
1029
|
+
text-indent:-17.0pt;
|
1030
|
+
mso-pagination:widow-orphan;
|
1031
|
+
tab-stops:17.0pt;
|
1032
|
+
layout-grid-mode:char;
|
1033
|
+
font-size:10.0pt;
|
1034
|
+
font-family:"Arial",sans-serif;
|
1035
|
+
mso-fareast-font-family:"Times New Roman";
|
1036
|
+
letter-spacing:.4pt;
|
1037
|
+
mso-ansi-language:EN-GB;
|
1038
|
+
mso-fareast-language:ZH-CN;}
|
1039
|
+
p.MsoListBullet, li.MsoListBullet, div.MsoListBullet
|
1040
|
+
{mso-style-unhide:no;
|
1041
|
+
mso-style-qformat:yes;
|
1042
|
+
margin-top:0cm;
|
1043
|
+
margin-right:0cm;
|
1044
|
+
margin-bottom:5.0pt;
|
1045
|
+
margin-left:17.0pt;
|
1046
|
+
text-align:justify;
|
1047
|
+
text-indent:-17.0pt;
|
1048
|
+
mso-pagination:widow-orphan;
|
1049
|
+
mso-list:l22 level1 lfo8;
|
1050
|
+
tab-stops:17.0pt;
|
1051
|
+
layout-grid-mode:char;
|
1052
|
+
font-size:10.0pt;
|
1053
|
+
font-family:"Arial",sans-serif;
|
1054
|
+
mso-fareast-font-family:"Times New Roman";
|
1055
|
+
letter-spacing:.4pt;
|
1056
|
+
mso-ansi-language:EN-GB;
|
1057
|
+
mso-fareast-language:ZH-CN;}
|
1058
|
+
p.MsoListNumber, li.MsoListNumber, div.MsoListNumber
|
1059
|
+
{mso-style-unhide:no;
|
1060
|
+
mso-style-qformat:yes;
|
1061
|
+
mso-style-parent:List;
|
1062
|
+
margin-top:0cm;
|
1063
|
+
margin-right:0cm;
|
1064
|
+
margin-bottom:5.0pt;
|
1065
|
+
margin-left:17.0pt;
|
1066
|
+
text-align:justify;
|
1067
|
+
text-indent:-17.0pt;
|
1068
|
+
mso-pagination:widow-orphan;
|
1069
|
+
mso-list:l15 level1 lfo1;
|
1070
|
+
tab-stops:17.0pt;
|
1071
|
+
layout-grid-mode:char;
|
1072
|
+
font-size:10.0pt;
|
1073
|
+
font-family:"Arial",sans-serif;
|
1074
|
+
mso-fareast-font-family:"Times New Roman";
|
1075
|
+
letter-spacing:.4pt;
|
1076
|
+
mso-ansi-language:EN-GB;
|
1077
|
+
mso-fareast-language:ZH-CN;}
|
1078
|
+
p.MsoIndex1, li.MsoIndex1, div.MsoIndex1
|
1079
|
+
{mso-style-update:auto;
|
1080
|
+
mso-style-noshow:yes;
|
1081
|
+
mso-style-priority:99;
|
1082
|
+
mso-style-next:Normal;
|
1083
|
+
margin-top:0cm;
|
1084
|
+
margin-right:0cm;
|
1085
|
+
margin-bottom:0cm;
|
1086
|
+
margin-left:10.0pt;
|
1087
|
+
margin-bottom:.0001pt;
|
1088
|
+
text-align:justify;
|
1089
|
+
text-indent:-10.0pt;
|
1090
|
+
mso-pagination:widow-orphan;
|
1091
|
+
font-size:10.0pt;
|
1092
|
+
font-family:"Arial",sans-serif;
|
1093
|
+
mso-fareast-font-family:"Times New Roman";
|
1094
|
+
letter-spacing:.4pt;
|
1095
|
+
mso-ansi-language:EN-GB;
|
1096
|
+
mso-fareast-language:ZH-CN;}
|
1097
|
+
p.MsoIndex2, li.MsoIndex2, div.MsoIndex2
|
1098
|
+
{mso-style-update:auto;
|
1099
|
+
mso-style-noshow:yes;
|
1100
|
+
mso-style-priority:99;
|
1101
|
+
mso-style-next:Normal;
|
1102
|
+
margin-top:0cm;
|
1103
|
+
margin-right:0cm;
|
1104
|
+
margin-bottom:0cm;
|
1105
|
+
margin-left:20.0pt;
|
1106
|
+
margin-bottom:.0001pt;
|
1107
|
+
text-align:justify;
|
1108
|
+
text-indent:-10.0pt;
|
1109
|
+
mso-pagination:widow-orphan;
|
1110
|
+
font-size:10.0pt;
|
1111
|
+
font-family:"Arial",sans-serif;
|
1112
|
+
mso-fareast-font-family:"Times New Roman";
|
1113
|
+
letter-spacing:.4pt;
|
1114
|
+
mso-ansi-language:EN-GB;
|
1115
|
+
mso-fareast-language:ZH-CN;}
|
1116
|
+
p.MsoIndex3, li.MsoIndex3, div.MsoIndex3
|
1117
|
+
{mso-style-update:auto;
|
1118
|
+
mso-style-noshow:yes;
|
1119
|
+
mso-style-priority:99;
|
1120
|
+
mso-style-next:Normal;
|
1121
|
+
margin-top:0cm;
|
1122
|
+
margin-right:0cm;
|
1123
|
+
margin-bottom:0cm;
|
1124
|
+
margin-left:30.0pt;
|
1125
|
+
margin-bottom:.0001pt;
|
1126
|
+
text-align:justify;
|
1127
|
+
text-indent:-10.0pt;
|
1128
|
+
mso-pagination:widow-orphan;
|
1129
|
+
font-size:10.0pt;
|
1130
|
+
font-family:"Arial",sans-serif;
|
1131
|
+
mso-fareast-font-family:"Times New Roman";
|
1132
|
+
letter-spacing:.4pt;
|
1133
|
+
mso-ansi-language:EN-GB;
|
1134
|
+
mso-fareast-language:ZH-CN;}
|
1135
|
+
p.MsoIndex4, li.MsoIndex4, div.MsoIndex4
|
1136
|
+
{mso-style-update:auto;
|
1137
|
+
mso-style-noshow:yes;
|
1138
|
+
mso-style-priority:99;
|
1139
|
+
mso-style-next:Normal;
|
1140
|
+
margin-top:0cm;
|
1141
|
+
margin-right:0cm;
|
1142
|
+
margin-bottom:0cm;
|
1143
|
+
margin-left:40.0pt;
|
1144
|
+
margin-bottom:.0001pt;
|
1145
|
+
text-align:justify;
|
1146
|
+
text-indent:-10.0pt;
|
1147
|
+
mso-pagination:widow-orphan;
|
1148
|
+
font-size:10.0pt;
|
1149
|
+
font-family:"Arial",sans-serif;
|
1150
|
+
mso-fareast-font-family:"Times New Roman";
|
1151
|
+
letter-spacing:.4pt;
|
1152
|
+
mso-ansi-language:EN-GB;
|
1153
|
+
mso-fareast-language:ZH-CN;}
|
1154
|
+
p.MsoIndex5, li.MsoIndex5, div.MsoIndex5
|
1155
|
+
{mso-style-update:auto;
|
1156
|
+
mso-style-noshow:yes;
|
1157
|
+
mso-style-priority:99;
|
1158
|
+
mso-style-next:Normal;
|
1159
|
+
margin-top:0cm;
|
1160
|
+
margin-right:0cm;
|
1161
|
+
margin-bottom:0cm;
|
1162
|
+
margin-left:50.0pt;
|
1163
|
+
margin-bottom:.0001pt;
|
1164
|
+
text-align:justify;
|
1165
|
+
text-indent:-10.0pt;
|
1166
|
+
mso-pagination:widow-orphan;
|
1167
|
+
font-size:10.0pt;
|
1168
|
+
font-family:"Arial",sans-serif;
|
1169
|
+
mso-fareast-font-family:"Times New Roman";
|
1170
|
+
letter-spacing:.4pt;
|
1171
|
+
mso-ansi-language:EN-GB;
|
1172
|
+
mso-fareast-language:ZH-CN;}
|
1173
|
+
p.MsoIndex6, li.MsoIndex6, div.MsoIndex6
|
1174
|
+
{mso-style-update:auto;
|
1175
|
+
mso-style-noshow:yes;
|
1176
|
+
mso-style-priority:99;
|
1177
|
+
mso-style-next:Normal;
|
1178
|
+
margin-top:0cm;
|
1179
|
+
margin-right:0cm;
|
1180
|
+
margin-bottom:0cm;
|
1181
|
+
margin-left:60.0pt;
|
1182
|
+
margin-bottom:.0001pt;
|
1183
|
+
text-align:justify;
|
1184
|
+
text-indent:-10.0pt;
|
1185
|
+
mso-pagination:widow-orphan;
|
1186
|
+
font-size:10.0pt;
|
1187
|
+
font-family:"Arial",sans-serif;
|
1188
|
+
mso-fareast-font-family:"Times New Roman";
|
1189
|
+
letter-spacing:.4pt;
|
1190
|
+
mso-ansi-language:EN-GB;
|
1191
|
+
mso-fareast-language:ZH-CN;}
|
1192
|
+
p.MsoIndex7, li.MsoIndex7, div.MsoIndex7
|
1193
|
+
{mso-style-update:auto;
|
1194
|
+
mso-style-noshow:yes;
|
1195
|
+
mso-style-priority:99;
|
1196
|
+
mso-style-next:Normal;
|
1197
|
+
margin-top:0cm;
|
1198
|
+
margin-right:0cm;
|
1199
|
+
margin-bottom:0cm;
|
1200
|
+
margin-left:70.0pt;
|
1201
|
+
margin-bottom:.0001pt;
|
1202
|
+
text-align:justify;
|
1203
|
+
text-indent:-10.0pt;
|
1204
|
+
mso-pagination:widow-orphan;
|
1205
|
+
font-size:10.0pt;
|
1206
|
+
font-family:"Arial",sans-serif;
|
1207
|
+
mso-fareast-font-family:"Times New Roman";
|
1208
|
+
letter-spacing:.4pt;
|
1209
|
+
mso-ansi-language:EN-GB;
|
1210
|
+
mso-fareast-language:ZH-CN;}
|
1211
|
+
p.MsoIndex8, li.MsoIndex8, div.MsoIndex8
|
1212
|
+
{mso-style-update:auto;
|
1213
|
+
mso-style-noshow:yes;
|
1214
|
+
mso-style-priority:99;
|
1215
|
+
mso-style-next:Normal;
|
1216
|
+
margin-top:0cm;
|
1217
|
+
margin-right:0cm;
|
1218
|
+
margin-bottom:0cm;
|
1219
|
+
margin-left:80.0pt;
|
1220
|
+
margin-bottom:.0001pt;
|
1221
|
+
text-align:justify;
|
1222
|
+
text-indent:-10.0pt;
|
1223
|
+
mso-pagination:widow-orphan;
|
1224
|
+
font-size:10.0pt;
|
1225
|
+
font-family:"Arial",sans-serif;
|
1226
|
+
mso-fareast-font-family:"Times New Roman";
|
1227
|
+
letter-spacing:.4pt;
|
1228
|
+
mso-ansi-language:EN-GB;
|
1229
|
+
mso-fareast-language:ZH-CN;}
|
1230
|
+
p.MsoIndex9, li.MsoIndex9, div.MsoIndex9
|
1231
|
+
{mso-style-update:auto;
|
1232
|
+
mso-style-noshow:yes;
|
1233
|
+
mso-style-priority:99;
|
1234
|
+
mso-style-next:Normal;
|
1235
|
+
margin-top:0cm;
|
1236
|
+
margin-right:0cm;
|
1237
|
+
margin-bottom:0cm;
|
1238
|
+
margin-left:90.0pt;
|
1239
|
+
margin-bottom:.0001pt;
|
1240
|
+
text-align:justify;
|
1241
|
+
text-indent:-10.0pt;
|
1242
|
+
mso-pagination:widow-orphan;
|
1243
|
+
font-size:10.0pt;
|
1244
|
+
font-family:"Arial",sans-serif;
|
1245
|
+
mso-fareast-font-family:"Times New Roman";
|
1246
|
+
letter-spacing:.4pt;
|
1247
|
+
mso-ansi-language:EN-GB;
|
1248
|
+
mso-fareast-language:ZH-CN;}
|
1249
|
+
p.MsoIndexHeading, li.MsoIndexHeading, div.MsoIndexHeading
|
1250
|
+
{mso-style-noshow:yes;
|
1251
|
+
mso-style-priority:99;
|
1252
|
+
mso-style-next:"MsoIndex 1";
|
1253
|
+
margin:0cm;
|
1254
|
+
margin-bottom:.0001pt;
|
1255
|
+
text-align:justify;
|
1256
|
+
mso-pagination:widow-orphan;
|
1257
|
+
font-size:10.0pt;
|
1258
|
+
font-family:"Cambria",serif;
|
1259
|
+
mso-fareast-font-family:"MS Gothic";
|
1260
|
+
mso-bidi-font-family:"Times New Roman";
|
1261
|
+
letter-spacing:.4pt;
|
1262
|
+
mso-ansi-language:EN-GB;
|
1263
|
+
mso-fareast-language:ZH-CN;
|
1264
|
+
font-weight:bold;}
|
1265
|
+
|
1266
|
+
/* Page Definitions */
|
1267
|
+
@page
|
1268
|
+
{mso-mirror-margins:yes;
|
1269
|
+
mso-footnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") fs;
|
1270
|
+
mso-footnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") fcs;
|
1271
|
+
mso-endnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") es;
|
1272
|
+
mso-endnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") ecs;
|
1273
|
+
mso-facing-pages:yes;
|
1274
|
+
mso-page-orientation: portrait;
|
1275
|
+
{% if stageabbr == "CD" or stageabbr == "CDV" %}
|
1276
|
+
mso-line-numbers-count-by:1;
|
1277
|
+
mso-line-numbers-restart:continuous;
|
1278
|
+
{% endif %}
|
1279
|
+
}
|
1280
|
+
@page WordSection1
|
1281
|
+
{size:595.0pt 842.0pt;
|
1282
|
+
margin:72.0pt 90.0pt 72.0pt 90.0pt;
|
1283
|
+
mso-header-margin:35.4pt;
|
1284
|
+
mso-footer-margin:35.4pt;
|
1285
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eha;
|
1286
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") ha;
|
1287
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") efa;
|
1288
|
+
mso-paper-source:0;}
|
1289
|
+
div.WordSection1
|
1290
|
+
{page:WordSection1;}
|
1291
|
+
@page WordSection2
|
1292
|
+
{size:595.3pt 841.9pt;
|
1293
|
+
margin:3.0cm 2.5cm 1.5cm 2.5cm;
|
1294
|
+
mso-header-margin:35.45pt;
|
1295
|
+
mso-footer-margin:14.2pt;
|
1296
|
+
mso-page-numbers:roman-lower;
|
1297
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
1298
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
1299
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
|
1300
|
+
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
1301
|
+
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh2;
|
1302
|
+
mso-first-footer:url("file:///C:/Doc/FILENAME_files/header.html") ff2;
|
1303
|
+
mso-paper-source:0;}
|
1304
|
+
div.WordSection2
|
1305
|
+
{page:WordSection2;}
|
1306
|
+
@page WordSection3
|
1307
|
+
{size:595.3pt 841.9pt;
|
1308
|
+
margin:3.0cm 2.5cm 1.5cm 2.5cm;
|
1309
|
+
mso-header-margin:35.45pt;
|
1310
|
+
mso-footer-margin:14.2pt;
|
1311
|
+
mso-page-numbers:1;
|
1312
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
1313
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
1314
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
|
1315
|
+
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
1316
|
+
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh3;
|
1317
|
+
mso-first-footer:url("file:///C:/Doc/FILENAME_files/header.html") ff3;
|
1318
|
+
mso-paper-source:0;}
|
1319
|
+
div.WordSection3
|
1320
|
+
{page:WordSection3;}
|
1321
|
+
@page WordSection4
|
1322
|
+
{size:595.3pt 841.9pt;
|
1323
|
+
margin:3.0cm 2.5cm 1.5cm 2.5cm;
|
1324
|
+
mso-header-margin:35.45pt;
|
1325
|
+
mso-footer-margin:14.2pt;
|
1326
|
+
mso-page-numbers:1;
|
1327
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
1328
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
1329
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f4;
|
1330
|
+
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f4;
|
1331
|
+
mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh4;
|
1332
|
+
mso-first-footer:url("file:///C:/Doc/FILENAME_files/header.html") ff4;
|
1333
|
+
mso-paper-source:0;}
|
1334
|
+
div.colophon
|
1335
|
+
{page:WordSection4;}
|
1336
|
+
|
1337
|
+
/* List Definitions */
|
1338
|
+
@list l0
|
1339
|
+
{mso-list-id:145051656;
|
1340
|
+
mso-list-template-ids:2112159680;}
|
1341
|
+
@list l0:level1
|
1342
|
+
{mso-level-number-format:alpha-upper;
|
1343
|
+
mso-level-style-link:ANNEX;
|
1344
|
+
mso-level-suffix:none;
|
1345
|
+
mso-level-text:"Annex\00A0%1";
|
1346
|
+
mso-level-tab-stop:none;
|
1347
|
+
mso-level-number-position:left;
|
1348
|
+
margin-left:0cm;
|
1349
|
+
text-indent:0cm;
|
1350
|
+
mso-ansi-font-size:14.0pt;
|
1351
|
+
mso-bidi-font-size:14.0pt;
|
1352
|
+
font-family:$bodyfont;
|
1353
|
+
mso-bidi-font-family:$bodyfont;
|
1354
|
+
mso-ansi-font-weight:bold;
|
1355
|
+
mso-ansi-font-style:normal;}
|
1356
|
+
@list l0:level2
|
1357
|
+
{mso-level-style-link:a2;
|
1358
|
+
mso-level-text:"%1\.%2";
|
1359
|
+
mso-level-tab-stop:18.0pt;
|
1360
|
+
mso-level-number-position:left;
|
1361
|
+
margin-left:0cm;
|
1362
|
+
text-indent:0cm;
|
1363
|
+
mso-bidi-font-family:$bodyfont;
|
1364
|
+
mso-ansi-font-weight:bold;
|
1365
|
+
mso-ansi-font-style:normal;}
|
1366
|
+
@list l0:level3
|
1367
|
+
{mso-level-style-link:a3;
|
1368
|
+
mso-level-text:"%1\.%2\.%3";
|
1369
|
+
mso-level-tab-stop:36.0pt;
|
1370
|
+
mso-level-number-position:left;
|
1371
|
+
margin-left:0cm;
|
1372
|
+
text-indent:0cm;
|
1373
|
+
mso-bidi-font-family:$bodyfont;
|
1374
|
+
mso-ansi-font-weight:bold;
|
1375
|
+
mso-ansi-font-style:normal;}
|
1376
|
+
@list l0:level4
|
1377
|
+
{mso-level-style-link:a4;
|
1378
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
1379
|
+
mso-level-tab-stop:54.0pt;
|
1380
|
+
mso-level-number-position:left;
|
1381
|
+
margin-left:0cm;
|
1382
|
+
text-indent:0cm;
|
1383
|
+
mso-bidi-font-family:$bodyfont;
|
1384
|
+
mso-ansi-font-weight:bold;
|
1385
|
+
mso-ansi-font-style:normal;}
|
1386
|
+
@list l0:level5
|
1387
|
+
{mso-level-style-link:a5;
|
1388
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
1389
|
+
mso-level-tab-stop:54.0pt;
|
1390
|
+
mso-level-number-position:left;
|
1391
|
+
margin-left:0cm;
|
1392
|
+
text-indent:0cm;
|
1393
|
+
mso-bidi-font-family:$bodyfont;
|
1394
|
+
mso-ansi-font-weight:bold;
|
1395
|
+
mso-ansi-font-style:normal;}
|
1396
|
+
@list l0:level6
|
1397
|
+
{mso-level-style-link:a6;
|
1398
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
1399
|
+
mso-level-tab-stop:72.0pt;
|
1400
|
+
mso-level-number-position:left;
|
1401
|
+
margin-left:0cm;
|
1402
|
+
text-indent:0cm;
|
1403
|
+
mso-bidi-font-family:$bodyfont;
|
1404
|
+
mso-ansi-font-weight:bold;
|
1405
|
+
mso-ansi-font-style:normal;}
|
1406
|
+
@list l0:level7
|
1407
|
+
{mso-level-reset-level:level2;
|
1408
|
+
mso-level-suffix:space;
|
1409
|
+
mso-level-text:"Figure\00A0%1\.%7\00A0—";
|
1410
|
+
mso-level-tab-stop:none;
|
1411
|
+
mso-level-number-position:left;
|
1412
|
+
margin-left:0cm;
|
1413
|
+
text-indent:0cm;
|
1414
|
+
mso-bidi-font-family:$bodyfont;}
|
1415
|
+
@list l0:level8
|
1416
|
+
{mso-level-reset-level:level2;
|
1417
|
+
mso-level-suffix:space;
|
1418
|
+
mso-level-text:"Table\00A0%1\.%8\00A0—";
|
1419
|
+
mso-level-tab-stop:none;
|
1420
|
+
mso-level-number-position:left;
|
1421
|
+
margin-left:0cm;
|
1422
|
+
text-indent:0cm;
|
1423
|
+
mso-bidi-font-family:$bodyfont;}
|
1424
|
+
@list l0:level9
|
1425
|
+
{mso-level-number-format:roman-lower;
|
1426
|
+
mso-level-text:"\(%9\)";
|
1427
|
+
mso-level-tab-stop:306.0pt;
|
1428
|
+
mso-level-number-position:left;
|
1429
|
+
margin-left:0cm;
|
1430
|
+
text-indent:0cm;
|
1431
|
+
mso-bidi-font-family:$bodyfont;}
|
1432
|
+
@list l1
|
1433
|
+
{mso-list-id:866942648;
|
1434
|
+
mso-list-template-ids:-1756330000;}
|
1435
|
+
@list l1:level1
|
1436
|
+
{mso-level-style-link:"Heading 1";
|
1437
|
+
mso-level-text:"%1";
|
1438
|
+
mso-level-tab-stop:21.6pt;
|
1439
|
+
mso-level-number-position:left;
|
1440
|
+
margin-left:21.6pt;
|
1441
|
+
text-indent:-21.6pt;
|
1442
|
+
mso-bidi-font-family:$headerfont;
|
1443
|
+
mso-ansi-font-weight:bold;
|
1444
|
+
mso-ansi-font-style:normal;}
|
1445
|
+
@list l1:level2
|
1446
|
+
{mso-level-style-link:"Heading 2";
|
1447
|
+
mso-level-text:"%1\.%2";
|
1448
|
+
mso-level-tab-stop:18.0pt;
|
1449
|
+
mso-level-number-position:left;
|
1450
|
+
margin-left:0cm;
|
1451
|
+
text-indent:0cm;
|
1452
|
+
mso-bidi-font-family:$headerfont;
|
1453
|
+
mso-ansi-font-weight:bold;
|
1454
|
+
mso-ansi-font-style:normal;}
|
1455
|
+
@list l1:level3
|
1456
|
+
{mso-level-style-link:"Heading 3";
|
1457
|
+
mso-level-text:"%1\.%2\.%3";
|
1458
|
+
mso-level-tab-stop:36.0pt;
|
1459
|
+
mso-level-number-position:left;
|
1460
|
+
margin-left:0cm;
|
1461
|
+
text-indent:0cm;
|
1462
|
+
mso-bidi-font-family:$headerfont;
|
1463
|
+
mso-ansi-font-weight:bold;
|
1464
|
+
mso-ansi-font-style:normal;}
|
1465
|
+
@list l1:level4
|
1466
|
+
{mso-level-style-link:"Heading 4";
|
1467
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
1468
|
+
mso-level-tab-stop:54.0pt;
|
1469
|
+
mso-level-number-position:left;
|
1470
|
+
margin-left:0cm;
|
1471
|
+
text-indent:0cm;
|
1472
|
+
mso-bidi-font-family:$headerfont;
|
1473
|
+
mso-ansi-font-weight:bold;
|
1474
|
+
mso-ansi-font-style:normal;}
|
1475
|
+
@list l1:level5
|
1476
|
+
{mso-level-style-link:"Heading 5";
|
1477
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
1478
|
+
mso-level-tab-stop:54.0pt;
|
1479
|
+
mso-level-number-position:left;
|
1480
|
+
margin-left:0cm;
|
1481
|
+
text-indent:0cm;
|
1482
|
+
mso-bidi-font-family:$headerfont;
|
1483
|
+
mso-ansi-font-weight:bold;
|
1484
|
+
mso-ansi-font-style:normal;}
|
1485
|
+
@list l1:level6
|
1486
|
+
{mso-level-style-link:"Heading 6";
|
1487
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
1488
|
+
mso-level-tab-stop:72.0pt;
|
1489
|
+
mso-level-number-position:left;
|
1490
|
+
margin-left:0cm;
|
1491
|
+
text-indent:0cm;
|
1492
|
+
mso-bidi-font-family:$headerfont;
|
1493
|
+
mso-ansi-font-weight:bold;
|
1494
|
+
mso-ansi-font-style:normal;}
|
1495
|
+
@list l1:level7
|
1496
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
|
1497
|
+
mso-level-tab-stop:72.0pt;
|
1498
|
+
mso-level-number-position:left;
|
1499
|
+
margin-left:0cm;
|
1500
|
+
text-indent:0cm;
|
1501
|
+
mso-bidi-font-family:$headerfont;}
|
1502
|
+
@list l1:level8
|
1503
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
|
1504
|
+
mso-level-tab-stop:90.0pt;
|
1505
|
+
mso-level-number-position:left;
|
1506
|
+
margin-left:0cm;
|
1507
|
+
text-indent:0cm;
|
1508
|
+
mso-bidi-font-family:$headerfont;}
|
1509
|
+
@list l1:level9
|
1510
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
|
1511
|
+
mso-level-tab-stop:90.0pt;
|
1512
|
+
mso-level-number-position:left;
|
1513
|
+
margin-left:0cm;
|
1514
|
+
text-indent:0cm;
|
1515
|
+
mso-bidi-font-family:$headerfont;}
|
1516
|
+
/* ordered list */
|
1517
|
+
@list l2
|
1518
|
+
{mso-list-id:525294607;
|
1519
|
+
mso-list-template-ids:67633181;}
|
1520
|
+
@list l2:level1
|
1521
|
+
{mso-level-number-format:alpha-lower;
|
1522
|
+
mso-level-text:"%1\)";
|
1523
|
+
mso-level-tab-stop:none;
|
1524
|
+
mso-level-number-position:left;
|
1525
|
+
margin-left:18.0pt;
|
1526
|
+
text-indent:-18.0pt;}
|
1527
|
+
@list l2:level2
|
1528
|
+
{mso-level-text:"%2\)";
|
1529
|
+
mso-level-tab-stop:none;
|
1530
|
+
mso-level-number-position:left;
|
1531
|
+
margin-left:36.0pt;
|
1532
|
+
text-indent:-18.0pt;}
|
1533
|
+
@list l2:level3
|
1534
|
+
{mso-level-number-format:roman-lower;
|
1535
|
+
mso-level-text:"%3\)";
|
1536
|
+
mso-level-tab-stop:none;
|
1537
|
+
mso-level-number-position:left;
|
1538
|
+
margin-left:54.0pt;
|
1539
|
+
text-indent:-18.0pt;}
|
1540
|
+
@list l2:level4
|
1541
|
+
{mso-level-number-format:alpha-upper;
|
1542
|
+
mso-level-text:"%4\)";
|
1543
|
+
mso-level-tab-stop:none;
|
1544
|
+
mso-level-number-position:left;
|
1545
|
+
margin-left:72.0pt;
|
1546
|
+
text-indent:-18.0pt;}
|
1547
|
+
@list l2:level5
|
1548
|
+
{mso-level-number-format:roman-upper;
|
1549
|
+
mso-level-text:"%5\)";
|
1550
|
+
mso-level-tab-stop:none;
|
1551
|
+
mso-level-number-position:left;
|
1552
|
+
margin-left:90.0pt;
|
1553
|
+
text-indent:-18.0pt;}
|
1554
|
+
@list l2:level6
|
1555
|
+
{mso-level-number-format:alpha-lower;
|
1556
|
+
mso-level-text:"%6\)";
|
1557
|
+
mso-level-tab-stop:none;
|
1558
|
+
mso-level-number-position:left;
|
1559
|
+
margin-left:108.0pt;
|
1560
|
+
text-indent:-18.0pt;}
|
1561
|
+
@list l2:level7
|
1562
|
+
{mso-level-tab-stop:none;
|
1563
|
+
mso-level-text:"%7\)";
|
1564
|
+
mso-level-number-position:left;
|
1565
|
+
margin-left:126.0pt;
|
1566
|
+
text-indent:-18.0pt;}
|
1567
|
+
@list l2:level8
|
1568
|
+
{mso-level-number-format:roman-lower;
|
1569
|
+
mso-level-text:"%8\)";
|
1570
|
+
mso-level-tab-stop:none;
|
1571
|
+
mso-level-number-position:left;
|
1572
|
+
margin-left:144.0pt;
|
1573
|
+
text-indent:-18.0pt;}
|
1574
|
+
@list l2:level9
|
1575
|
+
{mso-level-number-format:alpha-upper;
|
1576
|
+
mso-level-text:"%9\)";
|
1577
|
+
mso-level-tab-stop:none;
|
1578
|
+
mso-level-number-position:left;
|
1579
|
+
margin-left:162.0pt;
|
1580
|
+
text-indent:-18.0pt;}
|
1581
|
+
/* Unordered list */
|
1582
|
+
@list l22
|
1583
|
+
{mso-list-id:1413698929;
|
1584
|
+
mso-list-type:hybrid;
|
1585
|
+
mso-list-template-ids:71322752 636230186 134807555 134807557 134807553 134807555 134807557 134807553 134807555 134807557;}
|
1586
|
+
@list l22:level1
|
1587
|
+
{mso-level-number-format:bullet;
|
1588
|
+
mso-level-style-link:"\039B\03AF\03C3\03C4\03B1 \03BC\03B5 \03BA\03BF\03C5\03BA\03BA\03AF\03B4\03B5\03C2";
|
1589
|
+
mso-level-text:\F0B7;
|
1590
|
+
mso-level-tab-stop:36.0pt;
|
1591
|
+
mso-level-number-position:left;
|
1592
|
+
text-indent:-18.0pt;
|
1593
|
+
font-family:Symbol;}
|
1594
|
+
@list l22:level2
|
1595
|
+
{mso-level-number-format:bullet;
|
1596
|
+
mso-level-text:o;
|
1597
|
+
mso-level-tab-stop:72.0pt;
|
1598
|
+
mso-level-number-position:left;
|
1599
|
+
text-indent:-18.0pt;
|
1600
|
+
font-family:"Courier New";
|
1601
|
+
mso-bidi-font-family:"Courier New";}
|
1602
|
+
@list l22:level3
|
1603
|
+
{mso-level-number-format:bullet;
|
1604
|
+
mso-level-text:\F0A7;
|
1605
|
+
mso-level-tab-stop:108.0pt;
|
1606
|
+
mso-level-number-position:left;
|
1607
|
+
text-indent:-18.0pt;
|
1608
|
+
font-family:Wingdings;}
|
1609
|
+
@list l22:level4
|
1610
|
+
{mso-level-number-format:bullet;
|
1611
|
+
mso-level-text:\F0B7;
|
1612
|
+
mso-level-tab-stop:144.0pt;
|
1613
|
+
mso-level-number-position:left;
|
1614
|
+
text-indent:-18.0pt;
|
1615
|
+
font-family:Symbol;}
|
1616
|
+
@list l22:level5
|
1617
|
+
{mso-level-number-format:bullet;
|
1618
|
+
mso-level-text:o;
|
1619
|
+
mso-level-tab-stop:180.0pt;
|
1620
|
+
mso-level-number-position:left;
|
1621
|
+
text-indent:-18.0pt;
|
1622
|
+
font-family:"Courier New";
|
1623
|
+
mso-bidi-font-family:"Courier New";}
|
1624
|
+
@list l22:level6
|
1625
|
+
{mso-level-number-format:bullet;
|
1626
|
+
mso-level-text:\F0A7;
|
1627
|
+
mso-level-tab-stop:216.0pt;
|
1628
|
+
mso-level-number-position:left;
|
1629
|
+
text-indent:-18.0pt;
|
1630
|
+
font-family:Wingdings;}
|
1631
|
+
@list l22:level7
|
1632
|
+
{mso-level-number-format:bullet;
|
1633
|
+
mso-level-text:\F0B7;
|
1634
|
+
mso-level-tab-stop:252.0pt;
|
1635
|
+
mso-level-number-position:left;
|
1636
|
+
text-indent:-18.0pt;
|
1637
|
+
font-family:Symbol;}
|
1638
|
+
@list l22:level8
|
1639
|
+
{mso-level-number-format:bullet;
|
1640
|
+
mso-level-text:o;
|
1641
|
+
mso-level-tab-stop:288.0pt;
|
1642
|
+
mso-level-number-position:left;
|
1643
|
+
text-indent:-18.0pt;
|
1644
|
+
font-family:"Courier New";
|
1645
|
+
mso-bidi-font-family:"Courier New";}
|
1646
|
+
@list l22:level9
|
1647
|
+
{mso-level-number-format:bullet;
|
1648
|
+
mso-level-text:\F0A7;
|
1649
|
+
mso-level-tab-stop:324.0pt;
|
1650
|
+
mso-level-number-position:left;
|
1651
|
+
text-indent:-18.0pt;
|
1652
|
+
font-family:Wingdings;}
|
1653
|
+
/* Headings */
|
1654
|
+
@list l26
|
1655
|
+
{mso-list-id:1668635903;
|
1656
|
+
mso-list-template-ids:-379296966;
|
1657
|
+
mso-list-style-id:901253906;}
|
1658
|
+
@list l26:level1
|
1659
|
+
{mso-level-style-link:"Heading 1";
|
1660
|
+
mso-level-text:%1;
|
1661
|
+
mso-level-tab-stop:19.85pt;
|
1662
|
+
mso-level-number-position:left;
|
1663
|
+
margin-left:19.85pt;
|
1664
|
+
text-indent:-19.85pt;}
|
1665
|
+
@list l26:level2
|
1666
|
+
{mso-level-style-link:"Heading 2";
|
1667
|
+
mso-level-text:"%1\.%2";
|
1668
|
+
mso-level-tab-stop:31.2pt;
|
1669
|
+
mso-level-number-position:left;
|
1670
|
+
margin-left:31.2pt;
|
1671
|
+
text-indent:-31.2pt;}
|
1672
|
+
@list l26:level3
|
1673
|
+
{mso-level-style-link:"Heading 3";
|
1674
|
+
mso-level-text:"%1\.%2\.%3";
|
1675
|
+
mso-level-tab-stop:42.55pt;
|
1676
|
+
mso-level-number-position:left;
|
1677
|
+
margin-left:42.55pt;
|
1678
|
+
text-indent:-42.55pt;}
|
1679
|
+
@list l26:level4
|
1680
|
+
{mso-level-style-link:"Heading 4";
|
1681
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
1682
|
+
mso-level-tab-stop:53.85pt;
|
1683
|
+
mso-level-number-position:left;
|
1684
|
+
margin-left:53.85pt;
|
1685
|
+
text-indent:-53.85pt;}
|
1686
|
+
@list l26:level5
|
1687
|
+
{mso-level-style-link:"Heading 5";
|
1688
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
1689
|
+
mso-level-tab-stop:65.2pt;
|
1690
|
+
mso-level-number-position:left;
|
1691
|
+
margin-left:65.2pt;
|
1692
|
+
text-indent:-65.2pt;}
|
1693
|
+
@list l26:level6
|
1694
|
+
{mso-level-style-link:"Heading 6";
|
1695
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
1696
|
+
mso-level-tab-stop:76.55pt;
|
1697
|
+
mso-level-number-position:left;
|
1698
|
+
margin-left:76.55pt;
|
1699
|
+
text-indent:-76.55pt;}
|
1700
|
+
@list l26:level7
|
1701
|
+
{mso-level-style-link:"Heading 7";
|
1702
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
|
1703
|
+
mso-level-tab-stop:87.9pt;
|
1704
|
+
mso-level-number-position:left;
|
1705
|
+
margin-left:87.9pt;
|
1706
|
+
text-indent:-87.9pt;}
|
1707
|
+
@list l26:level8
|
1708
|
+
{mso-level-style-link:"Heading 8";
|
1709
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
|
1710
|
+
mso-level-tab-stop:99.25pt;
|
1711
|
+
mso-level-number-position:left;
|
1712
|
+
margin-left:99.25pt;
|
1713
|
+
text-indent:-99.25pt;}
|
1714
|
+
@list l26:level9
|
1715
|
+
{mso-level-style-link:"Heading 9";
|
1716
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
|
1717
|
+
mso-level-tab-stop:110.55pt;
|
1718
|
+
mso-level-number-position:left;
|
1719
|
+
margin-left:110.55pt;
|
1720
|
+
text-indent:-110.55pt;}
|
1721
|
+
|
1722
|
+
p.ListContLevel1, li.ListContLevel1, div.ListContLevel1
|
1723
|
+
{mso-style-priority:34;
|
1724
|
+
margin-top:0cm;
|
1725
|
+
margin-left:18.0pt;
|
1726
|
+
margin-right:0cm;
|
1727
|
+
margin-bottom:12.0pt;
|
1728
|
+
mso-pagination:widow-orphan;
|
1729
|
+
font-size:11.0pt;
|
1730
|
+
font-family:$bodyfont;
|
1731
|
+
mso-ansi-language:EN-AU;
|
1732
|
+
mso-fareast-language:EN-US;}
|
1733
|
+
p.ListContLevel2, li.ListContLevel2, div.ListContLevel2
|
1734
|
+
{mso-style-priority:34;
|
1735
|
+
margin-top:0cm;
|
1736
|
+
margin-left:36.0pt;
|
1737
|
+
margin-right:0cm;
|
1738
|
+
margin-bottom:12.0pt;
|
1739
|
+
mso-pagination:widow-orphan;
|
1740
|
+
font-size:11.0pt;
|
1741
|
+
font-family:$bodyfont;
|
1742
|
+
mso-ansi-language:EN-AU;
|
1743
|
+
mso-fareast-language:EN-US;}
|
1744
|
+
p.ListContLevel3, li.ListContLevel3, div.ListContLevel3
|
1745
|
+
{mso-style-priority:34;
|
1746
|
+
margin-top:0cm;
|
1747
|
+
margin-left:54.0pt;
|
1748
|
+
margin-right:0cm;
|
1749
|
+
margin-bottom:12.0pt;
|
1750
|
+
mso-pagination:widow-orphan;
|
1751
|
+
font-size:11.0pt;
|
1752
|
+
font-family:$bodyfont;
|
1753
|
+
mso-ansi-language:EN-AU;
|
1754
|
+
mso-fareast-language:EN-US;}
|
1755
|
+
p.ListContLevel4, li.ListContLevel4, div.ListContLevel4
|
1756
|
+
{mso-style-priority:34;
|
1757
|
+
margin-top:0cm;
|
1758
|
+
margin-left:72.0pt;
|
1759
|
+
margin-right:0cm;
|
1760
|
+
margin-bottom:12.0pt;
|
1761
|
+
mso-pagination:widow-orphan;
|
1762
|
+
font-size:11.0pt;
|
1763
|
+
font-family:$bodyfont;
|
1764
|
+
mso-ansi-language:EN-AU;
|
1765
|
+
mso-fareast-language:EN-US;}
|
1766
|
+
p.ListContLevel5, li.ListContLevel5, div.ListContLevel5
|
1767
|
+
{mso-style-priority:34;
|
1768
|
+
margin-top:0cm;
|
1769
|
+
margin-left:90.0pt;
|
1770
|
+
margin-right:0cm;
|
1771
|
+
margin-bottom:12.0pt;
|
1772
|
+
mso-pagination:widow-orphan;
|
1773
|
+
font-size:11.0pt;
|
1774
|
+
font-family:$bodyfont;
|
1775
|
+
mso-ansi-language:EN-AU;
|
1776
|
+
mso-fareast-language:EN-US;}
|
1777
|
+
p.ListContLevel6, li.ListContLevel6, div.ListContLevel6
|
1778
|
+
{mso-style-priority:34;
|
1779
|
+
margin-top:0cm;
|
1780
|
+
margin-left:108.0pt;
|
1781
|
+
margin-right:0cm;
|
1782
|
+
margin-bottom:12.0pt;
|
1783
|
+
mso-pagination:widow-orphan;
|
1784
|
+
font-size:11.0pt;
|
1785
|
+
font-family:$bodyfont;
|
1786
|
+
mso-ansi-language:EN-AU;
|
1787
|
+
mso-fareast-language:EN-US;}
|
1788
|
+
p.ListContLevel7, li.ListContLevel7, div.ListContLevel7
|
1789
|
+
{mso-style-priority:34;
|
1790
|
+
margin-top:0cm;
|
1791
|
+
margin-left:126.0pt;
|
1792
|
+
margin-right:0cm;
|
1793
|
+
margin-bottom:12.0pt;
|
1794
|
+
mso-pagination:widow-orphan;
|
1795
|
+
font-size:11.0pt;
|
1796
|
+
font-family:$bodyfont;
|
1797
|
+
mso-ansi-language:EN-AU;
|
1798
|
+
mso-fareast-language:EN-US;}
|
1799
|
+
p.ListContLevel8, li.ListContLevel8, div.ListContLevel8
|
1800
|
+
{mso-style-priority:34;
|
1801
|
+
margin-top:0cm;
|
1802
|
+
margin-left:144.0pt;
|
1803
|
+
margin-right:0cm;
|
1804
|
+
margin-bottom:12.0pt;
|
1805
|
+
mso-pagination:widow-orphan;
|
1806
|
+
font-size:11.0pt;
|
1807
|
+
font-family:$bodyfont;
|
1808
|
+
mso-ansi-language:EN-AU;
|
1809
|
+
mso-fareast-language:EN-US;}
|
1810
|
+
p.ListContLevel9, li.ListContLevel9, div.ListContLevel9
|
1811
|
+
{mso-style-priority:34;
|
1812
|
+
margin-top:0cm;
|
1813
|
+
margin-left:162.0pt;
|
1814
|
+
margin-right:0cm;
|
1815
|
+
margin-bottom:12.0pt;
|
1816
|
+
mso-pagination:widow-orphan;
|
1817
|
+
font-size:11.0pt;
|
1818
|
+
font-family:$bodyfont;
|
1819
|
+
mso-ansi-language:EN-AU;
|
1820
|
+
mso-fareast-language:EN-US;}
|
1821
|
+
|
1822
|
+
|
1823
|
+
|
1824
|
+
table.MsoNormalTable
|
1825
|
+
{mso-style-name:"Table Normal";
|
1826
|
+
mso-tstyle-rowband-size:0;
|
1827
|
+
mso-tstyle-colband-size:0;
|
1828
|
+
mso-style-noshow:yes;
|
1829
|
+
mso-style-priority:99;
|
1830
|
+
mso-style-parent:"";
|
1831
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
1832
|
+
mso-para-margin:0cm;
|
1833
|
+
mso-para-margin-bottom:.0001pt;
|
1834
|
+
mso-pagination:widow-orphan;
|
1835
|
+
font-size:10.0pt;
|
1836
|
+
font-family:$bodyfont;}
|
1837
|
+
br.section
|
1838
|
+
{page-break-before:always;
|
1839
|
+
mso-break-type:section-break;}
|
1840
|
+
br.pagebreak
|
1841
|
+
{page-break-before:always;
|
1842
|
+
mso-special-character:line-break;}
|
1843
|
+
ol
|
1844
|
+
{margin-bottom:0cm;
|
1845
|
+
margin-left:18pt;}
|
1846
|
+
ul
|
1847
|
+
{margin-bottom:0cm;
|
1848
|
+
margin-left:18pt;}
|
1849
|
+
|