asciidoctor-rsd 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +1 -0
- data/Gemfile.lock +51 -36
- data/asciidoctor-rsd.gemspec +3 -2
- data/lib/asciidoctor-rsd.rb +2 -1
- data/lib/asciidoctor/rsd/biblio.rng +35 -6
- data/lib/asciidoctor/rsd/converter.rb +38 -23
- data/lib/asciidoctor/rsd/isodoc.rng +1 -1
- data/lib/asciidoctor/rsd/isostandard.rng +64 -15
- data/lib/asciidoctor/rsd/m3d.rng +154 -0
- data/lib/asciidoctor/rsd/version.rb +1 -1
- data/lib/{asciidoctor → isodoc}/rsd/html/dots-w@2x.png +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/dots@2x.png +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/header.html +8 -8
- data/lib/{asciidoctor → isodoc}/rsd/html/html_rsd_intro.html +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/html_rsd_titlepage.html +11 -9
- data/lib/{asciidoctor → isodoc}/rsd/html/htmlstyle.scss +184 -95
- data/lib/isodoc/rsd/html/logo.jpg +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/rsd.scss +2 -2
- data/lib/isodoc/rsd/html/scripts.html +82 -0
- data/lib/isodoc/rsd/html/word_rsd_intro.html +72 -0
- data/lib/isodoc/rsd/html/word_rsd_titlepage.html +54 -0
- data/lib/isodoc/rsd/html/wordstyle.scss +944 -0
- data/lib/isodoc/rsd/metadata.rb +82 -0
- data/lib/{asciidoctor/rsd/rsdconvert.rb → isodoc/rsd/rsdhtmlconvert.rb} +69 -73
- data/lib/isodoc/rsd/rsdhtmlrender.rb +68 -0
- data/lib/isodoc/rsd/rsdwordconvert.rb +88 -0
- data/lib/isodoc/rsd/rsdwordrender.rb +68 -0
- metadata +25 -16
- data/lib/asciidoctor/rsd/html/scripts.html +0 -68
Binary file
|
@@ -15,7 +15,7 @@ p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode
|
|
15
15
|
mso-fareast-font-family:Calibri;
|
16
16
|
mso-bidi-font-family:"Courier New";
|
17
17
|
mso-ansi-language:EN-GB;}
|
18
|
-
p.Biblio, li.Biblio, div.Biblio
|
18
|
+
p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, div.NormRef
|
19
19
|
{mso-style-unhide:no;
|
20
20
|
mso-style-qformat:yes;
|
21
21
|
mso-style-parent:"";
|
@@ -28,7 +28,7 @@ p.Biblio, li.Biblio, div.Biblio
|
|
28
28
|
line-height:12.0pt;
|
29
29
|
mso-pagination:widow-orphan;
|
30
30
|
font-size:11.0pt;
|
31
|
-
font-weight:
|
31
|
+
font-weight:normal;
|
32
32
|
font-family:$bodyfont;
|
33
33
|
mso-fareast-font-family:$bodyfont;
|
34
34
|
mso-bidi-font-family:$bodyfont;
|
@@ -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,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 • 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. + 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 + 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,54 @@
|
|
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'>{{ agency }} </span><span lang="EN-GB"><span
|
7
|
+
style='mso-no-proof:yes'>{{ editorialgroup | 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> </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 }}<o:p></o:p></span></p>
|
22
|
+
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt'><span lang="EN-GB"><o:p> </o:p></span></p>
|
26
|
+
|
27
|
+
<div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
|
28
|
+
mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
|
29
|
+
margin-left:4.25pt;margin-right:4.25pt'>
|
30
|
+
|
31
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
32
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
33
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
34
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning for WDs
|
35
|
+
and CDs<o:p></o:p></span></b></p>
|
36
|
+
|
37
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
38
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
39
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This
|
40
|
+
document is not an ISO International Standard. It is distributed for review and
|
41
|
+
comment. It is subject to change without notice and may not be referred to as
|
42
|
+
an International Standard.<o:p></o:p></span></p>
|
43
|
+
|
44
|
+
<p class="MsoNormal" style='border:none;mso-border-alt:solid windowtext .5pt;
|
45
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
46
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>Recipients
|
47
|
+
of this draft are invited to submit, with their comments, notification of any
|
48
|
+
relevant patent rights of which they are aware and to provide supporting
|
49
|
+
documentation.</span><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:
|
50
|
+
11.0pt'><o:p></o:p></span></p>
|
51
|
+
|
52
|
+
</div>
|
53
|
+
|
54
|
+
|
@@ -0,0 +1,944 @@
|
|
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.MsoCommentText, li.MsoCommentText, div.MsoCommentText
|
79
|
+
{mso-style-noshow:yes;
|
80
|
+
mso-style-unhide:no;
|
81
|
+
margin:0cm;
|
82
|
+
margin-bottom:.0001pt;
|
83
|
+
mso-pagination:widow-orphan;
|
84
|
+
font-size:10.0pt;
|
85
|
+
font-family:$bodyfont;
|
86
|
+
mso-fareast-font-family:"Times New Roman";
|
87
|
+
mso-ansi-language:EN-US;
|
88
|
+
mso-fareast-language:EN-US;}
|
89
|
+
p.MsoHeader, li.MsoHeader, div.MsoHeader
|
90
|
+
{mso-style-unhide:no;
|
91
|
+
margin:0cm;
|
92
|
+
margin-bottom:.0001pt;
|
93
|
+
mso-pagination:widow-orphan;
|
94
|
+
tab-stops:center 216.0pt right 482.0pt;
|
95
|
+
font-size:11.0pt;
|
96
|
+
font-family:$bodyfont;
|
97
|
+
mso-fareast-font-family:"Times New Roman";
|
98
|
+
mso-ansi-language:EN-US;
|
99
|
+
mso-fareast-language:EN-US;}
|
100
|
+
p.MsoFooter, li.MsoFooter, div.MsoFooter
|
101
|
+
{mso-style-unhide:no;
|
102
|
+
margin:0cm;
|
103
|
+
margin-bottom:.0001pt;
|
104
|
+
mso-pagination:widow-orphan;
|
105
|
+
tab-stops:right 482.0pt;
|
106
|
+
font-size:11.0pt;
|
107
|
+
font-family:$bodyfont;
|
108
|
+
mso-fareast-font-family:"Times New Roman";
|
109
|
+
mso-ansi-language:EN-US;
|
110
|
+
mso-fareast-language:EN-US;}
|
111
|
+
span.MsoCommentReference
|
112
|
+
{mso-style-noshow:yes;
|
113
|
+
mso-style-unhide:no;
|
114
|
+
mso-style-parent:"";
|
115
|
+
mso-ansi-font-size:8.0pt;
|
116
|
+
mso-bidi-font-size:8.0pt;}
|
117
|
+
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
|
118
|
+
{mso-style-unhide:no;
|
119
|
+
margin-top:9.0pt;
|
120
|
+
margin-right:0cm;
|
121
|
+
margin-bottom:0cm;
|
122
|
+
margin-left:0cm;
|
123
|
+
margin-bottom:.0001pt;
|
124
|
+
mso-pagination:widow-orphan;
|
125
|
+
font-size:12.0pt;
|
126
|
+
font-family:$bodyfont;
|
127
|
+
mso-fareast-font-family:"Times New Roman";
|
128
|
+
mso-bidi-font-family:"Times New Roman";
|
129
|
+
mso-ansi-language:EN-US;
|
130
|
+
mso-fareast-language:EN-US;}
|
131
|
+
a:link, span.MsoHyperlink
|
132
|
+
{mso-style-unhide:no;
|
133
|
+
mso-style-parent:"";
|
134
|
+
color:blue;
|
135
|
+
text-decoration:underline;
|
136
|
+
text-underline:single;}
|
137
|
+
a:visited, span.MsoHyperlinkFollowed
|
138
|
+
{mso-style-unhide:no;
|
139
|
+
mso-style-parent:"";
|
140
|
+
color:purple;
|
141
|
+
text-decoration:underline;
|
142
|
+
text-underline:single;}
|
143
|
+
p
|
144
|
+
{mso-style-priority:99;
|
145
|
+
mso-margin-top-alt:auto;
|
146
|
+
margin-right:0cm;
|
147
|
+
mso-margin-bottom-alt:auto;
|
148
|
+
margin-left:0cm;
|
149
|
+
mso-pagination:widow-orphan;
|
150
|
+
font-size:10.0pt;
|
151
|
+
font-family:$bodyfont;
|
152
|
+
mso-fareast-font-family:"MS Mincho";
|
153
|
+
mso-bidi-font-family:"Times New Roman";
|
154
|
+
mso-ansi-language:EN-US;
|
155
|
+
mso-fareast-language:EN-US;}
|
156
|
+
p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
|
157
|
+
{mso-style-noshow:yes;
|
158
|
+
mso-style-unhide:no;
|
159
|
+
mso-style-parent:"Comment Text";
|
160
|
+
mso-style-next:"Comment Text";
|
161
|
+
margin:0cm;
|
162
|
+
margin-bottom:.0001pt;
|
163
|
+
mso-pagination:widow-orphan;
|
164
|
+
font-size:10.0pt;
|
165
|
+
font-family:$bodyfont;
|
166
|
+
mso-fareast-font-family:"Times New Roman";
|
167
|
+
mso-ansi-language:EN-US;
|
168
|
+
mso-fareast-language:EN-US;
|
169
|
+
font-weight:bold;}
|
170
|
+
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
|
171
|
+
{mso-style-noshow:yes;
|
172
|
+
mso-style-unhide:no;
|
173
|
+
margin:0cm;
|
174
|
+
margin-bottom:.0001pt;
|
175
|
+
mso-pagination:widow-orphan;
|
176
|
+
font-size:8.0pt;
|
177
|
+
font-family:"Tahoma",sans-serif;
|
178
|
+
mso-fareast-font-family:"Times New Roman";
|
179
|
+
mso-ansi-language:EN-US;
|
180
|
+
mso-fareast-language:EN-US;}
|
181
|
+
span.blackgraphtxsidebar
|
182
|
+
{mso-style-name:blackgraphtxsidebar;
|
183
|
+
mso-style-unhide:no;
|
184
|
+
mso-style-parent:"";}
|
185
|
+
span.blackgraphtx
|
186
|
+
{mso-style-name:blackgraphtx;
|
187
|
+
mso-style-unhide:no;
|
188
|
+
mso-style-parent:"";}
|
189
|
+
.MsoChpDefault
|
190
|
+
{mso-style-type:export-only;
|
191
|
+
mso-default-props:yes;}
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
h1
|
196
|
+
{mso-style-priority:1;
|
197
|
+
mso-style-unhide:no;
|
198
|
+
mso-style-qformat:yes;
|
199
|
+
mso-style-link:"Heading 1 Char";
|
200
|
+
mso-style-next:Normal;
|
201
|
+
margin-top:13.5pt;
|
202
|
+
margin-right:0cm;
|
203
|
+
margin-bottom:12.0pt;
|
204
|
+
margin-left:0cm;
|
205
|
+
text-indent:0cm;
|
206
|
+
line-height:13.5pt;
|
207
|
+
mso-pagination:widow-orphan;
|
208
|
+
page-break-after:avoid;
|
209
|
+
mso-outline-level:1;
|
210
|
+
mso-list:l1 level1 lfo6;
|
211
|
+
mso-hyphenate:none;
|
212
|
+
tab-stops:20.0pt list 21.6pt left 28.0pt;
|
213
|
+
font-size:13.0pt;
|
214
|
+
mso-bidi-font-size:11.0pt;
|
215
|
+
font-family:$headerfont;
|
216
|
+
mso-fareast-font-family:$headerfont;
|
217
|
+
mso-font-kerning:0pt;
|
218
|
+
mso-ansi-language:EN-GB;
|
219
|
+
mso-fareast-language:JA;
|
220
|
+
mso-bidi-font-weight:normal;}
|
221
|
+
h1.Annex
|
222
|
+
{mso-style-priority:1;
|
223
|
+
mso-style-unhide:no;
|
224
|
+
mso-style-qformat:yes;
|
225
|
+
mso-style-link:"Heading 1 Char";
|
226
|
+
mso-style-next:Normal;
|
227
|
+
margin-top:13.5pt;
|
228
|
+
margin-right:0cm;
|
229
|
+
margin-bottom:12.0pt;
|
230
|
+
margin-left:0cm;
|
231
|
+
text-indent:0cm;
|
232
|
+
line-height:13.5pt;
|
233
|
+
text-align:center;
|
234
|
+
mso-pagination:widow-orphan;
|
235
|
+
page-break-after:avoid;
|
236
|
+
font-weight:normal;
|
237
|
+
mso-outline-level:1;
|
238
|
+
mso-list:l1 level1 lfo6;
|
239
|
+
mso-hyphenate:none;
|
240
|
+
tab-stops:20.0pt list 21.6pt left 28.0pt;
|
241
|
+
font-size:13.0pt;
|
242
|
+
mso-bidi-font-size:11.0pt;
|
243
|
+
font-family:$headerfont;
|
244
|
+
mso-fareast-font-family:$headerfont;
|
245
|
+
mso-font-kerning:0pt;
|
246
|
+
mso-ansi-language:EN-GB;
|
247
|
+
mso-fareast-language:JA;
|
248
|
+
mso-bidi-font-weight:normal;}
|
249
|
+
h2
|
250
|
+
{mso-style-priority:2;
|
251
|
+
mso-style-unhide:no;
|
252
|
+
mso-style-qformat:yes;
|
253
|
+
mso-style-parent:"Heading 1";
|
254
|
+
mso-style-link:"Heading 2 Char";
|
255
|
+
mso-style-next:Normal;
|
256
|
+
margin-top:3.0pt;
|
257
|
+
margin-right:0cm;
|
258
|
+
margin-bottom:12.0pt;
|
259
|
+
margin-left:0cm;
|
260
|
+
text-indent:0cm;
|
261
|
+
line-height:12.5pt;
|
262
|
+
mso-pagination:widow-orphan;
|
263
|
+
page-break-after:avoid;
|
264
|
+
mso-outline-level:2;
|
265
|
+
mso-list:l1 level2 lfo6;
|
266
|
+
mso-hyphenate:none;
|
267
|
+
tab-stops:27.0pt 35.0pt;
|
268
|
+
font-size:12.0pt;
|
269
|
+
mso-bidi-font-size:11.0pt;
|
270
|
+
font-family:$headerfont;
|
271
|
+
mso-fareast-font-family:$headerfont;
|
272
|
+
mso-ansi-language:EN-GB;
|
273
|
+
mso-fareast-language:JA;
|
274
|
+
mso-bidi-font-weight:normal;}
|
275
|
+
h3
|
276
|
+
{mso-style-priority:3;
|
277
|
+
mso-style-unhide:no;
|
278
|
+
mso-style-qformat:yes;
|
279
|
+
mso-style-parent:"Heading 1";
|
280
|
+
mso-style-link:"Heading 3 Char";
|
281
|
+
mso-style-next:Normal;
|
282
|
+
margin-top:3.0pt;
|
283
|
+
margin-right:0cm;
|
284
|
+
margin-bottom:12.0pt;
|
285
|
+
margin-left:0cm;
|
286
|
+
text-indent:0cm;
|
287
|
+
line-height:12.0pt;
|
288
|
+
mso-pagination:widow-orphan;
|
289
|
+
page-break-after:avoid;
|
290
|
+
mso-outline-level:3;
|
291
|
+
mso-list:l1 level3 lfo6;
|
292
|
+
mso-hyphenate:none;
|
293
|
+
tab-stops:list 36.0pt left 44.0pt;
|
294
|
+
font-size:11.0pt;
|
295
|
+
font-family:$headerfont;
|
296
|
+
mso-fareast-font-family:$headerfont;
|
297
|
+
mso-ansi-language:EN-GB;
|
298
|
+
mso-fareast-language:JA;
|
299
|
+
mso-bidi-font-weight:normal;}
|
300
|
+
h4
|
301
|
+
{mso-style-priority:4;
|
302
|
+
mso-style-unhide:no;
|
303
|
+
mso-style-qformat:yes;
|
304
|
+
mso-style-parent:"Heading 3";
|
305
|
+
mso-style-link:"Heading 4 Char";
|
306
|
+
mso-style-next:Normal;
|
307
|
+
margin-top:3.0pt;
|
308
|
+
margin-right:0cm;
|
309
|
+
margin-bottom:12.0pt;
|
310
|
+
margin-left:0cm;
|
311
|
+
text-indent:0cm;
|
312
|
+
line-height:12.0pt;
|
313
|
+
mso-pagination:widow-orphan;
|
314
|
+
page-break-after:avoid;
|
315
|
+
mso-outline-level:4;
|
316
|
+
mso-list:l1 level4 lfo6;
|
317
|
+
mso-hyphenate:none;
|
318
|
+
tab-stops:51.05pt 57.0pt 68.0pt;
|
319
|
+
font-size:11.0pt;
|
320
|
+
font-family:$headerfont;
|
321
|
+
mso-fareast-font-family:$headerfont;
|
322
|
+
mso-ansi-language:EN-GB;
|
323
|
+
mso-fareast-language:JA;
|
324
|
+
mso-bidi-font-weight:normal;}
|
325
|
+
h5
|
326
|
+
{mso-style-priority:5;
|
327
|
+
mso-style-unhide:no;
|
328
|
+
mso-style-qformat:yes;
|
329
|
+
mso-style-parent:"Heading 4";
|
330
|
+
mso-style-link:"Heading 5 Char";
|
331
|
+
mso-style-next:Normal;
|
332
|
+
margin-top:3.0pt;
|
333
|
+
margin-right:0cm;
|
334
|
+
margin-bottom:12.0pt;
|
335
|
+
margin-left:0cm;
|
336
|
+
text-indent:0cm;
|
337
|
+
line-height:12.0pt;
|
338
|
+
mso-pagination:widow-orphan;
|
339
|
+
page-break-after:avoid;
|
340
|
+
mso-outline-level:5;
|
341
|
+
mso-list:l1 level5 lfo6;
|
342
|
+
mso-hyphenate:none;
|
343
|
+
tab-stops:51.05pt list 54.0pt;
|
344
|
+
font-size:11.0pt;
|
345
|
+
font-family:$headerfont;
|
346
|
+
mso-fareast-font-family:$headerfont;
|
347
|
+
mso-ansi-language:EN-GB;
|
348
|
+
mso-fareast-language:JA;
|
349
|
+
mso-bidi-font-weight:normal;}
|
350
|
+
h6
|
351
|
+
{mso-style-priority:6;
|
352
|
+
mso-style-unhide:no;
|
353
|
+
mso-style-qformat:yes;
|
354
|
+
mso-style-parent:"Heading 5";
|
355
|
+
mso-style-link:"Heading 6 Char";
|
356
|
+
mso-style-next:Normal;
|
357
|
+
margin-top:3.0pt;
|
358
|
+
margin-right:0cm;
|
359
|
+
margin-bottom:12.0pt;
|
360
|
+
margin-left:0cm;
|
361
|
+
text-indent:0cm;
|
362
|
+
line-height:12.0pt;
|
363
|
+
mso-pagination:widow-orphan;
|
364
|
+
page-break-after:avoid;
|
365
|
+
mso-outline-level:6;
|
366
|
+
mso-list:l1 level6 lfo6;
|
367
|
+
mso-hyphenate:none;
|
368
|
+
tab-stops:51.05pt list 72.0pt;
|
369
|
+
font-size:11.0pt;
|
370
|
+
font-family:$headerfont;
|
371
|
+
mso-fareast-font-family:$headerfont;
|
372
|
+
mso-ansi-language:EN-GB;
|
373
|
+
mso-fareast-language:JA;
|
374
|
+
mso-bidi-font-weight:normal;}
|
375
|
+
p.MsoToc1, li.MsoToc1, div.MsoToc1
|
376
|
+
{mso-style-priority:39;
|
377
|
+
mso-style-unhide:no;
|
378
|
+
mso-style-next:Normal;
|
379
|
+
margin-top:6.0pt;
|
380
|
+
margin-right:25.0pt;
|
381
|
+
margin-bottom:0cm;
|
382
|
+
margin-left:36.0pt;
|
383
|
+
margin-bottom:.0001pt;
|
384
|
+
text-indent:-36.0pt;
|
385
|
+
line-height:12.0pt;
|
386
|
+
mso-pagination:widow-orphan;
|
387
|
+
mso-hyphenate:none;
|
388
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
389
|
+
font-size:11.0pt;
|
390
|
+
font-family:$bodyfont;
|
391
|
+
mso-fareast-font-family:$bodyfont;
|
392
|
+
mso-bidi-font-family:$bodyfont;
|
393
|
+
mso-ansi-language:EN-GB;
|
394
|
+
font-weight:bold;
|
395
|
+
mso-bidi-font-weight:normal;}
|
396
|
+
p.MsoToc2, li.MsoToc2, div.MsoToc2
|
397
|
+
{mso-style-noshow:yes;
|
398
|
+
mso-style-priority:39;
|
399
|
+
mso-style-unhide:no;
|
400
|
+
mso-style-parent:"TOC 1";
|
401
|
+
mso-style-next:Normal;
|
402
|
+
margin-top:0cm;
|
403
|
+
margin-right:25.0pt;
|
404
|
+
margin-bottom:0cm;
|
405
|
+
margin-left:36.0pt;
|
406
|
+
margin-bottom:.0001pt;
|
407
|
+
text-indent:-36.0pt;
|
408
|
+
line-height:12.0pt;
|
409
|
+
mso-pagination:widow-orphan;
|
410
|
+
mso-hyphenate:none;
|
411
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
412
|
+
font-size:11.0pt;
|
413
|
+
font-family:$bodyfont;
|
414
|
+
mso-fareast-font-family:$bodyfont;
|
415
|
+
mso-bidi-font-family:$bodyfont;
|
416
|
+
mso-ansi-language:EN-GB;
|
417
|
+
font-weight:bold;
|
418
|
+
mso-bidi-font-weight:normal;}
|
419
|
+
p.MsoToc3, li.MsoToc3, div.MsoToc3
|
420
|
+
{mso-style-noshow:yes;
|
421
|
+
mso-style-priority:39;
|
422
|
+
mso-style-unhide:no;
|
423
|
+
mso-style-parent:"TOC 2";
|
424
|
+
mso-style-next:Normal;
|
425
|
+
margin-top:0cm;
|
426
|
+
margin-right:25.0pt;
|
427
|
+
margin-bottom:0cm;
|
428
|
+
margin-left:36.0pt;
|
429
|
+
margin-bottom:.0001pt;
|
430
|
+
text-indent:-36.0pt;
|
431
|
+
line-height:12.0pt;
|
432
|
+
mso-pagination:widow-orphan;
|
433
|
+
mso-hyphenate:none;
|
434
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
435
|
+
font-size:11.0pt;
|
436
|
+
font-family:$bodyfont;
|
437
|
+
mso-fareast-font-family:$bodyfont;
|
438
|
+
mso-bidi-font-family:$bodyfont;
|
439
|
+
mso-ansi-language:EN-GB;
|
440
|
+
font-weight:bold;
|
441
|
+
mso-bidi-font-weight:normal;}
|
442
|
+
span.MsoFootnoteReference
|
443
|
+
{mso-style-priority:99;
|
444
|
+
vertical-align:super;}
|
445
|
+
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
|
446
|
+
{mso-style-noshow:yes;
|
447
|
+
mso-style-priority:99;
|
448
|
+
mso-style-link:"Footnote Text Char";
|
449
|
+
margin-top:0cm;
|
450
|
+
margin-right:0cm;
|
451
|
+
margin-bottom:12.0pt;
|
452
|
+
margin-left:0cm;
|
453
|
+
text-align:justify;
|
454
|
+
line-height:12.0pt;
|
455
|
+
mso-pagination:widow-orphan;
|
456
|
+
tab-stops:20.15pt;
|
457
|
+
font-size:10.0pt;
|
458
|
+
font-family:$bodyfont;
|
459
|
+
mso-fareast-font-family:$bodyfont;
|
460
|
+
mso-bidi-font-family:$bodyfont;
|
461
|
+
mso-ansi-language:EN-GB;
|
462
|
+
mso-fareast-language:EN-US;}
|
463
|
+
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
|
464
|
+
{mso-style-noshow:yes;
|
465
|
+
mso-style-priority:99;
|
466
|
+
mso-style-unhide:no;
|
467
|
+
mso-style-link:"Body Text Char";
|
468
|
+
margin-top:0cm;
|
469
|
+
margin-right:0cm;
|
470
|
+
margin-bottom:6.0pt;
|
471
|
+
margin-left:0cm;
|
472
|
+
text-align:justify;
|
473
|
+
line-height:12.0pt;
|
474
|
+
mso-pagination:widow-orphan;
|
475
|
+
font-size:11.0pt;
|
476
|
+
font-family:$bodyfont;
|
477
|
+
mso-fareast-font-family:$bodyfont;
|
478
|
+
mso-bidi-font-family:$bodyfont;
|
479
|
+
mso-ansi-language:EN-GB;}
|
480
|
+
span.Heading1Char
|
481
|
+
{mso-style-name:"Heading 1 Char";
|
482
|
+
mso-style-priority:1;
|
483
|
+
mso-style-unhide:no;
|
484
|
+
mso-style-locked:yes;
|
485
|
+
mso-style-parent:"";
|
486
|
+
mso-style-link:"Heading 1";
|
487
|
+
mso-ansi-font-size:13.0pt;
|
488
|
+
font-family:$headerfont;
|
489
|
+
mso-ascii-font-family:Cambria;
|
490
|
+
mso-fareast-font-family:$headerfont;
|
491
|
+
mso-hansi-font-family:$headerfont;
|
492
|
+
mso-ansi-language:EN-GB;
|
493
|
+
mso-fareast-language:JA;
|
494
|
+
font-weight:bold;
|
495
|
+
mso-bidi-font-weight:normal;}
|
496
|
+
span.Heading2Char
|
497
|
+
{mso-style-name:"Heading 2 Char";
|
498
|
+
mso-style-priority:2;
|
499
|
+
mso-style-unhide:no;
|
500
|
+
mso-style-locked:yes;
|
501
|
+
mso-style-parent:"";
|
502
|
+
mso-style-link:"Heading 2";
|
503
|
+
mso-ansi-font-size:12.0pt;
|
504
|
+
font-family:$headerfont;
|
505
|
+
mso-ascii-font-family:Cambria;
|
506
|
+
mso-fareast-font-family:$headerfont;
|
507
|
+
mso-hansi-font-family:$headerfont;
|
508
|
+
mso-ansi-language:EN-GB;
|
509
|
+
mso-fareast-language:JA;
|
510
|
+
font-weight:bold;
|
511
|
+
mso-bidi-font-weight:normal;}
|
512
|
+
span.Heading3Char
|
513
|
+
{mso-style-name:"Heading 3 Char";
|
514
|
+
mso-style-priority:3;
|
515
|
+
mso-style-unhide:no;
|
516
|
+
mso-style-locked:yes;
|
517
|
+
mso-style-parent:"";
|
518
|
+
mso-style-link:"Heading 3";
|
519
|
+
mso-ansi-font-size:11.0pt;
|
520
|
+
font-family:$headerfont;
|
521
|
+
mso-ascii-font-family:$headerfont;
|
522
|
+
mso-fareast-font-family:$headerfont;
|
523
|
+
mso-hansi-font-family:$headerfont;
|
524
|
+
mso-ansi-language:EN-GB;
|
525
|
+
mso-fareast-language:JA;
|
526
|
+
font-weight:bold;
|
527
|
+
mso-bidi-font-weight:normal;}
|
528
|
+
span.Heading4Char
|
529
|
+
{mso-style-name:"Heading 4 Char";
|
530
|
+
mso-style-priority:4;
|
531
|
+
mso-style-unhide:no;
|
532
|
+
mso-style-locked:yes;
|
533
|
+
mso-style-parent:"";
|
534
|
+
mso-style-link:"Heading 4";
|
535
|
+
mso-ansi-font-size:11.0pt;
|
536
|
+
font-family:$headerfont;
|
537
|
+
mso-ascii-font-family:$headerfont;
|
538
|
+
mso-fareast-font-family:$headerfont;
|
539
|
+
mso-hansi-font-family:$headerfont;
|
540
|
+
mso-ansi-language:EN-GB;
|
541
|
+
mso-fareast-language:JA;
|
542
|
+
font-weight:bold;
|
543
|
+
mso-bidi-font-weight:normal;}
|
544
|
+
span.Heading5Char
|
545
|
+
{mso-style-name:"Heading 5 Char";
|
546
|
+
mso-style-priority:5;
|
547
|
+
mso-style-unhide:no;
|
548
|
+
mso-style-locked:yes;
|
549
|
+
mso-style-parent:"";
|
550
|
+
mso-style-link:"Heading 5";
|
551
|
+
mso-ansi-font-size:11.0pt;
|
552
|
+
font-family:$headerfont;
|
553
|
+
mso-ascii-font-family:$headerfont;
|
554
|
+
mso-fareast-font-family:$headerfont;
|
555
|
+
mso-hansi-font-family:$headerfont;
|
556
|
+
mso-ansi-language:EN-GB;
|
557
|
+
mso-fareast-language:JA;
|
558
|
+
font-weight:bold;
|
559
|
+
mso-bidi-font-weight:normal;}
|
560
|
+
span.Heading6Char
|
561
|
+
{mso-style-name:"Heading 6 Char";
|
562
|
+
mso-style-priority:6;
|
563
|
+
mso-style-unhide:no;
|
564
|
+
mso-style-locked:yes;
|
565
|
+
mso-style-parent:"";
|
566
|
+
mso-style-link:"Heading 6";
|
567
|
+
mso-ansi-font-size:11.0pt;
|
568
|
+
font-family:$headerfont;
|
569
|
+
mso-ascii-font-family:$headerfont;
|
570
|
+
mso-fareast-font-family:$headerfont;
|
571
|
+
mso-hansi-font-family:$headerfont;
|
572
|
+
mso-ansi-language:EN-GB;
|
573
|
+
mso-fareast-language:JA;
|
574
|
+
font-weight:bold;
|
575
|
+
mso-bidi-font-weight:normal;}
|
576
|
+
p.Tablebody, li.Tablebody, div.Tablebody
|
577
|
+
{mso-style-name:"Table body";
|
578
|
+
mso-style-noshow:yes;
|
579
|
+
mso-style-unhide:no;
|
580
|
+
margin-top:3.0pt;
|
581
|
+
margin-right:0cm;
|
582
|
+
margin-bottom:3.0pt;
|
583
|
+
margin-left:0cm;
|
584
|
+
line-height:10.5pt;
|
585
|
+
mso-pagination:widow-orphan;
|
586
|
+
font-size:10.0pt;
|
587
|
+
mso-bidi-font-size:11.0pt;
|
588
|
+
font-family:$bodyfont;
|
589
|
+
mso-fareast-font-family:$bodyfont;
|
590
|
+
mso-bidi-font-family:$bodyfont;
|
591
|
+
mso-ansi-language:EN-GB;}
|
592
|
+
|
593
|
+
|
594
|
+
/* Page Definitions */
|
595
|
+
@page
|
596
|
+
{
|
597
|
+
size:612.0pt 792.0pt;
|
598
|
+
margin:36.0pt 53.85pt 21.55pt 53.85pt;
|
599
|
+
mso-header-margin:42.55pt;
|
600
|
+
mso-footer-margin:43.1pt;
|
601
|
+
mso-footnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") fs;
|
602
|
+
mso-footnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") fcs;
|
603
|
+
mso-endnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") es;
|
604
|
+
mso-endnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") ecs;
|
605
|
+
}
|
606
|
+
/* List Definitions */
|
607
|
+
@list l0
|
608
|
+
{mso-list-id:145051656;
|
609
|
+
mso-list-template-ids:2112159680;}
|
610
|
+
@list l0:level1
|
611
|
+
{mso-level-number-format:alpha-upper;
|
612
|
+
mso-level-style-link:ANNEX;
|
613
|
+
mso-level-suffix:none;
|
614
|
+
mso-level-text:"Annex\00A0%1";
|
615
|
+
mso-level-tab-stop:none;
|
616
|
+
mso-level-number-position:left;
|
617
|
+
margin-left:0cm;
|
618
|
+
text-indent:0cm;
|
619
|
+
mso-ansi-font-size:14.0pt;
|
620
|
+
mso-bidi-font-size:14.0pt;
|
621
|
+
font-family:$bodyfont;
|
622
|
+
mso-bidi-font-family:$bodyfont;
|
623
|
+
mso-ansi-font-weight:bold;
|
624
|
+
mso-ansi-font-style:normal;}
|
625
|
+
@list l0:level2
|
626
|
+
{mso-level-style-link:a2;
|
627
|
+
mso-level-text:"%1\.%2";
|
628
|
+
mso-level-tab-stop:18.0pt;
|
629
|
+
mso-level-number-position:left;
|
630
|
+
margin-left:0cm;
|
631
|
+
text-indent:0cm;
|
632
|
+
mso-bidi-font-family:$bodyfont;
|
633
|
+
mso-ansi-font-weight:bold;
|
634
|
+
mso-ansi-font-style:normal;}
|
635
|
+
@list l0:level3
|
636
|
+
{mso-level-style-link:a3;
|
637
|
+
mso-level-text:"%1\.%2\.%3";
|
638
|
+
mso-level-tab-stop:36.0pt;
|
639
|
+
mso-level-number-position:left;
|
640
|
+
margin-left:0cm;
|
641
|
+
text-indent:0cm;
|
642
|
+
mso-bidi-font-family:$bodyfont;
|
643
|
+
mso-ansi-font-weight:bold;
|
644
|
+
mso-ansi-font-style:normal;}
|
645
|
+
@list l0:level4
|
646
|
+
{mso-level-style-link:a4;
|
647
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
648
|
+
mso-level-tab-stop:54.0pt;
|
649
|
+
mso-level-number-position:left;
|
650
|
+
margin-left:0cm;
|
651
|
+
text-indent:0cm;
|
652
|
+
mso-bidi-font-family:$bodyfont;
|
653
|
+
mso-ansi-font-weight:bold;
|
654
|
+
mso-ansi-font-style:normal;}
|
655
|
+
@list l0:level5
|
656
|
+
{mso-level-style-link:a5;
|
657
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
658
|
+
mso-level-tab-stop:54.0pt;
|
659
|
+
mso-level-number-position:left;
|
660
|
+
margin-left:0cm;
|
661
|
+
text-indent:0cm;
|
662
|
+
mso-bidi-font-family:$bodyfont;
|
663
|
+
mso-ansi-font-weight:bold;
|
664
|
+
mso-ansi-font-style:normal;}
|
665
|
+
@list l0:level6
|
666
|
+
{mso-level-style-link:a6;
|
667
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
668
|
+
mso-level-tab-stop:72.0pt;
|
669
|
+
mso-level-number-position:left;
|
670
|
+
margin-left:0cm;
|
671
|
+
text-indent:0cm;
|
672
|
+
mso-bidi-font-family:$bodyfont;
|
673
|
+
mso-ansi-font-weight:bold;
|
674
|
+
mso-ansi-font-style:normal;}
|
675
|
+
@list l0:level7
|
676
|
+
{mso-level-reset-level:level2;
|
677
|
+
mso-level-suffix:space;
|
678
|
+
mso-level-text:"Figure\00A0%1\.%7\00A0—";
|
679
|
+
mso-level-tab-stop:none;
|
680
|
+
mso-level-number-position:left;
|
681
|
+
margin-left:0cm;
|
682
|
+
text-indent:0cm;
|
683
|
+
mso-bidi-font-family:$bodyfont;}
|
684
|
+
@list l0:level8
|
685
|
+
{mso-level-reset-level:level2;
|
686
|
+
mso-level-suffix:space;
|
687
|
+
mso-level-text:"Table\00A0%1\.%8\00A0—";
|
688
|
+
mso-level-tab-stop:none;
|
689
|
+
mso-level-number-position:left;
|
690
|
+
margin-left:0cm;
|
691
|
+
text-indent:0cm;
|
692
|
+
mso-bidi-font-family:$bodyfont;}
|
693
|
+
@list l0:level9
|
694
|
+
{mso-level-number-format:roman-lower;
|
695
|
+
mso-level-text:"\(%9\)";
|
696
|
+
mso-level-tab-stop:306.0pt;
|
697
|
+
mso-level-number-position:left;
|
698
|
+
margin-left:0cm;
|
699
|
+
text-indent:0cm;
|
700
|
+
mso-bidi-font-family:$bodyfont;}
|
701
|
+
@list l1
|
702
|
+
{mso-list-id:866942648;
|
703
|
+
mso-list-template-ids:-1756330000;}
|
704
|
+
@list l1:level1
|
705
|
+
{mso-level-style-link:"Heading 1";
|
706
|
+
mso-level-text:"%1";
|
707
|
+
mso-level-tab-stop:21.6pt;
|
708
|
+
mso-level-number-position:left;
|
709
|
+
margin-left:21.6pt;
|
710
|
+
text-indent:-21.6pt;
|
711
|
+
mso-bidi-font-family:$headerfont;
|
712
|
+
mso-ansi-font-weight:bold;
|
713
|
+
mso-ansi-font-style:normal;}
|
714
|
+
@list l1:level2
|
715
|
+
{mso-level-style-link:"Heading 2";
|
716
|
+
mso-level-text:"%1\.%2";
|
717
|
+
mso-level-tab-stop:18.0pt;
|
718
|
+
mso-level-number-position:left;
|
719
|
+
margin-left:0cm;
|
720
|
+
text-indent:0cm;
|
721
|
+
mso-bidi-font-family:$headerfont;
|
722
|
+
mso-ansi-font-weight:bold;
|
723
|
+
mso-ansi-font-style:normal;}
|
724
|
+
@list l1:level3
|
725
|
+
{mso-level-style-link:"Heading 3";
|
726
|
+
mso-level-text:"%1\.%2\.%3";
|
727
|
+
mso-level-tab-stop:36.0pt;
|
728
|
+
mso-level-number-position:left;
|
729
|
+
margin-left:0cm;
|
730
|
+
text-indent:0cm;
|
731
|
+
mso-bidi-font-family:$headerfont;
|
732
|
+
mso-ansi-font-weight:bold;
|
733
|
+
mso-ansi-font-style:normal;}
|
734
|
+
@list l1:level4
|
735
|
+
{mso-level-style-link:"Heading 4";
|
736
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
737
|
+
mso-level-tab-stop:54.0pt;
|
738
|
+
mso-level-number-position:left;
|
739
|
+
margin-left:0cm;
|
740
|
+
text-indent:0cm;
|
741
|
+
mso-bidi-font-family:$headerfont;
|
742
|
+
mso-ansi-font-weight:bold;
|
743
|
+
mso-ansi-font-style:normal;}
|
744
|
+
@list l1:level5
|
745
|
+
{mso-level-style-link:"Heading 5";
|
746
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
747
|
+
mso-level-tab-stop:54.0pt;
|
748
|
+
mso-level-number-position:left;
|
749
|
+
margin-left:0cm;
|
750
|
+
text-indent:0cm;
|
751
|
+
mso-bidi-font-family:$headerfont;
|
752
|
+
mso-ansi-font-weight:bold;
|
753
|
+
mso-ansi-font-style:normal;}
|
754
|
+
@list l1:level6
|
755
|
+
{mso-level-style-link:"Heading 6";
|
756
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
757
|
+
mso-level-tab-stop:72.0pt;
|
758
|
+
mso-level-number-position:left;
|
759
|
+
margin-left:0cm;
|
760
|
+
text-indent:0cm;
|
761
|
+
mso-bidi-font-family:$headerfont;
|
762
|
+
mso-ansi-font-weight:bold;
|
763
|
+
mso-ansi-font-style:normal;}
|
764
|
+
@list l1:level7
|
765
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
|
766
|
+
mso-level-tab-stop:72.0pt;
|
767
|
+
mso-level-number-position:left;
|
768
|
+
margin-left:0cm;
|
769
|
+
text-indent:0cm;
|
770
|
+
mso-bidi-font-family:$headerfont;}
|
771
|
+
@list l1:level8
|
772
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
|
773
|
+
mso-level-tab-stop:90.0pt;
|
774
|
+
mso-level-number-position:left;
|
775
|
+
margin-left:0cm;
|
776
|
+
text-indent:0cm;
|
777
|
+
mso-bidi-font-family:$headerfont;}
|
778
|
+
@list l1:level9
|
779
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
|
780
|
+
mso-level-tab-stop:90.0pt;
|
781
|
+
mso-level-number-position:left;
|
782
|
+
margin-left:0cm;
|
783
|
+
text-indent:0cm;
|
784
|
+
mso-bidi-font-family:$headerfont;}
|
785
|
+
/* ordered list */
|
786
|
+
@list l2
|
787
|
+
{mso-list-id:525294607;
|
788
|
+
mso-list-template-ids:67633181;}
|
789
|
+
@list l2:level1
|
790
|
+
{mso-level-number-format:alpha-lower;
|
791
|
+
mso-level-text:"%1\)";
|
792
|
+
mso-level-tab-stop:none;
|
793
|
+
mso-level-number-position:left;
|
794
|
+
margin-left:18.0pt;
|
795
|
+
text-indent:-18.0pt;}
|
796
|
+
@list l2:level2
|
797
|
+
{mso-level-text:"%2\)";
|
798
|
+
mso-level-tab-stop:none;
|
799
|
+
mso-level-number-position:left;
|
800
|
+
margin-left:36.0pt;
|
801
|
+
text-indent:-18.0pt;}
|
802
|
+
@list l2:level3
|
803
|
+
{mso-level-number-format:roman-lower;
|
804
|
+
mso-level-text:"%3\)";
|
805
|
+
mso-level-tab-stop:none;
|
806
|
+
mso-level-number-position:left;
|
807
|
+
margin-left:54.0pt;
|
808
|
+
text-indent:-18.0pt;}
|
809
|
+
@list l2:level4
|
810
|
+
{mso-level-number-format:alpha-upper;
|
811
|
+
mso-level-text:"%4\)";
|
812
|
+
mso-level-tab-stop:none;
|
813
|
+
mso-level-number-position:left;
|
814
|
+
margin-left:72.0pt;
|
815
|
+
text-indent:-18.0pt;}
|
816
|
+
@list l2:level5
|
817
|
+
{mso-level-number-format:roman-upper;
|
818
|
+
mso-level-text:"%5\)";
|
819
|
+
mso-level-tab-stop:none;
|
820
|
+
mso-level-number-position:left;
|
821
|
+
margin-left:90.0pt;
|
822
|
+
text-indent:-18.0pt;}
|
823
|
+
@list l2:level6
|
824
|
+
{mso-level-number-format:alpha-lower;
|
825
|
+
mso-level-text:"%6\)";
|
826
|
+
mso-level-tab-stop:none;
|
827
|
+
mso-level-number-position:left;
|
828
|
+
margin-left:108.0pt;
|
829
|
+
text-indent:-18.0pt;}
|
830
|
+
@list l2:level7
|
831
|
+
{mso-level-tab-stop:none;
|
832
|
+
mso-level-text:"%7\)";
|
833
|
+
mso-level-number-position:left;
|
834
|
+
margin-left:126.0pt;
|
835
|
+
text-indent:-18.0pt;}
|
836
|
+
@list l2:level8
|
837
|
+
{mso-level-number-format:roman-lower;
|
838
|
+
mso-level-text:"%8\)";
|
839
|
+
mso-level-tab-stop:none;
|
840
|
+
mso-level-number-position:left;
|
841
|
+
margin-left:144.0pt;
|
842
|
+
text-indent:-18.0pt;}
|
843
|
+
@list l2:level9
|
844
|
+
{mso-level-number-format:alpha-upper;
|
845
|
+
mso-level-text:"%9\)";
|
846
|
+
mso-level-tab-stop:none;
|
847
|
+
mso-level-number-position:left;
|
848
|
+
margin-left:162.0pt;
|
849
|
+
text-indent:-18.0pt;}
|
850
|
+
/* Unordered list */
|
851
|
+
@list l3
|
852
|
+
{mso-list-id:1308196397;
|
853
|
+
mso-list-type:hybrid;
|
854
|
+
mso-list-template-ids:-277327948 -457018030 67633155 67633157 67633153 67633155 67633157 67633153 67633155 67633157;}
|
855
|
+
@list l3:level1
|
856
|
+
{mso-level-number-format:bullet;
|
857
|
+
mso-level-text:—;
|
858
|
+
mso-level-tab-stop:none;
|
859
|
+
mso-level-number-position:left;
|
860
|
+
margin-left:18.0pt;
|
861
|
+
text-indent:-18.0pt;}
|
862
|
+
@list l3:level2
|
863
|
+
{mso-level-number-format:bullet;
|
864
|
+
mso-level-text:—;
|
865
|
+
mso-level-tab-stop:none;
|
866
|
+
mso-level-number-position:left;
|
867
|
+
margin-left:36.0pt;
|
868
|
+
text-indent:-18.0pt;}
|
869
|
+
@list l3:level3
|
870
|
+
{mso-level-number-format:bullet;
|
871
|
+
mso-level-text:—;
|
872
|
+
mso-level-tab-stop:none;
|
873
|
+
mso-level-number-position:left;
|
874
|
+
margin-left:54.0pt;
|
875
|
+
text-indent:-18.0pt;}
|
876
|
+
@list l3:level4
|
877
|
+
{mso-level-number-format:bullet;
|
878
|
+
mso-level-text:—;
|
879
|
+
mso-level-tab-stop:none;
|
880
|
+
mso-level-number-position:left;
|
881
|
+
margin-left:72.0pt;
|
882
|
+
text-indent:-18.0pt;}
|
883
|
+
@list l3:level5
|
884
|
+
{mso-level-number-format:bullet;
|
885
|
+
mso-level-text:—;
|
886
|
+
mso-level-tab-stop:none;
|
887
|
+
mso-level-number-position:left;
|
888
|
+
margin-left:90.0pt;
|
889
|
+
text-indent:-18.0pt;}
|
890
|
+
@list l3:level6
|
891
|
+
{mso-level-number-format:bullet;
|
892
|
+
mso-level-text:—;
|
893
|
+
mso-level-tab-stop:none;
|
894
|
+
mso-level-number-position:left;
|
895
|
+
margin-left:108.0pt;
|
896
|
+
text-indent:-18.0pt;}
|
897
|
+
@list l3:level7
|
898
|
+
{mso-level-number-format:bullet;
|
899
|
+
mso-level-text:—;
|
900
|
+
mso-level-tab-stop:none;
|
901
|
+
mso-level-number-position:left;
|
902
|
+
margin-left:126.0pt;
|
903
|
+
text-indent:-18.0pt;}
|
904
|
+
@list l3:level8
|
905
|
+
{mso-level-number-format:bullet;
|
906
|
+
mso-level-text:—;
|
907
|
+
mso-level-tab-stop:none;
|
908
|
+
mso-level-number-position:left;
|
909
|
+
margin-left:144.0pt;
|
910
|
+
text-indent:-18.0pt;}
|
911
|
+
@list l3:level9
|
912
|
+
{mso-level-number-format:bullet;
|
913
|
+
mso-level-text:—;
|
914
|
+
mso-level-tab-stop:none;
|
915
|
+
mso-level-number-position:left;
|
916
|
+
margin-left:162.0pt;
|
917
|
+
text-indent:-18.0pt;}
|
918
|
+
|
919
|
+
table.MsoNormalTable
|
920
|
+
{mso-style-name:"Table Normal";
|
921
|
+
mso-tstyle-rowband-size:0;
|
922
|
+
mso-tstyle-colband-size:0;
|
923
|
+
mso-style-noshow:yes;
|
924
|
+
mso-style-priority:99;
|
925
|
+
mso-style-parent:"";
|
926
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
927
|
+
mso-para-margin:0cm;
|
928
|
+
mso-para-margin-bottom:.0001pt;
|
929
|
+
mso-pagination:widow-orphan;
|
930
|
+
font-size:10.0pt;
|
931
|
+
font-family:$bodyfont;}
|
932
|
+
br.section
|
933
|
+
{page-break-before:always;
|
934
|
+
mso-break-type:section-break;}
|
935
|
+
br.pagebreak
|
936
|
+
{page-break-before:always;
|
937
|
+
mso-special-character:line-break;}
|
938
|
+
ol
|
939
|
+
{margin-bottom:0cm;
|
940
|
+
margin-left:18pt;}
|
941
|
+
ul
|
942
|
+
{margin-bottom:0cm;
|
943
|
+
margin-left:18pt;}
|
944
|
+
|