metanorma-vsd 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/.travis.yml +16 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.adoc +174 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/rspec +18 -0
- data/bin/setup +8 -0
- data/lib/asciidoctor/vsd.rb +8 -0
- data/lib/asciidoctor/vsd/biblio.rng +836 -0
- data/lib/asciidoctor/vsd/converter.rb +98 -0
- data/lib/asciidoctor/vsd/isodoc.rng +1041 -0
- data/lib/asciidoctor/vsd/isostandard.rng +1001 -0
- data/lib/asciidoctor/vsd/pdf.js +31 -0
- data/lib/asciidoctor/vsd/vsd.rng +212 -0
- data/lib/isodoc/vsd.rb +9 -0
- data/lib/isodoc/vsd/html/header.html +184 -0
- data/lib/isodoc/vsd/html/html_vsd_intro.html +8 -0
- data/lib/isodoc/vsd/html/html_vsd_titlepage.html +106 -0
- data/lib/isodoc/vsd/html/htmlstyle.scss +1028 -0
- data/lib/isodoc/vsd/html/logo.png +0 -0
- data/lib/isodoc/vsd/html/scripts.html +82 -0
- data/lib/isodoc/vsd/html/vsd.scss +564 -0
- data/lib/isodoc/vsd/html/word_vsd_intro.html +72 -0
- data/lib/isodoc/vsd/html/word_vsd_titlepage.html +71 -0
- data/lib/isodoc/vsd/html/wordstyle.scss +1096 -0
- data/lib/isodoc/vsd/html_convert.rb +65 -0
- data/lib/isodoc/vsd/metadata.rb +11 -0
- data/lib/isodoc/vsd/pdf_convert.rb +64 -0
- data/lib/isodoc/vsd/word_convert.rb +61 -0
- data/lib/metanorma-vsd.rb +6 -0
- data/lib/metanorma/vsd.rb +10 -0
- data/lib/metanorma/vsd/processor.rb +51 -0
- data/lib/metanorma/vsd/version.rb +5 -0
- data/metanorma-vsd.gemspec +47 -0
- metadata +322 -0
Binary file
|
@@ -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,564 @@
|
|
1
|
+
p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode, pre
|
2
|
+
{mso-style-unhide:no;
|
3
|
+
mso-style-qformat:yes;
|
4
|
+
mso-style-parent:"";
|
5
|
+
margin-top:6.0pt;
|
6
|
+
margin-right:0cm;
|
7
|
+
margin-bottom:6.0pt;
|
8
|
+
margin-left:0cm;
|
9
|
+
text-align:left;
|
10
|
+
mso-pagination:widow-orphan;
|
11
|
+
tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
|
12
|
+
font-size:10.0pt;
|
13
|
+
font-family:$monospacefont;
|
14
|
+
mso-fareast-font-family:Calibri;
|
15
|
+
mso-bidi-font-family:"Courier New";
|
16
|
+
mso-ansi-language:EN-GB;}
|
17
|
+
p.Biblio, li.Biblio, div.Biblio, p.NormRef, li.NormRef, div.NormRef
|
18
|
+
{mso-style-unhide:no;
|
19
|
+
mso-style-qformat:yes;
|
20
|
+
mso-style-parent:"";
|
21
|
+
margin-top:0cm;
|
22
|
+
margin-right:0cm;
|
23
|
+
margin-bottom:12.0pt;
|
24
|
+
margin-left:33.15pt;
|
25
|
+
text-indent:-33.15pt;
|
26
|
+
tab-stops: 33.15pt;
|
27
|
+
line-height:12.0pt;
|
28
|
+
mso-pagination:widow-orphan;
|
29
|
+
font-size:10.5pt;
|
30
|
+
font-weight:normal;
|
31
|
+
font-family:$bodyfont;
|
32
|
+
mso-fareast-font-family:$bodyfont;
|
33
|
+
mso-bidi-font-family:$bodyfont;
|
34
|
+
mso-ansi-language:EN-GB;}
|
35
|
+
p.FigureTitle
|
36
|
+
{mso-style-unhide:no;
|
37
|
+
mso-style-qformat:yes;
|
38
|
+
mso-style-parent:"";
|
39
|
+
margin-top:0cm;
|
40
|
+
margin-right:0cm;
|
41
|
+
margin-bottom:6.0pt;
|
42
|
+
margin-left:0cm;
|
43
|
+
text-align:center;
|
44
|
+
line-height:12.0pt;
|
45
|
+
page-break-before:avoid;
|
46
|
+
mso-pagination:widow-orphan;
|
47
|
+
tab-stops:20.15pt;
|
48
|
+
font-size:11.0pt;
|
49
|
+
font-weight:bold;
|
50
|
+
font-family:$bodyfont;
|
51
|
+
mso-fareast-font-family:$bodyfont;
|
52
|
+
mso-bidi-font-family:$bodyfont;
|
53
|
+
mso-ansi-language:EN-GB;}
|
54
|
+
p.TableTitle
|
55
|
+
{mso-style-unhide:no;
|
56
|
+
mso-style-qformat:yes;
|
57
|
+
mso-style-parent:"";
|
58
|
+
margin-top:0cm;
|
59
|
+
margin-right:0cm;
|
60
|
+
margin-bottom:6.0pt;
|
61
|
+
margin-left:0cm;
|
62
|
+
text-align:center;
|
63
|
+
page-break-after:avoid;
|
64
|
+
line-height:12.0pt;
|
65
|
+
mso-pagination:widow-orphan;
|
66
|
+
tab-stops:20.15pt;
|
67
|
+
font-size:11.0pt;
|
68
|
+
font-family:$bodyfont;
|
69
|
+
mso-fareast-font-family:$bodyfont;
|
70
|
+
mso-bidi-font-family:$bodyfont;
|
71
|
+
mso-ansi-language:EN-GB;}
|
72
|
+
p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote
|
73
|
+
{mso-style-unhide:no;
|
74
|
+
mso-style-qformat:yes;
|
75
|
+
mso-style-parent:"";
|
76
|
+
margin-top:0cm;
|
77
|
+
margin-right:0cm;
|
78
|
+
margin-bottom:12.0pt;
|
79
|
+
margin-left:0cm;
|
80
|
+
text-align:justify;
|
81
|
+
line-height:12.0pt;
|
82
|
+
mso-pagination:widow-orphan;
|
83
|
+
tab-stops:20.15pt;
|
84
|
+
font-size:10.0pt;
|
85
|
+
mso-bidi-font-size:11.0pt;
|
86
|
+
font-family:$bodyfont;
|
87
|
+
font-size:10.0pt;
|
88
|
+
mso-fareast-font-family:$bodyfont;
|
89
|
+
mso-bidi-font-family:$bodyfont;
|
90
|
+
mso-ansi-language:EN-GB;}
|
91
|
+
p.ANNEX, li.ANNEX, div.ANNEX
|
92
|
+
{mso-style-name:ANNEX;
|
93
|
+
mso-style-priority:10;
|
94
|
+
mso-style-unhide:no;
|
95
|
+
mso-style-next:Normal;
|
96
|
+
margin-top:0cm;
|
97
|
+
margin-right:0cm;
|
98
|
+
margin-bottom:24.0pt;
|
99
|
+
margin-left:0cm;
|
100
|
+
text-align:center;
|
101
|
+
text-indent:0cm;
|
102
|
+
line-height:15.5pt;
|
103
|
+
mso-line-height-rule:exactly;
|
104
|
+
page-break-before:always;
|
105
|
+
mso-pagination:widow-orphan;
|
106
|
+
page-break-after:avoid;
|
107
|
+
mso-outline-level:1;
|
108
|
+
mso-list:l0 level1 lfo12;
|
109
|
+
tab-stops:20.15pt;
|
110
|
+
font-size:14.0pt;
|
111
|
+
mso-bidi-font-size:11.0pt;
|
112
|
+
font-family:$headerfont;
|
113
|
+
mso-fareast-font-family:$headerfont;
|
114
|
+
mso-bidi-font-family:$headerfont;
|
115
|
+
mso-ansi-language:EN-GB;
|
116
|
+
mso-fareast-language:JA;
|
117
|
+
font-weight:bold;
|
118
|
+
mso-bidi-font-weight:normal;}
|
119
|
+
p.BiblioTitle, li.BiblioTitle, div.BiblioTitle
|
120
|
+
{mso-style-name:"Biblio Title";
|
121
|
+
mso-style-noshow:yes;
|
122
|
+
mso-style-unhide:no;
|
123
|
+
margin-top:0cm;
|
124
|
+
margin-right:0cm;
|
125
|
+
margin-bottom:15.5pt;
|
126
|
+
margin-left:0cm;
|
127
|
+
text-align:center;
|
128
|
+
line-height:15.5pt;
|
129
|
+
mso-pagination:widow-orphan;
|
130
|
+
mso-outline-level:1;
|
131
|
+
tab-stops:20.15pt;
|
132
|
+
font-size:14.0pt;
|
133
|
+
mso-bidi-font-size:11.0pt;
|
134
|
+
font-family:$headerfont;
|
135
|
+
mso-fareast-font-family:$headerfont;
|
136
|
+
mso-bidi-font-family:$headerfont;
|
137
|
+
mso-ansi-language:EN-GB;
|
138
|
+
font-weight:bold;
|
139
|
+
mso-bidi-font-weight:normal;}
|
140
|
+
p.Definition, li.Definition, div.Definition
|
141
|
+
{mso-style-name:Definition;
|
142
|
+
mso-style-priority:9;
|
143
|
+
mso-style-unhide:no;
|
144
|
+
margin-top:0cm;
|
145
|
+
margin-right:0cm;
|
146
|
+
margin-bottom:12.0pt;
|
147
|
+
margin-left:0cm;
|
148
|
+
text-align:justify;
|
149
|
+
line-height:12.0pt;
|
150
|
+
mso-pagination:widow-orphan;
|
151
|
+
tab-stops:20.15pt;
|
152
|
+
font-size:11.0pt;
|
153
|
+
font-family:$bodyfont;
|
154
|
+
mso-fareast-font-family:$bodyfont;
|
155
|
+
mso-bidi-font-family:$bodyfont;
|
156
|
+
mso-ansi-language:EN-GB;}
|
157
|
+
p.ForewordTitle, li.ForewordTitle, div.ForewordTitle
|
158
|
+
{mso-style-name:"Foreword Title";
|
159
|
+
mso-style-noshow:yes;
|
160
|
+
mso-style-unhide:no;
|
161
|
+
margin-top:0cm;
|
162
|
+
margin-right:0cm;
|
163
|
+
margin-bottom:15.5pt;
|
164
|
+
margin-left:0cm;
|
165
|
+
text-align:justify;
|
166
|
+
line-height:15.5pt;
|
167
|
+
page-break-before:always;
|
168
|
+
mso-pagination:widow-orphan;
|
169
|
+
page-break-after:avoid;
|
170
|
+
mso-outline-level:1;
|
171
|
+
mso-hyphenate:none;
|
172
|
+
tab-stops:20.15pt;
|
173
|
+
font-size:14.0pt;
|
174
|
+
mso-bidi-font-size:11.0pt;
|
175
|
+
font-family:$headerfont;
|
176
|
+
mso-fareast-font-family:$headerfont;
|
177
|
+
mso-bidi-font-family:$headerfont;
|
178
|
+
mso-ansi-language:EN-GB;
|
179
|
+
font-weight:bold;
|
180
|
+
mso-bidi-font-weight:normal;}
|
181
|
+
p.IntroTitle, li.IntroTitle, div.IntroTitle
|
182
|
+
{mso-style-name:"Intro Title";
|
183
|
+
mso-style-noshow:yes;
|
184
|
+
mso-style-unhide:no;
|
185
|
+
mso-style-parent:"Foreword Title";
|
186
|
+
margin-top:0cm;
|
187
|
+
margin-right:0cm;
|
188
|
+
margin-bottom:15.5pt;
|
189
|
+
margin-left:0cm;
|
190
|
+
text-align:justify;
|
191
|
+
line-height:15.5pt;
|
192
|
+
mso-pagination:widow-orphan;
|
193
|
+
page-break-after:avoid;
|
194
|
+
mso-outline-level:1;
|
195
|
+
mso-hyphenate:none;
|
196
|
+
tab-stops:20.15pt;
|
197
|
+
font-size:14.0pt;
|
198
|
+
mso-bidi-font-size:11.0pt;
|
199
|
+
page-break-before:always;
|
200
|
+
font-family:$headerfont;
|
201
|
+
mso-fareast-font-family:$headerfont;
|
202
|
+
mso-bidi-font-family:$headerfont;
|
203
|
+
mso-ansi-language:EN-GB;
|
204
|
+
font-weight:bold;
|
205
|
+
mso-bidi-font-weight:normal;}
|
206
|
+
p.zzContents, li.zzContents, div.zzContents
|
207
|
+
{mso-style-name:zzContents;
|
208
|
+
mso-style-noshow:yes;
|
209
|
+
mso-style-unhide:no;
|
210
|
+
mso-style-next:"TOC 1";
|
211
|
+
margin-top:48.0pt;
|
212
|
+
margin-right:0cm;
|
213
|
+
margin-bottom:15.5pt;
|
214
|
+
margin-left:0cm;
|
215
|
+
line-height:15.5pt;
|
216
|
+
mso-line-height-rule:exactly;
|
217
|
+
page-break-before:always;
|
218
|
+
mso-pagination:widow-orphan;
|
219
|
+
page-break-after:avoid;
|
220
|
+
mso-hyphenate:none;
|
221
|
+
tab-stops:20.15pt;
|
222
|
+
font-size:14.0pt;
|
223
|
+
mso-bidi-font-size:11.0pt;
|
224
|
+
font-family:$headerfont;
|
225
|
+
mso-fareast-font-family:$headerfont;
|
226
|
+
mso-bidi-font-family:$headerfont;
|
227
|
+
mso-ansi-language:EN-GB;
|
228
|
+
font-weight:bold;
|
229
|
+
mso-bidi-font-weight:normal;}
|
230
|
+
p.zzCopyright, li.zzCopyright
|
231
|
+
{mso-style-name:zzCopyright;
|
232
|
+
mso-style-noshow:yes;
|
233
|
+
mso-style-unhide:no;
|
234
|
+
mso-style-next:Normal;
|
235
|
+
margin-top:0cm;
|
236
|
+
margin-right:14.2pt;
|
237
|
+
margin-bottom:12.0pt;
|
238
|
+
margin-left:14.2pt;
|
239
|
+
text-align:justify;
|
240
|
+
line-height:12.0pt;
|
241
|
+
mso-pagination:widow-orphan;
|
242
|
+
tab-stops:20.15pt 25.7pt 481.15pt;
|
243
|
+
padding:0cm;
|
244
|
+
mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
|
245
|
+
font-size:10.5pt;
|
246
|
+
font-family:$bodyfont;
|
247
|
+
mso-fareast-font-family:$bodyfont;
|
248
|
+
mso-bidi-font-family:$bodyfont;
|
249
|
+
mso-ansi-language:EN-GB;}
|
250
|
+
div.zzCopyright
|
251
|
+
{mso-element:para-border-div;
|
252
|
+
border:solid windowtext 1.0pt;
|
253
|
+
mso-border-top-alt:solid windowtext .5pt;
|
254
|
+
mso-border-left-alt:solid windowtext .5pt;
|
255
|
+
mso-border-right-alt:solid windowtext .5pt;
|
256
|
+
mso-border-bottom-alt:solid windowtext .5pt;
|
257
|
+
padding:1.0pt 4.0pt 0cm 4.0pt;
|
258
|
+
margin-left:5.1pt;
|
259
|
+
margin-right:5.1pt;}
|
260
|
+
p.zzCopyright_address
|
261
|
+
{margin-top:0cm;
|
262
|
+
margin-right:14.2pt;
|
263
|
+
margin-bottom:0.0pt;
|
264
|
+
margin-left:14.2pt;
|
265
|
+
mso-layout-grid-align:none;
|
266
|
+
text-autospace:none;
|
267
|
+
padding-left:20pt;
|
268
|
+
mso-padding-alt-left:20pt;
|
269
|
+
font-size:10.0pt;
|
270
|
+
text-align:left;
|
271
|
+
mso-bidi-font-size:11.0pt;}
|
272
|
+
p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle
|
273
|
+
{mso-style-name:zzSTDTitle;
|
274
|
+
mso-style-noshow:yes;
|
275
|
+
mso-style-unhide:no;
|
276
|
+
mso-style-next:Normal;
|
277
|
+
margin-top:20.0pt;
|
278
|
+
margin-right:0cm;
|
279
|
+
margin-bottom:38.0pt;
|
280
|
+
margin-left:0cm;
|
281
|
+
line-height:17.5pt;
|
282
|
+
mso-line-height-rule:exactly;
|
283
|
+
mso-pagination:widow-orphan;
|
284
|
+
mso-hyphenate:none;
|
285
|
+
tab-stops:20.15pt;
|
286
|
+
font-size:16.0pt;
|
287
|
+
mso-bidi-font-size:11.0pt;
|
288
|
+
font-family:$headerfont;
|
289
|
+
mso-fareast-font-family:$headerfont;
|
290
|
+
mso-bidi-font-family:$headerfont;
|
291
|
+
mso-ansi-language:EN-GB;
|
292
|
+
font-weight:bold;
|
293
|
+
mso-bidi-font-weight:normal;}
|
294
|
+
p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1
|
295
|
+
{mso-style-name:zzSTDTitle;
|
296
|
+
mso-style-noshow:yes;
|
297
|
+
mso-style-unhide:no;
|
298
|
+
mso-style-next:Normal;
|
299
|
+
margin-top:0pt;
|
300
|
+
margin-right:0cm;
|
301
|
+
margin-bottom:18.0pt;
|
302
|
+
margin-left:0cm;
|
303
|
+
line-height:17.5pt;
|
304
|
+
mso-line-height-rule:exactly;
|
305
|
+
mso-pagination:widow-orphan;
|
306
|
+
mso-hyphenate:none;
|
307
|
+
tab-stops:20.15pt;
|
308
|
+
font-size:16.0pt;
|
309
|
+
mso-bidi-font-size:11.0pt;
|
310
|
+
font-family:$headerfont;
|
311
|
+
mso-fareast-font-family:$headerfont;
|
312
|
+
mso-bidi-font-family:$headerfont;
|
313
|
+
mso-ansi-language:EN-GB;
|
314
|
+
font-weight:bold;
|
315
|
+
mso-bidi-font-weight:normal;}
|
316
|
+
p.Quote, li.Quote, div.Quote
|
317
|
+
{mso-style-priority:99;
|
318
|
+
margin-top:0cm;
|
319
|
+
margin-right:36.0pt;
|
320
|
+
margin-bottom:0cm;
|
321
|
+
margin-left:36.0pt;
|
322
|
+
text-align:justify;
|
323
|
+
line-height:12.0pt;
|
324
|
+
mso-pagination:widow-orphan;
|
325
|
+
tab-stops:20.15pt;
|
326
|
+
font-size:10.5pt;
|
327
|
+
font-family:$bodyfont;
|
328
|
+
mso-fareast-font-family:$bodyfont;
|
329
|
+
mso-bidi-font-family:$bodyfont;
|
330
|
+
mso-ansi-language:EN-GB;}
|
331
|
+
p.QuoteAttribution
|
332
|
+
{text-align:right;
|
333
|
+
mso-style-priority:99;
|
334
|
+
margin-top:0cm;
|
335
|
+
margin-right:36.0pt;
|
336
|
+
margin-bottom:0cm;
|
337
|
+
margin-left:36.0pt;
|
338
|
+
line-height:12.0pt;
|
339
|
+
mso-pagination:widow-orphan;
|
340
|
+
tab-stops:20.15pt;
|
341
|
+
font-size:10.5pt;
|
342
|
+
font-family:$bodyfont;
|
343
|
+
mso-fareast-font-family:$bodyfont;
|
344
|
+
mso-bidi-font-family:$bodyfont;
|
345
|
+
mso-ansi-language:EN-GB;
|
346
|
+
}
|
347
|
+
p.Admonition, li.Admonition, div.Admonition
|
348
|
+
{mso-style-priority:99;
|
349
|
+
margin-top:0cm;
|
350
|
+
margin-right:57.6pt;
|
351
|
+
margin-bottom:0cm;
|
352
|
+
margin-left:57.6pt;
|
353
|
+
margin-bottom:.0001pt;
|
354
|
+
mso-pagination:widow-orphan;
|
355
|
+
border:none;
|
356
|
+
mso-border-alt:solid #4472C4 .25pt;
|
357
|
+
mso-border-themecolor:accent1;
|
358
|
+
padding:0cm;
|
359
|
+
mso-padding-alt:10.0pt 10.0pt 10.0pt 10.0pt;
|
360
|
+
font-size:12.0pt;
|
361
|
+
font-family:$bodyfont;
|
362
|
+
mso-ascii-font-family:$bodyfont;
|
363
|
+
mso-ascii-theme-font:minor-latin;
|
364
|
+
mso-fareast-font-family:$bodyfont;
|
365
|
+
mso-fareast-theme-font:minor-fareast;
|
366
|
+
mso-hansi-font-family:$bodyfont;
|
367
|
+
mso-hansi-theme-font:minor-latin;
|
368
|
+
mso-bidi-font-family:$bodyfont;
|
369
|
+
mso-bidi-theme-font:minor-bidi;
|
370
|
+
color:#4472C4;
|
371
|
+
mso-themecolor:accent1;
|
372
|
+
mso-ansi-language:EN-AU;
|
373
|
+
font-style:italic;}
|
374
|
+
p.Code, li.Code, div.Code
|
375
|
+
{mso-style-name:Code;
|
376
|
+
mso-style-priority:16;
|
377
|
+
mso-style-unhide:no;
|
378
|
+
mso-style-qformat:yes;
|
379
|
+
margin:0cm;
|
380
|
+
margin-bottom:.0001pt;
|
381
|
+
line-height:10.0pt;
|
382
|
+
mso-pagination:widow-orphan;
|
383
|
+
tab-stops:20.15pt;
|
384
|
+
font-size:9.0pt;
|
385
|
+
mso-bidi-font-size:11.0pt;
|
386
|
+
font-family:$monospacefont;
|
387
|
+
mso-fareast-font-family:Calibri;
|
388
|
+
mso-bidi-font-family:"Source Sans Pro";
|
389
|
+
mso-ansi-language:EN-GB;}
|
390
|
+
p.Formula, li.Formula, div.Formula
|
391
|
+
{mso-style-name:Formula;
|
392
|
+
mso-style-noshow:yes;
|
393
|
+
mso-style-unhide:no;
|
394
|
+
margin-top:0cm;
|
395
|
+
margin-right:0cm;
|
396
|
+
margin-bottom:11.0pt;
|
397
|
+
margin-left:20.15pt;
|
398
|
+
line-height:12.0pt;
|
399
|
+
mso-pagination:widow-orphan;
|
400
|
+
tab-stops:right 487.45pt;
|
401
|
+
font-size:10.5pt;
|
402
|
+
font-family:$bodyfont;
|
403
|
+
mso-fareast-font-family:$bodyfont;
|
404
|
+
mso-bidi-font-family:$bodyfont;
|
405
|
+
mso-ansi-language:EN-GB;}
|
406
|
+
@page WordSection1
|
407
|
+
{size:595.3pt 841.9pt;
|
408
|
+
margin:39.7pt 53.85pt 1.0cm 53.85pt;
|
409
|
+
mso-header-margin:35.45pt;
|
410
|
+
mso-footer-margin:14.2pt;
|
411
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh1;
|
412
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h1;
|
413
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef1;
|
414
|
+
mso-paper-source:0;}
|
415
|
+
div.WordSection1
|
416
|
+
{page:WordSection1;}
|
417
|
+
@page WordSection2
|
418
|
+
{size:595.3pt 841.9pt;
|
419
|
+
margin:39.7pt 53.85pt 1.0cm 53.85pt;
|
420
|
+
mso-header-margin:35.45pt;
|
421
|
+
mso-footer-margin:14.2pt;
|
422
|
+
mso-page-numbers:roman-lower;
|
423
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
424
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
425
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef2;
|
426
|
+
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f2;
|
427
|
+
mso-paper-source:0;}
|
428
|
+
div.WordSection2
|
429
|
+
{page:WordSection2;}
|
430
|
+
@page WordSection3
|
431
|
+
{size:595.3pt 841.9pt;
|
432
|
+
margin:39.7pt 53.85pt 1.0cm 53.85pt;
|
433
|
+
mso-header-margin:35.45pt;
|
434
|
+
mso-footer-margin:14.2pt;
|
435
|
+
mso-page-numbers:1;
|
436
|
+
mso-even-header:url("file:///C:/Doc/FILENAME_files/header.html") eh2;
|
437
|
+
mso-header:url("file:///C:/Doc/FILENAME_files/header.html") h2;
|
438
|
+
mso-even-footer:url("file:///C:/Doc/FILENAME_files/header.html") ef3;
|
439
|
+
mso-footer:url("file:///C:/Doc/FILENAME_files/header.html") f3;
|
440
|
+
mso-paper-source:0;}
|
441
|
+
div.WordSection3
|
442
|
+
{page:WordSection3;}
|
443
|
+
ol
|
444
|
+
{margin-bottom:0cm;}
|
445
|
+
ul
|
446
|
+
{margin-bottom:0cm;}
|
447
|
+
table.MsoISOTable
|
448
|
+
{mso-style-name:"Table ISO";
|
449
|
+
mso-tstyle-rowband-size:0;
|
450
|
+
mso-tstyle-colband-size:0;
|
451
|
+
mso-style-noshow:yes;
|
452
|
+
mso-style-priority:99;
|
453
|
+
mso-style-parent:"";
|
454
|
+
mso-padding-alt:0cm 2.85pt 0cm 2.85pt;
|
455
|
+
mso-para-margin:0cm;
|
456
|
+
mso-para-margin-bottom:.0001pt;
|
457
|
+
mso-pagination:widow-orphan;
|
458
|
+
border-collapse:collapse;
|
459
|
+
mso-table-layout-alt:fixed;
|
460
|
+
border:solid windowtext 2pt;
|
461
|
+
mso-border-alt:solid windowtext 2pt;
|
462
|
+
mso-yfti-tbllook:480;
|
463
|
+
mso-border-insideh:.75pt solid windowtext;
|
464
|
+
mso-border-insidev:.75pt solid windowtext;
|
465
|
+
font-size:10.0pt;
|
466
|
+
font-family:$bodyfont;}
|
467
|
+
table.MsoISOTable tr
|
468
|
+
{page-break-inside:avoid;}
|
469
|
+
table.MsoISOTable th
|
470
|
+
{border:solid windowtext 1pt;
|
471
|
+
mso-border-alt:solid windowtext 1pt;
|
472
|
+
padding:0cm 2.85pt 0cm 2.85pt;}
|
473
|
+
table.MsoISOTable td
|
474
|
+
{border:solid windowtext 1pt;
|
475
|
+
mso-border-alt:solid windowtext 1pt;
|
476
|
+
padding:0cm 2.85pt 0cm 2.85pt;}
|
477
|
+
table.MsoTableGrid
|
478
|
+
{mso-style-name:"Table Grid";
|
479
|
+
mso-tstyle-rowband-size:0;
|
480
|
+
mso-tstyle-colband-size:0;
|
481
|
+
mso-style-priority:39;
|
482
|
+
mso-style-unhide:no;
|
483
|
+
border:solid windowtext 1.0pt;
|
484
|
+
mso-border-alt:solid windowtext .5pt;
|
485
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
486
|
+
mso-border-insideh:.5pt solid windowtext;
|
487
|
+
mso-border-insidev:.5pt solid windowtext;
|
488
|
+
mso-para-margin:0cm;
|
489
|
+
mso-para-margin-bottom:.0001pt;
|
490
|
+
mso-pagination:widow-orphan;
|
491
|
+
font-size:10.0pt;
|
492
|
+
font-family:$bodyfont;}
|
493
|
+
td { page-break-inside:avoid; }
|
494
|
+
tr { page-break-after:avoid; }
|
495
|
+
span.stem
|
496
|
+
{font-family:"Cambria Math",serif;
|
497
|
+
mso-ascii-font-family:"Cambria Math";
|
498
|
+
font-style:
|
499
|
+
italic;}
|
500
|
+
div.formula
|
501
|
+
{tab-stops:right 487.45pt;}
|
502
|
+
body
|
503
|
+
{tab-interval:36.0pt;}
|
504
|
+
dt
|
505
|
+
{page-break-inside:avoid;
|
506
|
+
page-break-after:avoid}
|
507
|
+
.coverpage_docnumber
|
508
|
+
{text-align:center;
|
509
|
+
font-size:14.0pt;
|
510
|
+
font-weight:bold;}
|
511
|
+
.coverpage_techcommittee
|
512
|
+
{text-align:center;
|
513
|
+
font-size:12.0pt}
|
514
|
+
.coverpage_docstage
|
515
|
+
{text-align:center;
|
516
|
+
font-size:30.0pt;
|
517
|
+
color:#485094;}
|
518
|
+
div.coverpage_warning
|
519
|
+
{mso-element:para-border-div;
|
520
|
+
border:solid windowtext 1.0pt #485094;
|
521
|
+
mso-border-alt:solid windowtext .5pt;
|
522
|
+
padding:1.0pt 4.0pt 1.0pt 4.0pt #485094;
|
523
|
+
font-size:10.0pt;
|
524
|
+
margin-left:4.25pt;
|
525
|
+
margin-right:4.25pt}
|
526
|
+
.coverpage_warning
|
527
|
+
{color:#485094;
|
528
|
+
font-size:10.0pt;}
|
529
|
+
|
530
|
+
a.TableFootnoteRef
|
531
|
+
{mso-style-priority:99;
|
532
|
+
vertical-align:super;}
|
533
|
+
|
534
|
+
aside {
|
535
|
+
font-size:10.0pt;
|
536
|
+
}
|
537
|
+
div.example {
|
538
|
+
margin-left:70.9pt;
|
539
|
+
text-indent:-70.9pt;
|
540
|
+
}
|
541
|
+
p.example, li.example, div.example, td.example, td.example p
|
542
|
+
{ margin:0in;
|
543
|
+
margin-bottom:.0001pt;
|
544
|
+
mso-pagination:none;
|
545
|
+
font-size:10.0pt;
|
546
|
+
font-family:$bodyfont;}
|
547
|
+
span.note_label, span.example_label, td.example_label, td.note_label
|
548
|
+
{
|
549
|
+
font-size: 10.0pt;
|
550
|
+
font-family:$bodyfont;
|
551
|
+
}
|
552
|
+
|
553
|
+
table.dl
|
554
|
+
{margin-top:0cm;
|
555
|
+
margin-right:0cm;
|
556
|
+
margin-bottom:11.0pt;
|
557
|
+
margin-left:20.15pt;}
|
558
|
+
ol
|
559
|
+
{margin-bottom:0cm;
|
560
|
+
margin-left:0cm;}
|
561
|
+
ul
|
562
|
+
{margin-bottom:0cm;
|
563
|
+
margin-left:0cm;}
|
564
|
+
|