metanorma-m3aawg 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/macos.yml +39 -0
  3. data/.github/workflows/ubuntu.yml +53 -0
  4. data/.github/workflows/windows.yml +41 -0
  5. data/.gitignore +1 -0
  6. data/.hound.yml +3 -0
  7. data/.rubocop.yml +10 -0
  8. data/CODE_OF_CONDUCT.md +74 -0
  9. data/Gemfile +11 -0
  10. data/LICENSE +25 -0
  11. data/README.adoc +67 -0
  12. data/Rakefile +6 -0
  13. data/bin/console +14 -0
  14. data/bin/rspec +18 -0
  15. data/bin/setup +8 -0
  16. data/lib/asciidoctor/m3aawg.rb +5 -0
  17. data/lib/asciidoctor/m3aawg/basicdoc.rng +1059 -0
  18. data/lib/asciidoctor/m3aawg/biblio.rng +1237 -0
  19. data/lib/asciidoctor/m3aawg/boilerplate.xml +44 -0
  20. data/lib/asciidoctor/m3aawg/converter.rb +142 -0
  21. data/lib/asciidoctor/m3aawg/isodoc.rng +1504 -0
  22. data/lib/asciidoctor/m3aawg/m3d.rng +109 -0
  23. data/lib/asciidoctor/m3aawg/reqt.rng +194 -0
  24. data/lib/asciidoctor/m3aawg/validate.rb +22 -0
  25. data/lib/isodoc/m3aawg/base_convert.rb +54 -0
  26. data/lib/isodoc/m3aawg/html/dots-w@2x.png +0 -0
  27. data/lib/isodoc/m3aawg/html/dots@2x.png +0 -0
  28. data/lib/isodoc/m3aawg/html/header.html +328 -0
  29. data/lib/isodoc/m3aawg/html/html_m3d_intro.html +14 -0
  30. data/lib/isodoc/m3aawg/html/html_m3d_titlepage.html +81 -0
  31. data/lib/isodoc/m3aawg/html/htmlstyle.scss +733 -0
  32. data/lib/isodoc/m3aawg/html/logo.jpg +0 -0
  33. data/lib/isodoc/m3aawg/html/m3-logo.png +0 -0
  34. data/lib/isodoc/m3aawg/html/m3d.scss +743 -0
  35. data/lib/isodoc/m3aawg/html/scripts.html +71 -0
  36. data/lib/isodoc/m3aawg/html/word_m3d_intro.html +10 -0
  37. data/lib/isodoc/m3aawg/html/word_m3d_titlepage.html +41 -0
  38. data/lib/isodoc/m3aawg/html/wordstyle.scss +1175 -0
  39. data/lib/isodoc/m3aawg/html_convert.rb +63 -0
  40. data/lib/isodoc/m3aawg/m3d.report.xsl +3299 -0
  41. data/lib/isodoc/m3aawg/metadata.rb +53 -0
  42. data/lib/isodoc/m3aawg/pdf_convert.rb +22 -0
  43. data/lib/isodoc/m3aawg/presentation_xml_convert.rb +10 -0
  44. data/lib/isodoc/m3aawg/word_convert.rb +61 -0
  45. data/lib/metanorma-m3aawg.rb +12 -0
  46. data/lib/metanorma/m3aawg.rb +7 -0
  47. data/lib/metanorma/m3aawg/processor.rb +54 -0
  48. data/lib/metanorma/m3aawg/version.rb +5 -0
  49. data/metanorma-m3d.gemspec +51 -0
  50. metadata +334 -0
@@ -0,0 +1,71 @@
1
+ <script>
2
+ $("#toc").on('click', 'li', function(e) {
3
+ $(this).parent().find('li.toc-active').removeClass('toc-active');
4
+ $(this).addClass('toc-active');
5
+ });
6
+ </script>
7
+
8
+ <script>
9
+ //TOC toggle animation
10
+ $('#toggle').on('click', function(){
11
+ if( $('nav').is(':visible') ) {
12
+ $('nav').animate({ 'left': '-353px' }, 'slow', function(){
13
+ $('nav').hide();
14
+ });
15
+ $('.container').animate({ 'padding-left': '31px' }, 'slow');
16
+ }
17
+ else {
18
+ $('nav').show();
19
+ $('nav').animate({ 'left': '0px' }, 'slow');
20
+ $('.container').animate({ 'padding-left': '360px' }, 'slow');
21
+ }
22
+ });
23
+ </script>
24
+
25
+ <script>
26
+ // Scroll to top button
27
+ window.onscroll = function() {scrollFunction()};
28
+
29
+ function scrollFunction() {
30
+ if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
31
+ document.getElementById("myBtn").style.display = "block";
32
+ } else {
33
+ document.getElementById("myBtn").style.display = "none";
34
+ }
35
+ }
36
+
37
+ // When the user clicks on the button, scroll to the top of the document
38
+ function topFunction() {
39
+ document.body.scrollTop = 0;
40
+ document.documentElement.scrollTop = 0;
41
+ }
42
+ </script>
43
+
44
+ <script>
45
+ // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
46
+ //
47
+ // AnchorJS - v4.2.2 - 2020-04-20
48
+ // https://www.bryanbraun.com/anchorjs/
49
+ // Copyright (c) 2020 Bryan Braun; Licensed MIT
50
+ //
51
+ // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
52
+ !function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function f(A){A.icon=A.hasOwnProperty("icon")?A.icon:"",A.visible=A.hasOwnProperty("visible")?A.visible:"hover",A.placement=A.hasOwnProperty("placement")?A.placement:"right",A.ariaLabel=A.hasOwnProperty("ariaLabel")?A.ariaLabel:"Anchor",A.class=A.hasOwnProperty("class")?A.class:"",A.base=A.hasOwnProperty("base")?A.base:"",A.truncate=A.hasOwnProperty("truncate")?Math.floor(A.truncate):64,A.titleText=A.hasOwnProperty("titleText")?A.titleText:""}function p(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new Error("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],f(this.options),this.isTouchDevice=function(){return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var e,t,i,n,o,s,a,r,c,h,l,u,d=[];if(f(this.options),"touch"===(l=this.options.visible)&&(l=this.isTouchDevice()?"always":"hover"),0===(e=p(A=A||"h2, h3, h4, h5, h6")).length)return this;for(!function(){if(null!==document.head.querySelector("style.anchorjs"))return;var A,e=document.createElement("style");e.className="anchorjs",e.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(e):document.head.insertBefore(e,A);e.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",e.sheet.cssRules.length),e.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",e.sheet.cssRules.length),e.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",e.sheet.cssRules.length),e.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',e.sheet.cssRules.length)}(),t=document.querySelectorAll("[id]"),i=[].map.call(t,function(A){return A.id}),o=0;o<e.length;o++)if(this.hasAnchorJSLink(e[o]))d.push(o);else{if(e[o].hasAttribute("id"))n=e[o].getAttribute("id");else if(e[o].hasAttribute("data-anchor-id"))n=e[o].getAttribute("data-anchor-id");else{for(c=r=this.urlify(e[o].textContent),a=0;void 0!==s&&(c=r+"-"+a),a+=1,-1!==(s=i.indexOf(c)););s=void 0,i.push(c),e[o].setAttribute("id",c),n=c}(h=document.createElement("a")).className="anchorjs-link "+this.options.class,h.setAttribute("aria-label",this.options.ariaLabel),h.setAttribute("data-anchorjs-icon",this.options.icon),this.options.titleText&&(h.title=this.options.titleText),u=document.querySelector("base")?window.location.pathname+window.location.search:"",u=this.options.base||u,h.href=u+"#"+n,"always"===l&&(h.style.opacity="1"),""===this.options.icon&&(h.style.font="1em/1 anchorjs-icons","left"===this.options.placement&&(h.style.lineHeight="inherit")),"left"===this.options.placement?(h.style.position="absolute",h.style.marginLeft="-1em",h.style.paddingRight="0.5em",e[o].insertBefore(h,e[o].firstChild)):(h.style.paddingLeft="0.375em",e[o].appendChild(h))}for(o=0;o<d.length;o++)e.splice(d[o]-o,1);return this.elements=this.elements.concat(e),this},this.remove=function(A){for(var e,t,i=p(A),n=0;n<i.length;n++)(t=i[n].querySelector(".anchorjs-link"))&&(-1!==(e=this.elements.indexOf(i[n]))&&this.elements.splice(e,1),i[n].removeChild(t));return this},this.removeAll=function(){this.remove(this.elements)},this.urlify=function(A){return this.options.truncate||f(this.options),A.trim().replace(/\'/gi,"").replace(/[& +$,:;=?@"#{}|^~[`%!'<>\]\.\/\(\)\*\\\n\t\b\v]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),t=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||t||!1}}});
53
+ // @license-end
54
+ </script>
55
+ <script>
56
+ /*
57
+ $(document).ready(function() {
58
+ $('[id^=toc]').each(function ()
59
+ {
60
+ var currentToc = $(this);
61
+ var url = window.location.href;
62
+ currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
63
+ });
64
+ });
65
+ */
66
+ anchors.options = {
67
+ placement: 'left'
68
+ };
69
+ anchors.add('h1, h2, h3, h4');
70
+ </script>
71
+
@@ -0,0 +1,10 @@
1
+ <div class="coverpage">
2
+ <p class="zzSTDPreTitle">Messaging, Malware and Mobile Anti-Abuse Working Group</p>
3
+ <p class="zzSTDTitle1">{{doctitle}}</p>
4
+ <p><b>{{revdate_monthyear}}</b></p>
5
+ </div>
6
+
7
+
8
+ <p class="zzContents" style='margin-top:0cm'><span lang="EN-GB">Contents</span></p>
9
+
10
+ WORDTOC
@@ -0,0 +1,41 @@
1
+ <p class="MsoNormal" align="right" style='text-align:right'><b style='mso-bidi-font-weight:
2
+ normal'><span lang="EN-GB" style='font-size:14.0pt;mso-no-proof:yes'>{{ docnumber }} {{ draftinfo }}</span></b><b
3
+ style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:14.0pt'><o:p></o:p></span></b></p>
4
+
5
+ <p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
6
+ style='mso-no-proof:yes'>{{ agency }}&nbsp;</span><span lang="EN-GB"><span
7
+ style='mso-no-proof:yes'>{{ editorialgroup | join: "/" }}</span></p>
8
+
9
+ <p class="MsoNormal" align="right" style='margin-bottom:100.0pt;text-align:right'><a
10
+ name="CVP_Secretariat_Loca"><span lang="EN-GB">Secretariat</span></a><span
11
+ lang="EN-GB">: <span style='mso-no-proof:yes'>{{ secretariat }}</span></span></p>
12
+
13
+ <p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt'><b
14
+ style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:16.0pt'>{{ doctitle }}
15
+ </span></b><br/><span lang="EN-GB" style='font-size:16.0pt'>{{ docsubtitle }}</span></p>
16
+
17
+ <p class="MsoNormal" style='margin-top:100.0pt'><span lang="EN-GB"><o:p>&nbsp;</o:p></span></p>
18
+
19
+ <div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
20
+ mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
21
+ margin-left:4.25pt;margin-right:4.25pt'>
22
+
23
+ <p class="MsoNormal" align="center" style='text-align:center;border:none;
24
+ mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span
25
+ lang="EN-GB" style='font-size:40.0pt'>{% if unpublished %}{{ stage }}{% endif %}<o:p></o:p></span></p>
26
+
27
+ </div>
28
+
29
+ <p class="MsoNormal" style='margin-bottom:6.0pt'><span lang="EN-GB"><o:p>&nbsp;</o:p></span></p>
30
+
31
+ {% if unpublished %}
32
+ <div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
33
+ mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
34
+ margin-left:4.25pt;margin-right:4.25pt'>
35
+
36
+ <div id="boilerplate-license-destination"/>
37
+
38
+ </div>
39
+ {% endif %}
40
+
41
+
@@ -0,0 +1,1175 @@
1
+ /* Font Definitions */
2
+ @font-face
3
+ {font-family:Wingdings;
4
+ panose-1:5 0 0 0 0 0 0 0 0 0;
5
+ mso-font-charset:2;
6
+ mso-generic-font-family:decorative;
7
+ mso-font-pitch:variable;
8
+ mso-font-signature:0 268435456 0 0 -2147483648 0;}
9
+ @font-face
10
+ {font-family:"MS Mincho";
11
+ panose-1:2 2 6 9 4 2 5 8 3 4;
12
+ mso-font-alt:"MS 明朝";
13
+ mso-font-charset:128;
14
+ mso-generic-font-family:modern;
15
+ mso-font-pitch:fixed;
16
+ mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}
17
+ @font-face
18
+ {font-family:"Cambria Math";
19
+ panose-1:2 4 5 3 5 4 6 3 2 4;
20
+ mso-font-charset:0;
21
+ mso-generic-font-family:roman;
22
+ mso-font-pitch:variable;
23
+ mso-font-signature:-536870145 1107305727 0 0 415 0;}
24
+ @font-face
25
+ {font-family:"Palatino Linotype";
26
+ panose-1:2 4 5 2 5 5 5 3 3 4;
27
+ mso-font-charset:0;
28
+ mso-generic-font-family:roman;
29
+ mso-font-pitch:variable;
30
+ mso-font-signature:-536870265 1073741843 0 0 415 0;}
31
+ @font-face
32
+ {font-family:Garamond;
33
+ panose-1:2 2 4 4 3 3 1 1 8 3;
34
+ mso-font-charset:0;
35
+ mso-generic-font-family:roman;
36
+ mso-font-pitch:variable;
37
+ mso-font-signature:647 0 0 0 159 0;}
38
+ @font-face
39
+ {font-family:Tahoma;
40
+ panose-1:2 11 6 4 3 5 4 4 2 4;
41
+ mso-font-charset:0;
42
+ mso-generic-font-family:swiss;
43
+ mso-font-pitch:variable;
44
+ mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
45
+ @font-face
46
+ {font-family:Times;
47
+ panose-1:2 0 5 0 0 0 0 0 0 0;
48
+ mso-font-charset:0;
49
+ mso-generic-font-family:auto;
50
+ mso-font-pitch:variable;
51
+ mso-font-signature:-536870145 1342185562 0 0 415 0;}
52
+ @font-face
53
+ {font-family:"Wingdings 2";
54
+ panose-1:5 2 1 2 1 5 7 7 7 7;
55
+ mso-font-charset:2;
56
+ mso-generic-font-family:decorative;
57
+ mso-font-pitch:variable;
58
+ mso-font-signature:0 268435456 0 0 -2147483648 0;}
59
+ @font-face
60
+ {font-family:"\@MS Mincho";
61
+ panose-1:2 2 6 9 4 2 5 8 3 4;
62
+ mso-font-charset:128;
63
+ mso-generic-font-family:modern;
64
+ mso-font-pitch:fixed;
65
+ mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}
66
+ p.MsoNormal, li.MsoNormal, div.MsoNormal
67
+ {mso-style-unhide:no;
68
+ mso-style-qformat:yes;
69
+ mso-style-parent:"";
70
+ margin:0cm;
71
+ margin-bottom:12.0pt;
72
+ mso-pagination:widow-orphan;
73
+ font-size:11.0pt;
74
+ font-family:$bodyfont;
75
+ mso-fareast-font-family:"Times New Roman";
76
+ mso-ansi-language:EN-US;
77
+ mso-fareast-language:EN-US;}
78
+ p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
79
+ {mso-style-priority:34;
80
+ mso-style-unhide:no;
81
+ mso-style-qformat:yes;
82
+ margin-top:0cm;
83
+ margin-right:0cm;
84
+ margin-bottom:12.0pt;
85
+ /* do not put in margin-left, it is specific to list level */
86
+ mso-add-space:auto;
87
+ mso-pagination:widow-orphan;
88
+ font-size:11.0pt;
89
+ font-family:$bodyfont;
90
+ mso-ansi-language:EN-AU;
91
+ mso-fareast-language:EN-US;}
92
+ p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
93
+ {mso-style-priority:34;
94
+ mso-style-unhide:no;
95
+ mso-style-qformat:yes;
96
+ mso-style-type:export-only;
97
+ margin-top:0cm;
98
+ margin-right:0cm;
99
+ margin-bottom:12.0pt;
100
+ /* do not put in margin-left, it is specific to list level */
101
+ mso-add-space:auto;
102
+ mso-pagination:widow-orphan;
103
+ font-size:11.0pt;
104
+ font-family:$bodyfont;
105
+ mso-ansi-language:EN-AU;
106
+ mso-fareast-language:EN-US;}
107
+ p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
108
+ {mso-style-priority:34;
109
+ mso-style-unhide:no;
110
+ mso-style-qformat:yes;
111
+ mso-style-type:export-only;
112
+ margin-top:0cm;
113
+ margin-right:0cm;
114
+ margin-bottom:12.0pt;
115
+ /* do not put in margin-left, it is specific to list level */
116
+ mso-add-space:auto;
117
+ mso-pagination:widow-orphan;
118
+ font-size:11.0pt;
119
+ font-family:$bodyfont;
120
+ mso-ansi-language:EN-AU;
121
+ mso-fareast-language:EN-US;}
122
+ p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
123
+ {mso-style-priority:34;
124
+ mso-style-unhide:no;
125
+ mso-style-qformat:yes;
126
+ mso-style-type:export-only;
127
+ margin-top:0cm;
128
+ margin-right:0cm;
129
+ margin-bottom:12.0pt;
130
+ /* do not put in margin-left, it is specific to list level */
131
+ mso-add-space:auto;
132
+ mso-pagination:widow-orphan;
133
+ font-size:11.0pt;
134
+ font-family:$bodyfont;
135
+ mso-ansi-language:EN-AU;
136
+ mso-fareast-language:EN-US;}
137
+
138
+ p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
139
+ {mso-style-noshow:yes;
140
+ mso-style-unhide:no;
141
+ margin:0cm;
142
+ margin-bottom:.0001pt;
143
+ mso-pagination:widow-orphan;
144
+ font-size:10.0pt;
145
+ font-family:$bodyfont;
146
+ mso-fareast-font-family:"Times New Roman";
147
+ mso-ansi-language:EN-US;
148
+ mso-fareast-language:EN-US;}
149
+ p.MsoHeader, li.MsoHeader, div.MsoHeader
150
+ {mso-style-unhide:no;
151
+ margin:0cm;
152
+ margin-bottom:.0001pt;
153
+ mso-pagination:widow-orphan;
154
+ tab-stops:center 216.0pt right 432.0pt;
155
+ font-size:11.0pt;
156
+ font-family:$bodyfont;
157
+ mso-fareast-font-family:"Times New Roman";
158
+ mso-ansi-language:EN-US;
159
+ mso-fareast-language:EN-US;}
160
+ p.MsoHeaderLandscape, li.MsoHeaderLandscape, div.MsoHeaderLandscape
161
+ {mso-style-unhide:no;
162
+ margin:0cm;
163
+ margin-bottom:.0001pt;
164
+ mso-pagination:widow-orphan;
165
+ tab-stops:center 342.1pt right 684.3pt;
166
+ font-size:11.0pt;
167
+ font-family:$bodyfont;
168
+ mso-fareast-font-family:"Times New Roman";
169
+ mso-ansi-language:EN-US;
170
+ mso-fareast-language:EN-US;}
171
+ p.MsoFooter, li.MsoFooter, div.MsoFooter
172
+ {mso-style-unhide:no;
173
+ margin:0cm;
174
+ margin-bottom:.0001pt;
175
+ mso-pagination:widow-orphan;
176
+ tab-stops:center 216.0pt right 432.0pt;
177
+ font-size:11.0pt;
178
+ font-family:$bodyfont;
179
+ mso-fareast-font-family:"Times New Roman";
180
+ mso-ansi-language:EN-US;
181
+ mso-fareast-language:EN-US;}
182
+ p.MsoFooterLandscape, li.MsoFooterLandscape, div.MsoFooterLandscape
183
+ {mso-style-unhide:no;
184
+ margin:0cm;
185
+ margin-bottom:.0001pt;
186
+ mso-pagination:widow-orphan;
187
+ tab-stops:center 342.1pt right 684.3pt;
188
+ font-size:11.0pt;
189
+ font-family:$bodyfont;
190
+ mso-fareast-font-family:"Times New Roman";
191
+ mso-ansi-language:EN-US;
192
+ mso-fareast-language:EN-US;}
193
+ span.MsoCommentReference
194
+ {mso-style-noshow:yes;
195
+ mso-style-unhide:no;
196
+ mso-style-parent:"";
197
+ mso-ansi-font-size:8.0pt;
198
+ mso-bidi-font-size:8.0pt;}
199
+ p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
200
+ {mso-style-unhide:no;
201
+ margin-top:9.0pt;
202
+ margin-right:0cm;
203
+ margin-bottom:0cm;
204
+ margin-left:0cm;
205
+ margin-bottom:.0001pt;
206
+ mso-pagination:widow-orphan;
207
+ font-size:12.0pt;
208
+ font-family:$bodyfont;
209
+ mso-fareast-font-family:"Times New Roman";
210
+ mso-bidi-font-family:"Times New Roman";
211
+ mso-ansi-language:EN-US;
212
+ mso-fareast-language:EN-US;}
213
+ a:link, span.MsoHyperlink
214
+ {mso-style-unhide:no;
215
+ mso-style-parent:"";
216
+ color:blue;
217
+ text-decoration:underline;
218
+ text-underline:single;}
219
+ a:visited, span.MsoHyperlinkFollowed
220
+ {mso-style-unhide:no;
221
+ mso-style-parent:"";
222
+ color:purple;
223
+ text-decoration:underline;
224
+ text-underline:single;}
225
+ p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
226
+ {mso-style-noshow:yes;
227
+ mso-style-unhide:no;
228
+ mso-style-parent:"Comment Text";
229
+ mso-style-next:"Comment Text";
230
+ margin:0cm;
231
+ margin-bottom:.0001pt;
232
+ mso-pagination:widow-orphan;
233
+ font-size:10.0pt;
234
+ font-family:$bodyfont;
235
+ mso-fareast-font-family:"Times New Roman";
236
+ mso-ansi-language:EN-US;
237
+ mso-fareast-language:EN-US;
238
+ font-weight:bold;}
239
+ p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
240
+ {mso-style-noshow:yes;
241
+ mso-style-unhide:no;
242
+ margin:0cm;
243
+ margin-bottom:.0001pt;
244
+ mso-pagination:widow-orphan;
245
+ font-size:8.0pt;
246
+ font-family:"Tahoma",sans-serif;
247
+ mso-fareast-font-family:"Times New Roman";
248
+ mso-ansi-language:EN-US;
249
+ mso-fareast-language:EN-US;}
250
+ span.blackgraphtxsidebar
251
+ {mso-style-name:blackgraphtxsidebar;
252
+ mso-style-unhide:no;
253
+ mso-style-parent:"";}
254
+ span.blackgraphtx
255
+ {mso-style-name:blackgraphtx;
256
+ mso-style-unhide:no;
257
+ mso-style-parent:"";}
258
+ .MsoChpDefault
259
+ {mso-style-type:export-only;
260
+ mso-default-props:yes;}
261
+ div.figure, p.figure
262
+ {text-align: center;}
263
+
264
+
265
+
266
+ h1
267
+ {mso-style-priority:1;
268
+ mso-style-unhide:no;
269
+ mso-style-qformat:yes;
270
+ mso-style-link:"Heading 1 Char";
271
+ mso-style-next:Normal;
272
+ margin-top:13.5pt;
273
+ margin-right:0cm;
274
+ margin-bottom:12.0pt;
275
+ margin-left:0cm;
276
+ text-indent:0cm;
277
+ line-height:13.5pt;
278
+ mso-pagination:widow-orphan;
279
+ page-break-after:avoid;
280
+ mso-outline-level:1;
281
+ mso-list:l1 level1 lfo6;
282
+ mso-hyphenate:none;
283
+ tab-stops:20.0pt list 21.6pt left 28.0pt;
284
+ font-size:13.0pt;
285
+ mso-bidi-font-size:11.0pt;
286
+ font-family:$headerfont;
287
+ mso-fareast-font-family:$headerfont;
288
+ mso-font-kerning:0pt;
289
+ mso-ansi-language:EN-GB;
290
+ mso-fareast-language:JA;
291
+ mso-bidi-font-weight:normal;}
292
+ h1.Annex
293
+ {mso-style-priority:1;
294
+ mso-style-unhide:no;
295
+ mso-style-qformat:yes;
296
+ mso-style-link:"Heading 1 Char";
297
+ mso-style-next:Normal;
298
+ margin-top:13.5pt;
299
+ margin-right:0cm;
300
+ margin-bottom:12.0pt;
301
+ margin-left:0cm;
302
+ text-indent:0cm;
303
+ line-height:13.5pt;
304
+ text-align:center;
305
+ mso-pagination:widow-orphan;
306
+ page-break-after:avoid;
307
+ font-weight:normal;
308
+ mso-outline-level:1;
309
+ mso-list:l1 level1 lfo6;
310
+ mso-hyphenate:none;
311
+ tab-stops:20.0pt list 21.6pt left 28.0pt;
312
+ font-size:13.0pt;
313
+ mso-bidi-font-size:11.0pt;
314
+ font-family:$headerfont;
315
+ mso-fareast-font-family:$headerfont;
316
+ mso-font-kerning:0pt;
317
+ mso-ansi-language:EN-GB;
318
+ mso-fareast-language:JA;
319
+ mso-bidi-font-weight:normal;}
320
+ .h2Annex
321
+ {mso-style-priority:2;
322
+ mso-style-unhide:no;
323
+ mso-style-qformat:yes;
324
+ mso-style-parent:"Heading 1";
325
+ mso-style-link:"Heading 2 Char";
326
+ mso-style-next:Normal;
327
+ margin-top:3.0pt;
328
+ margin-right:0cm;
329
+ margin-bottom:12.0pt;
330
+ margin-left:0cm;
331
+ text-indent:0cm;
332
+ line-height:12.5pt;
333
+ mso-pagination:widow-orphan;
334
+ page-break-after:avoid;
335
+ mso-outline-level:2;
336
+ mso-hyphenate:none;
337
+ tab-stops:27.0pt 35.0pt;
338
+ font-size:12.0pt;
339
+ mso-bidi-font-size:11.0pt;
340
+ font-family:$headerfont;
341
+ font-weight:bold;
342
+ mso-fareast-font-family:$headerfont;
343
+ mso-ansi-language:EN-GB;
344
+ mso-fareast-language:JA;
345
+ mso-bidi-font-weight:normal;}
346
+ h2
347
+ {mso-style-priority:2;
348
+ mso-style-unhide:no;
349
+ mso-style-qformat:yes;
350
+ mso-style-parent:"Heading 1";
351
+ mso-style-link:"Heading 2 Char";
352
+ mso-style-next:Normal;
353
+ margin-top:3.0pt;
354
+ margin-right:0cm;
355
+ margin-bottom:12.0pt;
356
+ margin-left:0cm;
357
+ text-indent:0cm;
358
+ line-height:12.5pt;
359
+ mso-pagination:widow-orphan;
360
+ page-break-after:avoid;
361
+ mso-outline-level:2;
362
+ mso-list:l1 level2 lfo6;
363
+ mso-hyphenate:none;
364
+ tab-stops:27.0pt 35.0pt;
365
+ font-size:12.0pt;
366
+ mso-bidi-font-size:11.0pt;
367
+ font-family:$headerfont;
368
+ mso-fareast-font-family:$headerfont;
369
+ mso-ansi-language:EN-GB;
370
+ mso-fareast-language:JA;
371
+ mso-bidi-font-weight:normal;}
372
+ h3
373
+ {mso-style-priority:3;
374
+ mso-style-unhide:no;
375
+ mso-style-qformat:yes;
376
+ mso-style-parent:"Heading 1";
377
+ mso-style-link:"Heading 3 Char";
378
+ mso-style-next:Normal;
379
+ margin-top:3.0pt;
380
+ margin-right:0cm;
381
+ margin-bottom:12.0pt;
382
+ margin-left:0cm;
383
+ text-indent:0cm;
384
+ line-height:12.0pt;
385
+ mso-pagination:widow-orphan;
386
+ page-break-after:avoid;
387
+ mso-outline-level:3;
388
+ mso-list:l1 level3 lfo6;
389
+ mso-hyphenate:none;
390
+ tab-stops:list 36.0pt left 44.0pt;
391
+ font-size:11.0pt;
392
+ font-family:$headerfont;
393
+ mso-fareast-font-family:$headerfont;
394
+ mso-ansi-language:EN-GB;
395
+ mso-fareast-language:JA;
396
+ mso-bidi-font-weight:normal;}
397
+ h4
398
+ {mso-style-priority:4;
399
+ mso-style-unhide:no;
400
+ mso-style-qformat:yes;
401
+ mso-style-parent:"Heading 3";
402
+ mso-style-link:"Heading 4 Char";
403
+ mso-style-next:Normal;
404
+ margin-top:3.0pt;
405
+ margin-right:0cm;
406
+ margin-bottom:12.0pt;
407
+ margin-left:0cm;
408
+ text-indent:0cm;
409
+ line-height:12.0pt;
410
+ mso-pagination:widow-orphan;
411
+ page-break-after:avoid;
412
+ mso-outline-level:4;
413
+ mso-list:l1 level4 lfo6;
414
+ mso-hyphenate:none;
415
+ tab-stops:51.05pt 57.0pt 68.0pt;
416
+ font-size:11.0pt;
417
+ font-family:$headerfont;
418
+ mso-fareast-font-family:$headerfont;
419
+ mso-ansi-language:EN-GB;
420
+ mso-fareast-language:JA;
421
+ mso-bidi-font-weight:normal;}
422
+ h5
423
+ {mso-style-priority:5;
424
+ mso-style-unhide:no;
425
+ mso-style-qformat:yes;
426
+ mso-style-parent:"Heading 4";
427
+ mso-style-link:"Heading 5 Char";
428
+ mso-style-next:Normal;
429
+ margin-top:3.0pt;
430
+ margin-right:0cm;
431
+ margin-bottom:12.0pt;
432
+ margin-left:0cm;
433
+ text-indent:0cm;
434
+ line-height:12.0pt;
435
+ mso-pagination:widow-orphan;
436
+ page-break-after:avoid;
437
+ mso-outline-level:5;
438
+ mso-list:l1 level5 lfo6;
439
+ mso-hyphenate:none;
440
+ tab-stops:51.05pt list 54.0pt;
441
+ font-size:11.0pt;
442
+ font-family:$headerfont;
443
+ mso-fareast-font-family:$headerfont;
444
+ mso-ansi-language:EN-GB;
445
+ mso-fareast-language:JA;
446
+ mso-bidi-font-weight:normal;}
447
+ h6
448
+ {mso-style-priority:6;
449
+ mso-style-unhide:no;
450
+ mso-style-qformat:yes;
451
+ mso-style-parent:"Heading 5";
452
+ mso-style-link:"Heading 6 Char";
453
+ mso-style-next:Normal;
454
+ margin-top:3.0pt;
455
+ margin-right:0cm;
456
+ margin-bottom:12.0pt;
457
+ margin-left:0cm;
458
+ text-indent:0cm;
459
+ line-height:12.0pt;
460
+ mso-pagination:widow-orphan;
461
+ page-break-after:avoid;
462
+ mso-outline-level:6;
463
+ mso-list:l1 level6 lfo6;
464
+ mso-hyphenate:none;
465
+ tab-stops:51.05pt list 72.0pt;
466
+ font-size:11.0pt;
467
+ font-family:$headerfont;
468
+ mso-fareast-font-family:$headerfont;
469
+ mso-ansi-language:EN-GB;
470
+ mso-fareast-language:JA;
471
+ mso-bidi-font-weight:normal;}
472
+ p.MsoToc1, li.MsoToc1, div.MsoToc1
473
+ {mso-style-priority:39;
474
+ mso-style-unhide:no;
475
+ mso-style-next:Normal;
476
+ margin-top:6.0pt;
477
+ margin-right:25.0pt;
478
+ margin-bottom:0cm;
479
+ margin-left:36.0pt;
480
+ margin-bottom:.0001pt;
481
+ text-indent:-36.0pt;
482
+ line-height:12.0pt;
483
+ mso-pagination:widow-orphan;
484
+ mso-hyphenate:none;
485
+ tab-stops:20.15pt 36.0pt right dotted 487.6pt;
486
+ font-size:11.0pt;
487
+ font-family:$bodyfont;
488
+ mso-fareast-font-family:$bodyfont;
489
+ mso-bidi-font-family:$bodyfont;
490
+ mso-ansi-language:EN-GB;
491
+ font-weight:bold;
492
+ mso-bidi-font-weight:normal;}
493
+ p.MsoToc2, li.MsoToc2, div.MsoToc2
494
+ {mso-style-noshow:yes;
495
+ mso-style-priority:39;
496
+ mso-style-unhide:no;
497
+ mso-style-parent:"TOC 1";
498
+ mso-style-next:Normal;
499
+ margin-top:0cm;
500
+ margin-right:25.0pt;
501
+ margin-bottom:0cm;
502
+ margin-left:36.0pt;
503
+ margin-bottom:.0001pt;
504
+ text-indent:-36.0pt;
505
+ line-height:12.0pt;
506
+ mso-pagination:widow-orphan;
507
+ mso-hyphenate:none;
508
+ tab-stops:20.15pt 36.0pt right dotted 487.6pt;
509
+ font-size:11.0pt;
510
+ font-family:$bodyfont;
511
+ mso-fareast-font-family:$bodyfont;
512
+ mso-bidi-font-family:$bodyfont;
513
+ mso-ansi-language:EN-GB;
514
+ font-weight:bold;
515
+ mso-bidi-font-weight:normal;}
516
+ p.MsoToc3, li.MsoToc3, div.MsoToc3
517
+ {mso-style-noshow:yes;
518
+ mso-style-priority:39;
519
+ mso-style-unhide:no;
520
+ mso-style-parent:"TOC 2";
521
+ mso-style-next:Normal;
522
+ margin-top:0cm;
523
+ margin-right:25.0pt;
524
+ margin-bottom:0cm;
525
+ margin-left:36.0pt;
526
+ margin-bottom:.0001pt;
527
+ text-indent:-36.0pt;
528
+ line-height:12.0pt;
529
+ mso-pagination:widow-orphan;
530
+ mso-hyphenate:none;
531
+ tab-stops:20.15pt 36.0pt right dotted 487.6pt;
532
+ font-size:11.0pt;
533
+ font-family:$bodyfont;
534
+ mso-fareast-font-family:$bodyfont;
535
+ mso-bidi-font-family:$bodyfont;
536
+ mso-ansi-language:EN-GB;
537
+ font-weight:bold;
538
+ mso-bidi-font-weight:normal;}
539
+ span.MsoFootnoteReference
540
+ {mso-style-priority:99;
541
+ vertical-align:super;}
542
+ p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
543
+ {mso-style-noshow:yes;
544
+ mso-style-priority:99;
545
+ mso-style-link:"Footnote Text Char";
546
+ margin-top:0cm;
547
+ margin-right:0cm;
548
+ margin-bottom:12.0pt;
549
+ margin-left:0cm;
550
+ text-align:justify;
551
+ line-height:12.0pt;
552
+ mso-pagination:widow-orphan;
553
+ tab-stops:20.15pt;
554
+ font-size:10.0pt;
555
+ font-family:$bodyfont;
556
+ mso-fareast-font-family:$bodyfont;
557
+ mso-bidi-font-family:$bodyfont;
558
+ mso-ansi-language:EN-GB;
559
+ mso-fareast-language:EN-US;}
560
+ p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
561
+ {mso-style-noshow:yes;
562
+ mso-style-priority:99;
563
+ mso-style-unhide:no;
564
+ mso-style-link:"Body Text Char";
565
+ margin-top:0cm;
566
+ margin-right:0cm;
567
+ margin-bottom:6.0pt;
568
+ margin-left:0cm;
569
+ text-align:justify;
570
+ line-height:12.0pt;
571
+ mso-pagination:widow-orphan;
572
+ font-size:11.0pt;
573
+ font-family:$bodyfont;
574
+ mso-fareast-font-family:$bodyfont;
575
+ mso-bidi-font-family:$bodyfont;
576
+ mso-ansi-language:EN-GB;}
577
+ span.Heading1Char
578
+ {mso-style-name:"Heading 1 Char";
579
+ mso-style-priority:1;
580
+ mso-style-unhide:no;
581
+ mso-style-locked:yes;
582
+ mso-style-parent:"";
583
+ mso-style-link:"Heading 1";
584
+ mso-ansi-font-size:13.0pt;
585
+ font-family:$headerfont;
586
+ mso-ascii-font-family:Cambria;
587
+ mso-fareast-font-family:$headerfont;
588
+ mso-hansi-font-family:$headerfont;
589
+ mso-ansi-language:EN-GB;
590
+ mso-fareast-language:JA;
591
+ font-weight:bold;
592
+ mso-bidi-font-weight:normal;}
593
+ span.Heading2Char
594
+ {mso-style-name:"Heading 2 Char";
595
+ mso-style-priority:2;
596
+ mso-style-unhide:no;
597
+ mso-style-locked:yes;
598
+ mso-style-parent:"";
599
+ mso-style-link:"Heading 2";
600
+ mso-ansi-font-size:12.0pt;
601
+ font-family:$headerfont;
602
+ mso-ascii-font-family:Cambria;
603
+ mso-fareast-font-family:$headerfont;
604
+ mso-hansi-font-family:$headerfont;
605
+ mso-ansi-language:EN-GB;
606
+ mso-fareast-language:JA;
607
+ font-weight:bold;
608
+ mso-bidi-font-weight:normal;}
609
+ span.Heading3Char
610
+ {mso-style-name:"Heading 3 Char";
611
+ mso-style-priority:3;
612
+ mso-style-unhide:no;
613
+ mso-style-locked:yes;
614
+ mso-style-parent:"";
615
+ mso-style-link:"Heading 3";
616
+ mso-ansi-font-size:11.0pt;
617
+ font-family:$headerfont;
618
+ mso-ascii-font-family:$headerfont;
619
+ mso-fareast-font-family:$headerfont;
620
+ mso-hansi-font-family:$headerfont;
621
+ mso-ansi-language:EN-GB;
622
+ mso-fareast-language:JA;
623
+ font-weight:bold;
624
+ mso-bidi-font-weight:normal;}
625
+ span.Heading4Char
626
+ {mso-style-name:"Heading 4 Char";
627
+ mso-style-priority:4;
628
+ mso-style-unhide:no;
629
+ mso-style-locked:yes;
630
+ mso-style-parent:"";
631
+ mso-style-link:"Heading 4";
632
+ mso-ansi-font-size:11.0pt;
633
+ font-family:$headerfont;
634
+ mso-ascii-font-family:$headerfont;
635
+ mso-fareast-font-family:$headerfont;
636
+ mso-hansi-font-family:$headerfont;
637
+ mso-ansi-language:EN-GB;
638
+ mso-fareast-language:JA;
639
+ font-weight:bold;
640
+ mso-bidi-font-weight:normal;}
641
+ span.Heading5Char
642
+ {mso-style-name:"Heading 5 Char";
643
+ mso-style-priority:5;
644
+ mso-style-unhide:no;
645
+ mso-style-locked:yes;
646
+ mso-style-parent:"";
647
+ mso-style-link:"Heading 5";
648
+ mso-ansi-font-size:11.0pt;
649
+ font-family:$headerfont;
650
+ mso-ascii-font-family:$headerfont;
651
+ mso-fareast-font-family:$headerfont;
652
+ mso-hansi-font-family:$headerfont;
653
+ mso-ansi-language:EN-GB;
654
+ mso-fareast-language:JA;
655
+ font-weight:bold;
656
+ mso-bidi-font-weight:normal;}
657
+ span.Heading6Char
658
+ {mso-style-name:"Heading 6 Char";
659
+ mso-style-priority:6;
660
+ mso-style-unhide:no;
661
+ mso-style-locked:yes;
662
+ mso-style-parent:"";
663
+ mso-style-link:"Heading 6";
664
+ mso-ansi-font-size:11.0pt;
665
+ font-family:$headerfont;
666
+ mso-ascii-font-family:$headerfont;
667
+ mso-fareast-font-family:$headerfont;
668
+ mso-hansi-font-family:$headerfont;
669
+ mso-ansi-language:EN-GB;
670
+ mso-fareast-language:JA;
671
+ font-weight:bold;
672
+ mso-bidi-font-weight:normal;}
673
+ p.Tablebody, li.Tablebody, div.Tablebody
674
+ {mso-style-name:"Table body";
675
+ mso-style-noshow:yes;
676
+ mso-style-unhide:no;
677
+ margin-top:3.0pt;
678
+ margin-right:0cm;
679
+ margin-bottom:3.0pt;
680
+ margin-left:0cm;
681
+ line-height:10.5pt;
682
+ mso-pagination:widow-orphan;
683
+ font-size:10.0pt;
684
+ mso-bidi-font-size:11.0pt;
685
+ font-family:$bodyfont;
686
+ mso-fareast-font-family:$bodyfont;
687
+ mso-bidi-font-family:$bodyfont;
688
+ mso-ansi-language:EN-GB;}
689
+
690
+
691
+ /* Page Definitions */
692
+ @page
693
+ {
694
+ size:612.0pt 792.0pt;
695
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
696
+ mso-header-margin:42.55pt;
697
+ mso-footer-margin:43.1pt;
698
+ mso-facing-pages:yes;
699
+ mso-footnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") fs;
700
+ mso-footnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") fcs;
701
+ mso-endnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") es;
702
+ mso-endnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") ecs;
703
+ }
704
+ @page WordSection1
705
+ {
706
+ size:612.0pt 792.0pt;
707
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
708
+ mso-header-margin:42.55pt;
709
+ mso-footer-margin:43.1pt;
710
+ mso-title-page:yes;
711
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
712
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
713
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
714
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
715
+ mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
716
+ mso-first-footer:url("file:///C:/Doc/FILENAME_files/header.html") ff1;
717
+ mso-paper-source:0;}
718
+ div.WordSection1
719
+ {page:WordSection1;}
720
+ @page WordSection2
721
+ {size:612.0pt 792.0pt;
722
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
723
+ mso-header-margin:42.55pt;
724
+ mso-footer-margin:43.1pt;
725
+ mso-title-page:yes;
726
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
727
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
728
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
729
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
730
+ mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
731
+ mso-first-footer:url("file:///C:/Doc/FILENAME_files/header.html") ff1;
732
+ mso-paper-source:0;}
733
+ @page WordSection2L
734
+ {size:792.0pt 612.0pt;
735
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
736
+ mso-header-margin:42.55pt;
737
+ mso-footer-margin:43.1pt;
738
+ mso-title-page:yes;
739
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1l;
740
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1l;
741
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1l;
742
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1l;
743
+ mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1l;
744
+ mso-first-footer:url("file:///C:/Doc/FILENAME_files/header.html") ff1l;
745
+ mso-paper-source:0;}
746
+ @page WordSection2P
747
+ {size:612.0pt 792.0pt;
748
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
749
+ mso-header-margin:42.55pt;
750
+ mso-footer-margin:43.1pt;
751
+ mso-title-page:yes;
752
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
753
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
754
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
755
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
756
+ mso-first-header:url("file:///C:/Doc/FILENAME_files/header.html") fh1;
757
+ mso-first-footer:url("file:///C:/Doc/FILENAME_files/header.html") ff1;
758
+ mso-paper-source:0;}
759
+ div.WordSection2
760
+ {page:WordSection2;}
761
+ @page WordSection3
762
+ {size:612.0pt 792.0pt;
763
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
764
+ mso-header-margin:42.55pt;
765
+ mso-footer-margin:43.1pt;
766
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
767
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
768
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
769
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
770
+ mso-paper-source:0;}
771
+ @page WordSection3L
772
+ {size:792.0pt 612.0pt;
773
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
774
+ mso-header-margin:42.55pt;
775
+ mso-footer-margin:43.1pt;
776
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1l;
777
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1l;
778
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1l;
779
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1l;
780
+ mso-paper-source:0;}
781
+ @page WordSection3P
782
+ {size:612.0pt 792.0pt;
783
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
784
+ mso-header-margin:42.55pt;
785
+ mso-footer-margin:43.1pt;
786
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
787
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
788
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
789
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f1;
790
+ mso-paper-source:0;}
791
+ div.WordSection3
792
+ {page:WordSection3;}
793
+ @page WordSection4
794
+ {size:612.0pt 792.0pt;
795
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
796
+ mso-header-margin:42.55pt;
797
+ mso-footer-margin:43.1pt;
798
+ mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
799
+ mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
800
+ mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
801
+ mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
802
+ mso-paper-source:0;}
803
+ div.colophon
804
+ {page:WordSection4;}
805
+ /* List Definitions */
806
+ @list l0
807
+ {mso-list-id:145051656;
808
+ mso-list-template-ids:2112159680;}
809
+ @list l0:level1
810
+ {mso-level-number-format:alpha-upper;
811
+ mso-level-style-link:ANNEX;
812
+ mso-level-suffix:none;
813
+ mso-level-text:"Annex\00A0%1";
814
+ mso-level-tab-stop:none;
815
+ mso-level-number-position:left;
816
+ margin-left:0cm;
817
+ text-indent:0cm;
818
+ mso-ansi-font-size:14.0pt;
819
+ mso-bidi-font-size:14.0pt;
820
+ font-family:$bodyfont;
821
+ mso-bidi-font-family:$bodyfont;
822
+ mso-ansi-font-weight:bold;
823
+ mso-ansi-font-style:normal;}
824
+ @list l0:level2
825
+ {mso-level-style-link:a2;
826
+ mso-level-text:"%1\.%2";
827
+ mso-level-tab-stop:18.0pt;
828
+ mso-level-number-position:left;
829
+ margin-left:0cm;
830
+ text-indent:0cm;
831
+ mso-bidi-font-family:$bodyfont;
832
+ mso-ansi-font-weight:bold;
833
+ mso-ansi-font-style:normal;}
834
+ @list l0:level3
835
+ {mso-level-style-link:a3;
836
+ mso-level-text:"%1\.%2\.%3";
837
+ mso-level-tab-stop:36.0pt;
838
+ mso-level-number-position:left;
839
+ margin-left:0cm;
840
+ text-indent:0cm;
841
+ mso-bidi-font-family:$bodyfont;
842
+ mso-ansi-font-weight:bold;
843
+ mso-ansi-font-style:normal;}
844
+ @list l0:level4
845
+ {mso-level-style-link:a4;
846
+ mso-level-text:"%1\.%2\.%3\.%4";
847
+ mso-level-tab-stop:54.0pt;
848
+ mso-level-number-position:left;
849
+ margin-left:0cm;
850
+ text-indent:0cm;
851
+ mso-bidi-font-family:$bodyfont;
852
+ mso-ansi-font-weight:bold;
853
+ mso-ansi-font-style:normal;}
854
+ @list l0:level5
855
+ {mso-level-style-link:a5;
856
+ mso-level-text:"%1\.%2\.%3\.%4\.%5";
857
+ mso-level-tab-stop:54.0pt;
858
+ mso-level-number-position:left;
859
+ margin-left:0cm;
860
+ text-indent:0cm;
861
+ mso-bidi-font-family:$bodyfont;
862
+ mso-ansi-font-weight:bold;
863
+ mso-ansi-font-style:normal;}
864
+ @list l0:level6
865
+ {mso-level-style-link:a6;
866
+ mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
867
+ mso-level-tab-stop:72.0pt;
868
+ mso-level-number-position:left;
869
+ margin-left:0cm;
870
+ text-indent:0cm;
871
+ mso-bidi-font-family:$bodyfont;
872
+ mso-ansi-font-weight:bold;
873
+ mso-ansi-font-style:normal;}
874
+ @list l0:level7
875
+ {mso-level-reset-level:level2;
876
+ mso-level-suffix:space;
877
+ mso-level-text:"Figure\00A0%1\.%7\00A0—";
878
+ mso-level-tab-stop:none;
879
+ mso-level-number-position:left;
880
+ margin-left:0cm;
881
+ text-indent:0cm;
882
+ mso-bidi-font-family:$bodyfont;}
883
+ @list l0:level8
884
+ {mso-level-reset-level:level2;
885
+ mso-level-suffix:space;
886
+ mso-level-text:"Table\00A0%1\.%8\00A0—";
887
+ mso-level-tab-stop:none;
888
+ mso-level-number-position:left;
889
+ margin-left:0cm;
890
+ text-indent:0cm;
891
+ mso-bidi-font-family:$bodyfont;}
892
+ @list l0:level9
893
+ {mso-level-number-format:roman-lower;
894
+ mso-level-text:"\(%9\)";
895
+ mso-level-tab-stop:306.0pt;
896
+ mso-level-number-position:left;
897
+ margin-left:0cm;
898
+ text-indent:0cm;
899
+ mso-bidi-font-family:$bodyfont;}
900
+ @list l1
901
+ {mso-list-id:866942648;
902
+ mso-list-template-ids:-1756330000;}
903
+ @list l1:level1
904
+ {mso-level-style-link:"Heading 1";
905
+ mso-level-text:"%1";
906
+ mso-level-tab-stop:21.6pt;
907
+ mso-level-number-position:left;
908
+ margin-left:21.6pt;
909
+ text-indent:-21.6pt;
910
+ mso-bidi-font-family:$headerfont;
911
+ mso-ansi-font-weight:bold;
912
+ mso-ansi-font-style:normal;}
913
+ @list l1:level2
914
+ {mso-level-style-link:"Heading 2";
915
+ mso-level-text:"%1\.%2";
916
+ mso-level-tab-stop:18.0pt;
917
+ mso-level-number-position:left;
918
+ margin-left:0cm;
919
+ text-indent:0cm;
920
+ mso-bidi-font-family:$headerfont;
921
+ mso-ansi-font-weight:bold;
922
+ mso-ansi-font-style:normal;}
923
+ @list l1:level3
924
+ {mso-level-style-link:"Heading 3";
925
+ mso-level-text:"%1\.%2\.%3";
926
+ mso-level-tab-stop:36.0pt;
927
+ mso-level-number-position:left;
928
+ margin-left:0cm;
929
+ text-indent:0cm;
930
+ mso-bidi-font-family:$headerfont;
931
+ mso-ansi-font-weight:bold;
932
+ mso-ansi-font-style:normal;}
933
+ @list l1:level4
934
+ {mso-level-style-link:"Heading 4";
935
+ mso-level-text:"%1\.%2\.%3\.%4";
936
+ mso-level-tab-stop:54.0pt;
937
+ mso-level-number-position:left;
938
+ margin-left:0cm;
939
+ text-indent:0cm;
940
+ mso-bidi-font-family:$headerfont;
941
+ mso-ansi-font-weight:bold;
942
+ mso-ansi-font-style:normal;}
943
+ @list l1:level5
944
+ {mso-level-style-link:"Heading 5";
945
+ mso-level-text:"%1\.%2\.%3\.%4\.%5";
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:$headerfont;
951
+ mso-ansi-font-weight:bold;
952
+ mso-ansi-font-style:normal;}
953
+ @list l1:level6
954
+ {mso-level-style-link:"Heading 6";
955
+ mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
956
+ mso-level-tab-stop:72.0pt;
957
+ mso-level-number-position:left;
958
+ margin-left:0cm;
959
+ text-indent:0cm;
960
+ mso-bidi-font-family:$headerfont;
961
+ mso-ansi-font-weight:bold;
962
+ mso-ansi-font-style:normal;}
963
+ @list l1:level7
964
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
965
+ mso-level-tab-stop:72.0pt;
966
+ mso-level-number-position:left;
967
+ margin-left:0cm;
968
+ text-indent:0cm;
969
+ mso-bidi-font-family:$headerfont;}
970
+ @list l1:level8
971
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
972
+ mso-level-tab-stop:90.0pt;
973
+ mso-level-number-position:left;
974
+ margin-left:0cm;
975
+ text-indent:0cm;
976
+ mso-bidi-font-family:$headerfont;}
977
+ @list l1:level9
978
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
979
+ mso-level-tab-stop:90.0pt;
980
+ mso-level-number-position:left;
981
+ margin-left:0cm;
982
+ text-indent:0cm;
983
+ mso-bidi-font-family:$headerfont;}
984
+ /* ordered list */
985
+ @list l2
986
+ {mso-list-id:525294607;
987
+ mso-list-template-ids:67633181;}
988
+ @list l2:level1
989
+ {mso-level-number-format:alpha-lower;
990
+ mso-level-text:"%1\)";
991
+ mso-level-tab-stop:none;
992
+ mso-level-number-position:left;
993
+ margin-left:18.0pt;
994
+ text-indent:-18.0pt;}
995
+ @list l2:level2
996
+ {mso-level-text:"%2\)";
997
+ mso-level-tab-stop:none;
998
+ mso-level-number-position:left;
999
+ margin-left:36.0pt;
1000
+ text-indent:-18.0pt;}
1001
+ @list l2:level3
1002
+ {mso-level-number-format:roman-lower;
1003
+ mso-level-text:"%3\)";
1004
+ mso-level-tab-stop:none;
1005
+ mso-level-number-position:left;
1006
+ margin-left:54.0pt;
1007
+ text-indent:-18.0pt;}
1008
+ @list l2:level4
1009
+ {mso-level-number-format:alpha-upper;
1010
+ mso-level-text:"%4\)";
1011
+ mso-level-tab-stop:none;
1012
+ mso-level-number-position:left;
1013
+ margin-left:72.0pt;
1014
+ text-indent:-18.0pt;}
1015
+ @list l2:level5
1016
+ {mso-level-number-format:roman-upper;
1017
+ mso-level-text:"%5\)";
1018
+ mso-level-tab-stop:none;
1019
+ mso-level-number-position:left;
1020
+ margin-left:90.0pt;
1021
+ text-indent:-18.0pt;}
1022
+ @list l2:level6
1023
+ {mso-level-number-format:alpha-lower;
1024
+ mso-level-text:"%6\)";
1025
+ mso-level-tab-stop:none;
1026
+ mso-level-number-position:left;
1027
+ margin-left:108.0pt;
1028
+ text-indent:-18.0pt;}
1029
+ @list l2:level7
1030
+ {mso-level-tab-stop:none;
1031
+ mso-level-text:"%7\)";
1032
+ mso-level-number-position:left;
1033
+ margin-left:126.0pt;
1034
+ text-indent:-18.0pt;}
1035
+ @list l2:level8
1036
+ {mso-level-number-format:roman-lower;
1037
+ mso-level-text:"%8\)";
1038
+ mso-level-tab-stop:none;
1039
+ mso-level-number-position:left;
1040
+ margin-left:144.0pt;
1041
+ text-indent:-18.0pt;}
1042
+ @list l2:level9
1043
+ {mso-level-number-format:alpha-upper;
1044
+ mso-level-text:"%9\)";
1045
+ mso-level-tab-stop:none;
1046
+ mso-level-number-position:left;
1047
+ margin-left:162.0pt;
1048
+ text-indent:-18.0pt;}
1049
+ /* Unordered list */
1050
+ @list l3
1051
+ {mso-list-id:1308196397;
1052
+ mso-list-type:hybrid;
1053
+ mso-list-template-ids:-277327948 -457018030 67633155 67633157 67633153 67633155 67633157 67633153 67633155 67633157;}
1054
+ @list l3:level1
1055
+ {mso-level-number-format:bullet;
1056
+ mso-level-text:—;
1057
+ mso-level-tab-stop:none;
1058
+ mso-level-number-position:left;
1059
+ margin-left:18.0pt;
1060
+ text-indent:-18.0pt;}
1061
+ @list l3:level2
1062
+ {mso-level-number-format:bullet;
1063
+ mso-level-text:—;
1064
+ mso-level-tab-stop:none;
1065
+ mso-level-number-position:left;
1066
+ margin-left:36.0pt;
1067
+ text-indent:-18.0pt;}
1068
+ @list l3:level3
1069
+ {mso-level-number-format:bullet;
1070
+ mso-level-text:—;
1071
+ mso-level-tab-stop:none;
1072
+ mso-level-number-position:left;
1073
+ margin-left:54.0pt;
1074
+ text-indent:-18.0pt;}
1075
+ @list l3:level4
1076
+ {mso-level-number-format:bullet;
1077
+ mso-level-text:—;
1078
+ mso-level-tab-stop:none;
1079
+ mso-level-number-position:left;
1080
+ margin-left:72.0pt;
1081
+ text-indent:-18.0pt;}
1082
+ @list l3:level5
1083
+ {mso-level-number-format:bullet;
1084
+ mso-level-text:—;
1085
+ mso-level-tab-stop:none;
1086
+ mso-level-number-position:left;
1087
+ margin-left:90.0pt;
1088
+ text-indent:-18.0pt;}
1089
+ @list l3:level6
1090
+ {mso-level-number-format:bullet;
1091
+ mso-level-text:—;
1092
+ mso-level-tab-stop:none;
1093
+ mso-level-number-position:left;
1094
+ margin-left:108.0pt;
1095
+ text-indent:-18.0pt;}
1096
+ @list l3:level7
1097
+ {mso-level-number-format:bullet;
1098
+ mso-level-text:—;
1099
+ mso-level-tab-stop:none;
1100
+ mso-level-number-position:left;
1101
+ margin-left:126.0pt;
1102
+ text-indent:-18.0pt;}
1103
+ @list l3:level8
1104
+ {mso-level-number-format:bullet;
1105
+ mso-level-text:—;
1106
+ mso-level-tab-stop:none;
1107
+ mso-level-number-position:left;
1108
+ margin-left:144.0pt;
1109
+ text-indent:-18.0pt;}
1110
+ @list l3:level9
1111
+ {mso-level-number-format:bullet;
1112
+ mso-level-text:—;
1113
+ mso-level-tab-stop:none;
1114
+ mso-level-number-position:left;
1115
+ margin-left:162.0pt;
1116
+ text-indent:-18.0pt;}
1117
+
1118
+ div.ListContLevel1
1119
+ {mso-style-priority:34;
1120
+ margin-left:18.0pt;
1121
+ margin-right:0cm;}
1122
+ div.ListContLevel2
1123
+ {mso-style-priority:34;
1124
+ margin-top:0cm;
1125
+ margin-left:36.0pt;
1126
+ margin-right:0cm;}
1127
+ div.ListContLevel3
1128
+ {mso-style-priority:34;
1129
+ margin-left:54.0pt;
1130
+ margin-right:0cm;}
1131
+ div.ListContLevel4
1132
+ {mso-style-priority:34;
1133
+ margin-left:72.0pt;
1134
+ margin-right:0cm;}
1135
+ div.ListContLevel5
1136
+ {mso-style-priority:34;
1137
+ margin-left:90.0pt;
1138
+ margin-right:0cm;}
1139
+ div.ListContLevel6
1140
+ {mso-style-priority:34;
1141
+ margin-left:108.0pt;
1142
+ margin-right:0cm;}
1143
+ div.ListContLevel7
1144
+ {mso-style-priority:34;
1145
+ margin-left:126.0pt;
1146
+ margin-right:0cm;}
1147
+ div.ListContLevel8
1148
+ {mso-style-priority:34;
1149
+ margin-left:144.0pt;
1150
+ margin-right:0cm;}
1151
+ div.ListContLevel9
1152
+ {mso-style-priority:34;
1153
+ margin-left:162.0pt;
1154
+ margin-right:0cm;}
1155
+
1156
+ table.MsoNormalTable
1157
+ {mso-style-name:"Table Normal";
1158
+ mso-tstyle-rowband-size:0;
1159
+ mso-tstyle-colband-size:0;
1160
+ mso-style-noshow:yes;
1161
+ mso-style-priority:99;
1162
+ mso-style-parent:"";
1163
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
1164
+ mso-para-margin:0cm;
1165
+ mso-para-margin-bottom:.0001pt;
1166
+ mso-pagination:widow-orphan;
1167
+ font-size:10.0pt;
1168
+ font-family:$bodyfont;}
1169
+ ol
1170
+ {margin-bottom:0cm;
1171
+ margin-left:18pt;}
1172
+ ul
1173
+ {margin-bottom:0cm;
1174
+ margin-left:18pt;}
1175
+