asciidoctor-iso 0.10.2 → 0.10.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 037ae405ca1ab7a6f18676326cb76f89f708ae1991434c91144d3e431149519d
4
- data.tar.gz: 4dba9c034ef24e4595e5105c8a6c9a643924c892dd229a7682fc56cbf8bf01da
3
+ metadata.gz: 1684660c6b23276d073d38c022903310b3d77f1d34d2298e56854193d647e2a0
4
+ data.tar.gz: 35946f1642384ecffdeb3cd9c539439650cc24752a871613f2195d85ef17abd9
5
5
  SHA512:
6
- metadata.gz: 30302f78ee8fc4ee5b3cd7a3f6aa3cd52dda9090844ccced275f9cc3d25af7cc6c3f871a00b20e28abf6a3eeea7d78362529efd2f13527e088c50ef1bd220417
7
- data.tar.gz: 77367db460c5bc2f009a0760f18fe100ae8da27f3c22dc03a26c5397c0ee75db5012aba54eeed7a0617d08315b5433c87b2c2861042135d4686d108d675592d4
6
+ metadata.gz: 46ac681e5cd9f1844620d70179e2f8855b212960421864c71ed37fac27853e9ed558c0c8380804ce83fd5fd9cef21439f5c201c79f61d7866e053e018e7f0645
7
+ data.tar.gz: f26a12df8df3d6861f5b58ad2ed103f05f29da7d8288e6ffc7e369e17fd164c098fdd31a461a5f81511a1cea7c158e0fe0b2bd51cd2b459cc2be515f62f87969
@@ -794,7 +794,7 @@ not supplied. Example values: `JWG`, `JAG`, `AG` (advisory group), `AHG`, `SWG`,
794
794
 
795
795
  `:workgroup:`:: The name of the relevant ISO workgroup
796
796
 
797
- `:language:` :: The language of the document (`en` or `fr`) (mandatory)
797
+ `:language:` :: The language of the document (`en` or `fr`). Defaults to `en`.
798
798
 
799
799
  `:script:` :: The script of the document (defaults to `Latn`). Must be supplied as
800
800
  `Hans` for Simplified Chinese.
@@ -811,6 +811,32 @@ Cambria for Latin script, SimHei for Simplified Chinese.
811
811
  `:monospace-font`:: Font for monospace; will be inserted into CSS. Defaults to
812
812
  Courier New.
813
813
 
814
+ `:htmlstylesheet`:: SCSS stylesheet to use for HTML output. Defaults to built in stylesheet,
815
+ which adheres with ISO formatting requirements. Recommend against overriding this.
816
+
817
+ `:htmlcoverpage`:: HTML template for cover page. Defaults to built in template. Recommend against overriding this.
818
+
819
+ `:htmlintropage`:: HTML template for introductory section. Defaults to built in template. Recommend against overriding this.
820
+
821
+ `:scripts`:: Javascript scripts for HTML output. Defaults to built in scripts. Recommend against overriding this.
822
+
823
+ `:wordstylesheet`:: Primary SCSS stylesheet to use for Word output. Defaults to built in stylesheet,
824
+ which adheres with ISO formatting requirements. Recommend against overriding this.
825
+
826
+ `:standardstylesheet`:: Secondary SCSS stylesheet use for Word output. Defaults to built in stylesheet,
827
+ which adheres with ISO formatting requirements. Recommend against overriding this.
828
+
829
+ `:header`:: Header and footer file for Word output. Defaults to built in template. Recommend against overriding this.
830
+
831
+ `:wordcoverpage`:: Word template for cover page. Defaults to built in template. Recommend against overriding this.
832
+
833
+ `:wordintropage`:: Word template for introductory section. Defaults to built in template. Recommend against overriding this.
834
+
835
+ `:ulstyle`:: Word CSS selector for unordered lists in supplied stylesheets. Defaults to value for built in stylesheet. Recommend against overriding this.
836
+
837
+ `:olstyle`:: Word CSS selector for ordered lists in supplied stylesheets. Defaults to value for built in stylesheet. Recommend against overriding this.
838
+
839
+
814
840
  The attribute `:draft:`, if present, includes review notes in the XML output;
815
841
  these are otherwise suppressed.
816
842
 
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
 
30
30
  spec.add_dependency "asciidoctor", "~> 1.5.7"
31
31
  spec.add_dependency "ruby-jing"
32
- spec.add_dependency "isodoc", ">= 0.8"
32
+ spec.add_dependency "isodoc", "~> 0.8.8"
33
33
  spec.add_dependency "iev", "~> 0.2.0"
34
34
  spec.add_dependency "relaton", "~> 0.1.3"
35
35
  spec.add_dependency "metanorma-standoc", "~> 0.0.1"
@@ -33,6 +33,10 @@ To adapt the schema for your publication set,
33
33
 
34
34
  [TIP]
35
35
  ====
36
+ The easiest way to adopt StanDoc is to use the metanorma-acme gem: https://github.com/riboseinc/metanorma-acme, supplying your own stylesheets and HTML files for styling.
37
+
38
+ If you wish to create a custom gem, in order to customise behaviour further:
39
+
36
40
  * Clone the asciidoctor-metanorma_sample gem: https://github.com/riboseinc/asciidoctor-metanorma_sample.
37
41
  * Change the namespace for RSD documents (`RSD_NAMESPACE = "https://open.ribose.com/standards/rsd"`) to a namespace specific to your organisation's document standard.
38
42
  * Change any references to `sample` or `Sample` in the gem to your organisation's document standard.
@@ -82,21 +86,23 @@ The `Isodoc::HtmlConvert` and `Isodoc::WordConvert` overlap substantially, as bo
82
86
  * Edit the `html_sample_titlepage.html` and `html_sample_intro.html` pages to match your organisation's branding.
83
87
  ** Leave the Liquid Template instructions alone (`{{`, `{%`) unless you know what you're doing with them: they are how the pages are populated with metadata.
84
88
  * Edit the `default_fonts()` method in your `IsoDoc::...::HtmlConvert` class, to match your desired fonts.
89
+ * Edit the `default_file_locations()` method in your `IsoDoc::...::HtmlConvert` class, to match your desired stylesheets and HTML templates.
85
90
  * Edit the `htmlstyle.scss` stylesheet to match your organisation's branding. The classes already in place there are used to style existing blocks of text; refer to the sample documents included in the gem (`spec/examples`) for their use.
86
91
  ====
87
92
 
88
- Styling of output is intended to be configurable. HTML stylesheets are in https://sass-lang.com/guide[SCSS], with their fonts populated through the `default_fonts()` method in the `IsoDoc::...::HtmlConvert` class. Frontispiece content is templated, populated from metadata parsed in the `IsoDoc::...::Metadata` class, via https://shopify.github.io/liquid/[Liquid templates]. That means you can change the styling of output documents readily, so long as you are aware of the functionality of the stylesheet.
93
+ Styling of output is intended to be configurable. HTML stylesheets are expressed in https://sass-lang.com/guide[SCSS], with their fonts populated through the `default_fonts()` method in the `IsoDoc::...::HtmlConvert` class. Frontispiece content is templated, populated from metadata parsed in the `IsoDoc::...::Metadata` class, via https://shopify.github.io/liquid/[Liquid templates]. The default stylesheets and HTML templates themselves are nominated in the `default_file_locations()` method in the `IsoDoc::...::HtmlConvert` class. That means you can change the styling of output documents readily, so long as you are aware of the functionality of the stylesheet.
89
94
 
90
95
  * Styling information is stored in the `.../lib/isodoc/html` folder of the gem, and applies to both Word and HTML content. For HTML content, the relevant files are `html_..._titlepage.html` (title page HTML template), `html_..._intro.html` (introductory HTML template, typically restricted to Table of Contents), `scripts.html` (Javascript scripts), and `htmlstyle.scss` (the HTML stylesheet).
91
- * The styling files to be loaded in are set in the `initialize()` method of `IsoDoc::...::HtmlConvert`. Additional files (e.g. logos) can be loaded there; for them to be access during document generation, they need to be copied to the working directory. (They can be removed subsequently by adding them to the `@files_to_delete` array. All image files are copied into an `_html` subdirectory.)
96
+ * The styling files to be loaded in are set in the `default_file_locations()` method of `IsoDoc::...::HtmlConvert`. The files can be overridden through document variables in the Asciidoc document.
97
+ * Additional files (e.g. logos) can be loaded in the `initialize()` method of `IsoDoc::...::HtmlConvert`; for them to be access during document generation, they need to be copied to the working directory. (They can be removed subsequently by adding them to the `@files_to_delete` array. All image files are copied into an `_html` subdirectory.)
92
98
  * The HTML templates are populated through Liquid Templates: variables in `{{` correspond to the hash keys for metadata extracted in `IsoDoc::...::Metadata`, and its superclass `IsoDoc::Metadata` in the isodoc gem.
93
- * The SCSS stylesheets treat fonts as variables. Those variables are set in `default_fonts()`, which generates variable assignments for SCSS. Stylesheets normally recognise three fonts: `$bodyfont` for body text, `$headerfont` for headers and captions (which may be the same font as `$bodyfont`), and `$monospacefont` for monospace text. Note that `default_fonts()` takes the document script as a parameter, and permits different font choices for different document scripts. (The existing gems refer to `Latn`, Latin script, and `Hans`, Simplified Chinese script.)
99
+ * The SCSS stylesheets treat fonts as variables. Those variables are set in `default_fonts()`, which generates variable assignments for SCSS. Stylesheets normally recognise three fonts: `$bodyfont` for body text, `$headerfont` for headers and captions (which may be the same font as `$bodyfont`), and `$monospacefont` for monospace text. Note that `default_fonts()` takes the options passed to initialise `HtmlConvert` as a paremeter; the document language and script can be used to make different font choices for different document scripts. (The existing gems refer to `Latn`, Latin script, and `Hans`, Simplified Chinese script.)
94
100
  * Javascript scripts are populated in `scripts.html`; the scripts already in place in any gem you modify are in live use, and you should work out what they do before removing them. The AnchorJS script, for example, is used to generate navigable anchors in the document.
95
101
  * Additional scripts and fonts may be loaded in the document head through the `html_head()` method of `IsoDoc::...::HtmlConvert`. The existing gems use the document head to load Jquery, the Table of Contents generation script, Google Fonts, and Font Awesome.
96
102
  * An HTML document is populated as follows:
97
103
  ** HTML Head wrapper (in `IsoDoc::HtmlConvert`)
98
104
  *** `html_head()` content
99
- *** `@htmlstylesheet` CSS stylesheet (generated from SCSS through the `generate_css()` method of `Isodoc::HtmlConvert`).
105
+ *** `@htmlstylesheet` CSS stylesheet (expected to be in SCSS, generated from SCSS in the `generate_css()` method of `Isodoc::HtmlConvert`).
100
106
  ** HTML Body
101
107
  *** `@htmlcoverpage` HTML template (optional, corresponds to `html_..._titlepage.html`)
102
108
  *** `@htmlintropage` HTML template (optional, corresponds to `html_..._intro.html`)
@@ -114,6 +120,7 @@ Styling of output is intended to be configurable. HTML stylesheets are in https:
114
120
  * Edit the `word_sample_titlepage.html` and `word_sample_intro.html` pages to match your organisation's branding. With lots of iterations of saving Word documents as HTML, for trial and error.
115
121
  ** Leave the Liquid Template instructions alone (`{{`, `{%`) unless you know what you're doing with them: they are how the pages are populated with metadata.
116
122
  * Edit the `default_fonts()` method in your `IsoDoc::...::WordConvert` class, to match your desired fonts.
123
+ * Edit the `default_file_locations()` method in your `IsoDoc::...::WordConvert` class, to match your desired stylesheets and file templates.
117
124
  * Edit the `wordstyle.scss` and `sample.scss` stylesheets to match your organisation's branding. With lots of iterations of saving Word documents as HTML, for trial and error.
118
125
  ====
119
126
 
@@ -126,7 +133,8 @@ It's still better than learning OOXML.
126
133
  The process for generating Word output is fairly similar to that for generating HTML, since both processes are generating a form of HTML; as we already noted, the two processes share a substantial amount of code. The main differences are in the handling of page-media features that CSS has lagged in (footnotes, pagination, headers and footers), and in the styling of lists, for which Word HTML uses custom (and undocumented) CSS classes prefixed with `@`, specifying inter alia the numbering for nine levels of nesting of the same list.
127
134
 
128
135
  * Styling information is stored in the `.../lib/isodoc/html` folder of the gem, and applies to both Word and HTML content. For Word content, the relevant files are `word_..._titlepage.html` (title page HTML template), `word_..._intro.html` (introductory HTML template, typically restricted to Table of Contents), `wordstyle.scss` and `{name_of_standard}.scss` (the Word stylesheets), and `header.html` (document headers, footers, and endnote/footnote separators, referenced from the stylesheets).
129
- * The styling files to be loaded in are set in the `initialize()` method of `IsoDoc::...::WordConvert`. As with HTML generation, additional files (e.g. logos) can be loaded there. The `initialize()` method also sets the `@` styles in the stylesheet to be used for unordered and ordered lists; a single such style is intended to capture the behaviour of all levels of indentation.
136
+ * The styling files to be loaded in are set in the `default_file_locations()` method of `IsoDoc::...::WordConvert`.
137
+ * As with HTML generation, additional files (e.g. logos) can be loaded in the `initialize()` method of `IsoDoc::...::WordConvert`. The `initialize()` method also sets the `@` styles in the stylesheet to be used for unordered and ordered lists; a single such style is intended to capture the behaviour of all levels of indentation.
130
138
  * As with HTML output, the HTML templates are populated through Liquid Templates: variables in `{{` correspond to the hash keys for metadata extracted in `IsoDoc::...::Metadata`, and its superclass `IsoDoc::Metadata` in the isodoc gem.
131
139
  * As with HTML, the SCSS stylesheets treat fonts as variables, and are set in the `default_fonts()` method of `IsoDoc::...::WordConvert`.
132
140
  * Document headers and footers are set in the `header.html` file. This is also an HTML template, which is populated with metadata attributes through Liquid Template. The structure of `header.html` is determined by Word, and elements of `header.html` need to be crossreferenced from the Word stylesheet. To inspect Word `header.html` files, save a Word document as HTML, and look inside the `{document_name}.fld` folder generated alongside the HTML output.
@@ -16,6 +16,11 @@ module Asciidoctor
16
16
  headerfont: node.attr("header-font"),
17
17
  monospacefont: node.attr("monospace-font"),
18
18
  i18nyaml: node.attr("i18nyaml"),
19
+ scope: node.attr("scope"),
20
+ htmlstylesheet: node.attr("htmlstylesheet"),
21
+ htmlcoverpage: node.attr("htmlcoverpage"),
22
+ htmlintropage: node.attr("htmlintropage"),
23
+ scripts: node.attr("scripts"),
19
24
  )
20
25
  end
21
26
 
@@ -27,6 +32,11 @@ module Asciidoctor
27
32
  monospacefont: node.attr("monospace-font"),
28
33
  i18nyaml: node.attr("i18nyaml"),
29
34
  alt: true,
35
+ scope: node.attr("scope"),
36
+ htmlstylesheet: node.attr("htmlstylesheet"),
37
+ htmlcoverpage: node.attr("htmlcoverpage"),
38
+ htmlintropage: node.attr("htmlintropage"),
39
+ scripts: node.attr("scripts"),
30
40
  )
31
41
  end
32
42
 
@@ -37,6 +47,14 @@ module Asciidoctor
37
47
  headerfont: node.attr("header-font"),
38
48
  monospacefont: node.attr("monospace-font"),
39
49
  i18nyaml: node.attr("i18nyaml"),
50
+ scope: node.attr("scope"),
51
+ wordstylesheet: node.attr("wordstylesheet"),
52
+ standardstylesheet: node.attr("standardstylesheet"),
53
+ header: node.attr("header"),
54
+ wordcoverpage: node.attr("wordcoverpage"),
55
+ wordintropage: node.attr("wordintropage"),
56
+ ulstyle: node.attr("ulstyle"),
57
+ olstyle: node.attr("olstyle"),
40
58
  )
41
59
  end
42
60
 
@@ -1,5 +1,5 @@
1
1
  module Asciidoctor
2
2
  module ISO
3
- VERSION = "0.10.2".freeze
3
+ VERSION = "0.10.3".freeze
4
4
  end
5
5
  end
@@ -4,48 +4,30 @@ require_relative "metadata"
4
4
  module IsoDoc
5
5
  module Iso
6
6
  class HtmlConvert < IsoDoc::HtmlConvert
7
-
8
- def default_fonts(options)
9
- b = options[:bodyfont] ||
10
- (options[:script] == "Hans" ? '"SimSun",serif' :
11
- '"Cambria",serif')
12
- h = options[:headerfont] ||
13
- (options[:script] == "Hans" ? '"SimHei",sans-serif' :
14
- '"Cambria",serif')
15
- m = options[:monospacefont] || '"Courier New",monospace'
16
- "$bodyfont: #{b};\n$headerfont: #{h};\n$monospacefont: #{m};\n"
17
- end
18
-
19
- def alt_fonts(options)
20
- b = options[:bodyfont] ||
21
- (options[:script] == "Hans" ? '"SimSun",serif' :
22
- '"Lato",sans-serif')
23
- h = options[:headerfont] ||
24
- (options[:script] == "Hans" ? '"SimHei",sans-serif' :
25
- '"Lato",sans-serif')
26
- m = options[:monospacefont] || '"Space Mono",monospace'
27
- "$bodyfont: #{b};\n$headerfont: #{h};\n$monospacefont: #{m};\n"
28
- end
29
-
30
- def html_doc_path(file)
31
- File.join(File.dirname(__FILE__), File.join("html", file))
32
- end
33
-
34
7
  def metadata_init(lang, script, labels)
35
8
  @meta = Metadata.new(lang, script, labels)
36
9
  end
37
10
 
38
11
  def initialize(options)
12
+ @libdir = File.dirname(__FILE__)
39
13
  super
40
- if options[:alt]
41
- css = generate_css(html_doc_path("style-human.scss"), true, alt_fonts(options))
42
- else
43
- css = generate_css(html_doc_path("style-iso.scss"), true, default_fonts(options))
44
- end
45
- @htmlstylesheet = css
46
- @htmlcoverpage = html_doc_path("html_iso_titlepage.html")
47
- @htmlintropage = html_doc_path("html_iso_intro.html")
48
- @scripts = html_doc_path("scripts.html")
14
+ end
15
+
16
+ def default_fonts(options)
17
+ {
18
+ bodyfont: (options[:script] == "Hans" ? '"SimSun",serif' : options[:alt] ? '"Lato",sans-serif' : '"Cambria",serif'),
19
+ headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' : options[:alt] ? '"Lato",sans-serif' : '"Cambria",serif'),
20
+ monospacefont: (options[:alt] ? '"Space Mono",monospace' : '"Courier New",monospace'),
21
+ }
22
+ end
23
+
24
+ def default_file_locations(options)
25
+ {
26
+ htmlstylesheet: options[:alt] ? html_doc_path("style-human.scss") : html_doc_path("style-iso.scss"),
27
+ htmlcoverpage: html_doc_path("html_iso_titlepage.html"),
28
+ htmlintropage: html_doc_path("html_iso_intro.html"),
29
+ scripts: html_doc_path("scripts.html"),
30
+ }
49
31
  end
50
32
 
51
33
  def implicit_reference(b)
@@ -4,31 +4,33 @@ require_relative "metadata"
4
4
  module IsoDoc
5
5
  module Iso
6
6
  class WordConvert < IsoDoc::WordConvert
7
-
8
- def default_fonts(options)
9
- b = options[:bodyfont] ||
10
- (options[:script] == "Hans" ? '"SimSun",serif' :
11
- '"Cambria",serif')
12
- h = options[:headerfont] ||
13
- (options[:script] == "Hans" ? '"SimHei",sans-serif' :
14
- '"Cambria",serif')
15
- m = options[:monospacefont] || '"Courier New",monospace'
16
- "$bodyfont: #{b};\n$headerfont: #{h};\n$monospacefont: #{m};\n"
17
- end
18
-
19
- def html_doc_path(file)
20
- File.join(File.dirname(__FILE__), File.join("html", file))
21
- end
22
-
23
7
  def initialize(options)
8
+ @libdir = File.dirname(__FILE__)
24
9
  super
25
- @wordstylesheet = generate_css(html_doc_path("wordstyle.scss"), false, default_fonts(options))
26
- @standardstylesheet = generate_css(html_doc_path("isodoc.scss"), false, default_fonts(options))
27
- @header = html_doc_path("header.html")
28
- @wordcoverpage = html_doc_path("word_iso_titlepage.html")
29
- @wordintropage = html_doc_path("word_iso_intro.html")
30
- @ulstyle = "l3"
31
- @olstyle = "l2"
10
+ end
11
+
12
+ def default_fonts(options)
13
+ {
14
+ bodyfont: (options[:script] == "Hans" ? '"SimSun",serif' : '"Cambria",serif'),
15
+ headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' : '"Cambria",serif'),
16
+ monospacefont: '"Courier New",monospace',
17
+ }
18
+ end
19
+
20
+ def default_file_locations(options)
21
+ {
22
+ htmlstylesheet: options[:alt] ? html_doc_path("style-human.scss") : html_doc_path("style-iso.scss"),
23
+ htmlcoverpage: html_doc_path("html_iso_titlepage.html"),
24
+ htmlintropage: html_doc_path("html_iso_intro.html"),
25
+ scripts: html_doc_path("scripts.html"),
26
+ wordstylesheet: html_doc_path("wordstyle.scss"),
27
+ standardstylesheet: html_doc_path("isodoc.scss"),
28
+ header: html_doc_path("header.html"),
29
+ wordcoverpage: html_doc_path("word_iso_titlepage.html"),
30
+ wordintropage: html_doc_path("word_iso_intro.html"),
31
+ ulstyle: "l3",
32
+ olstyle: "l2",
33
+ }
32
34
  end
33
35
 
34
36
  def metadata_init(lang, script, labels)
@@ -1,7 +1,7 @@
1
1
  MIME-Version: 1.0
2
- Content-Type: multipart/related; boundary="----=_NextPart_94e7f467.3c17.4d67"
2
+ Content-Type: multipart/related; boundary="----=_NextPart_933e0e5f.7f75.40e3"
3
3
 
4
- ------=_NextPart_94e7f467.3c17.4d67
4
+ ------=_NextPart_933e0e5f.7f75.40e3
5
5
  Content-Location: file:///C:/Doc/spec/assets/iso.htm
6
6
  Content-Type: text/html; charset="utf-8"
7
7
 
@@ -22,1226 +22,7 @@ Content-Type: text/html; charset="utf-8"
22
22
  <meta http-equiv=Content-Type content="text/html; charset=UTF-8"/>
23
23
  <title>spec/assets/iso</title><style>
24
24
  <!--
25
- @charset "UTF-8";
26
- /* Font Definitions */
27
- @font-face {
28
- font-family: Arial;
29
- panose-1: 2 11 6 4 2 2 2 2 2 4;
30
- mso-font-charset: 0;
31
- mso-generic-font-family: swiss;
32
- mso-font-pitch: variable;
33
- mso-font-signature: -536859905 -1073711037 9 0 511 0; }
34
- @font-face {
35
- font-family: "Courier New";
36
- panose-1: 2 7 3 9 2 2 5 2 4 4;
37
- mso-font-charset: 0;
38
- mso-generic-font-family: roman;
39
- mso-font-pitch: fixed;
40
- mso-font-signature: -536859905 -1073711037 9 0 511 0; }
41
- @font-face {
42
- font-family: "Cambria Math";
43
- panose-1: 2 4 5 3 5 4 6 3 2 4;
44
- mso-font-charset: 0;
45
- mso-generic-font-family: roman;
46
- mso-font-pitch: variable;
47
- mso-font-signature: -536870145 1107305727 0 0 415 0; }
48
- @font-face {
49
- font-family: Calibri;
50
- panose-1: 2 15 5 2 2 2 4 3 2 4;
51
- mso-font-charset: 0;
52
- mso-generic-font-family: swiss;
53
- mso-font-pitch: variable;
54
- mso-font-signature: -536870145 1073786111 1 0 415 0; }
55
- @font-face {
56
- font-family: Cambria;
57
- panose-1: 2 4 5 3 5 4 6 3 2 4;
58
- mso-font-charset: 0;
59
- mso-generic-font-family: roman;
60
- mso-font-pitch: variable;
61
- mso-font-signature: -536870145 1073743103 0 0 415 0; }
62
- @font-face {
63
- font-family: "Malgun Gothic";
64
- panose-1: 2 11 5 3 2 0 0 2 0 4;
65
- mso-font-charset: 129;
66
- mso-generic-font-family: swiss;
67
- mso-font-pitch: variable;
68
- mso-font-signature: -1879048145 701988091 18 0 524289 0; }
69
- @font-face {
70
- font-family: "Cambria", serif;
71
- panose-1: 2 2 6 9 4 2 5 8 3 4;
72
- mso-font-charset: 128;
73
- mso-generic-font-family: roman;
74
- mso-font-pitch: fixed;
75
- mso-font-signature: -536870145 1791491579 134217746 0 131231 0; }
76
- /* Style Definitions */
77
- p.MsoNormal, li.MsoNormal, div.MsoNormal {
78
- mso-style-unhide: no;
79
- mso-style-qformat: yes;
80
- mso-style-parent: "";
81
- margin-top: 0cm;
82
- margin-right: 0cm;
83
- margin-bottom: 12.0pt;
84
- margin-left: 0cm;
85
- text-align: justify;
86
- line-height: 12.0pt;
87
- mso-pagination: widow-orphan;
88
- tab-stops: 20.15pt;
89
- font-size: 11.0pt;
90
- font-family: "Cambria", serif;
91
- mso-fareast-font-family: "Cambria", serif;
92
- mso-bidi-font-family: "Cambria", serif;
93
- mso-ansi-language: EN-GB; }
94
-
95
- p.MsoNormalIndent, li.MsoNormalIndent, div.MsoNormalIndent {
96
- mso-style-priority: 99;
97
- margin-top: 0cm;
98
- margin-right: 36.0cm;
99
- margin-bottom: 0cm;
100
- margin-left: 36.0pt;
101
- text-align: justify;
102
- line-height: 12.0pt;
103
- mso-pagination: widow-orphan;
104
- tab-stops: 20.15pt;
105
- font-size: 11.0pt;
106
- font-family: "Cambria", serif;
107
- mso-fareast-font-family: "Cambria", serif;
108
- mso-bidi-font-family: "Cambria", serif;
109
- mso-ansi-language: EN-GB; }
110
-
111
- p.MsoBlockText, li.MsoBlockText, div.MsoBlockText {
112
- mso-style-priority: 99;
113
- margin-top: 0cm;
114
- margin-right: 57.6pt;
115
- margin-bottom: 0cm;
116
- margin-left: 57.6pt;
117
- margin-bottom: .0001pt;
118
- mso-pagination: widow-orphan;
119
- border: none;
120
- mso-border-alt: solid #4472C4 .25pt;
121
- mso-border-themecolor: accent1;
122
- padding: 0cm;
123
- mso-padding-alt: 10.0pt 10.0pt 10.0pt 10.0pt;
124
- font-size: 12.0pt;
125
- font-family: "Cambria", serif;
126
- mso-ascii-font-family: "Cambria", serif;
127
- mso-ascii-theme-font: minor-latin;
128
- mso-fareast-font-family: "Cambria", serif;
129
- mso-fareast-theme-font: minor-fareast;
130
- mso-hansi-font-family: "Cambria", serif;
131
- mso-hansi-theme-font: minor-latin;
132
- mso-bidi-font-family: "Cambria", serif;
133
- mso-bidi-theme-font: minor-bidi;
134
- color: #4472C4;
135
- mso-themecolor: accent1;
136
- mso-ansi-language: EN-AU;
137
- font-style: italic; }
138
-
139
- h1 {
140
- mso-style-priority: 1;
141
- mso-style-unhide: no;
142
- mso-style-qformat: yes;
143
- mso-style-link: "Heading 1 Char";
144
- mso-style-next: Normal;
145
- margin-top: 13.5pt;
146
- margin-right: 0cm;
147
- margin-bottom: 12.0pt;
148
- margin-left: 0cm;
149
- text-indent: 0cm;
150
- line-height: 13.5pt;
151
- mso-pagination: widow-orphan;
152
- page-break-after: avoid;
153
- mso-outline-level: 1;
154
- mso-list: l1 level1 lfo6;
155
- mso-hyphenate: none;
156
- tab-stops: 20.0pt list 21.6pt left 28.0pt;
157
- font-size: 13.0pt;
158
- mso-bidi-font-size: 11.0pt;
159
- font-family: "Cambria", serif;
160
- mso-fareast-font-family: "Cambria", serif;
161
- mso-font-kerning: 0pt;
162
- mso-ansi-language: EN-GB;
163
- mso-fareast-language: JA;
164
- mso-bidi-font-weight: normal; }
165
-
166
- h1.Annex {
167
- mso-style-priority: 1;
168
- mso-style-unhide: no;
169
- mso-style-qformat: yes;
170
- mso-style-link: "Heading 1 Char";
171
- mso-style-next: Normal;
172
- margin-top: 13.5pt;
173
- margin-right: 0cm;
174
- margin-bottom: 12.0pt;
175
- margin-left: 0cm;
176
- text-indent: 0cm;
177
- line-height: 13.5pt;
178
- text-align: center;
179
- mso-pagination: widow-orphan;
180
- page-break-after: avoid;
181
- font-weight: normal;
182
- mso-outline-level: 1;
183
- mso-list: l1 level1 lfo6;
184
- mso-hyphenate: none;
185
- tab-stops: 20.0pt list 21.6pt left 28.0pt;
186
- font-size: 13.0pt;
187
- mso-bidi-font-size: 11.0pt;
188
- font-family: "Cambria", serif;
189
- mso-fareast-font-family: "Cambria", serif;
190
- mso-font-kerning: 0pt;
191
- mso-ansi-language: EN-GB;
192
- mso-fareast-language: JA;
193
- mso-bidi-font-weight: normal; }
194
-
195
- h2 {
196
- mso-style-priority: 2;
197
- mso-style-unhide: no;
198
- mso-style-qformat: yes;
199
- mso-style-parent: "Heading 1";
200
- mso-style-link: "Heading 2 Char";
201
- mso-style-next: Normal;
202
- margin-top: 3.0pt;
203
- margin-right: 0cm;
204
- margin-bottom: 12.0pt;
205
- margin-left: 0cm;
206
- text-indent: 0cm;
207
- line-height: 12.5pt;
208
- mso-pagination: widow-orphan;
209
- page-break-after: avoid;
210
- mso-outline-level: 2;
211
- mso-list: l1 level2 lfo6;
212
- mso-hyphenate: none;
213
- tab-stops: 27.0pt 35.0pt;
214
- font-size: 12.0pt;
215
- mso-bidi-font-size: 11.0pt;
216
- font-family: "Cambria", serif;
217
- mso-fareast-font-family: "Cambria", serif;
218
- mso-ansi-language: EN-GB;
219
- mso-fareast-language: JA;
220
- mso-bidi-font-weight: normal; }
221
-
222
- h3 {
223
- mso-style-priority: 3;
224
- mso-style-unhide: no;
225
- mso-style-qformat: yes;
226
- mso-style-parent: "Heading 1";
227
- mso-style-link: "Heading 3 Char";
228
- mso-style-next: Normal;
229
- margin-top: 3.0pt;
230
- margin-right: 0cm;
231
- margin-bottom: 12.0pt;
232
- margin-left: 0cm;
233
- text-indent: 0cm;
234
- line-height: 12.0pt;
235
- mso-pagination: widow-orphan;
236
- page-break-after: avoid;
237
- mso-outline-level: 3;
238
- mso-list: l1 level3 lfo6;
239
- mso-hyphenate: none;
240
- tab-stops: list 36.0pt left 44.0pt;
241
- font-size: 11.0pt;
242
- font-family: "Cambria", serif;
243
- mso-fareast-font-family: "Cambria", serif;
244
- mso-ansi-language: EN-GB;
245
- mso-fareast-language: JA;
246
- mso-bidi-font-weight: normal; }
247
-
248
- h4 {
249
- mso-style-priority: 4;
250
- mso-style-unhide: no;
251
- mso-style-qformat: yes;
252
- mso-style-parent: "Heading 3";
253
- mso-style-link: "Heading 4 Char";
254
- mso-style-next: Normal;
255
- margin-top: 3.0pt;
256
- margin-right: 0cm;
257
- margin-bottom: 12.0pt;
258
- margin-left: 0cm;
259
- text-indent: 0cm;
260
- line-height: 12.0pt;
261
- mso-pagination: widow-orphan;
262
- page-break-after: avoid;
263
- mso-outline-level: 4;
264
- mso-list: l1 level4 lfo6;
265
- mso-hyphenate: none;
266
- tab-stops: 51.05pt 57.0pt 68.0pt;
267
- font-size: 11.0pt;
268
- font-family: "Cambria", serif;
269
- mso-fareast-font-family: "Cambria", serif;
270
- mso-ansi-language: EN-GB;
271
- mso-fareast-language: JA;
272
- mso-bidi-font-weight: normal; }
273
-
274
- h5 {
275
- mso-style-priority: 5;
276
- mso-style-unhide: no;
277
- mso-style-qformat: yes;
278
- mso-style-parent: "Heading 4";
279
- mso-style-link: "Heading 5 Char";
280
- mso-style-next: Normal;
281
- margin-top: 3.0pt;
282
- margin-right: 0cm;
283
- margin-bottom: 12.0pt;
284
- margin-left: 0cm;
285
- text-indent: 0cm;
286
- line-height: 12.0pt;
287
- mso-pagination: widow-orphan;
288
- page-break-after: avoid;
289
- mso-outline-level: 5;
290
- mso-list: l1 level5 lfo6;
291
- mso-hyphenate: none;
292
- tab-stops: 51.05pt list 54.0pt;
293
- font-size: 11.0pt;
294
- font-family: "Cambria", serif;
295
- mso-fareast-font-family: "Cambria", serif;
296
- mso-ansi-language: EN-GB;
297
- mso-fareast-language: JA;
298
- mso-bidi-font-weight: normal; }
299
-
300
- h6 {
301
- mso-style-priority: 6;
302
- mso-style-unhide: no;
303
- mso-style-qformat: yes;
304
- mso-style-parent: "Heading 5";
305
- mso-style-link: "Heading 6 Char";
306
- mso-style-next: Normal;
307
- margin-top: 3.0pt;
308
- margin-right: 0cm;
309
- margin-bottom: 12.0pt;
310
- margin-left: 0cm;
311
- text-indent: 0cm;
312
- line-height: 12.0pt;
313
- mso-pagination: widow-orphan;
314
- page-break-after: avoid;
315
- mso-outline-level: 6;
316
- mso-list: l1 level6 lfo6;
317
- mso-hyphenate: none;
318
- tab-stops: 51.05pt list 72.0pt;
319
- font-size: 11.0pt;
320
- font-family: "Cambria", serif;
321
- mso-fareast-font-family: "Cambria", serif;
322
- mso-ansi-language: EN-GB;
323
- mso-fareast-language: JA;
324
- mso-bidi-font-weight: normal; }
325
-
326
- p.MsoToc1, li.MsoToc1, div.MsoToc1 {
327
- mso-style-priority: 39;
328
- mso-style-unhide: no;
329
- mso-style-next: Normal;
330
- margin-top: 6.0pt;
331
- margin-right: 25.0pt;
332
- margin-bottom: 0cm;
333
- margin-left: 36.0pt;
334
- margin-bottom: .0001pt;
335
- text-indent: -36.0pt;
336
- line-height: 12.0pt;
337
- mso-pagination: widow-orphan;
338
- mso-hyphenate: none;
339
- tab-stops: 20.15pt 36.0pt right dotted 487.6pt;
340
- font-size: 11.0pt;
341
- font-family: "Cambria", serif;
342
- mso-fareast-font-family: "Cambria", serif;
343
- mso-bidi-font-family: "Cambria", serif;
344
- mso-ansi-language: EN-GB;
345
- font-weight: bold;
346
- mso-bidi-font-weight: normal; }
347
-
348
- p.MsoToc2, li.MsoToc2, div.MsoToc2 {
349
- mso-style-noshow: yes;
350
- mso-style-priority: 39;
351
- mso-style-unhide: no;
352
- mso-style-parent: "TOC 1";
353
- mso-style-next: Normal;
354
- margin-top: 0cm;
355
- margin-right: 25.0pt;
356
- margin-bottom: 0cm;
357
- margin-left: 36.0pt;
358
- margin-bottom: .0001pt;
359
- text-indent: -36.0pt;
360
- line-height: 12.0pt;
361
- mso-pagination: widow-orphan;
362
- mso-hyphenate: none;
363
- tab-stops: 20.15pt 36.0pt right dotted 487.6pt;
364
- font-size: 11.0pt;
365
- font-family: "Cambria", serif;
366
- mso-fareast-font-family: "Cambria", serif;
367
- mso-bidi-font-family: "Cambria", serif;
368
- mso-ansi-language: EN-GB;
369
- font-weight: bold;
370
- mso-bidi-font-weight: normal; }
371
-
372
- p.MsoToc3, li.MsoToc3, div.MsoToc3 {
373
- mso-style-noshow: yes;
374
- mso-style-priority: 39;
375
- mso-style-unhide: no;
376
- mso-style-parent: "TOC 2";
377
- mso-style-next: Normal;
378
- margin-top: 0cm;
379
- margin-right: 25.0pt;
380
- margin-bottom: 0cm;
381
- margin-left: 36.0pt;
382
- margin-bottom: .0001pt;
383
- text-indent: -36.0pt;
384
- line-height: 12.0pt;
385
- mso-pagination: widow-orphan;
386
- mso-hyphenate: none;
387
- tab-stops: 20.15pt 36.0pt right dotted 487.6pt;
388
- font-size: 11.0pt;
389
- font-family: "Cambria", serif;
390
- mso-fareast-font-family: "Cambria", serif;
391
- mso-bidi-font-family: "Cambria", serif;
392
- mso-ansi-language: EN-GB;
393
- font-weight: bold;
394
- mso-bidi-font-weight: normal; }
395
-
396
- p.MsoHeader, li.MsoHeader, div.MsoHeader {
397
- mso-style-noshow: yes;
398
- mso-style-priority: 99;
399
- mso-style-unhide: no;
400
- mso-style-link: "Header Char";
401
- margin-top: 0cm;
402
- margin-right: 0cm;
403
- margin-bottom: 30.0pt;
404
- margin-left: 0cm;
405
- text-align: justify;
406
- line-height: 11.0pt;
407
- mso-line-height-rule: exactly;
408
- mso-pagination: widow-orphan;
409
- tab-stops: 20.15pt;
410
- font-size: 11.0pt;
411
- font-family: "Cambria", serif;
412
- mso-fareast-font-family: "Cambria", serif;
413
- mso-bidi-font-family: "Cambria", serif;
414
- mso-ansi-language: EN-GB;
415
- font-weight: bold;
416
- mso-bidi-font-weight: normal; }
417
-
418
- p.MsoFooter, li.MsoFooter, div.MsoFooter {
419
- mso-style-noshow: yes;
420
- mso-style-priority: 99;
421
- mso-style-unhide: no;
422
- mso-style-link: "Footer Char";
423
- margin-top: 18.0pt;
424
- margin-right: 0cm;
425
- margin-bottom: 6.0pt;
426
- margin-left: 0cm;
427
- text-align: justify;
428
- line-height: 11.0pt;
429
- mso-line-height-rule: exactly;
430
- mso-pagination: widow-orphan;
431
- tab-stops: right 487.6pt;
432
- font-size: 11.0pt;
433
- font-family: "Cambria", serif;
434
- mso-fareast-font-family: "Cambria", serif;
435
- mso-bidi-font-family: "Cambria", serif;
436
- mso-ansi-language: EN-GB; }
437
-
438
- span.MsoFootnoteReference {
439
- mso-style-priority: 99;
440
- vertical-align: super; }
441
-
442
- p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText {
443
- mso-style-noshow: yes;
444
- mso-style-priority: 99;
445
- mso-style-link: "Footnote Text Char";
446
- margin-top: 0cm;
447
- margin-right: 0cm;
448
- margin-bottom: 12.0pt;
449
- margin-left: 0cm;
450
- text-align: justify;
451
- line-height: 12.0pt;
452
- mso-pagination: widow-orphan;
453
- tab-stops: 20.15pt;
454
- font-size: 10.0pt;
455
- font-family: "Cambria", serif;
456
- mso-fareast-font-family: "Cambria", serif;
457
- mso-bidi-font-family: "Cambria", serif;
458
- mso-ansi-language: EN-GB;
459
- mso-fareast-language: EN-US; }
460
-
461
- p.MsoBodyText, li.MsoBodyText, div.MsoBodyText {
462
- mso-style-noshow: yes;
463
- mso-style-priority: 99;
464
- mso-style-unhide: no;
465
- mso-style-link: "Body Text Char";
466
- margin-top: 0cm;
467
- margin-right: 0cm;
468
- margin-bottom: 6.0pt;
469
- margin-left: 0cm;
470
- text-align: justify;
471
- line-height: 12.0pt;
472
- mso-pagination: widow-orphan;
473
- font-size: 11.0pt;
474
- font-family: "Cambria", serif;
475
- mso-fareast-font-family: "Cambria", serif;
476
- mso-bidi-font-family: "Cambria", serif;
477
- mso-ansi-language: EN-GB; }
478
-
479
- a:link, span.MsoHyperlink {
480
- mso-style-priority: 99;
481
- mso-style-unhide: no;
482
- mso-style-parent: "";
483
- mso-ansi-language: EN;
484
- color: black;
485
- text-decoration: none; }
486
-
487
- a:visited, span.MsoHyperlinkFollowed {
488
- mso-style-noshow: yes;
489
- mso-style-priority: 99;
490
- mso-themecolor: followedhyperlink;
491
- text-decoration: none;
492
- color: black; }
493
-
494
- span.MsoPlaceholderText {
495
- mso-style-noshow: yes;
496
- mso-style-priority: 99;
497
- mso-style-unhide: no;
498
- mso-style-parent: "";
499
- color: gray; }
500
-
501
- span.Heading1Char {
502
- mso-style-name: "Heading 1 Char";
503
- mso-style-priority: 1;
504
- mso-style-unhide: no;
505
- mso-style-locked: yes;
506
- mso-style-parent: "";
507
- mso-style-link: "Heading 1";
508
- mso-ansi-font-size: 13.0pt;
509
- font-family: "Cambria", serif;
510
- mso-ascii-font-family: Cambria;
511
- mso-fareast-font-family: "Cambria", serif;
512
- mso-hansi-font-family: "Cambria", serif;
513
- mso-ansi-language: EN-GB;
514
- mso-fareast-language: JA;
515
- font-weight: bold;
516
- mso-bidi-font-weight: normal; }
517
-
518
- span.Heading2Char {
519
- mso-style-name: "Heading 2 Char";
520
- mso-style-priority: 2;
521
- mso-style-unhide: no;
522
- mso-style-locked: yes;
523
- mso-style-parent: "";
524
- mso-style-link: "Heading 2";
525
- mso-ansi-font-size: 12.0pt;
526
- font-family: "Cambria", serif;
527
- mso-ascii-font-family: Cambria;
528
- mso-fareast-font-family: "Cambria", serif;
529
- mso-hansi-font-family: "Cambria", serif;
530
- mso-ansi-language: EN-GB;
531
- mso-fareast-language: JA;
532
- font-weight: bold;
533
- mso-bidi-font-weight: normal; }
534
-
535
- span.Heading3Char {
536
- mso-style-name: "Heading 3 Char";
537
- mso-style-priority: 3;
538
- mso-style-unhide: no;
539
- mso-style-locked: yes;
540
- mso-style-parent: "";
541
- mso-style-link: "Heading 3";
542
- mso-ansi-font-size: 11.0pt;
543
- font-family: "Cambria", serif;
544
- mso-ascii-font-family: "Cambria", serif;
545
- mso-fareast-font-family: "Cambria", serif;
546
- mso-hansi-font-family: "Cambria", serif;
547
- mso-ansi-language: EN-GB;
548
- mso-fareast-language: JA;
549
- font-weight: bold;
550
- mso-bidi-font-weight: normal; }
551
-
552
- span.Heading4Char {
553
- mso-style-name: "Heading 4 Char";
554
- mso-style-priority: 4;
555
- mso-style-unhide: no;
556
- mso-style-locked: yes;
557
- mso-style-parent: "";
558
- mso-style-link: "Heading 4";
559
- mso-ansi-font-size: 11.0pt;
560
- font-family: "Cambria", serif;
561
- mso-ascii-font-family: "Cambria", serif;
562
- mso-fareast-font-family: "Cambria", serif;
563
- mso-hansi-font-family: "Cambria", serif;
564
- mso-ansi-language: EN-GB;
565
- mso-fareast-language: JA;
566
- font-weight: bold;
567
- mso-bidi-font-weight: normal; }
568
-
569
- span.Heading5Char {
570
- mso-style-name: "Heading 5 Char";
571
- mso-style-priority: 5;
572
- mso-style-unhide: no;
573
- mso-style-locked: yes;
574
- mso-style-parent: "";
575
- mso-style-link: "Heading 5";
576
- mso-ansi-font-size: 11.0pt;
577
- font-family: "Cambria", serif;
578
- mso-ascii-font-family: "Cambria", serif;
579
- mso-fareast-font-family: "Cambria", serif;
580
- mso-hansi-font-family: "Cambria", serif;
581
- mso-ansi-language: EN-GB;
582
- mso-fareast-language: JA;
583
- font-weight: bold;
584
- mso-bidi-font-weight: normal; }
585
-
586
- span.Heading6Char {
587
- mso-style-name: "Heading 6 Char";
588
- mso-style-priority: 6;
589
- mso-style-unhide: no;
590
- mso-style-locked: yes;
591
- mso-style-parent: "";
592
- mso-style-link: "Heading 6";
593
- mso-ansi-font-size: 11.0pt;
594
- font-family: "Cambria", serif;
595
- mso-ascii-font-family: "Cambria", serif;
596
- mso-fareast-font-family: "Cambria", serif;
597
- mso-hansi-font-family: "Cambria", serif;
598
- mso-ansi-language: EN-GB;
599
- mso-fareast-language: JA;
600
- font-weight: bold;
601
- mso-bidi-font-weight: normal; }
602
-
603
- p.a2, li.a2, div.a2 {
604
- mso-style-name: a2;
605
- mso-style-priority: 11;
606
- mso-style-unhide: no;
607
- mso-style-next: Normal;
608
- margin-top: 13.5pt;
609
- margin-right: 0cm;
610
- margin-bottom: 12.0pt;
611
- margin-left: 0cm;
612
- text-indent: 0cm;
613
- line-height: 13.5pt;
614
- mso-pagination: widow-orphan;
615
- page-break-after: avoid;
616
- mso-outline-level: 1;
617
- mso-list: l0 level2 lfo12;
618
- tab-stops: 1.0cm 36.0pt;
619
- font-size: 13.0pt;
620
- mso-bidi-font-size: 11.0pt;
621
- font-family: "Cambria", serif;
622
- mso-fareast-font-family: "Cambria", serif;
623
- mso-bidi-font-family: "Cambria", serif;
624
- mso-ansi-language: EN-GB;
625
- mso-fareast-language: JA;
626
- font-weight: bold;
627
- mso-bidi-font-weight: normal; }
628
-
629
- p.a3, li.a3, div.a3 {
630
- mso-style-name: a3;
631
- mso-style-priority: 12;
632
- mso-style-unhide: no;
633
- mso-style-next: Normal;
634
- margin-top: 3.0pt;
635
- margin-right: 0cm;
636
- margin-bottom: 12.0pt;
637
- margin-left: 0cm;
638
- text-indent: 0cm;
639
- line-height: 12.5pt;
640
- mso-pagination: widow-orphan;
641
- page-break-after: avoid;
642
- mso-outline-level: 1;
643
- mso-list: l0 level3 lfo12;
644
- tab-stops: 20.15pt list 36.0pt;
645
- font-size: 12.0pt;
646
- mso-bidi-font-size: 11.0pt;
647
- font-family: "Cambria", serif;
648
- mso-fareast-font-family: "Cambria", serif;
649
- mso-bidi-font-family: "Cambria", serif;
650
- mso-ansi-language: EN-GB;
651
- mso-fareast-language: JA;
652
- font-weight: bold;
653
- mso-bidi-font-weight: normal; }
654
-
655
- p.a4, li.a4, div.a4 {
656
- mso-style-name: a4;
657
- mso-style-priority: 13;
658
- mso-style-unhide: no;
659
- mso-style-next: Normal;
660
- margin-top: 3.0pt;
661
- margin-right: 0cm;
662
- margin-bottom: 12.0pt;
663
- margin-left: 0cm;
664
- text-indent: 0cm;
665
- line-height: 12.0pt;
666
- mso-pagination: widow-orphan;
667
- page-break-after: avoid;
668
- mso-outline-level: 1;
669
- mso-list: l0 level4 lfo12;
670
- tab-stops: 20.15pt 44.0pt list 54.0pt;
671
- font-size: 11.0pt;
672
- font-family: "Cambria", serif;
673
- mso-fareast-font-family: "Cambria", serif;
674
- mso-bidi-font-family: "Cambria", serif;
675
- mso-ansi-language: EN-GB;
676
- mso-fareast-language: JA;
677
- font-weight: bold;
678
- mso-bidi-font-style: italic; }
679
-
680
- p.a5, li.a5, div.a5 {
681
- mso-style-name: a5;
682
- mso-style-priority: 14;
683
- mso-style-unhide: no;
684
- mso-style-next: Normal;
685
- margin-top: 3.0pt;
686
- margin-right: 0cm;
687
- margin-bottom: 12.0pt;
688
- margin-left: 0cm;
689
- text-indent: 0cm;
690
- line-height: 12.0pt;
691
- mso-pagination: widow-orphan;
692
- page-break-after: avoid;
693
- mso-outline-level: 1;
694
- mso-list: l0 level5 lfo12;
695
- tab-stops: 20.15pt list 54.0pt left 62.35pt 68.0pt;
696
- font-size: 11.0pt;
697
- font-family: "Cambria", serif;
698
- mso-fareast-font-family: "Cambria", serif;
699
- mso-bidi-font-family: "Cambria", serif;
700
- mso-ansi-language: EN-GB;
701
- mso-fareast-language: JA;
702
- font-weight: bold;
703
- mso-bidi-font-style: italic; }
704
-
705
- p.a6, li.a6, div.a6 {
706
- mso-style-name: a6;
707
- mso-style-priority: 15;
708
- mso-style-unhide: no;
709
- mso-style-next: Normal;
710
- margin-top: 3.0pt;
711
- margin-right: 0cm;
712
- margin-bottom: 12.0pt;
713
- margin-left: 0cm;
714
- text-indent: 0cm;
715
- line-height: 12.0pt;
716
- mso-pagination: widow-orphan;
717
- page-break-after: avoid;
718
- mso-outline-level: 1;
719
- mso-list: l0 level6 lfo12;
720
- tab-stops: 20.15pt 62.35pt 68.0pt list 72.0pt;
721
- font-size: 11.0pt;
722
- font-family: "Cambria", serif;
723
- mso-fareast-font-family: "Cambria", serif;
724
- mso-bidi-font-family: "Cambria", serif;
725
- mso-ansi-language: EN-GB;
726
- mso-fareast-language: JA;
727
- font-weight: bold; }
728
-
729
- span.FooterChar {
730
- mso-style-name: "Footer Char";
731
- mso-style-noshow: yes;
732
- mso-style-priority: 99;
733
- mso-style-unhide: no;
734
- mso-style-locked: yes;
735
- mso-style-parent: "";
736
- mso-style-link: Footer;
737
- mso-ansi-font-size: 11.0pt;
738
- mso-bidi-font-size: 11.0pt;
739
- mso-ansi-language: EN-GB; }
740
-
741
- span.HeaderChar {
742
- mso-style-name: "Header Char";
743
- mso-style-noshow: yes;
744
- mso-style-priority: 99;
745
- mso-style-unhide: no;
746
- mso-style-locked: yes;
747
- mso-style-parent: "";
748
- mso-style-link: Header;
749
- mso-ansi-font-size: 11.0pt;
750
- mso-bidi-font-size: 11.0pt;
751
- mso-ansi-language: EN-GB;
752
- font-weight: bold;
753
- mso-bidi-font-weight: normal; }
754
-
755
- span.BodyTextChar {
756
- mso-style-name: "Body Text Char";
757
- mso-style-noshow: yes;
758
- mso-style-priority: 99;
759
- mso-style-unhide: no;
760
- mso-style-locked: yes;
761
- mso-style-parent: "";
762
- mso-style-link: "Body Text";
763
- mso-ansi-font-size: 11.0pt;
764
- mso-bidi-font-size: 11.0pt;
765
- font-family: "Cambria", serif;
766
- mso-fareast-font-family: "Cambria", serif;
767
- mso-ansi-language: EN-GB; }
768
-
769
- p.MsoCommentText, li.MsoCommentText, div.MsoCommentText {
770
- mso-style-noshow: yes;
771
- mso-style-priority: 99;
772
- mso-style-link: "Comment Text Char";
773
- margin-top: 0cm;
774
- margin-right: 0cm;
775
- margin-bottom: 12.0pt;
776
- margin-left: 0cm;
777
- text-align: justify;
778
- line-height: 12.0pt;
779
- mso-pagination: widow-orphan;
780
- tab-stops: 20.15pt;
781
- font-size: 12.0pt;
782
- font-family: "Cambria", serif;
783
- mso-fareast-font-family: "Cambria", serif;
784
- mso-bidi-font-family: "Cambria", serif;
785
- mso-ansi-language: EN-GB;
786
- mso-fareast-language: EN-US; }
787
-
788
- span.MsoCommentReference {
789
- mso-style-noshow: yes;
790
- mso-style-priority: 99;
791
- mso-style-parent: "";
792
- mso-ansi-font-size: 9.0pt;
793
- mso-bidi-font-size: 9.0pt; }
794
-
795
- p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject {
796
- mso-style-noshow: yes;
797
- mso-style-priority: 99;
798
- mso-style-parent: "Comment Text";
799
- mso-style-link: "Comment Subject Char";
800
- mso-style-next: "Comment Text";
801
- margin-top: 0cm;
802
- margin-right: 0cm;
803
- margin-bottom: 12.0pt;
804
- margin-left: 0cm;
805
- text-align: justify;
806
- line-height: 12.0pt;
807
- mso-pagination: widow-orphan;
808
- tab-stops: 20.15pt;
809
- font-size: 10.0pt;
810
- font-family: "Cambria", serif;
811
- mso-fareast-font-family: "Cambria", serif;
812
- mso-bidi-font-family: "Cambria", serif;
813
- mso-ansi-language: EN-GB;
814
- mso-fareast-language: EN-US;
815
- font-weight: bold; }
816
-
817
- p.Tablebody, li.Tablebody, div.Tablebody {
818
- mso-style-name: "Table body";
819
- mso-style-noshow: yes;
820
- mso-style-unhide: no;
821
- margin-top: 3.0pt;
822
- margin-right: 0cm;
823
- margin-bottom: 3.0pt;
824
- margin-left: 0cm;
825
- line-height: 10.5pt;
826
- mso-pagination: widow-orphan;
827
- font-size: 10.0pt;
828
- mso-bidi-font-size: 11.0pt;
829
- font-family: "Cambria", serif;
830
- mso-fareast-font-family: "Cambria", serif;
831
- mso-bidi-font-family: "Cambria", serif;
832
- mso-ansi-language: EN-GB; }
833
-
834
- .MsoChpDefault {
835
- mso-style-type: export-only;
836
- mso-default-props: yes;
837
- mso-ascii-font-family: "Cambria", serif;
838
- mso-fareast-font-family: "Cambria", serif;
839
- mso-hansi-font-family: "Cambria", serif; }
840
-
841
- /* Page Definitions */
842
- @page {
843
- mso-mirror-margins: yes;
844
- mso-footnote-separator: url("file:///C:/Doc/spec/assets/iso_files/header.html") fs;
845
- mso-footnote-continuation-separator: url("file:///C:/Doc/spec/assets/iso_files/header.html") fcs;
846
- mso-endnote-separator: url("file:///C:/Doc/spec/assets/iso_files/header.html") es;
847
- mso-endnote-continuation-separator: url("file:///C:/Doc/spec/assets/iso_files/header.html") ecs;
848
- mso-facing-pages: yes;
849
- mso-page-orientation: portrait; }
850
- @page WordSection1 {
851
- size: 595.0pt 842.0pt;
852
- margin: 72.0pt 90.0pt 72.0pt 90.0pt;
853
- mso-header-margin: 35.4pt;
854
- mso-footer-margin: 35.4pt;
855
- mso-even-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") eha;
856
- mso-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") ha;
857
- mso-even-footer: url("file:///C:/Doc/spec/assets/iso_files/header.html") efa;
858
- mso-paper-source: 0; }
859
- div.WordSection1 {
860
- page: WordSection1; }
861
-
862
- @page WordSection2 {
863
- size: 595.3pt 841.9pt;
864
- margin: 39.7pt 53.85pt 1.0cm 53.85pt;
865
- mso-header-margin: 35.45pt;
866
- mso-footer-margin: 14.2pt;
867
- mso-page-numbers: roman-lower;
868
- mso-even-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") eh2;
869
- mso-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") h2;
870
- mso-even-footer: url("file:///C:/Doc/spec/assets/iso_files/header.html") ef2;
871
- mso-footer: url("file:///C:/Doc/spec/assets/iso_files/header.html") f2;
872
- mso-paper-source: 0; }
873
- div.WordSection2 {
874
- page: WordSection2; }
875
-
876
- @page WordSection3 {
877
- size: 595.3pt 841.9pt;
878
- margin: 39.7pt 53.85pt 1.0cm 53.85pt;
879
- mso-header-margin: 35.45pt;
880
- mso-footer-margin: 14.2pt;
881
- mso-page-numbers: 1;
882
- mso-even-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") eh2;
883
- mso-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") h2;
884
- mso-even-footer: url("file:///C:/Doc/spec/assets/iso_files/header.html") ef3;
885
- mso-footer: url("file:///C:/Doc/spec/assets/iso_files/header.html") f3;
886
- mso-paper-source: 0; }
887
- div.WordSection3 {
888
- page: WordSection3; }
889
-
890
- @page WordSection4 {
891
- size: 595.3pt 841.9pt;
892
- margin: 39.7pt 53.85pt 1.0cm 53.85pt;
893
- mso-header-margin: 35.45pt;
894
- mso-footer-margin: 14.2pt;
895
- mso-page-numbers: 1;
896
- mso-even-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") eh2;
897
- mso-header: url("file:///C:/Doc/spec/assets/iso_files/header.html") h2;
898
- mso-even-footer: url("file:///C:/Doc/spec/assets/iso_files/header.html") f4;
899
- mso-footer: url("file:///C:/Doc/spec/assets/iso_files/header.html") f4;
900
- mso-paper-source: 0; }
901
- div.colophon {
902
- page: WordSection4; }
903
-
904
- /* List Definitions */
905
- @list l0 {
906
- mso-list-id: 145051656;
907
- mso-list-template-ids: 2112159680; }
908
- @list l0:level1 {
909
- mso-level-number-format: alpha-upper;
910
- mso-level-style-link: ANNEX;
911
- mso-level-suffix: none;
912
- mso-level-text: "Annex\00A0%1";
913
- mso-level-tab-stop: none;
914
- mso-level-number-position: left;
915
- margin-left: 0cm;
916
- text-indent: 0cm;
917
- mso-ansi-font-size: 14.0pt;
918
- mso-bidi-font-size: 14.0pt;
919
- font-family: "Cambria", serif;
920
- mso-bidi-font-family: "Cambria", serif;
921
- mso-ansi-font-weight: bold;
922
- mso-ansi-font-style: normal; }
923
- @list l0:level2 {
924
- mso-level-style-link: a2;
925
- mso-level-text: "%1\.%2";
926
- mso-level-tab-stop: 18.0pt;
927
- mso-level-number-position: left;
928
- margin-left: 0cm;
929
- text-indent: 0cm;
930
- mso-bidi-font-family: "Cambria", serif;
931
- mso-ansi-font-weight: bold;
932
- mso-ansi-font-style: normal; }
933
- @list l0:level3 {
934
- mso-level-style-link: a3;
935
- mso-level-text: "%1\.%2\.%3";
936
- mso-level-tab-stop: 36.0pt;
937
- mso-level-number-position: left;
938
- margin-left: 0cm;
939
- text-indent: 0cm;
940
- mso-bidi-font-family: "Cambria", serif;
941
- mso-ansi-font-weight: bold;
942
- mso-ansi-font-style: normal; }
943
- @list l0:level4 {
944
- mso-level-style-link: a4;
945
- mso-level-text: "%1\.%2\.%3\.%4";
946
- mso-level-tab-stop: 54.0pt;
947
- mso-level-number-position: left;
948
- margin-left: 0cm;
949
- text-indent: 0cm;
950
- mso-bidi-font-family: "Cambria", serif;
951
- mso-ansi-font-weight: bold;
952
- mso-ansi-font-style: normal; }
953
- @list l0:level5 {
954
- mso-level-style-link: a5;
955
- mso-level-text: "%1\.%2\.%3\.%4\.%5";
956
- mso-level-tab-stop: 54.0pt;
957
- mso-level-number-position: left;
958
- margin-left: 0cm;
959
- text-indent: 0cm;
960
- mso-bidi-font-family: "Cambria", serif;
961
- mso-ansi-font-weight: bold;
962
- mso-ansi-font-style: normal; }
963
- @list l0:level6 {
964
- mso-level-style-link: a6;
965
- mso-level-text: "%1\.%2\.%3\.%4\.%5\.%6";
966
- mso-level-tab-stop: 72.0pt;
967
- mso-level-number-position: left;
968
- margin-left: 0cm;
969
- text-indent: 0cm;
970
- mso-bidi-font-family: "Cambria", serif;
971
- mso-ansi-font-weight: bold;
972
- mso-ansi-font-style: normal; }
973
- @list l0:level7 {
974
- mso-level-reset-level: level2;
975
- mso-level-suffix: space;
976
- mso-level-text: "Figure\00A0%1\.%7\00A0—";
977
- mso-level-tab-stop: none;
978
- mso-level-number-position: left;
979
- margin-left: 0cm;
980
- text-indent: 0cm;
981
- mso-bidi-font-family: "Cambria", serif; }
982
- @list l0:level8 {
983
- mso-level-reset-level: level2;
984
- mso-level-suffix: space;
985
- mso-level-text: "Table\00A0%1\.%8\00A0—";
986
- mso-level-tab-stop: none;
987
- mso-level-number-position: left;
988
- margin-left: 0cm;
989
- text-indent: 0cm;
990
- mso-bidi-font-family: "Cambria", serif; }
991
- @list l0:level9 {
992
- mso-level-number-format: roman-lower;
993
- mso-level-text: "\(%9\)";
994
- mso-level-tab-stop: 306.0pt;
995
- mso-level-number-position: left;
996
- margin-left: 0cm;
997
- text-indent: 0cm;
998
- mso-bidi-font-family: "Cambria", serif; }
999
- @list l1 {
1000
- mso-list-id: 866942648;
1001
- mso-list-template-ids: -1756330000; }
1002
- @list l1:level1 {
1003
- mso-level-style-link: "Heading 1";
1004
- mso-level-text: "%1";
1005
- mso-level-tab-stop: 21.6pt;
1006
- mso-level-number-position: left;
1007
- margin-left: 21.6pt;
1008
- text-indent: -21.6pt;
1009
- mso-bidi-font-family: "Cambria", serif;
1010
- mso-ansi-font-weight: bold;
1011
- mso-ansi-font-style: normal; }
1012
- @list l1:level2 {
1013
- mso-level-style-link: "Heading 2";
1014
- mso-level-text: "%1\.%2";
1015
- mso-level-tab-stop: 18.0pt;
1016
- mso-level-number-position: left;
1017
- margin-left: 0cm;
1018
- text-indent: 0cm;
1019
- mso-bidi-font-family: "Cambria", serif;
1020
- mso-ansi-font-weight: bold;
1021
- mso-ansi-font-style: normal; }
1022
- @list l1:level3 {
1023
- mso-level-style-link: "Heading 3";
1024
- mso-level-text: "%1\.%2\.%3";
1025
- mso-level-tab-stop: 36.0pt;
1026
- mso-level-number-position: left;
1027
- margin-left: 0cm;
1028
- text-indent: 0cm;
1029
- mso-bidi-font-family: "Cambria", serif;
1030
- mso-ansi-font-weight: bold;
1031
- mso-ansi-font-style: normal; }
1032
- @list l1:level4 {
1033
- mso-level-style-link: "Heading 4";
1034
- mso-level-text: "%1\.%2\.%3\.%4";
1035
- mso-level-tab-stop: 54.0pt;
1036
- mso-level-number-position: left;
1037
- margin-left: 0cm;
1038
- text-indent: 0cm;
1039
- mso-bidi-font-family: "Cambria", serif;
1040
- mso-ansi-font-weight: bold;
1041
- mso-ansi-font-style: normal; }
1042
- @list l1:level5 {
1043
- mso-level-style-link: "Heading 5";
1044
- mso-level-text: "%1\.%2\.%3\.%4\.%5";
1045
- mso-level-tab-stop: 54.0pt;
1046
- mso-level-number-position: left;
1047
- margin-left: 0cm;
1048
- text-indent: 0cm;
1049
- mso-bidi-font-family: "Cambria", serif;
1050
- mso-ansi-font-weight: bold;
1051
- mso-ansi-font-style: normal; }
1052
- @list l1:level6 {
1053
- mso-level-style-link: "Heading 6";
1054
- mso-level-text: "%1\.%2\.%3\.%4\.%5\.%6";
1055
- mso-level-tab-stop: 72.0pt;
1056
- mso-level-number-position: left;
1057
- margin-left: 0cm;
1058
- text-indent: 0cm;
1059
- mso-bidi-font-family: "Cambria", serif;
1060
- mso-ansi-font-weight: bold;
1061
- mso-ansi-font-style: normal; }
1062
- @list l1:level7 {
1063
- mso-level-text: "%1\.%2\.%3\.%4\.%5\.%6\.%7";
1064
- mso-level-tab-stop: 72.0pt;
1065
- mso-level-number-position: left;
1066
- margin-left: 0cm;
1067
- text-indent: 0cm;
1068
- mso-bidi-font-family: "Cambria", serif; }
1069
- @list l1:level8 {
1070
- mso-level-text: "%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
1071
- mso-level-tab-stop: 90.0pt;
1072
- mso-level-number-position: left;
1073
- margin-left: 0cm;
1074
- text-indent: 0cm;
1075
- mso-bidi-font-family: "Cambria", serif; }
1076
- @list l1:level9 {
1077
- mso-level-text: "%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
1078
- mso-level-tab-stop: 90.0pt;
1079
- mso-level-number-position: left;
1080
- margin-left: 0cm;
1081
- text-indent: 0cm;
1082
- mso-bidi-font-family: "Cambria", serif; }
1083
- /* ordered list */
1084
- @list l2 {
1085
- mso-list-id: 525294607;
1086
- mso-list-template-ids: 67633181; }
1087
- @list l2:level1 {
1088
- mso-level-number-format: alpha-lower;
1089
- mso-level-text: "%1\)";
1090
- mso-level-tab-stop: none;
1091
- mso-level-number-position: left;
1092
- margin-left: 18.0pt;
1093
- text-indent: -18.0pt; }
1094
- @list l2:level2 {
1095
- mso-level-text: "%2\)";
1096
- mso-level-tab-stop: none;
1097
- mso-level-number-position: left;
1098
- margin-left: 36.0pt;
1099
- text-indent: -18.0pt; }
1100
- @list l2:level3 {
1101
- mso-level-number-format: roman-lower;
1102
- mso-level-text: "%3\)";
1103
- mso-level-tab-stop: none;
1104
- mso-level-number-position: left;
1105
- margin-left: 54.0pt;
1106
- text-indent: -18.0pt; }
1107
- @list l2:level4 {
1108
- mso-level-number-format: alpha-upper;
1109
- mso-level-text: "%4\)";
1110
- mso-level-tab-stop: none;
1111
- mso-level-number-position: left;
1112
- margin-left: 72.0pt;
1113
- text-indent: -18.0pt; }
1114
- @list l2:level5 {
1115
- mso-level-number-format: roman-upper;
1116
- mso-level-text: "%5\)";
1117
- mso-level-tab-stop: none;
1118
- mso-level-number-position: left;
1119
- margin-left: 90.0pt;
1120
- text-indent: -18.0pt; }
1121
- @list l2:level6 {
1122
- mso-level-number-format: alpha-lower;
1123
- mso-level-text: "%6\)";
1124
- mso-level-tab-stop: none;
1125
- mso-level-number-position: left;
1126
- margin-left: 108.0pt;
1127
- text-indent: -18.0pt; }
1128
- @list l2:level7 {
1129
- mso-level-tab-stop: none;
1130
- mso-level-text: "%7\)";
1131
- mso-level-number-position: left;
1132
- margin-left: 126.0pt;
1133
- text-indent: -18.0pt; }
1134
- @list l2:level8 {
1135
- mso-level-number-format: roman-lower;
1136
- mso-level-text: "%8\)";
1137
- mso-level-tab-stop: none;
1138
- mso-level-number-position: left;
1139
- margin-left: 144.0pt;
1140
- text-indent: -18.0pt; }
1141
- @list l2:level9 {
1142
- mso-level-number-format: alpha-upper;
1143
- mso-level-text: "%9\)";
1144
- mso-level-tab-stop: none;
1145
- mso-level-number-position: left;
1146
- margin-left: 162.0pt;
1147
- text-indent: -18.0pt; }
1148
- /* Unordered list */
1149
- @list l3 {
1150
- mso-list-id: 1308196397;
1151
- mso-list-type: hybrid;
1152
- mso-list-template-ids: -277327948 -457018030 67633155 67633157 67633153 67633155 67633157 67633153 67633155 67633157; }
1153
- @list l3:level1 {
1154
- mso-level-number-format: bullet;
1155
- mso-level-text: —;
1156
- mso-level-tab-stop: none;
1157
- mso-level-number-position: left;
1158
- margin-left: 18.0pt;
1159
- text-indent: -18.0pt; }
1160
- @list l3:level2 {
1161
- mso-level-number-format: bullet;
1162
- mso-level-text: —;
1163
- mso-level-tab-stop: none;
1164
- mso-level-number-position: left;
1165
- margin-left: 36.0pt;
1166
- text-indent: -18.0pt; }
1167
- @list l3:level3 {
1168
- mso-level-number-format: bullet;
1169
- mso-level-text: —;
1170
- mso-level-tab-stop: none;
1171
- mso-level-number-position: left;
1172
- margin-left: 54.0pt;
1173
- text-indent: -18.0pt; }
1174
- @list l3:level4 {
1175
- mso-level-number-format: bullet;
1176
- mso-level-text: —;
1177
- mso-level-tab-stop: none;
1178
- mso-level-number-position: left;
1179
- margin-left: 72.0pt;
1180
- text-indent: -18.0pt; }
1181
- @list l3:level5 {
1182
- mso-level-number-format: bullet;
1183
- mso-level-text: —;
1184
- mso-level-tab-stop: none;
1185
- mso-level-number-position: left;
1186
- margin-left: 90.0pt;
1187
- text-indent: -18.0pt; }
1188
- @list l3:level6 {
1189
- mso-level-number-format: bullet;
1190
- mso-level-text: —;
1191
- mso-level-tab-stop: none;
1192
- mso-level-number-position: left;
1193
- margin-left: 108.0pt;
1194
- text-indent: -18.0pt; }
1195
- @list l3:level7 {
1196
- mso-level-number-format: bullet;
1197
- mso-level-text: —;
1198
- mso-level-tab-stop: none;
1199
- mso-level-number-position: left;
1200
- margin-left: 126.0pt;
1201
- text-indent: -18.0pt; }
1202
- @list l3:level8 {
1203
- mso-level-number-format: bullet;
1204
- mso-level-text: —;
1205
- mso-level-tab-stop: none;
1206
- mso-level-number-position: left;
1207
- margin-left: 144.0pt;
1208
- text-indent: -18.0pt; }
1209
- @list l3:level9 {
1210
- mso-level-number-format: bullet;
1211
- mso-level-text: —;
1212
- mso-level-tab-stop: none;
1213
- mso-level-number-position: left;
1214
- margin-left: 162.0pt;
1215
- text-indent: -18.0pt; }
1216
- table.MsoNormalTable {
1217
- mso-style-name: "Table Normal";
1218
- mso-tstyle-rowband-size: 0;
1219
- mso-tstyle-colband-size: 0;
1220
- mso-style-noshow: yes;
1221
- mso-style-priority: 99;
1222
- mso-style-parent: "";
1223
- mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;
1224
- mso-para-margin: 0cm;
1225
- mso-para-margin-bottom: .0001pt;
1226
- mso-pagination: widow-orphan;
1227
- font-size: 10.0pt;
1228
- font-family: "Cambria", serif; }
1229
-
1230
- br.section {
1231
- page-break-before: always;
1232
- mso-break-type: section-break; }
1233
-
1234
- br.pagebreak {
1235
- page-break-before: always;
1236
- mso-special-character: line-break; }
1237
-
1238
- ol {
1239
- margin-bottom: 0cm;
1240
- margin-left: 18pt; }
1241
-
1242
- ul {
1243
- margin-bottom: 0cm;
1244
- margin-left: 18pt; }
25
+ /* one empty stylesheet */
1245
26
 
1246
27
  -->
1247
28
  </style>
@@ -2069,11 +850,11 @@ Switzerland<p class="MsoNormal"></p></span></p>
2069
850
  <p class="MsoToc1"><span lang="EN-GB" xml:lang="EN-GB"><span style="mso-element:field-begin"></span><span style="mso-spacerun:yes">&#xA0;</span>TOC
2070
851
  \o "1-2" \h \z \u <span style="mso-element:field-separator"></span></span>
2071
852
  <span class="MsoHyperlink"><span lang="EN-GB" style="mso-no-proof:yes" xml:lang="EN-GB">
2072
- <a href="#_Toc938931447">Foreword<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
853
+ <a href="#_Toc835854273">Foreword<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
2073
854
  <span style="mso-tab-count:1 dotted">. </span>
2074
855
  </span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
2075
856
  <span style="mso-element:field-begin"></span></span>
2076
- <span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"> PAGEREF _Toc938931447 \h </span>
857
+ <span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"> PAGEREF _Toc835854273 \h </span>
2077
858
  <span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-separator"></span></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">1</span>
2078
859
  <span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-end"></span></span></a></span></span></p>
2079
860
 
@@ -2106,7 +887,7 @@ Switzerland<p class="MsoNormal"></p></span></p>
2106
887
  </html>
2107
888
 
2108
889
 
2109
- ------=_NextPart_94e7f467.3c17.4d67
890
+ ------=_NextPart_933e0e5f.7f75.40e3
2110
891
  Content-Location: file:///C:/Doc/spec/assets/iso_files/filelist.xml
2111
892
  Content-Transfer-Encoding: base64
2112
893
  Content-Type: application/xml
@@ -2116,7 +897,7 @@ ICAgICAgIDxvOk1haW5GaWxlIEhSZWY9Ii4uL3NwZWMvYXNzZXRzL2lzby5odG0iLz4gIDxvOkZp
2116
897
  bGUgSFJlZj0iZmlsZWxpc3QueG1sIi8+CiAgPG86RmlsZSBIUmVmPSJoZWFkZXIuaHRtbCIvPgo8
2117
898
  L3htbD4K
2118
899
 
2119
- ------=_NextPart_94e7f467.3c17.4d67
900
+ ------=_NextPart_933e0e5f.7f75.40e3
2120
901
  Content-Location: file:///C:/Doc/spec/assets/iso_files/header.html
2121
902
  Content-Transfer-Encoding: base64
2122
903
  Content-Type: text/html charset="utf-8"
@@ -2309,4 +1090,4 @@ cD4NCg0KPHAgY2xhc3M9TXNvRm9vdGVyPjxzcGFuIGxhbmc9RU4tQVUgc3R5bGU9J2ZvbnQtc2l6
2309
1090
  ZToxMC4wcHQ7Jz7CqQ0KJm5ic3A7Jm5ic3A74oCTIEFsbCByaWdodHMgcmVzZXJ2ZWQ8bzpwPjwv
2310
1091
  bzpwPjwvc3Bhbj48L3A+DQoNCjwvZGl2Pg0KDQoNCg0KPC9ib2R5Pg0KDQo8L2h0bWw+DQo=
2311
1092
 
2312
- ------=_NextPart_94e7f467.3c17.4d67--
1093
+ ------=_NextPart_933e0e5f.7f75.40e3--