metanorma-itu 0.2.8 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +3 -2
- data/.github/workflows/ubuntu.yml +3 -2
- data/.github/workflows/windows.yml +3 -2
- data/README.adoc +6 -7
- data/lib/asciidoctor/itu/basicdoc.rng +28 -14
- data/lib/asciidoctor/itu/biblio.rng +13 -3
- data/lib/asciidoctor/itu/cleanup.rb +118 -0
- data/lib/asciidoctor/itu/converter.rb +17 -53
- data/lib/asciidoctor/itu/isodoc.rng +6 -6
- data/lib/asciidoctor/itu/isostandard.rng +10 -5
- data/lib/asciidoctor/itu/itu.rng +48 -0
- data/lib/asciidoctor/itu/itu_intro.xml +48 -0
- data/lib/asciidoctor/itu/macros.rb +22 -14
- data/lib/asciidoctor/itu/validate.rb +14 -0
- data/lib/isodoc/itu/base_convert.rb +93 -77
- data/lib/isodoc/itu/html/_coverpage.scss +172 -0
- data/lib/isodoc/itu/html/html_itu_intro.html +2 -34
- data/lib/isodoc/itu/html/html_itu_titlepage.html +26 -49
- data/lib/isodoc/itu/html/htmlstyle.scss +295 -918
- data/lib/isodoc/itu/html/itu.scss +49 -21
- data/lib/isodoc/itu/html/word_itu_intro.html +61 -174
- data/lib/isodoc/itu/html/word_itu_titlepage.html +4 -18
- data/lib/isodoc/itu/html/wordstyle.scss +151 -157
- data/lib/isodoc/itu/html_convert.rb +21 -7
- data/lib/isodoc/itu/i18n-en.yaml +1 -0
- data/lib/isodoc/itu/metadata.rb +12 -3
- data/lib/isodoc/itu/pdf_convert.rb +25 -5
- data/lib/isodoc/itu/terms.rb +87 -0
- data/lib/isodoc/itu/word_convert.rb +83 -15
- data/lib/isodoc/itu/xref.rb +4 -5
- data/lib/metanorma/itu/version.rb +1 -1
- data/metanorma-itu.gemspec +2 -2
- metadata +34 -30
@@ -14,6 +14,22 @@ p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode, pre
|
|
14
14
|
mso-fareast-font-family:Calibri;
|
15
15
|
mso-bidi-font-family:"Courier New";
|
16
16
|
mso-ansi-language:EN-GB;}
|
17
|
+
p.pseudocode, li.pseudocode, div.pseudocode
|
18
|
+
{mso-style-unhide:no;
|
19
|
+
mso-style-qformat:yes;
|
20
|
+
mso-style-parent:"";
|
21
|
+
margin-top:6.0pt;
|
22
|
+
margin-right:0cm;
|
23
|
+
margin-bottom:6.0pt;
|
24
|
+
margin-left:0cm;
|
25
|
+
text-align:left;
|
26
|
+
mso-pagination:widow-orphan;
|
27
|
+
tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
|
28
|
+
font-size:12.0pt;
|
29
|
+
font-family:$bodyfont;
|
30
|
+
mso-fareast-font-family:Calibri;
|
31
|
+
mso-bidi-font-family:"Courier New";
|
32
|
+
mso-ansi-language:EN-GB;}
|
17
33
|
p.annex_obligation, li.annex_obligation, div.annex_obligation
|
18
34
|
{mso-style-unhide:no;
|
19
35
|
mso-style-qformat:yes;
|
@@ -171,8 +187,6 @@ p.TableFootnote, div.TableFootnote, li.TableFootnote
|
|
171
187
|
margin-left:14.2pt;
|
172
188
|
text-indent:-14.2pt;
|
173
189
|
margin-bottom:.0001pt;
|
174
|
-
text-align:justify;
|
175
|
-
text-justify:inter-ideograph;
|
176
190
|
mso-pagination:widow-orphan;
|
177
191
|
tab-stops:39.7pt 59.55pt 79.4pt 99.25pt;
|
178
192
|
mso-layout-grid-align:none;
|
@@ -748,6 +762,32 @@ p.RecNo, li.RecNo, div.RecNo
|
|
748
762
|
mso-fareast-language:EN-US;
|
749
763
|
font-weight:bold;
|
750
764
|
mso-bidi-font-weight:normal;}
|
765
|
+
p.boilerplateHdr {
|
766
|
+
text-align:center;
|
767
|
+
font-family:$bodyfont;
|
768
|
+
font-size:11.0pt;
|
769
|
+
}
|
770
|
+
p.boilerplate {
|
771
|
+
font-family:$bodyfont;
|
772
|
+
font-size:11.0pt;
|
773
|
+
text-align:justify;
|
774
|
+
margin-top:6.0pt;
|
775
|
+
margin-bottom:0.0pt;
|
776
|
+
}
|
777
|
+
p.draftwarningHdr {
|
778
|
+
text-align:center;
|
779
|
+
font-family:$bodyfont;
|
780
|
+
font-weight:bold;
|
781
|
+
font-size:16.0pt;
|
782
|
+
font-style:italic;
|
783
|
+
}
|
784
|
+
span.addition {
|
785
|
+
color: blue;
|
786
|
+
}
|
787
|
+
span.deletion {
|
788
|
+
color: red;
|
789
|
+
text-decoration: line-through;
|
790
|
+
}
|
751
791
|
|
752
792
|
@page {
|
753
793
|
mso-page-border-surround-header:no;
|
@@ -801,10 +841,6 @@ div.WordSection2
|
|
801
841
|
mso-paper-source:0;}
|
802
842
|
div.WordSection3
|
803
843
|
{page:WordSection3;}
|
804
|
-
ol
|
805
|
-
{margin-bottom:0cm;}
|
806
|
-
ul
|
807
|
-
{margin-bottom:0cm;}
|
808
844
|
table.MsoISOTable
|
809
845
|
{mso-style-name:"Table ISO";
|
810
846
|
mso-tstyle-rowband-size:0;
|
@@ -825,8 +861,6 @@ table.MsoISOTable
|
|
825
861
|
mso-border-insidev:.75pt solid windowtext;
|
826
862
|
font-size:11.0pt;
|
827
863
|
font-family:$bodyfont;}
|
828
|
-
table.MsoISOTable tr
|
829
|
-
{page-break-inside:avoid;}
|
830
864
|
table.MsoISOTable th
|
831
865
|
{border:solid windowtext 1pt;
|
832
866
|
mso-border-alt:solid windowtext 1pt;
|
@@ -836,7 +870,7 @@ table.MsoISOTable td
|
|
836
870
|
mso-border-alt:solid windowtext 1pt;
|
837
871
|
padding:0cm 2.85pt 0cm 2.85pt;}
|
838
872
|
table.MsoISOTable p
|
839
|
-
{font-size:11.0pt;}
|
873
|
+
{font-size:11.0pt; }
|
840
874
|
table.MsoTableGrid
|
841
875
|
{mso-style-name:"Table Grid";
|
842
876
|
mso-tstyle-rowband-size:0;
|
@@ -853,20 +887,10 @@ table.MsoTableGrid
|
|
853
887
|
mso-pagination:widow-orphan;
|
854
888
|
font-size:10.0pt;
|
855
889
|
font-family:$bodyfont;}
|
856
|
-
|
857
|
-
tr { page-break-after:avoid; }
|
858
|
-
span.stem
|
859
|
-
{font-family:"Cambria Math",serif;
|
860
|
-
mso-ascii-font-family:"Cambria Math";
|
861
|
-
font-style:
|
862
|
-
italic;}
|
863
|
-
div.Zormula, div.formula p
|
890
|
+
div.formula, div.formula p
|
864
891
|
{tab-stops:39.7pt center 241.0pt right 17.0cm;}
|
865
892
|
body
|
866
893
|
{tab-interval:36.0pt;}
|
867
|
-
dt
|
868
|
-
{page-break-inside:avoid;
|
869
|
-
page-break-after:avoid}
|
870
894
|
.coverpage_docnumber
|
871
895
|
{text-align:center;
|
872
896
|
font-size:14.0pt;
|
@@ -929,9 +953,13 @@ div.example p.MsoListParagraph {
|
|
929
953
|
font-size: 10.0pt;
|
930
954
|
}
|
931
955
|
|
956
|
+
div.Note p.MsoListParagraph {
|
957
|
+
font-size: 11.0pt;
|
958
|
+
}
|
959
|
+
|
932
960
|
span.note_label, span.example_label, td.example_label, td.note_label
|
933
961
|
{
|
934
|
-
font-size:
|
962
|
+
font-size: 11.0pt;
|
935
963
|
font-family:$bodyfont;
|
936
964
|
}
|
937
965
|
|
@@ -18,24 +18,64 @@
|
|
18
18
|
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=FR-CH
|
19
19
|
style='mso-ansi-language:FR-CH'><o:p> </o:p></span></span></p>
|
20
20
|
|
21
|
-
<p class=MsoNormal><
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
style='
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
21
|
+
<p class=MsoNormal><o:wrapblock><v:shapetype id="_x0000_t202"
|
22
|
+
coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
|
23
|
+
<v:stroke joinstyle="miter"/>
|
24
|
+
<v:path gradientshapeok="t" o:connecttype="rect"/>
|
25
|
+
</v:shapetype><v:shape id="Text_x0020_Box_x0020_1" o:spid="_x0000_s1026"
|
26
|
+
type="#_x0000_t202" style='position:absolute;margin-left:-8pt;margin-top:141.75pt;
|
27
|
+
width:448.15pt;height:69.8pt;z-index:-251657216;visibility:visible;
|
28
|
+
mso-wrap-style:square;mso-width-percent:0;mso-height-percent:0;
|
29
|
+
mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
|
30
|
+
mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
|
31
|
+
mso-position-horizontal-relative:text;mso-position-vertical:absolute;
|
32
|
+
mso-position-vertical-relative:top-margin-area;mso-width-percent:0;
|
33
|
+
mso-height-percent:0;mso-width-relative:margin;mso-height-relative:margin;
|
34
|
+
v-text-anchor:top' o:gfxdata="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
|
64
|
+
" o:allowoverlap="f" filled="f" stroked="f" strokeweight=".5pt">
|
65
|
+
<v:fill o:detectmouseclick="t"/>
|
66
|
+
<v:textbox style='mso-fit-shape-to-text:t'>
|
67
|
+
<div id="abstractbox">
|
68
|
+
</div>
|
69
|
+
</v:textbox>
|
70
|
+
<w:wrap type="topAndBottom" anchory="margin"/>
|
71
|
+
<w:anchorlock/>
|
72
|
+
</v:shape></o:wrapblock><br
|
73
|
+
style='mso-ignore:vglayout' clear=ALL>
|
74
|
+
<span lang=EN-US style='mso-ansi-language:EN-US'><o:p></o:p></span></p>
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
|
39
79
|
|
40
80
|
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
41
81
|
style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
@@ -85,162 +125,9 @@ style='mso-ansi-language:EN-US'>
|
|
85
125
|
<p><br clear=all
|
86
126
|
style='page-break-before:always'></p>
|
87
127
|
|
88
|
-
<
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
93
|
-
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>The
|
94
|
-
International Telecommunication Union (ITU) is the United Nations specialized
|
95
|
-
agency in the field of telecommunications</span></span><span
|
96
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
97
|
-
mso-ansi-language:EN-US'>, information and communication technologies (ICTs).</span></span><span
|
98
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
99
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'> The ITU Telecommunication
|
100
|
-
Standardization Sector (ITU-T) is a permanent organ of ITU. ITU-T is
|
101
|
-
responsible for studying technical, operating and tariff questions and issuing
|
102
|
-
Recommendations on them with a view to standardizing telecommunications on a
|
103
|
-
worldwide basis.<o:p></o:p></span></span></p>
|
104
|
-
|
105
|
-
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
106
|
-
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>The <a
|
107
|
-
name=iitexte>World Telecommunication Standardization Assembly (WTSA), which
|
108
|
-
meets every four years, establishes the topics for study by the ITU‑T study
|
109
|
-
groups which, in turn, produce Recommendations on these topics.<o:p></o:p></a></span></span></p>
|
110
|
-
|
111
|
-
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span
|
112
|
-
style='mso-bookmark:iitexte'><span lang=EN-US style='font-size:11.0pt;
|
113
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>The approval of ITU-T
|
114
|
-
Recommendations is covered by the procedure laid down in WTSA Resolution 1</span></span></span><span
|
115
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
116
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>.<o:p></o:p></span></span></p>
|
117
|
-
|
118
|
-
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
119
|
-
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>In
|
120
|
-
some areas of information technology which fall within ITU-T's purview, the
|
121
|
-
necessary standards are prepared on a collaborative basis with ISO and IEC.<o:p></o:p></span></span></p>
|
122
|
-
|
123
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
124
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
125
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
126
|
-
|
127
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
128
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
129
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
130
|
-
|
131
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
132
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
133
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
134
|
-
|
135
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
136
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
137
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>NOTE<o:p></o:p></span></span></p>
|
138
|
-
|
139
|
-
<p class=MsoNormal style='margin-top:9.0pt'><span style='mso-bookmark:_Hlk526346232'><span
|
140
|
-
lang=EN-GB style='font-size:11.0pt;mso-bidi-font-size:10.0pt'>In <a
|
141
|
-
name=iitextea>this Recommendation, the expression "Administration" is
|
142
|
-
used for conciseness to indicate both a telecommunication administration and a
|
143
|
-
recognized operating agency</a></span></span><span style='mso-bookmark:_Hlk526346232'><span
|
144
|
-
style='mso-bookmark:iitextea'><span lang=EN-US style='font-size:11.0pt;
|
145
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>.<o:p></o:p></span></span></span></p>
|
146
|
-
|
147
|
-
<p class=MsoNormal style='margin-top:9.0pt'><span style='mso-bookmark:_Hlk526346232'><span
|
148
|
-
style='mso-bookmark:iitextea'><span lang=EN-US style='font-size:11.0pt;
|
149
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>Compliance with this
|
150
|
-
Recommendation is voluntary. However, the Recommendation may contain certain
|
151
|
-
mandatory provisions (to ensure, e.g., interoperability or applicability) and
|
152
|
-
compliance with the Recommendation is achieved when all of these mandatory
|
153
|
-
provisions are met. The words "shall" or some other obligatory
|
154
|
-
language such as "must" and the negative equivalents are used to
|
155
|
-
express requirements. The use of such words does not suggest that compliance
|
156
|
-
with the Recommendation is required of any party</span></span></span><span
|
157
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
158
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>.<o:p></o:p></span></span></p>
|
159
|
-
|
160
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
161
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
162
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
163
|
-
|
164
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
165
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
166
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
167
|
-
|
168
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
169
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
170
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
171
|
-
|
172
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
173
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
174
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
175
|
-
|
176
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
177
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
178
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>INTELLECTUAL PROPERTY RIGHTS</span></span><span
|
179
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
180
|
-
mso-bidi-font-size:10.0pt;font-family:Symbol;mso-ansi-language:EN-US'><o:p></o:p></span></span></p>
|
181
|
-
|
182
|
-
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
183
|
-
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>ITU <a
|
184
|
-
name=iitexteb>draws attention to the possibility that the practice or
|
185
|
-
implementation of this Recommendation may involve the use of a claimed
|
186
|
-
Intellectual Property Right. ITU takes no position concerning the evidence,
|
187
|
-
validity or applicability of claimed Intellectual Property Rights, whether
|
188
|
-
asserted by ITU members or others outside of the Recommendation development
|
189
|
-
process.<o:p></o:p></a></span></span></p>
|
190
|
-
|
191
|
-
{% if unpublished %}
|
192
|
-
<p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;
|
193
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>As of the date of approval
|
194
|
-
of this Recommendation, ITU [had/had not] received notice of intellectual property,
|
195
|
-
protected by patents, which may be required to implement this Recommendation.
|
196
|
-
However, implementers are cautioned that this may not represent the latest
|
197
|
-
information and are therefore strongly urged to consult the TSB patent database at
|
198
|
-
<a href="http://www.itu.int/ITU-T/ipr/">http://www.itu.int/ITU-T/ipr/</a>.</span></p>
|
199
|
-
{% else %}
|
200
|
-
{% if ip_notice_received %}
|
201
|
-
<p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;
|
202
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>As of the date of approval
|
203
|
-
of this Recommendation, ITU had received notice of intellectual property,
|
204
|
-
protected by patents, which may be required to implement this Recommendation.
|
205
|
-
However, implementers are cautioned that this may not represent the latest
|
206
|
-
information and are therefore strongly urged to consult the TSB patent database at
|
207
|
-
<a href="http://www.itu.int/ITU-T/ipr/">http://www.itu.int/ITU-T/ipr/</a>.</span></p>
|
208
|
-
{% else %}
|
209
|
-
<p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;
|
210
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>As of the date of approval
|
211
|
-
of this Recommendation, ITU had not received notice of intellectual property,
|
212
|
-
protected by patents, which may be required to implement this Recommendation.
|
213
|
-
However, implementers are cautioned that this may not represent the latest
|
214
|
-
information and are therefore strongly urged to consult the TSB patent database at
|
215
|
-
<a href="http://www.itu.int/ITU-T/ipr/">http://www.itu.int/ITU-T/ipr/</a>.</span></p>
|
216
|
-
{% endif %}
|
217
|
-
{% endif %}
|
218
|
-
|
219
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
220
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
221
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
222
|
-
|
223
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
224
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
225
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
226
|
-
|
227
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
228
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
229
|
-
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
230
|
-
|
231
|
-
<p class=MsoNormal align=center style='text-align:center'><span
|
232
|
-
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
233
|
-
mso-bidi-font-size:10.0pt;font-family:Symbol;mso-ascii-font-family:"Times New Roman";
|
234
|
-
mso-hansi-font-family:"Times New Roman";mso-ansi-language:EN-US;mso-char-type:
|
235
|
-
symbol;mso-symbol-font-family:Symbol'><span style='mso-char-type:symbol;
|
236
|
-
mso-symbol-font-family:Symbol'>ã</span></span></span><span style='mso-bookmark:
|
237
|
-
_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;mso-bidi-font-size:
|
238
|
-
10.0pt;mso-ansi-language:EN-US'> ITU <a name=iiannee></a>2019<o:p></o:p></span></span></p>
|
239
|
-
|
240
|
-
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
241
|
-
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>All
|
242
|
-
rights reserved. No part of this publication may be reproduced, by any means
|
243
|
-
whatsoever, without the prior written permission of ITU.<o:p></o:p></span></span></p>
|
128
|
+
<div id="legal"/>
|
129
|
+
<div id="license"/>
|
130
|
+
<div id="copyright"/>
|
244
131
|
|
245
132
|
<b style='mso-bidi-font-weight:normal'><span lang=EN-US style='font-size:12.0pt;
|
246
133
|
mso-bidi-font-size:10.0pt;font-family:"Times New Roman",serif;mso-fareast-font-family:
|
@@ -36,7 +36,7 @@
|
|
36
36
|
mso-position-vertical-relative:text;mso-width-percent:0;
|
37
37
|
mso-height-percent:0;mso-width-relative:margin;mso-height-relative:margin'
|
38
38
|
o:allowincell="f">
|
39
|
-
|
39
|
+
<v:imagedata src="{{ logo_comb }}" o:title="Fond-Rec_e"/>
|
40
40
|
</v:shape><a name="_Hlk526346232"><span lang="EN-GB"><o:p> </o:p></span></a></p>
|
41
41
|
<span style='mso-bookmark:_Hlk526346232'></span>
|
42
42
|
<p class="MsoNormal" style='margin-top:0cm'><span style='mso-bookmark:_Hlk526346232'><b
|
@@ -169,7 +169,7 @@
|
|
169
169
|
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
170
170
|
style='mso-bookmark:_Hlk526346232'><a name="dsece"><span lang="EN-US"
|
171
171
|
style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
172
|
-
mso-ansi-language:EN-US'>SERIES {{ series | upcase }}<o:p></o:p></span></a></span></p>
|
172
|
+
mso-ansi-language:EN-US'>{% if series %}SERIES {{ series | upcase }}{% endif %}<o:p></o:p></span></a></span></p>
|
173
173
|
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
174
174
|
style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:dsece'><span
|
175
175
|
lang="EN-US" style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:
|
@@ -221,21 +221,7 @@
|
|
221
221
|
none;border-bottom:solid windowtext 2.25pt;border-right:solid windowtext 2.25pt;
|
222
222
|
mso-border-top-alt:solid windowtext 2.25pt;mso-border-left-alt:solid windowtext 2.25pt;
|
223
223
|
padding:0cm 5.4pt 0cm 5.4pt;height:4.0cm;mso-height-rule:exactly'>
|
224
|
-
|
225
|
-
style='mso-bidi-font-weight:normal'><i style='mso-bidi-font-style:normal'><span
|
226
|
-
lang="EN-GB" style='font-size:16.0pt;mso-bidi-font-size:10.0pt'>CAUTION !<o:p></o:p></span></i></b></p>
|
227
|
-
<p class="MsoNormal" align="center" style='margin-top:3.0pt;text-align:center'><span
|
228
|
-
class="SpellE"><b style='mso-bidi-font-weight:normal'><i style='mso-bidi-font-style:
|
229
|
-
normal'><span lang="EN-GB" style='font-size:16.0pt;mso-bidi-font-size:10.0pt'>PREPUBLISHED</span></i></b></span><b
|
230
|
-
style='mso-bidi-font-weight:normal'><i style='mso-bidi-font-style:normal'><span
|
231
|
-
lang="EN-GB" style='font-size:16.0pt;mso-bidi-font-size:10.0pt'><span
|
232
|
-
style='mso-spacerun:yes'> </span>{{ doctype | upcase }}<o:p></o:p></span></i></b></p>
|
233
|
-
<p class="MsoNormal" style='tab-stops:right 17.0cm'><span lang="EN-GB">This
|
234
|
-
prepublication is an unedited version of a recently approved {{doctype}}.
|
235
|
-
It will be replaced by the published version after editing. Therefore,
|
236
|
-
there will be differences between this prepublication and the published
|
237
|
-
version.</span><span lang="EN-GB" style='font-size:9.0pt;mso-bidi-font-size:
|
238
|
-
10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:"Times New Roman"'><o:p></o:p></span></p>
|
224
|
+
<div class="draft-warning"/>
|
239
225
|
</td>
|
240
226
|
</tr>
|
241
227
|
{% else %}
|
@@ -282,7 +268,7 @@ font-family:"Arial",sans-serif;mso-bidi-font-family:"Times New Roman";
|
|
282
268
|
mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-no-proof:yes'><v:shape
|
283
269
|
id="Picture_x0020_1" o:spid="_x0000_i1033" type="#_x0000_t75" alt="logo_E"
|
284
270
|
style='width:121pt;height:50pt;visibility:visible;mso-wrap-style:square'>
|
285
|
-
|
271
|
+
<v:imagedata src="{{ logo_word }}" o:title="logo_E"/>
|
286
272
|
</v:shape></span></span><span style='mso-bookmark:_Hlk526346232'><span
|
287
273
|
lang="EN-US" style='font-size:9.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
288
274
|
mso-bidi-font-family:"Times New Roman";mso-ansi-language:EN-US'><o:p></o:p></span></span></p>
|
@@ -296,18 +296,18 @@ a:link, span.MsoHyperlink
|
|
296
296
|
{mso-style-unhide:no;
|
297
297
|
mso-style-parent:"";
|
298
298
|
color:blue;
|
299
|
-
|
300
|
-
font-size:8pt;
|
301
|
-
text-decoration:underline;
|
302
|
-
text-underline:single;}
|
299
|
+
}
|
303
300
|
a:visited, span.MsoHyperlinkFollowed
|
304
301
|
{mso-style-unhide:no;
|
305
302
|
mso-style-parent:"";
|
303
|
+
color:purple;}
|
304
|
+
a.url {
|
306
305
|
font-family:"Arial",sans-serif;
|
307
306
|
font-size:8pt;
|
308
|
-
color:purple;
|
309
307
|
text-decoration:underline;
|
310
|
-
text-underline:single;
|
308
|
+
text-underline:single;
|
309
|
+
}
|
310
|
+
|
311
311
|
p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
|
312
312
|
{mso-style-noshow:yes;
|
313
313
|
mso-style-unhide:no;
|
@@ -466,7 +466,6 @@ p.h1Preface
|
|
466
466
|
text-indent:-39.7pt;
|
467
467
|
mso-pagination:widow-orphan lines-together;
|
468
468
|
page-break-after:avoid;
|
469
|
-
mso-outline-level:1;
|
470
469
|
tab-stops:39.7pt 59.55pt 79.4pt 99.25pt;
|
471
470
|
mso-layout-grid-align:none;
|
472
471
|
punctuation-wrap:simple;
|
@@ -853,7 +852,6 @@ p.MsoToc1, li.MsoToc1, div.MsoToc1
|
|
853
852
|
mso-fareast-font-family:$bodyfont;
|
854
853
|
mso-bidi-font-family:$bodyfont;
|
855
854
|
mso-ansi-language:EN-GB;
|
856
|
-
font-weight:bold;
|
857
855
|
mso-bidi-font-weight:normal;}
|
858
856
|
p.MsoToc2, li.MsoToc2, div.MsoToc2
|
859
857
|
{mso-style-noshow:yes;
|
@@ -1042,8 +1040,7 @@ span.MsoFootnoteReference
|
|
1042
1040
|
position:relative;
|
1043
1041
|
top:-3.0pt;
|
1044
1042
|
mso-text-raise:3.0pt;
|
1045
|
-
mso-style-priority:99;
|
1046
|
-
vertical-align:super;}
|
1043
|
+
mso-style-priority:99;}
|
1047
1044
|
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
|
1048
1045
|
{mso-style-noshow:yes;
|
1049
1046
|
mso-style-priority:99;
|
@@ -1399,62 +1396,62 @@ p.Tablebody, li.Tablebody, div.Tablebody
|
|
1399
1396
|
mso-level-text:"%1\)";
|
1400
1397
|
mso-level-tab-stop:none;
|
1401
1398
|
mso-level-number-position:left;
|
1402
|
-
margin-left:
|
1403
|
-
text-indent:-
|
1399
|
+
margin-left:1.4cm;
|
1400
|
+
text-indent:-1.4cm;}
|
1404
1401
|
@list l2:level2
|
1405
|
-
{mso-level-
|
1402
|
+
{mso-level-number-format:roman-lower;
|
1403
|
+
mso-level-text:"%2\)";
|
1406
1404
|
mso-level-tab-stop:none;
|
1407
1405
|
mso-level-number-position:left;
|
1408
|
-
margin-left:
|
1409
|
-
text-indent:-
|
1406
|
+
margin-left:2.1cm;
|
1407
|
+
text-indent:-0.7cm;}
|
1410
1408
|
@list l2:level3
|
1411
|
-
{mso-level-
|
1412
|
-
mso-level-text:"%3\)";
|
1409
|
+
{mso-level-text:"%3\)";
|
1413
1410
|
mso-level-tab-stop:none;
|
1414
1411
|
mso-level-number-position:left;
|
1415
|
-
margin-left:
|
1416
|
-
text-indent:-
|
1412
|
+
margin-left:2.8cm;
|
1413
|
+
text-indent:-0.7cm;}
|
1417
1414
|
@list l2:level4
|
1418
1415
|
{mso-level-number-format:alpha-upper;
|
1419
1416
|
mso-level-text:"%4\)";
|
1420
1417
|
mso-level-tab-stop:none;
|
1421
1418
|
mso-level-number-position:left;
|
1422
|
-
margin-left:
|
1423
|
-
text-indent:-
|
1419
|
+
margin-left:3.5cm;
|
1420
|
+
text-indent:-0.7cm;}
|
1424
1421
|
@list l2:level5
|
1425
1422
|
{mso-level-number-format:roman-upper;
|
1426
1423
|
mso-level-text:"%5\)";
|
1427
1424
|
mso-level-tab-stop:none;
|
1428
1425
|
mso-level-number-position:left;
|
1429
|
-
margin-left:
|
1430
|
-
text-indent:-
|
1426
|
+
margin-left:4.2cm;
|
1427
|
+
text-indent:-0.7cm;}
|
1431
1428
|
@list l2:level6
|
1432
1429
|
{mso-level-number-format:alpha-lower;
|
1433
1430
|
mso-level-text:"%6\)";
|
1434
1431
|
mso-level-tab-stop:none;
|
1435
1432
|
mso-level-number-position:left;
|
1436
|
-
margin-left:
|
1437
|
-
text-indent:-
|
1433
|
+
margin-left:4.9cm;
|
1434
|
+
text-indent:-0.7cm;}
|
1438
1435
|
@list l2:level7
|
1439
|
-
{mso-level-
|
1436
|
+
{mso-level-number-format:roman-lower;
|
1437
|
+
mso-level-tab-stop:none;
|
1440
1438
|
mso-level-text:"%7\)";
|
1441
1439
|
mso-level-number-position:left;
|
1442
|
-
margin-left:
|
1443
|
-
text-indent:-
|
1440
|
+
margin-left:5.6cm;
|
1441
|
+
text-indent:-0.7cm;}
|
1444
1442
|
@list l2:level8
|
1445
|
-
{mso-level-
|
1446
|
-
mso-level-text:"%8\)";
|
1443
|
+
{mso-level-text:"%8\)";
|
1447
1444
|
mso-level-tab-stop:none;
|
1448
1445
|
mso-level-number-position:left;
|
1449
|
-
margin-left:
|
1450
|
-
text-indent:-
|
1446
|
+
margin-left:6.3cm;
|
1447
|
+
text-indent:-0.7cm;}
|
1451
1448
|
@list l2:level9
|
1452
1449
|
{mso-level-number-format:alpha-upper;
|
1453
1450
|
mso-level-text:"%9\)";
|
1454
1451
|
mso-level-tab-stop:none;
|
1455
1452
|
mso-level-number-position:left;
|
1456
|
-
margin-left:
|
1457
|
-
text-indent:-
|
1453
|
+
margin-left:7.0cm;
|
1454
|
+
text-indent:-0.7cm;}
|
1458
1455
|
/* Unordered list */
|
1459
1456
|
@list l3
|
1460
1457
|
{mso-list-id:1308196397;
|
@@ -1465,164 +1462,167 @@ p.Tablebody, li.Tablebody, div.Tablebody
|
|
1465
1462
|
mso-level-text:–;
|
1466
1463
|
mso-level-tab-stop:none;
|
1467
1464
|
mso-level-number-position:left;
|
1468
|
-
margin-left:
|
1469
|
-
text-indent:-
|
1465
|
+
margin-left:1.4cm;
|
1466
|
+
text-indent:-1.4cm;}
|
1470
1467
|
@list l3:level2
|
1471
1468
|
{mso-level-number-format:bullet;
|
1472
1469
|
mso-level-text:–;
|
1473
1470
|
mso-level-tab-stop:none;
|
1474
1471
|
mso-level-number-position:left;
|
1475
|
-
margin-left:
|
1476
|
-
text-indent:-
|
1472
|
+
margin-left:2.1cm;
|
1473
|
+
text-indent:-0.7cm;}
|
1477
1474
|
@list l3:level3
|
1478
1475
|
{mso-level-number-format:bullet;
|
1479
1476
|
mso-level-text:–;
|
1480
1477
|
mso-level-tab-stop:none;
|
1481
1478
|
mso-level-number-position:left;
|
1482
|
-
margin-left:
|
1483
|
-
text-indent:-
|
1479
|
+
margin-left:2.8cm;
|
1480
|
+
text-indent:-0.7cm;}
|
1484
1481
|
@list l3:level4
|
1485
1482
|
{mso-level-number-format:bullet;
|
1486
1483
|
mso-level-text:–;
|
1487
1484
|
mso-level-tab-stop:none;
|
1488
1485
|
mso-level-number-position:left;
|
1489
|
-
margin-left:
|
1490
|
-
text-indent:-
|
1486
|
+
margin-left:3.5cm;
|
1487
|
+
text-indent:-0.7cm;}
|
1491
1488
|
@list l3:level5
|
1492
1489
|
{mso-level-number-format:bullet;
|
1493
1490
|
mso-level-text:–;
|
1494
1491
|
mso-level-tab-stop:none;
|
1495
1492
|
mso-level-number-position:left;
|
1496
|
-
margin-left:
|
1497
|
-
text-indent:-
|
1493
|
+
margin-left:4.2cm;
|
1494
|
+
text-indent:-0.7cm;}
|
1498
1495
|
@list l3:level6
|
1499
1496
|
{mso-level-number-format:bullet;
|
1500
1497
|
mso-level-text:–;
|
1501
1498
|
mso-level-tab-stop:none;
|
1502
1499
|
mso-level-number-position:left;
|
1503
|
-
margin-left:
|
1504
|
-
text-indent:-
|
1500
|
+
margin-left:4.9cm;
|
1501
|
+
text-indent:-0.7cm;}
|
1505
1502
|
@list l3:level7
|
1506
1503
|
{mso-level-number-format:bullet;
|
1507
1504
|
mso-level-text:–;
|
1508
1505
|
mso-level-tab-stop:none;
|
1509
1506
|
mso-level-number-position:left;
|
1510
|
-
margin-left:
|
1511
|
-
text-indent:-
|
1507
|
+
margin-left:5.6cm;
|
1508
|
+
text-indent:-0.7cm;}
|
1512
1509
|
@list l3:level8
|
1513
1510
|
{mso-level-number-format:bullet;
|
1514
1511
|
mso-level-text:–;
|
1515
1512
|
mso-level-tab-stop:none;
|
1516
1513
|
mso-level-number-position:left;
|
1517
|
-
margin-left:
|
1518
|
-
text-indent:-
|
1514
|
+
margin-left:6.3cm;
|
1515
|
+
text-indent:-0.7cm;}
|
1519
1516
|
@list l3:level9
|
1520
1517
|
{mso-level-number-format:bullet;
|
1521
1518
|
mso-level-text:–;
|
1522
1519
|
mso-level-tab-stop:none;
|
1523
1520
|
mso-level-number-position:left;
|
1524
|
-
margin-left:
|
1525
|
-
text-indent:-
|
1521
|
+
margin-left:7.0cm;
|
1522
|
+
text-indent:-0.7cm;}
|
1523
|
+
/* steps ordered list */
|
1524
|
+
@list l4
|
1525
|
+
{mso-list-id:525294608;
|
1526
|
+
mso-list-template-ids:676331812}
|
1527
|
+
@list l4:level1
|
1528
|
+
{mso-level-text:"%1\)";
|
1529
|
+
mso-level-tab-stop:none;
|
1530
|
+
mso-level-number-position:left;
|
1531
|
+
margin-left:1.4cm;
|
1532
|
+
text-indent:-0.7cm;}
|
1533
|
+
@list l4:level2
|
1534
|
+
{mso-level-text:"%2\)";
|
1535
|
+
mso-level-number-format:alpha-lower;
|
1536
|
+
mso-level-tab-stop:none;
|
1537
|
+
mso-level-number-position:left;
|
1538
|
+
margin-left:2.1cm;
|
1539
|
+
text-indent:-0.7cm;}
|
1540
|
+
@list l4:level3
|
1541
|
+
{mso-level-number-format:roman-lower;
|
1542
|
+
mso-level-text:"%3\)";
|
1543
|
+
mso-level-tab-stop:none;
|
1544
|
+
mso-level-number-position:left;
|
1545
|
+
margin-left:2.8cm;
|
1546
|
+
text-indent:-0.7cm;}
|
1547
|
+
@list l4:level4
|
1548
|
+
{mso-level-number-format:alpha-upper;
|
1549
|
+
mso-level-text:"%4\)";
|
1550
|
+
mso-level-tab-stop:none;
|
1551
|
+
mso-level-number-position:left;
|
1552
|
+
margin-left:3.5cm;
|
1553
|
+
text-indent:-0.7cm;}
|
1554
|
+
@list l4:level5
|
1555
|
+
{mso-level-number-format:roman-upper;
|
1556
|
+
mso-level-text:"%5\)";
|
1557
|
+
mso-level-tab-stop:none;
|
1558
|
+
mso-level-number-position:left;
|
1559
|
+
margin-left:4.2cm;
|
1560
|
+
text-indent:-0.7cm;}
|
1561
|
+
@list l4:level6
|
1562
|
+
{mso-level-text:"%6\)";
|
1563
|
+
mso-level-tab-stop:none;
|
1564
|
+
mso-level-number-position:left;
|
1565
|
+
margin-left:4.9cm;
|
1566
|
+
text-indent:-0.7cm;}
|
1567
|
+
@list l4:level7
|
1568
|
+
{mso-level-tab-stop:none;
|
1569
|
+
mso-level-number-format:alpha-lower;
|
1570
|
+
mso-level-text:"%7\)";
|
1571
|
+
mso-level-number-position:left;
|
1572
|
+
margin-left:5.6cm;
|
1573
|
+
text-indent:-0.7cm;}
|
1574
|
+
@list l4:level8
|
1575
|
+
{mso-level-number-format:roman-lower;
|
1576
|
+
mso-level-text:"%8\)";
|
1577
|
+
mso-level-tab-stop:none;
|
1578
|
+
mso-level-number-position:left;
|
1579
|
+
margin-left:6.3cm;
|
1580
|
+
text-indent:-0.7cm;}
|
1581
|
+
@list l4:level9
|
1582
|
+
{mso-level-number-format:alpha-upper;
|
1583
|
+
mso-level-text:"%9\)";
|
1584
|
+
mso-level-tab-stop:none;
|
1585
|
+
mso-level-number-position:left;
|
1586
|
+
margin-left:7.0cm;
|
1587
|
+
text-indent:-0.7cm;}
|
1526
1588
|
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1549
|
-
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1560
|
-
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
margin-right:0cm;
|
1565
|
-
margin-bottom:6.0pt;
|
1566
|
-
mso-pagination:widow-orphan;
|
1567
|
-
font-size:12.0pt;
|
1568
|
-
font-family:$bodyfont;
|
1569
|
-
mso-ansi-language:EN-AU;
|
1570
|
-
mso-fareast-language:EN-US;}
|
1571
|
-
p.ListContLevel5, li.ListContLevel5, div.ListContLevel5
|
1572
|
-
{mso-style-priority:34;
|
1573
|
-
margin-top:0cm;
|
1574
|
-
margin-left:90.0pt;
|
1575
|
-
margin-right:0cm;
|
1576
|
-
margin-bottom:6.0pt;
|
1577
|
-
mso-pagination:widow-orphan;
|
1578
|
-
font-size:12.0pt;
|
1579
|
-
font-family:$bodyfont;
|
1580
|
-
mso-ansi-language:EN-AU;
|
1581
|
-
mso-fareast-language:EN-US;}
|
1582
|
-
p.ListContLevel6, li.ListContLevel6, div.ListContLevel6
|
1583
|
-
{mso-style-priority:34;
|
1584
|
-
margin-top:0cm;
|
1585
|
-
margin-left:108.0pt;
|
1586
|
-
margin-right:0cm;
|
1587
|
-
margin-bottom:6.0pt;
|
1588
|
-
mso-pagination:widow-orphan;
|
1589
|
-
font-size:12.0pt;
|
1590
|
-
font-family:$bodyfont;
|
1591
|
-
mso-ansi-language:EN-AU;
|
1592
|
-
mso-fareast-language:EN-US;}
|
1593
|
-
p.ListContLevel7, li.ListContLevel7, div.ListContLevel7
|
1594
|
-
{mso-style-priority:34;
|
1595
|
-
margin-top:0cm;
|
1596
|
-
margin-left:126.0pt;
|
1597
|
-
margin-right:0cm;
|
1598
|
-
margin-bottom:6.0pt;
|
1599
|
-
mso-pagination:widow-orphan;
|
1600
|
-
font-size:12.0pt;
|
1601
|
-
font-family:$bodyfont;
|
1602
|
-
mso-ansi-language:EN-AU;
|
1603
|
-
mso-fareast-language:EN-US;}
|
1604
|
-
p.ListContLevel8, li.ListContLevel8, div.ListContLevel8
|
1605
|
-
{mso-style-priority:34;
|
1606
|
-
margin-top:0cm;
|
1607
|
-
margin-left:144.0pt;
|
1608
|
-
margin-right:0cm;
|
1609
|
-
margin-bottom:6.0pt;
|
1610
|
-
mso-pagination:widow-orphan;
|
1611
|
-
font-size:12.0pt;
|
1612
|
-
font-family:$bodyfont;
|
1613
|
-
mso-ansi-language:EN-AU;
|
1614
|
-
mso-fareast-language:EN-US;}
|
1615
|
-
p.ListContLevel9, li.ListContLevel9, div.ListContLevel9
|
1616
|
-
{mso-style-priority:34;
|
1617
|
-
margin-top:0cm;
|
1618
|
-
margin-left:162.0pt;
|
1619
|
-
margin-right:0cm;
|
1620
|
-
margin-bottom:6.0pt;
|
1621
|
-
mso-pagination:widow-orphan;
|
1622
|
-
font-size:12.0pt;
|
1623
|
-
font-family:$bodyfont;
|
1624
|
-
mso-ansi-language:EN-AU;
|
1625
|
-
mso-fareast-language:EN-US;}
|
1589
|
+
div.ListContLevel1
|
1590
|
+
{mso-style-priority:34;
|
1591
|
+
margin-left:1.4cm;
|
1592
|
+
margin-right:0cm;}
|
1593
|
+
div.ListContLevel2
|
1594
|
+
{mso-style-priority:34;
|
1595
|
+
margin-top:0cm;
|
1596
|
+
margin-left:2.1cm;
|
1597
|
+
margin-right:0cm;}
|
1598
|
+
div.ListContLevel3
|
1599
|
+
{mso-style-priority:34;
|
1600
|
+
margin-left:2.8cm;
|
1601
|
+
margin-right:0cm;}
|
1602
|
+
div.ListContLevel4
|
1603
|
+
{mso-style-priority:34;
|
1604
|
+
margin-left:3.5cm;
|
1605
|
+
margin-right:0cm;}
|
1606
|
+
div.ListContLevel5
|
1607
|
+
{mso-style-priority:34;
|
1608
|
+
margin-left:4.2cm;
|
1609
|
+
margin-right:0cm;}
|
1610
|
+
div.ListContLevel6
|
1611
|
+
{mso-style-priority:34;
|
1612
|
+
margin-left:4.9cm;
|
1613
|
+
margin-right:0cm;}
|
1614
|
+
div.ListContLevel7
|
1615
|
+
{mso-style-priority:34;
|
1616
|
+
margin-left:5.6cm;
|
1617
|
+
margin-right:0cm;}
|
1618
|
+
div.ListContLevel8
|
1619
|
+
{mso-style-priority:34;
|
1620
|
+
margin-left:6.3cm;
|
1621
|
+
margin-right:0cm;}
|
1622
|
+
div.ListContLevel9
|
1623
|
+
{mso-style-priority:34;
|
1624
|
+
margin-left:7.0cm;
|
1625
|
+
margin-right:0cm;}
|
1626
1626
|
|
1627
1627
|
|
1628
1628
|
table.MsoNormalTable
|
@@ -1638,12 +1638,6 @@ table.MsoNormalTable
|
|
1638
1638
|
mso-pagination:widow-orphan;
|
1639
1639
|
font-size:10.0pt;
|
1640
1640
|
font-family:$bodyfont;}
|
1641
|
-
br.section
|
1642
|
-
{page-break-before:always;
|
1643
|
-
mso-break-type:section-break;}
|
1644
|
-
br.pagebreak
|
1645
|
-
{page-break-before:always;
|
1646
|
-
mso-special-character:line-break;}
|
1647
1641
|
ol
|
1648
1642
|
{margin-bottom:0cm;
|
1649
1643
|
margin-left:18pt;}
|