metanorma-sample 1.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/.hound.yml +3 -0
  4. data/.rubocop.yml +10 -0
  5. data/.travis.yml +16 -0
  6. data/CODE_OF_CONDUCT.md +74 -0
  7. data/Gemfile +4 -0
  8. data/LICENSE +25 -0
  9. data/README.adoc +13 -0
  10. data/Rakefile +6 -0
  11. data/asciidoctor-metanorma_sample.gemspec +46 -0
  12. data/bin/console +14 -0
  13. data/bin/rspec +18 -0
  14. data/bin/setup +8 -0
  15. data/lib/asciidoctor-sample.rb +11 -0
  16. data/lib/asciidoctor/sample.rb +7 -0
  17. data/lib/asciidoctor/sample/biblio.rng +890 -0
  18. data/lib/asciidoctor/sample/converter.rb +162 -0
  19. data/lib/asciidoctor/sample/isodoc.rng +1091 -0
  20. data/lib/asciidoctor/sample/isostandard.rng +1068 -0
  21. data/lib/asciidoctor/sample/pdf.js +31 -0
  22. data/lib/asciidoctor/sample/sample.rng +196 -0
  23. data/lib/isodoc/sample/html/header.html +184 -0
  24. data/lib/isodoc/sample/html/html_sample_intro.html +8 -0
  25. data/lib/isodoc/sample/html/html_sample_titlepage.html +106 -0
  26. data/lib/isodoc/sample/html/htmlstyle.scss +1038 -0
  27. data/lib/isodoc/sample/html/logo.jpg +0 -0
  28. data/lib/isodoc/sample/html/sample.scss +644 -0
  29. data/lib/isodoc/sample/html/scripts.html +82 -0
  30. data/lib/isodoc/sample/html/scripts.pdf.html +70 -0
  31. data/lib/isodoc/sample/html/word_sample_intro.html +72 -0
  32. data/lib/isodoc/sample/html/word_sample_titlepage.html +75 -0
  33. data/lib/isodoc/sample/html/wordstyle.scss +1105 -0
  34. data/lib/isodoc/sample/html_convert.rb +120 -0
  35. data/lib/isodoc/sample/metadata.rb +74 -0
  36. data/lib/isodoc/sample/pdf_convert.rb +117 -0
  37. data/lib/isodoc/sample/word_convert.rb +98 -0
  38. data/lib/metanorma/sample.rb +7 -0
  39. data/lib/metanorma/sample/processor.rb +43 -0
  40. data/lib/metanorma/sample/version.rb +5 -0
  41. metadata +310 -0
@@ -0,0 +1,82 @@
1
+ <script>
2
+ //TOC generation
3
+ $('#toc').toc({
4
+ 'selectors': 'h1,h2:not(.TermNum)', //elements to use as headings
5
+ 'container': 'main', //element to find all selectors in
6
+ 'smoothScrolling': true, //enable or disable smooth scrolling on click
7
+ 'prefix': 'toc', //prefix for anchor tags and class names
8
+ 'onHighlight': function(el) {}, //called when a new section is highlighted
9
+ 'highlightOnScroll': true, //add class to heading that is currently in focus
10
+ 'highlightOffset': 100, //offset to trigger the next headline
11
+ 'anchorName': function(i, heading, prefix) { //custom function for anchor name
12
+ return prefix+i;
13
+ },
14
+ 'headerText': function(i, heading, $heading) { //custom function building the header-item text
15
+ return $heading.text();
16
+ },
17
+ 'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
18
+ return $heading[0].tagName.toLowerCase();
19
+ }
20
+ });
21
+
22
+ </script>
23
+
24
+ <script>
25
+ //TOC toggle animation
26
+ $('#toggle').on('click', function(){
27
+ if( $('nav').is(':visible') ) {
28
+ $('nav').animate({ 'left': '-353px' }, 'slow', function(){
29
+ $('nav').hide();
30
+ });
31
+ $('.container').animate({ 'padding-left': '31px' }, 'slow');
32
+ }
33
+ else {
34
+ $('nav').show();
35
+ $('nav').animate({ 'left': '0px' }, 'slow');
36
+ $('.container').animate({ 'padding-left': '360px' }, 'slow');
37
+ }
38
+ });
39
+ </script>
40
+
41
+ <script>
42
+ // Scroll to top button
43
+ window.onscroll = function() {scrollFunction()};
44
+
45
+ function scrollFunction() {
46
+ if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
47
+ document.getElementById("myBtn").style.display = "block";
48
+ } else {
49
+ document.getElementById("myBtn").style.display = "none";
50
+ }
51
+ }
52
+
53
+ // When the user clicks on the button, scroll to the top of the document
54
+ function topFunction() {
55
+ document.body.scrollTop = 0;
56
+ document.documentElement.scrollTop = 0;
57
+ }
58
+ </script>
59
+
60
+ <script>
61
+ /**
62
+ * AnchorJS - v4.1.0 - 2017-09-20
63
+ * https://github.com/bryanbraun/anchorjs
64
+ * Copyright (c) 2017 Bryan Braun; Licensed MIT
65
+ */
66
+ !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 e(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.truncate=A.hasOwnProperty("truncate")?Math.floor(A.truncate):64}function t(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}function i(){if(null===document.head.querySelector("style.anchorjs")){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)}}this.options=A||{},this.elements=[],e(this.options),this.isTouchDevice=function(){return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var n,o,s,a,r,c,h,l,u,d,f,p=[];if(e(this.options),"touch"===(f=this.options.visible)&&(f=this.isTouchDevice()?"always":"hover"),A||(A="h2, h3, h4, h5, h6"),0===(n=t(A)).length)return this;for(i(),o=document.querySelectorAll("[id]"),s=[].map.call(o,function(A){return A.id}),r=0;r<n.length;r++)if(this.hasAnchorJSLink(n[r]))p.push(r);else{if(n[r].hasAttribute("id"))a=n[r].getAttribute("id");else if(n[r].hasAttribute("data-anchor-id"))a=n[r].getAttribute("data-anchor-id");else{u=l=this.urlify(n[r].textContent),h=0;do{void 0!==c&&(u=l+"-"+h),c=s.indexOf(u),h+=1}while(-1!==c);c=void 0,s.push(u),n[r].setAttribute("id",u),a=u}a.replace(/-/g," "),(d=document.createElement("a")).className="anchorjs-link "+this.options.class,d.href="#"+a,d.setAttribute("aria-label",this.options.ariaLabel),d.setAttribute("data-anchorjs-icon",this.options.icon),"always"===f&&(d.style.opacity="1"),""===this.options.icon&&(d.style.font="1em/1 anchorjs-icons","left"===this.options.placement&&(d.style.lineHeight="inherit")),"left"===this.options.placement?(d.style.position="absolute",d.style.marginLeft="-1em",d.style.paddingRight="0.5em",n[r].insertBefore(d,n[r].firstChild)):(d.style.paddingLeft="0.375em",n[r].appendChild(d))}for(r=0;r<p.length;r++)n.splice(p[r]-r,1);return this.elements=this.elements.concat(n),this},this.remove=function(A){for(var e,i,n=t(A),o=0;o<n.length;o++)(i=n[o].querySelector(".anchorjs-link"))&&(-1!==(e=this.elements.indexOf(n[o]))&&this.elements.splice(e,1),n[o].removeChild(i));return this},this.removeAll=function(){this.remove(this.elements)},this.urlify=function(A){var t=/[& +$,:;=?@"#{}|^~[`%!'<>\]\.\/\(\)\*\\]/g;return this.options.truncate||e(this.options),A.trim().replace(/\'/gi,"").replace(t,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&(" "+A.firstChild.className+" ").indexOf(" anchorjs-link ")>-1,t=A.lastChild&&(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ")>-1;return e||t||!1}}}); </script>
67
+
68
+ <script>
69
+ $(document).ready(function() {
70
+ $('[id^=toc]').each(function ()
71
+ {
72
+ var currentToc = $(this);
73
+ var url = window.location.href;
74
+ currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
75
+ });
76
+ });
77
+ anchors.options = {
78
+ placement: 'left'
79
+ };
80
+ anchors.add('h1, h2, h3, h4');
81
+ </script>
82
+
@@ -0,0 +1,70 @@
1
+ <script>
2
+ //TOC generation
3
+ $('#toc').toc({
4
+ 'selectors': 'h1,h2:not(.TermNum)', //elements to use as headings
5
+ 'container': 'main', //element to find all selectors in
6
+ 'smoothScrolling': true, //enable or disable smooth scrolling on click
7
+ 'prefix': 'toc', //prefix for anchor tags and class names
8
+ 'onHighlight': function(el) {}, //called when a new section is highlighted
9
+ 'highlightOnScroll': false, //add class to heading that is currently in focus
10
+ 'highlightOffset': 100, //offset to trigger the next headline
11
+ 'anchorName': function(i, heading, prefix) { //custom function for anchor name
12
+ return prefix+i;
13
+ },
14
+ 'headerText': function(i, heading, $heading) { //custom function building the header-item text
15
+ return $heading.text();
16
+ },
17
+ 'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
18
+ return $heading[0].tagName.toLowerCase();
19
+ }
20
+ });
21
+
22
+ </script>
23
+
24
+ <script>
25
+ //TOC toggle animation
26
+ $('#toggle').on('click', function(){
27
+ if( $('nav').is(':visible') ) {
28
+ $('nav').animate({ 'left': '-353px' }, 'slow', function(){
29
+ $('nav').hide();
30
+ });
31
+ $('.container').animate({ 'padding-left': '31px' }, 'slow');
32
+ }
33
+ else {
34
+ $('nav').show();
35
+ $('nav').animate({ 'left': '0px' }, 'slow');
36
+ $('.container').animate({ 'padding-left': '360px' }, 'slow');
37
+ }
38
+ });
39
+ </script>
40
+
41
+ <script>
42
+ // Scroll to top button
43
+ window.onscroll = function() {scrollFunction()};
44
+
45
+ function scrollFunction() {
46
+ if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
47
+ document.getElementById("myBtn").style.display = "block";
48
+ } else {
49
+ document.getElementById("myBtn").style.display = "none";
50
+ }
51
+ }
52
+
53
+ // When the user clicks on the button, scroll to the top of the document
54
+ function topFunction() {
55
+ document.body.scrollTop = 0;
56
+ document.documentElement.scrollTop = 0;
57
+ }
58
+ </script>
59
+
60
+ <script>
61
+ $(document).ready(function() {
62
+ $('[id^=toc]').each(function ()
63
+ {
64
+ var currentToc = $(this);
65
+ var url = window.location.href;
66
+ currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
67
+ });
68
+ });
69
+ </script>
70
+
@@ -0,0 +1,72 @@
1
+ <div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
2
+ border-bottom:none;mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:
3
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 0cm 4.0pt;
4
+ margin-left:5.1pt;margin-right:5.1pt'>
5
+
6
+ <p class="zzCopyright" align="left" style='margin-top:2.0pt;margin-right:0cm;
7
+ margin-bottom:12.0pt;margin-left:0cm;text-align:left;page-break-before:always;
8
+ mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-top-alt:
9
+ solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-right-alt:
10
+ solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 0cm 4.0pt'><span
11
+ lang="EN-GB" style='color:windowtext'>© {{ agency }} {{ docyear }}, Published in Switzerland.<o:p></o:p></span></p>
12
+
13
+ <p class="zzCopyright" style='margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;
14
+ margin-left:0cm;mso-layout-grid-align:none;text-autospace:none;border:none;
15
+ mso-border-left-alt:solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;
16
+ padding:0cm;mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB"
17
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt;color:windowtext'>All rights
18
+ reserved. Unless otherwise specified, no part of this publication may be
19
+ reproduced or utilized otherwise in any form or by any means, electronic or
20
+ mechanical, including photocopying, or posting on the internet or an intranet,
21
+ without prior written permission. Permission can be requested from either ISO
22
+ at the address below or ISO’s member body in the country of the requester.<o:p></o:p></span></p>
23
+
24
+ <p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
25
+ mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
26
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
27
+ mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
28
+ mso-bidi-font-size:11.0pt;color:windowtext'>ISO copyright office<o:p></o:p></span></p>
29
+
30
+ <p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
31
+ mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
32
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
33
+ mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
34
+ mso-bidi-font-size:11.0pt;color:windowtext'>Ch. de Blandonnet 8 &#x2022; CP 401<o:p></o:p></span></p>
35
+
36
+ <p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
37
+ mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
38
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
39
+ mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
40
+ mso-bidi-font-size:11.0pt;color:windowtext'>CH-1214 Vernier, Geneva,
41
+ Switzerland<o:p></o:p></span></p>
42
+
43
+ <p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
44
+ mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
45
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
46
+ mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
47
+ mso-bidi-font-size:11.0pt;color:windowtext'>Tel.&nbsp;&nbsp;+ 41 22 749 01 11<o:p></o:p></span></p>
48
+
49
+ <p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
50
+ mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
51
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
52
+ mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
53
+ mso-bidi-font-size:11.0pt;color:windowtext'>Fax&nbsp;&nbsp;+ 41 22 749 09 47<o:p></o:p></span></p>
54
+
55
+ <p class="zzCopyright" style='margin:0cm;margin-bottom:.0001pt;text-indent:20.15pt;
56
+ mso-layout-grid-align:none;text-autospace:none;border:none;mso-border-left-alt:
57
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
58
+ mso-padding-alt:0cm 4.0pt 0cm 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
59
+ mso-bidi-font-size:11.0pt;color:windowtext'>copyright@iso.org<o:p></o:p></span></p>
60
+
61
+ <p class="zzCopyright" style='margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;
62
+ margin-left:0cm;text-indent:20.15pt;mso-layout-grid-align:none;text-autospace:
63
+ none;border:none;mso-border-left-alt:solid windowtext .5pt;mso-border-bottom-alt:
64
+ solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;padding:0cm;
65
+ mso-padding-alt:0cm 4.0pt 1.0pt 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;
66
+ mso-bidi-font-size:11.0pt;color:windowtext'>www.iso.org<o:p></o:p></span></p>
67
+
68
+ </div>
69
+
70
+ <p class="zzContents" style='margin-top:0cm'><span lang="EN-GB">Contents</span></p>
71
+
72
+ WORDTOC
@@ -0,0 +1,75 @@
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 }}:{{ docyear }} {{ 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'>Acme&nbsp;</span><span lang="EN-GB"><span
7
+ style='mso-no-proof:yes'>{{ tc | join: "/" }}</span></p>
8
+
9
+ <p class="MsoNormal" align="center" style='text-align:center;line-height:18.0pt;margin-bottom:0.0pt'><b
10
+ style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:24.0pt'>{{ doctitle }}</span>
11
+ </b><br/><span lang="EN-GB" style='font-size:16.0pt'>{{ docsubtitle }}</span></p>
12
+
13
+ <p class="MsoNormal" style='margin-top:100.0pt'><span lang="EN-GB"><o:p>&nbsp;</o:p></span></p>
14
+
15
+ <div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
16
+ mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
17
+ margin-left:4.25pt;margin-right:4.25pt'>
18
+
19
+ <p class="MsoNormal" align="center" style='text-align:center;border:none;
20
+ mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span
21
+ lang="EN-GB" style='font-size:16.0pt'>{{ status }} {{ doctype }}</span></p>
22
+
23
+ {% if security %}
24
+ <p class="MsoNormal" align="center" style='text-align:center;border:none;
25
+ mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span
26
+ lang="EN-GB" style='font-size:16.0pt'> Classification: {{ security }}</span></p>
27
+ {% endif %}
28
+
29
+ {% if doctype == "Policy And Procedures" or doctype == "Proposal" %}
30
+ <p class="MsoNormal" align="center" style='text-align:center;border:none;
31
+ mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span
32
+ lang="EN-GB" style='font-size:16.0pt'>{{ revdate }}<o:p></o:p></span></p>
33
+ {% endif %}
34
+ </div>
35
+
36
+ <p class="MsoNormal" style='margin-bottom:6.0pt'><span lang="EN-GB"><o:p>&nbsp;</o:p></span></p>
37
+
38
+ <div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
39
+ mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
40
+ margin-left:4.25pt;margin-right:4.25pt'>
41
+
42
+ {% if unpublished %}
43
+ <p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
44
+ border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
45
+ 1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
46
+ lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning for drafts<o:p></o:p></span></b></p>
47
+
48
+ <p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
49
+ padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
50
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This document
51
+ is not a Acme Standard. It is distributed for review and
52
+ comment, and is subject to change without notice and may not be referred to as
53
+ a Standard. Recipients of this draft are invited to submit, with their
54
+ comments, notification of any relevant patent rights of which they are aware
55
+ and to provide supporting documentation.<o:p></o:p></span></p>
56
+
57
+ <p class="MsoNormal" style='border:none;mso-border-alt:solid windowtext .5pt;
58
+ padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
59
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>Recipients
60
+ of this draft are invited to submit, with their comments, notification of any
61
+ relevant patent rights of which they are aware and to provide supporting
62
+ documentation.</span><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:
63
+ 11.0pt'><o:p></o:p></span></p>
64
+
65
+ {% endif %}
66
+
67
+ </div>
68
+
69
+ <p class="MsoNormal" align="center" style='text-align:center'><span lang="EN-GB"
70
+ style='mso-no-proof:yes'>Acme Inc.&nbsp;</span><span lang="EN-GB"><span
71
+ style='mso-no-proof:yes'>{{ docyear }}</span></p>
72
+
73
+
74
+
75
+
@@ -0,0 +1,1105 @@
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:"Arial Narrow";
26
+ panose-1:2 11 5 6 2 2 2 3 2 4;
27
+ mso-font-charset:0;
28
+ mso-generic-font-family:swiss;
29
+ mso-font-pitch:variable;
30
+ mso-font-signature:3 0 0 0 1 0;}
31
+ @font-face
32
+ {font-family:"Source Sans Pro";
33
+ panose-1:2 11 5 3 3 4 3 2 2 4;
34
+ mso-font-alt:Arial;
35
+ mso-font-charset:77;
36
+ mso-generic-font-family:swiss;
37
+ mso-font-pitch:variable;
38
+ mso-font-signature:536870919 1 0 0 403 0;}
39
+ @font-face
40
+ {font-family:Tahoma;
41
+ panose-1:2 11 6 4 3 5 4 4 2 4;
42
+ mso-font-charset:0;
43
+ mso-generic-font-family:swiss;
44
+ mso-font-pitch:variable;
45
+ mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
46
+ @font-face
47
+ {font-family:Times;
48
+ panose-1:2 0 5 0 0 0 0 0 0 0;
49
+ mso-font-charset:0;
50
+ mso-generic-font-family:auto;
51
+ mso-font-pitch:variable;
52
+ mso-font-signature:-536870145 1342185562 0 0 415 0;}
53
+ @font-face
54
+ {font-family:"Wingdings 2";
55
+ panose-1:5 2 1 2 1 5 7 7 7 7;
56
+ mso-font-charset:2;
57
+ mso-generic-font-family:decorative;
58
+ mso-font-pitch:variable;
59
+ mso-font-signature:0 268435456 0 0 -2147483648 0;}
60
+ @font-face
61
+ {font-family:"\@MS Mincho";
62
+ panose-1:2 2 6 9 4 2 5 8 3 4;
63
+ mso-font-charset:128;
64
+ mso-generic-font-family:modern;
65
+ mso-font-pitch:fixed;
66
+ mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}
67
+ p.MsoNormal, li.MsoNormal, div.MsoNormal
68
+ {mso-style-unhide:no;
69
+ mso-style-qformat:yes;
70
+ mso-style-parent:"";
71
+ margin:0cm;
72
+ margin-bottom:12.0pt;
73
+ mso-pagination:widow-orphan;
74
+ font-size:10.5pt;
75
+ font-family:$bodyfont;
76
+ mso-fareast-font-family:"Times New Roman";
77
+ mso-ansi-language:EN-US;
78
+ mso-fareast-language:EN-US;}
79
+ p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
80
+ {mso-style-priority:34;
81
+ mso-style-unhide:no;
82
+ mso-style-qformat:yes;
83
+ margin-top:0cm;
84
+ margin-right:0cm;
85
+ margin-bottom:12.0pt;
86
+ /* do not put in margin-left, it is specific to list level */
87
+ mso-add-space:auto;
88
+ mso-pagination:widow-orphan;
89
+ font-size:10.5pt;
90
+ font-family:$bodyfont;
91
+ mso-ansi-language:EN-AU;
92
+ mso-fareast-language:EN-US;}
93
+ p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
94
+ {mso-style-priority:34;
95
+ mso-style-unhide:no;
96
+ mso-style-qformat:yes;
97
+ mso-style-type:export-only;
98
+ margin-top:0cm;
99
+ margin-right:0cm;
100
+ margin-bottom:12.0pt;
101
+ /* do not put in margin-left, it is specific to list level */
102
+ mso-add-space:auto;
103
+ mso-pagination:widow-orphan;
104
+ font-size:10.5pt;
105
+ font-family:$bodyfont;
106
+ mso-ansi-language:EN-AU;
107
+ mso-fareast-language:EN-US;}
108
+ p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
109
+ {mso-style-priority:34;
110
+ mso-style-unhide:no;
111
+ mso-style-qformat:yes;
112
+ mso-style-type:export-only;
113
+ margin-top:0cm;
114
+ margin-right:0cm;
115
+ margin-bottom:12.0pt;
116
+ /* do not put in margin-left, it is specific to list level */
117
+ mso-add-space:auto;
118
+ mso-pagination:widow-orphan;
119
+ font-size:10.5pt;
120
+ font-family:$bodyfont;
121
+ mso-ansi-language:EN-AU;
122
+ mso-fareast-language:EN-US;}
123
+ p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
124
+ {mso-style-priority:34;
125
+ mso-style-unhide:no;
126
+ mso-style-qformat:yes;
127
+ mso-style-type:export-only;
128
+ margin-top:0cm;
129
+ margin-right:0cm;
130
+ margin-bottom:12.0pt;
131
+ /* do not put in margin-left, it is specific to list level */
132
+ mso-add-space:auto;
133
+ mso-pagination:widow-orphan;
134
+ font-size:10.5pt;
135
+ font-family:$bodyfont;
136
+ mso-ansi-language:EN-AU;
137
+ mso-fareast-language:EN-US;}
138
+
139
+ p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
140
+ {mso-style-noshow:yes;
141
+ mso-style-unhide:no;
142
+ margin:0cm;
143
+ margin-bottom:.0001pt;
144
+ mso-pagination:widow-orphan;
145
+ font-size:10.0pt;
146
+ font-family:$bodyfont;
147
+ mso-fareast-font-family:"Times New Roman";
148
+ mso-ansi-language:EN-US;
149
+ mso-fareast-language:EN-US;}
150
+ p.MsoHeader, li.MsoHeader, div.MsoHeader
151
+ {mso-style-unhide:no;
152
+ margin:0cm;
153
+ margin-bottom:.0001pt;
154
+ mso-pagination:widow-orphan;
155
+ tab-stops:center 216.0pt right 482.0pt;
156
+ font-size:10.5pt;
157
+ font-family:$bodyfont;
158
+ mso-fareast-font-family:"Times New Roman";
159
+ mso-ansi-language:EN-US;
160
+ mso-fareast-language:EN-US;}
161
+ p.MsoFooter, li.MsoFooter, div.MsoFooter
162
+ {mso-style-unhide:no;
163
+ margin:0cm;
164
+ margin-bottom:.0001pt;
165
+ mso-pagination:widow-orphan;
166
+ tab-stops:right 482.0pt;
167
+ font-size:10.5pt;
168
+ font-family:$bodyfont;
169
+ mso-fareast-font-family:"Times New Roman";
170
+ mso-ansi-language:EN-US;
171
+ mso-fareast-language:EN-US;}
172
+ span.MsoCommentReference
173
+ {mso-style-noshow:yes;
174
+ mso-style-unhide:no;
175
+ mso-style-parent:"";
176
+ mso-ansi-font-size:8.0pt;
177
+ mso-bidi-font-size:8.0pt;}
178
+ p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
179
+ {mso-style-unhide:no;
180
+ margin-top:9.0pt;
181
+ margin-right:0cm;
182
+ margin-bottom:0cm;
183
+ margin-left:0cm;
184
+ margin-bottom:.0001pt;
185
+ mso-pagination:widow-orphan;
186
+ font-size:12.0pt;
187
+ font-family:$bodyfont;
188
+ mso-fareast-font-family:"Times New Roman";
189
+ mso-bidi-font-family:"Times New Roman";
190
+ mso-ansi-language:EN-US;
191
+ mso-fareast-language:EN-US;}
192
+ p.MsoTitle, li.MsoTitle, div.MsoTitle
193
+ {mso-style-priority:10;
194
+ mso-style-unhide:no;
195
+ mso-style-qformat:yes;
196
+ mso-style-link:"Title Char";
197
+ mso-style-next:Normal;
198
+ margin:0cm;
199
+ margin-bottom:.0001pt;
200
+ mso-add-space:auto;
201
+ mso-pagination:widow-orphan;
202
+ font-size:28.0pt;
203
+ font-family:"Calibri Light",sans-serif;
204
+ mso-fareast-font-family:"Times New Roman";
205
+ mso-bidi-font-family:"Times New Roman";
206
+ letter-spacing:-.5pt;
207
+ mso-font-kerning:14.0pt;
208
+ mso-ansi-language:EN-US;
209
+ mso-fareast-language:EN-US;}
210
+ p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst
211
+ {mso-style-priority:10;
212
+ mso-style-unhide:no;
213
+ mso-style-qformat:yes;
214
+ mso-style-link:"Title Char";
215
+ mso-style-next:Normal;
216
+ mso-style-type:export-only;
217
+ margin:0cm;
218
+ margin-bottom:.0001pt;
219
+ mso-add-space:auto;
220
+ mso-pagination:widow-orphan;
221
+ font-size:28.0pt;
222
+ font-family:"Calibri Light",sans-serif;
223
+ mso-fareast-font-family:"Times New Roman";
224
+ mso-bidi-font-family:"Times New Roman";
225
+ letter-spacing:-.5pt;
226
+ mso-font-kerning:14.0pt;
227
+ mso-ansi-language:EN-US;
228
+ mso-fareast-language:EN-US;}
229
+ p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle
230
+ {mso-style-priority:10;
231
+ mso-style-unhide:no;
232
+ mso-style-qformat:yes;
233
+ mso-style-link:"Title Char";
234
+ mso-style-next:Normal;
235
+ mso-style-type:export-only;
236
+ margin:0cm;
237
+ margin-bottom:.0001pt;
238
+ mso-add-space:auto;
239
+ mso-pagination:widow-orphan;
240
+ font-size:28.0pt;
241
+ font-family:"Calibri Light",sans-serif;
242
+ mso-fareast-font-family:"Times New Roman";
243
+ mso-bidi-font-family:"Times New Roman";
244
+ letter-spacing:-.5pt;
245
+ mso-font-kerning:14.0pt;
246
+ mso-ansi-language:EN-US;
247
+ mso-fareast-language:EN-US;}
248
+ p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast
249
+ {mso-style-priority:10;
250
+ mso-style-unhide:no;
251
+ mso-style-qformat:yes;
252
+ mso-style-link:"Title Char";
253
+ mso-style-next:Normal;
254
+ mso-style-type:export-only;
255
+ margin:0cm;
256
+ margin-bottom:.0001pt;
257
+ mso-add-space:auto;
258
+ mso-pagination:widow-orphan;
259
+ font-size:28.0pt;
260
+ font-family:"Calibri Light",sans-serif;
261
+ mso-fareast-font-family:"Times New Roman";
262
+ mso-bidi-font-family:"Times New Roman";
263
+ letter-spacing:-.5pt;
264
+ mso-font-kerning:14.0pt;
265
+ mso-ansi-language:EN-US;
266
+ mso-fareast-language:EN-US;}
267
+ a:link, span.MsoHyperlink
268
+ {mso-style-unhide:no;
269
+ mso-style-parent:"";
270
+ color:blue;
271
+ text-decoration:underline;
272
+ text-underline:single;}
273
+ a:visited, span.MsoHyperlinkFollowed
274
+ {mso-style-unhide:no;
275
+ mso-style-parent:"";
276
+ color:purple;
277
+ text-decoration:underline;
278
+ text-underline:single;}
279
+ p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
280
+ {mso-style-noshow:yes;
281
+ mso-style-unhide:no;
282
+ mso-style-parent:"Comment Text";
283
+ mso-style-next:"Comment Text";
284
+ margin:0cm;
285
+ margin-bottom:.0001pt;
286
+ mso-pagination:widow-orphan;
287
+ font-size:10.0pt;
288
+ font-family:$bodyfont;
289
+ mso-fareast-font-family:"Times New Roman";
290
+ mso-ansi-language:EN-US;
291
+ mso-fareast-language:EN-US;
292
+ font-weight:bold;}
293
+ p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
294
+ {mso-style-noshow:yes;
295
+ mso-style-unhide:no;
296
+ margin:0cm;
297
+ margin-bottom:.0001pt;
298
+ mso-pagination:widow-orphan;
299
+ font-size:8.0pt;
300
+ font-family:"Tahoma",sans-serif;
301
+ mso-fareast-font-family:"Times New Roman";
302
+ mso-ansi-language:EN-US;
303
+ mso-fareast-language:EN-US;}
304
+ span.blackgraphtxsidebar
305
+ {mso-style-name:blackgraphtxsidebar;
306
+ mso-style-unhide:no;
307
+ mso-style-parent:"";}
308
+ span.blackgraphtx
309
+ {mso-style-name:blackgraphtx;
310
+ mso-style-unhide:no;
311
+ mso-style-parent:"";}
312
+ .MsoChpDefault
313
+ {mso-style-type:export-only;
314
+ mso-default-props:yes;}
315
+ div.figure
316
+ {text-align: center;}
317
+
318
+
319
+
320
+ h1
321
+ {mso-style-priority:1;
322
+ mso-style-unhide:no;
323
+ mso-style-qformat:yes;
324
+ mso-style-link:"Heading 1 Char";
325
+ mso-style-next:Normal;
326
+ margin-top:13.5pt;
327
+ margin-right:0cm;
328
+ margin-bottom:12.0pt;
329
+ margin-left:0cm;
330
+ text-indent:0cm;
331
+ line-height:13.5pt;
332
+ mso-pagination:widow-orphan;
333
+ page-break-after:avoid;
334
+ mso-outline-level:1;
335
+ mso-list:l1 level1 lfo6;
336
+ mso-hyphenate:none;
337
+ tab-stops:20.0pt list 21.6pt left 28.0pt;
338
+ font-size:13.0pt;
339
+ mso-bidi-font-size:11.0pt;
340
+ font-family:$headerfont;
341
+ mso-fareast-font-family:$headerfont;
342
+ color:#0E1A85;
343
+ mso-font-kerning:0pt;
344
+ mso-ansi-language:EN-GB;
345
+ mso-fareast-language:JA;
346
+ mso-bidi-font-weight:normal;}
347
+ h1.Annex
348
+ {mso-style-priority:1;
349
+ mso-style-unhide:no;
350
+ mso-style-qformat:yes;
351
+ mso-style-link:"Heading 1 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
+ text-align:center;
360
+ mso-pagination:widow-orphan;
361
+ page-break-after:avoid;
362
+ font-weight:normal;
363
+ mso-outline-level:1;
364
+ mso-list:l1 level1 lfo6;
365
+ mso-hyphenate:none;
366
+ tab-stops:20.0pt list 21.6pt left 28.0pt;
367
+ font-size:12.0pt;
368
+ mso-bidi-font-size:11.0pt;
369
+ font-family:$headerfont;
370
+ mso-fareast-font-family:$headerfont;
371
+ color:#0E1A85;
372
+ mso-font-kerning:0pt;
373
+ mso-ansi-language:EN-GB;
374
+ mso-fareast-language:JA;
375
+ mso-bidi-font-weight:normal;}
376
+ .h2Annex
377
+ {mso-style-priority:2;
378
+ mso-style-unhide:no;
379
+ mso-style-qformat:yes;
380
+ mso-style-parent:"Heading 1";
381
+ mso-style-link:"Heading 2 Char";
382
+ mso-style-next:Normal;
383
+ margin-top:3.0pt;
384
+ margin-right:0cm;
385
+ margin-bottom:12.0pt;
386
+ margin-left:0cm;
387
+ text-indent:0cm;
388
+ line-height:12.5pt;
389
+ mso-pagination:widow-orphan;
390
+ page-break-after:avoid;
391
+ mso-outline-level:2;
392
+ mso-hyphenate:none;
393
+ tab-stops:27.0pt 35.0pt;
394
+ font-size:12.0pt;
395
+ mso-bidi-font-size:11.0pt;
396
+ font-family:$headerfont;
397
+ font-weight:bold;
398
+ mso-fareast-font-family:$headerfont;
399
+ color:#0E1A85;
400
+ mso-ansi-language:EN-GB;
401
+ mso-fareast-language:JA;
402
+ mso-bidi-font-weight:normal;}
403
+ h2
404
+ {mso-style-priority:2;
405
+ mso-style-unhide:no;
406
+ mso-style-qformat:yes;
407
+ mso-style-parent:"Heading 1";
408
+ mso-style-link:"Heading 2 Char";
409
+ mso-style-next:Normal;
410
+ margin-top:3.0pt;
411
+ margin-right:0cm;
412
+ margin-bottom:12.0pt;
413
+ margin-left:0cm;
414
+ text-indent:0cm;
415
+ line-height:12.5pt;
416
+ mso-pagination:widow-orphan;
417
+ page-break-after:avoid;
418
+ mso-outline-level:2;
419
+ mso-list:l1 level2 lfo6;
420
+ mso-hyphenate:none;
421
+ tab-stops:27.0pt 35.0pt;
422
+ font-size:12.0pt;
423
+ mso-bidi-font-size:11.0pt;
424
+ font-family:$headerfont;
425
+ mso-fareast-font-family:$headerfont;
426
+ color:#0E1A85;
427
+ mso-ansi-language:EN-GB;
428
+ mso-fareast-language:JA;
429
+ mso-bidi-font-weight:normal;}
430
+ h3
431
+ {mso-style-priority:3;
432
+ mso-style-unhide:no;
433
+ mso-style-qformat:yes;
434
+ mso-style-parent:"Heading 1";
435
+ mso-style-link:"Heading 3 Char";
436
+ mso-style-next:Normal;
437
+ margin-top:3.0pt;
438
+ margin-right:0cm;
439
+ margin-bottom:12.0pt;
440
+ margin-left:0cm;
441
+ text-indent:0cm;
442
+ line-height:12.0pt;
443
+ mso-pagination:widow-orphan;
444
+ page-break-after:avoid;
445
+ mso-outline-level:3;
446
+ mso-list:l1 level3 lfo6;
447
+ mso-hyphenate:none;
448
+ tab-stops:list 36.0pt left 44.0pt;
449
+ font-size:11.0pt;
450
+ font-family:$headerfont;
451
+ color:#0E1A85;
452
+ mso-fareast-font-family:$headerfont;
453
+ mso-ansi-language:EN-GB;
454
+ mso-fareast-language:JA;
455
+ mso-bidi-font-weight:normal;}
456
+ h4
457
+ {mso-style-priority:4;
458
+ mso-style-unhide:no;
459
+ mso-style-qformat:yes;
460
+ mso-style-parent:"Heading 3";
461
+ mso-style-link:"Heading 4 Char";
462
+ mso-style-next:Normal;
463
+ margin-top:3.0pt;
464
+ margin-right:0cm;
465
+ margin-bottom:12.0pt;
466
+ margin-left:0cm;
467
+ text-indent:0cm;
468
+ line-height:12.0pt;
469
+ mso-pagination:widow-orphan;
470
+ page-break-after:avoid;
471
+ mso-outline-level:4;
472
+ mso-list:l1 level4 lfo6;
473
+ mso-hyphenate:none;
474
+ tab-stops:51.05pt 57.0pt 68.0pt;
475
+ font-size:11.0pt;
476
+ font-family:$headerfont;
477
+ color:#0E1A85;
478
+ mso-fareast-font-family:$headerfont;
479
+ mso-ansi-language:EN-GB;
480
+ mso-fareast-language:JA;
481
+ mso-bidi-font-weight:normal;}
482
+ h5
483
+ {mso-style-priority:5;
484
+ mso-style-unhide:no;
485
+ mso-style-qformat:yes;
486
+ mso-style-parent:"Heading 4";
487
+ mso-style-link:"Heading 5 Char";
488
+ mso-style-next:Normal;
489
+ margin-top:3.0pt;
490
+ margin-right:0cm;
491
+ margin-bottom:12.0pt;
492
+ margin-left:0cm;
493
+ text-indent:0cm;
494
+ line-height:12.0pt;
495
+ mso-pagination:widow-orphan;
496
+ page-break-after:avoid;
497
+ mso-outline-level:5;
498
+ mso-list:l1 level5 lfo6;
499
+ mso-hyphenate:none;
500
+ tab-stops:51.05pt list 54.0pt;
501
+ font-size:11.0pt;
502
+ font-family:$headerfont;
503
+ mso-fareast-font-family:$headerfont;
504
+ color:#0E1A85;
505
+ mso-ansi-language:EN-GB;
506
+ mso-fareast-language:JA;
507
+ mso-bidi-font-weight:normal;}
508
+ h6
509
+ {mso-style-priority:6;
510
+ mso-style-unhide:no;
511
+ mso-style-qformat:yes;
512
+ mso-style-parent:"Heading 5";
513
+ mso-style-link:"Heading 6 Char";
514
+ mso-style-next:Normal;
515
+ margin-top:3.0pt;
516
+ margin-right:0cm;
517
+ margin-bottom:12.0pt;
518
+ margin-left:0cm;
519
+ text-indent:0cm;
520
+ line-height:12.0pt;
521
+ mso-pagination:widow-orphan;
522
+ page-break-after:avoid;
523
+ mso-outline-level:6;
524
+ mso-list:l1 level6 lfo6;
525
+ mso-hyphenate:none;
526
+ tab-stops:51.05pt list 72.0pt;
527
+ font-size:11.0pt;
528
+ font-family:$headerfont;
529
+ color:#0E1A85;
530
+ mso-fareast-font-family:$headerfont;
531
+ mso-ansi-language:EN-GB;
532
+ mso-fareast-language:JA;
533
+ mso-bidi-font-weight:normal;}
534
+ p.MsoToc1, li.MsoToc1, div.MsoToc1
535
+ {mso-style-priority:39;
536
+ mso-style-unhide:no;
537
+ mso-style-next:Normal;
538
+ margin-top:6.0pt;
539
+ margin-right:25.0pt;
540
+ margin-bottom:0cm;
541
+ margin-left:36.0pt;
542
+ margin-bottom:.0001pt;
543
+ text-indent:-36.0pt;
544
+ line-height:12.0pt;
545
+ mso-pagination:widow-orphan;
546
+ mso-hyphenate:none;
547
+ tab-stops:20.15pt 36.0pt right dotted 487.6pt;
548
+ font-size:10.5pt;
549
+ font-family:$bodyfont;
550
+ mso-fareast-font-family:$bodyfont;
551
+ mso-bidi-font-family:$bodyfont;
552
+ mso-ansi-language:EN-GB;
553
+ font-weight:bold;
554
+ mso-bidi-font-weight:normal;}
555
+ p.MsoToc2, li.MsoToc2, div.MsoToc2
556
+ {mso-style-noshow:yes;
557
+ mso-style-priority:39;
558
+ mso-style-unhide:no;
559
+ mso-style-parent:"TOC 1";
560
+ mso-style-next:Normal;
561
+ margin-top:0cm;
562
+ margin-right:25.0pt;
563
+ margin-bottom:0cm;
564
+ margin-left:36.0pt;
565
+ margin-bottom:.0001pt;
566
+ text-indent:-36.0pt;
567
+ line-height:12.0pt;
568
+ mso-pagination:widow-orphan;
569
+ mso-hyphenate:none;
570
+ tab-stops:20.15pt 36.0pt right dotted 487.6pt;
571
+ font-size:10.5pt;
572
+ font-family:$bodyfont;
573
+ mso-fareast-font-family:$bodyfont;
574
+ mso-bidi-font-family:$bodyfont;
575
+ mso-ansi-language:EN-GB;
576
+ font-weight:bold;
577
+ mso-bidi-font-weight:normal;}
578
+ p.MsoToc3, li.MsoToc3, div.MsoToc3
579
+ {mso-style-noshow:yes;
580
+ mso-style-priority:39;
581
+ mso-style-unhide:no;
582
+ mso-style-parent:"TOC 2";
583
+ mso-style-next:Normal;
584
+ margin-top:0cm;
585
+ margin-right:25.0pt;
586
+ margin-bottom:0cm;
587
+ margin-left:36.0pt;
588
+ margin-bottom:.0001pt;
589
+ text-indent:-36.0pt;
590
+ line-height:12.0pt;
591
+ mso-pagination:widow-orphan;
592
+ mso-hyphenate:none;
593
+ tab-stops:20.15pt 36.0pt right dotted 487.6pt;
594
+ font-size:10.5pt;
595
+ font-family:$bodyfont;
596
+ mso-fareast-font-family:$bodyfont;
597
+ mso-bidi-font-family:$bodyfont;
598
+ mso-ansi-language:EN-GB;
599
+ font-weight:bold;
600
+ mso-bidi-font-weight:normal;}
601
+ span.MsoFootnoteReference
602
+ {mso-style-priority:99;
603
+ vertical-align:super;}
604
+ p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
605
+ {mso-style-noshow:yes;
606
+ mso-style-priority:99;
607
+ mso-style-link:"Footnote Text Char";
608
+ margin-top:0cm;
609
+ margin-right:0cm;
610
+ margin-bottom:12.0pt;
611
+ margin-left:0cm;
612
+ text-align:justify;
613
+ line-height:12.0pt;
614
+ mso-pagination:widow-orphan;
615
+ tab-stops:20.15pt;
616
+ font-size:10.0pt;
617
+ font-family:$bodyfont;
618
+ mso-fareast-font-family:$bodyfont;
619
+ mso-bidi-font-family:$bodyfont;
620
+ mso-ansi-language:EN-GB;
621
+ mso-fareast-language:EN-US;}
622
+ p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
623
+ {mso-style-noshow:yes;
624
+ mso-style-priority:99;
625
+ mso-style-unhide:no;
626
+ mso-style-link:"Body Text Char";
627
+ margin-top:0cm;
628
+ margin-right:0cm;
629
+ margin-bottom:6.0pt;
630
+ margin-left:0cm;
631
+ text-align:justify;
632
+ line-height:12.0pt;
633
+ mso-pagination:widow-orphan;
634
+ font-size:10.5pt;
635
+ font-family:$bodyfont;
636
+ mso-fareast-font-family:$bodyfont;
637
+ mso-bidi-font-family:$bodyfont;
638
+ mso-ansi-language:EN-GB;}
639
+ span.Heading1Char
640
+ {mso-style-name:"Heading 1 Char";
641
+ mso-style-priority:1;
642
+ mso-style-unhide:no;
643
+ mso-style-locked:yes;
644
+ mso-style-parent:"";
645
+ mso-style-link:"Heading 1";
646
+ mso-ansi-font-size:13.0pt;
647
+ font-family:$headerfont;
648
+ mso-ascii-font-family:Cambria;
649
+ mso-fareast-font-family:$headerfont;
650
+ mso-hansi-font-family:$headerfont;
651
+ mso-ansi-language:EN-GB;
652
+ mso-fareast-language:JA;
653
+ font-weight:bold;
654
+ mso-bidi-font-weight:normal;}
655
+ span.Heading2Char
656
+ {mso-style-name:"Heading 2 Char";
657
+ mso-style-priority:2;
658
+ mso-style-unhide:no;
659
+ mso-style-locked:yes;
660
+ mso-style-parent:"";
661
+ mso-style-link:"Heading 2";
662
+ mso-ansi-font-size:12.0pt;
663
+ font-family:$headerfont;
664
+ mso-ascii-font-family:Cambria;
665
+ mso-fareast-font-family:$headerfont;
666
+ mso-hansi-font-family:$headerfont;
667
+ mso-ansi-language:EN-GB;
668
+ mso-fareast-language:JA;
669
+ font-weight:bold;
670
+ mso-bidi-font-weight:normal;}
671
+ span.Heading3Char
672
+ {mso-style-name:"Heading 3 Char";
673
+ mso-style-priority:3;
674
+ mso-style-unhide:no;
675
+ mso-style-locked:yes;
676
+ mso-style-parent:"";
677
+ mso-style-link:"Heading 3";
678
+ mso-ansi-font-size:11.0pt;
679
+ font-family:$headerfont;
680
+ mso-ascii-font-family:$headerfont;
681
+ mso-fareast-font-family:$headerfont;
682
+ mso-hansi-font-family:$headerfont;
683
+ mso-ansi-language:EN-GB;
684
+ mso-fareast-language:JA;
685
+ font-weight:bold;
686
+ mso-bidi-font-weight:normal;}
687
+ span.Heading4Char
688
+ {mso-style-name:"Heading 4 Char";
689
+ mso-style-priority:4;
690
+ mso-style-unhide:no;
691
+ mso-style-locked:yes;
692
+ mso-style-parent:"";
693
+ mso-style-link:"Heading 4";
694
+ mso-ansi-font-size:11.0pt;
695
+ font-family:$headerfont;
696
+ mso-ascii-font-family:$headerfont;
697
+ mso-fareast-font-family:$headerfont;
698
+ mso-hansi-font-family:$headerfont;
699
+ mso-ansi-language:EN-GB;
700
+ mso-fareast-language:JA;
701
+ font-weight:bold;
702
+ mso-bidi-font-weight:normal;}
703
+ span.Heading5Char
704
+ {mso-style-name:"Heading 5 Char";
705
+ mso-style-priority:5;
706
+ mso-style-unhide:no;
707
+ mso-style-locked:yes;
708
+ mso-style-parent:"";
709
+ mso-style-link:"Heading 5";
710
+ mso-ansi-font-size:11.0pt;
711
+ font-family:$headerfont;
712
+ mso-ascii-font-family:$headerfont;
713
+ mso-fareast-font-family:$headerfont;
714
+ mso-hansi-font-family:$headerfont;
715
+ mso-ansi-language:EN-GB;
716
+ mso-fareast-language:JA;
717
+ font-weight:bold;
718
+ mso-bidi-font-weight:normal;}
719
+ span.Heading6Char
720
+ {mso-style-name:"Heading 6 Char";
721
+ mso-style-priority:6;
722
+ mso-style-unhide:no;
723
+ mso-style-locked:yes;
724
+ mso-style-parent:"";
725
+ mso-style-link:"Heading 6";
726
+ mso-ansi-font-size:11.0pt;
727
+ font-family:$headerfont;
728
+ mso-ascii-font-family:$headerfont;
729
+ mso-fareast-font-family:$headerfont;
730
+ mso-hansi-font-family:$headerfont;
731
+ mso-ansi-language:EN-GB;
732
+ mso-fareast-language:JA;
733
+ font-weight:bold;
734
+ mso-bidi-font-weight:normal;}
735
+ p.Tablebody, li.Tablebody, div.Tablebody
736
+ {mso-style-name:"Table body";
737
+ mso-style-noshow:yes;
738
+ mso-style-unhide:no;
739
+ margin-top:3.0pt;
740
+ margin-right:0cm;
741
+ margin-bottom:3.0pt;
742
+ margin-left:0cm;
743
+ line-height:10.5pt;
744
+ mso-pagination:widow-orphan;
745
+ font-size:10.0pt;
746
+ mso-bidi-font-size:11.0pt;
747
+ font-family:$bodyfont;
748
+ mso-fareast-font-family:$bodyfont;
749
+ mso-bidi-font-family:$bodyfont;
750
+ mso-ansi-language:EN-GB;}
751
+
752
+
753
+ /* Page Definitions */
754
+ @page
755
+ {
756
+ size:612.0pt 792.0pt;
757
+ margin:36.0pt 53.85pt 21.55pt 53.85pt;
758
+ mso-header-margin:42.55pt;
759
+ mso-footer-margin:43.1pt;
760
+ mso-footnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") fs;
761
+ mso-footnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") fcs;
762
+ mso-endnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") es;
763
+ mso-endnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") ecs;
764
+ }
765
+ /* List Definitions */
766
+ @list l0
767
+ {mso-list-id:145051656;
768
+ mso-list-template-ids:2112159680;}
769
+ @list l0:level1
770
+ {mso-level-number-format:alpha-upper;
771
+ mso-level-style-link:ANNEX;
772
+ mso-level-suffix:none;
773
+ mso-level-text:"Annex\00A0%1";
774
+ mso-level-tab-stop:none;
775
+ mso-level-number-position:left;
776
+ margin-left:0cm;
777
+ text-indent:0cm;
778
+ mso-ansi-font-size:14.0pt;
779
+ mso-bidi-font-size:14.0pt;
780
+ font-family:$bodyfont;
781
+ mso-bidi-font-family:$bodyfont;
782
+ mso-ansi-font-weight:bold;
783
+ mso-ansi-font-style:normal;}
784
+ @list l0:level2
785
+ {mso-level-style-link:a2;
786
+ mso-level-text:"%1\.%2";
787
+ mso-level-tab-stop:18.0pt;
788
+ mso-level-number-position:left;
789
+ margin-left:0cm;
790
+ text-indent:0cm;
791
+ mso-bidi-font-family:$bodyfont;
792
+ mso-ansi-font-weight:bold;
793
+ mso-ansi-font-style:normal;}
794
+ @list l0:level3
795
+ {mso-level-style-link:a3;
796
+ mso-level-text:"%1\.%2\.%3";
797
+ mso-level-tab-stop:36.0pt;
798
+ mso-level-number-position:left;
799
+ margin-left:0cm;
800
+ text-indent:0cm;
801
+ mso-bidi-font-family:$bodyfont;
802
+ mso-ansi-font-weight:bold;
803
+ mso-ansi-font-style:normal;}
804
+ @list l0:level4
805
+ {mso-level-style-link:a4;
806
+ mso-level-text:"%1\.%2\.%3\.%4";
807
+ mso-level-tab-stop:54.0pt;
808
+ mso-level-number-position:left;
809
+ margin-left:0cm;
810
+ text-indent:0cm;
811
+ mso-bidi-font-family:$bodyfont;
812
+ mso-ansi-font-weight:bold;
813
+ mso-ansi-font-style:normal;}
814
+ @list l0:level5
815
+ {mso-level-style-link:a5;
816
+ mso-level-text:"%1\.%2\.%3\.%4\.%5";
817
+ mso-level-tab-stop:54.0pt;
818
+ mso-level-number-position:left;
819
+ margin-left:0cm;
820
+ text-indent:0cm;
821
+ mso-bidi-font-family:$bodyfont;
822
+ mso-ansi-font-weight:bold;
823
+ mso-ansi-font-style:normal;}
824
+ @list l0:level6
825
+ {mso-level-style-link:a6;
826
+ mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
827
+ mso-level-tab-stop:72.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:level7
835
+ {mso-level-reset-level:level2;
836
+ mso-level-suffix:space;
837
+ mso-level-text:"Figure\00A0%1\.%7\00A0—";
838
+ mso-level-tab-stop:none;
839
+ mso-level-number-position:left;
840
+ margin-left:0cm;
841
+ text-indent:0cm;
842
+ mso-bidi-font-family:$bodyfont;}
843
+ @list l0:level8
844
+ {mso-level-reset-level:level2;
845
+ mso-level-suffix:space;
846
+ mso-level-text:"Table\00A0%1\.%8\00A0—";
847
+ mso-level-tab-stop:none;
848
+ mso-level-number-position:left;
849
+ margin-left:0cm;
850
+ text-indent:0cm;
851
+ mso-bidi-font-family:$bodyfont;}
852
+ @list l0:level9
853
+ {mso-level-number-format:roman-lower;
854
+ mso-level-text:"\(%9\)";
855
+ mso-level-tab-stop:306.0pt;
856
+ mso-level-number-position:left;
857
+ margin-left:0cm;
858
+ text-indent:0cm;
859
+ mso-bidi-font-family:$bodyfont;}
860
+ @list l1
861
+ {mso-list-id:866942648;
862
+ mso-list-template-ids:-1756330000;}
863
+ @list l1:level1
864
+ {mso-level-style-link:"Heading 1";
865
+ mso-level-text:"%1";
866
+ mso-level-tab-stop:21.6pt;
867
+ mso-level-number-position:left;
868
+ margin-left:21.6pt;
869
+ text-indent:-21.6pt;
870
+ mso-bidi-font-family:$headerfont;
871
+ mso-ansi-font-weight:bold;
872
+ mso-ansi-font-style:normal;}
873
+ @list l1:level2
874
+ {mso-level-style-link:"Heading 2";
875
+ mso-level-text:"%1\.%2";
876
+ mso-level-tab-stop:18.0pt;
877
+ mso-level-number-position:left;
878
+ margin-left:0cm;
879
+ text-indent:0cm;
880
+ mso-bidi-font-family:$headerfont;
881
+ mso-ansi-font-weight:bold;
882
+ mso-ansi-font-style:normal;}
883
+ @list l1:level3
884
+ {mso-level-style-link:"Heading 3";
885
+ mso-level-text:"%1\.%2\.%3";
886
+ mso-level-tab-stop:36.0pt;
887
+ mso-level-number-position:left;
888
+ margin-left:0cm;
889
+ text-indent:0cm;
890
+ mso-bidi-font-family:$headerfont;
891
+ mso-ansi-font-weight:bold;
892
+ mso-ansi-font-style:normal;}
893
+ @list l1:level4
894
+ {mso-level-style-link:"Heading 4";
895
+ mso-level-text:"%1\.%2\.%3\.%4";
896
+ mso-level-tab-stop:54.0pt;
897
+ mso-level-number-position:left;
898
+ margin-left:0cm;
899
+ text-indent:0cm;
900
+ mso-bidi-font-family:$headerfont;
901
+ mso-ansi-font-weight:bold;
902
+ mso-ansi-font-style:normal;}
903
+ @list l1:level5
904
+ {mso-level-style-link:"Heading 5";
905
+ mso-level-text:"%1\.%2\.%3\.%4\.%5";
906
+ mso-level-tab-stop:54.0pt;
907
+ mso-level-number-position:left;
908
+ margin-left:0cm;
909
+ text-indent:0cm;
910
+ mso-bidi-font-family:$headerfont;
911
+ mso-ansi-font-weight:bold;
912
+ mso-ansi-font-style:normal;}
913
+ @list l1:level6
914
+ {mso-level-style-link:"Heading 6";
915
+ mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
916
+ mso-level-tab-stop:72.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:level7
924
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
925
+ mso-level-tab-stop:72.0pt;
926
+ mso-level-number-position:left;
927
+ margin-left:0cm;
928
+ text-indent:0cm;
929
+ mso-bidi-font-family:$headerfont;}
930
+ @list l1:level8
931
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
932
+ mso-level-tab-stop:90.0pt;
933
+ mso-level-number-position:left;
934
+ margin-left:0cm;
935
+ text-indent:0cm;
936
+ mso-bidi-font-family:$headerfont;}
937
+ @list l1:level9
938
+ {mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
939
+ mso-level-tab-stop:90.0pt;
940
+ mso-level-number-position:left;
941
+ margin-left:0cm;
942
+ text-indent:0cm;
943
+ mso-bidi-font-family:$headerfont;}
944
+ /* ordered list */
945
+ @list l2
946
+ {mso-list-id:525294607;
947
+ mso-list-template-ids:67633181;}
948
+ @list l2:level1
949
+ {mso-level-number-format:alpha-lower;
950
+ mso-level-text:"%1\)";
951
+ mso-level-tab-stop:none;
952
+ mso-level-number-position:left;
953
+ margin-left:18.0pt;
954
+ text-indent:-18.0pt;}
955
+ @list l2:level2
956
+ {mso-level-text:"%2\)";
957
+ mso-level-tab-stop:none;
958
+ mso-level-number-position:left;
959
+ margin-left:36.0pt;
960
+ text-indent:-18.0pt;}
961
+ @list l2:level3
962
+ {mso-level-number-format:roman-lower;
963
+ mso-level-text:"%3\)";
964
+ mso-level-tab-stop:none;
965
+ mso-level-number-position:left;
966
+ margin-left:54.0pt;
967
+ text-indent:-18.0pt;}
968
+ @list l2:level4
969
+ {mso-level-number-format:alpha-upper;
970
+ mso-level-text:"%4\)";
971
+ mso-level-tab-stop:none;
972
+ mso-level-number-position:left;
973
+ margin-left:72.0pt;
974
+ text-indent:-18.0pt;}
975
+ @list l2:level5
976
+ {mso-level-number-format:roman-upper;
977
+ mso-level-text:"%5\)";
978
+ mso-level-tab-stop:none;
979
+ mso-level-number-position:left;
980
+ margin-left:90.0pt;
981
+ text-indent:-18.0pt;}
982
+ @list l2:level6
983
+ {mso-level-number-format:alpha-lower;
984
+ mso-level-text:"%6\)";
985
+ mso-level-tab-stop:none;
986
+ mso-level-number-position:left;
987
+ margin-left:108.0pt;
988
+ text-indent:-18.0pt;}
989
+ @list l2:level7
990
+ {mso-level-tab-stop:none;
991
+ mso-level-text:"%7\)";
992
+ mso-level-number-position:left;
993
+ margin-left:126.0pt;
994
+ text-indent:-18.0pt;}
995
+ @list l2:level8
996
+ {mso-level-number-format:roman-lower;
997
+ mso-level-text:"%8\)";
998
+ mso-level-tab-stop:none;
999
+ mso-level-number-position:left;
1000
+ margin-left:144.0pt;
1001
+ text-indent:-18.0pt;}
1002
+ @list l2:level9
1003
+ {mso-level-number-format:alpha-upper;
1004
+ mso-level-text:"%9\)";
1005
+ mso-level-tab-stop:none;
1006
+ mso-level-number-position:left;
1007
+ margin-left:162.0pt;
1008
+ text-indent:-18.0pt;}
1009
+ /* Unordered list */
1010
+ @list l3
1011
+ {mso-list-id:1308196397;
1012
+ mso-list-type:hybrid;
1013
+ mso-list-template-ids:-277327948 -457018030 67633155 67633157 67633153 67633155 67633157 67633153 67633155 67633157;}
1014
+ @list l3:level1
1015
+ {mso-level-number-format:bullet;
1016
+ mso-level-text:—;
1017
+ mso-level-tab-stop:none;
1018
+ mso-level-number-position:left;
1019
+ margin-left:18.0pt;
1020
+ text-indent:-18.0pt;}
1021
+ @list l3:level2
1022
+ {mso-level-number-format:bullet;
1023
+ mso-level-text:—;
1024
+ mso-level-tab-stop:none;
1025
+ mso-level-number-position:left;
1026
+ margin-left:36.0pt;
1027
+ text-indent:-18.0pt;}
1028
+ @list l3:level3
1029
+ {mso-level-number-format:bullet;
1030
+ mso-level-text:—;
1031
+ mso-level-tab-stop:none;
1032
+ mso-level-number-position:left;
1033
+ margin-left:54.0pt;
1034
+ text-indent:-18.0pt;}
1035
+ @list l3:level4
1036
+ {mso-level-number-format:bullet;
1037
+ mso-level-text:—;
1038
+ mso-level-tab-stop:none;
1039
+ mso-level-number-position:left;
1040
+ margin-left:72.0pt;
1041
+ text-indent:-18.0pt;}
1042
+ @list l3:level5
1043
+ {mso-level-number-format:bullet;
1044
+ mso-level-text:—;
1045
+ mso-level-tab-stop:none;
1046
+ mso-level-number-position:left;
1047
+ margin-left:90.0pt;
1048
+ text-indent:-18.0pt;}
1049
+ @list l3:level6
1050
+ {mso-level-number-format:bullet;
1051
+ mso-level-text:—;
1052
+ mso-level-tab-stop:none;
1053
+ mso-level-number-position:left;
1054
+ margin-left:108.0pt;
1055
+ text-indent:-18.0pt;}
1056
+ @list l3:level7
1057
+ {mso-level-number-format:bullet;
1058
+ mso-level-text:—;
1059
+ mso-level-tab-stop:none;
1060
+ mso-level-number-position:left;
1061
+ margin-left:126.0pt;
1062
+ text-indent:-18.0pt;}
1063
+ @list l3:level8
1064
+ {mso-level-number-format:bullet;
1065
+ mso-level-text:—;
1066
+ mso-level-tab-stop:none;
1067
+ mso-level-number-position:left;
1068
+ margin-left:144.0pt;
1069
+ text-indent:-18.0pt;}
1070
+ @list l3:level9
1071
+ {mso-level-number-format:bullet;
1072
+ mso-level-text:—;
1073
+ mso-level-tab-stop:none;
1074
+ mso-level-number-position:left;
1075
+ margin-left:162.0pt;
1076
+ text-indent:-18.0pt;}
1077
+
1078
+ table.MsoNormalTable
1079
+ {mso-style-name:"Table Normal";
1080
+ mso-tstyle-rowband-size:0;
1081
+ mso-tstyle-colband-size:0;
1082
+ mso-style-noshow:yes;
1083
+ mso-style-priority:99;
1084
+ mso-style-parent:"";
1085
+ mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
1086
+ mso-para-margin:0cm;
1087
+ mso-para-margin-bottom:.0001pt;
1088
+ mso-pagination:widow-orphan;
1089
+ mso-table-anchor-vertical:paragraph;
1090
+ mso-table-bspace:12.0pt;
1091
+ font-size:10.0pt;
1092
+ font-family:$bodyfont;}
1093
+ br.section
1094
+ {page-break-before:always;
1095
+ mso-break-type:section-break;}
1096
+ br.pagebreak
1097
+ {page-break-before:always;
1098
+ mso-special-character:line-break;}
1099
+ ol
1100
+ {margin-bottom:0cm;
1101
+ margin-left:18pt;}
1102
+ ul
1103
+ {margin-bottom:0cm;
1104
+ margin-left:18pt;}
1105
+