metanorma-ogc 0.0.2
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/.hound.yml +3 -0
- data/.rubocop.yml +10 -0
- data/.travis.yml +16 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.adoc +323 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/rspec +17 -0
- data/bin/setup +8 -0
- data/lib/asciidoctor/ogc.rb +7 -0
- data/lib/asciidoctor/ogc/biblio.rng +890 -0
- data/lib/asciidoctor/ogc/converter.rb +253 -0
- data/lib/asciidoctor/ogc/front.rb +163 -0
- data/lib/asciidoctor/ogc/isodoc.rng +1091 -0
- data/lib/asciidoctor/ogc/isostandard.rng +1068 -0
- data/lib/asciidoctor/ogc/ogc.rng +210 -0
- data/lib/isodoc/ogc.rb +10 -0
- data/lib/isodoc/ogc/html/header.html +181 -0
- data/lib/isodoc/ogc/html/html_ogc_intro.html +85 -0
- data/lib/isodoc/ogc/html/html_ogc_titlepage.html +172 -0
- data/lib/isodoc/ogc/html/htmlstyle.scss +1054 -0
- data/lib/isodoc/ogc/html/ogc.scss +644 -0
- data/lib/isodoc/ogc/html/scripts.html +82 -0
- data/lib/isodoc/ogc/html/scripts.pdf.html +70 -0
- data/lib/isodoc/ogc/html/word_ogc_intro.html +92 -0
- data/lib/isodoc/ogc/html/word_ogc_titlepage.html +194 -0
- data/lib/isodoc/ogc/html/wordstyle.scss +1104 -0
- data/lib/isodoc/ogc/html_convert.rb +355 -0
- data/lib/isodoc/ogc/i18n-en.yaml +1 -0
- data/lib/isodoc/ogc/metadata.rb +102 -0
- data/lib/isodoc/ogc/pdf_convert.rb +357 -0
- data/lib/isodoc/ogc/word_convert.rb +345 -0
- data/lib/metanorma-ogc.rb +8 -0
- data/lib/metanorma/ogc.rb +11 -0
- data/lib/metanorma/ogc/processor.rb +43 -0
- data/lib/metanorma/ogc/version.rb +5 -0
- data/metanorma-ogc.gemspec +45 -0
- metadata +338 -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,92 @@
|
|
1
|
+
<p class=MsoNormal><span style='mso-bookmark:_Toc165888228'><span lang=EN-US
|
2
|
+
style='font-size:8.0pt'>License Agreement<o:p></o:p></span></span></p>
|
3
|
+
|
4
|
+
<p class=MsoNormal><span style='mso-bookmark:_Toc165888228'><span lang=EN-US
|
5
|
+
style='font-size:8.0pt'>Permission is hereby granted by the Open Geospatial
|
6
|
+
Consortium, ("Licensor"), free of charge and subject to the terms set
|
7
|
+
forth below, to any person obtaining a copy of this Intellectual Property and
|
8
|
+
any associated documentation, to deal in the Intellectual Property without
|
9
|
+
restriction (except as set forth below), including without limitation the
|
10
|
+
rights to implement, use, copy, modify, merge, publish, distribute, and/or
|
11
|
+
sublicense copies of the Intellectual Property, and to permit persons to whom
|
12
|
+
the Intellectual Property is furnished to do so, provided that all copyright notices
|
13
|
+
on the intellectual property are retained intact and that each person to whom
|
14
|
+
the Intellectual Property is furnished agrees to the terms of this Agreement.<o:p></o:p></span></span></p>
|
15
|
+
|
16
|
+
<p class=MsoNormal><span style='mso-bookmark:_Toc165888228'><span lang=EN-US
|
17
|
+
style='font-size:8.0pt'>If you modify the Intellectual Property, all copies of
|
18
|
+
the modified Intellectual Property must include, in addition to the above
|
19
|
+
copyright notice, a notice that the Intellectual Property includes
|
20
|
+
modifications that have not been approved or adopted by LICENSOR.<o:p></o:p></span></span></p>
|
21
|
+
|
22
|
+
<p class=MsoNormal><span style='mso-bookmark:_Toc165888228'><span lang=EN-US
|
23
|
+
style='font-size:8.0pt'>THIS LICENSE IS A COPYRIGHT LICENSE ONLY, AND DOES NOT
|
24
|
+
CONVEY ANY RIGHTS UNDER ANY PATENTS THAT MAY BE IN FORCE ANYWHERE IN THE WORLD.<o:p></o:p></span></span></p>
|
25
|
+
|
26
|
+
<p class=MsoNormal><span style='mso-bookmark:_Toc165888228'><span lang=EN-US
|
27
|
+
style='font-size:8.0pt'>THE INTELLECTUAL PROPERTY IS PROVIDED "AS
|
28
|
+
IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
29
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
|
30
|
+
AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. THE COPYRIGHT HOLDER OR HOLDERS
|
31
|
+
INCLUDED IN THIS NOTICE DO NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE
|
32
|
+
INTELLECTUAL PROPERTY WILL MEET YOUR REQUIREMENTS OR THAT THE OPERATION OF THE
|
33
|
+
INTELLECTUAL PROPERTY WILL BE UNINTERRUPTED OR ERROR FREE. ANY USE OF THE
|
34
|
+
INTELLECTUAL PROPERTY SHALL BE MADE ENTIRELY AT THE USER’S OWN RISK. IN NO
|
35
|
+
EVENT SHALL THE COPYRIGHT HOLDER OR ANY CONTRIBUTOR OF INTELLECTUAL PROPERTY
|
36
|
+
RIGHTS TO THE INTELLECTUAL PROPERTY BE LIABLE FOR ANY CLAIM, OR ANY DIRECT,
|
37
|
+
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
|
38
|
+
FROM ANY ALLEGED INFRINGEMENT OR ANY LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
39
|
+
AN ACTION OF CONTRACT, NEGLIGENCE OR UNDER ANY OTHER LEGAL THEORY, ARISING OUT
|
40
|
+
OF OR IN CONNECTION WITH THE IMPLEMENTATION, USE, COMMERCIALIZATION OR
|
41
|
+
PERFORMANCE OF THIS INTELLECTUAL PROPERTY.<o:p></o:p></span></span></p>
|
42
|
+
|
43
|
+
<p class=MsoNormal><span style='mso-bookmark:_Toc165888228'><span lang=EN-US
|
44
|
+
style='font-size:8.0pt'>This license is effective until terminated. You may
|
45
|
+
terminate it at any time by destroying the Intellectual Property together with
|
46
|
+
all copies in any form. The license will also terminate if you fail to comply
|
47
|
+
with any term or condition of this Agreement. Except as provided in the
|
48
|
+
following sentence, no such termination of this license shall require the
|
49
|
+
termination of any third party end-user sublicense to the Intellectual Property
|
50
|
+
which is in force as of the date of notice of such termination. In addition,
|
51
|
+
should the Intellectual Property, or the operation of the Intellectual
|
52
|
+
Property, infringe, or in <span class=SpellE>LICENSOR’s</span> sole opinion be
|
53
|
+
likely to infringe, any patent, copyright, trademark or other right of a third
|
54
|
+
party, you agree that LICENSOR, in its sole discretion, may terminate this
|
55
|
+
license without any compensation or liability to you, your licensees or any
|
56
|
+
other party. You agree upon termination of any kind to destroy or cause to be
|
57
|
+
destroyed the Intellectual Property together with all copies in any form,
|
58
|
+
whether held by you or by any third party.<o:p></o:p></span></span></p>
|
59
|
+
|
60
|
+
<p class=MsoNormal><span style='mso-bookmark:_Toc165888228'><span lang=EN-US
|
61
|
+
style='font-size:8.0pt'>Except as contained in this notice, the name of
|
62
|
+
LICENSOR or of any other holder of a copyright in all or part of the Intellectual
|
63
|
+
Property shall not be used in advertising or otherwise to promote the sale, use
|
64
|
+
or other dealings in this Intellectual Property without prior written
|
65
|
+
authorization of LICENSOR or such copyright holder. LICENSOR is and shall at
|
66
|
+
all times be the sole entity that may authorize you or any third party to use
|
67
|
+
certification marks, trademarks or other special designations to indicate
|
68
|
+
compliance with any LICENSOR standards or specifications. This Agreement is
|
69
|
+
governed by the laws of the Commonwealth of Massachusetts. The application to
|
70
|
+
this Agreement of the United Nations Convention on Contracts for the
|
71
|
+
International Sale of Goods is hereby expressly excluded. In the event any
|
72
|
+
provision of this Agreement shall be deemed unenforceable, void or invalid, such
|
73
|
+
provision shall be modified so as to make it valid and enforceable, and as so
|
74
|
+
modified the entire Agreement shall remain in full force and effect. No
|
75
|
+
decision, action or inaction by LICENSOR shall be construed to be a waiver of
|
76
|
+
any rights or remedies available to it.<o:p></o:p></span></span></p>
|
77
|
+
|
78
|
+
{% if doctype == "Standard" or doctype == "Standard With Suite" %}
|
79
|
+
<p class=MsoNormal><span lang=EN-US
|
80
|
+
style='font-size:8.0pt'>Suggested additions, changes and comments on this standard are welcome and encouraged. Such suggestions may be submitted using the online change request form on OGC web site: <a href="http://portal.opengeospatial.org/public_ogc/change_request.php">http://portal.opengeospatial.org/public_ogc/change_request.php</a></span></p>
|
81
|
+
{% endif %}
|
82
|
+
|
83
|
+
|
84
|
+
<span lang=EN-US style='font-size:12.0pt;font-family:"Times New Roman",serif;
|
85
|
+
mso-fareast-font-family:"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:
|
86
|
+
EN-US;mso-bidi-language:AR-SA'><br clear=all style='mso-special-character:line-break;
|
87
|
+
page-break-before:always'>
|
88
|
+
</span>
|
89
|
+
|
90
|
+
<p class="zzContents" style='margin-top:0cm'><span lang="EN-GB">Contents</span></p>
|
91
|
+
|
92
|
+
WORDTOC
|
@@ -0,0 +1,194 @@
|
|
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:18.0pt;mso-no-proof:yes'>Open Geospatial Consortium</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;font-size:10.0pt'>Submission Date: {{ receiveddate }}</span></span></p>
|
7
|
+
|
8
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
9
|
+
style='mso-no-proof:yes;font-size:10.0pt'>Approval Date: {{ issueddate }}</span></span></p>
|
10
|
+
|
11
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
12
|
+
style='mso-no-proof:yes;font-size:10.0pt'>Publication Date: {{ publisheddate }}</span></span></p>
|
13
|
+
|
14
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
15
|
+
style='mso-no-proof:yes;font-size:10.0pt'>External identifier of this OGC® document: {{ externalid }}</span></span></p>
|
16
|
+
|
17
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
18
|
+
style='mso-no-proof:yes;font-size:10.0pt'>Internal reference number of this OGC® document: {{ docnumber }}</span></span></p>
|
19
|
+
|
20
|
+
{% if url or html %}
|
21
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
22
|
+
style='mso-no-proof:yes;font-size:10.0pt'>URL for this OGC® document: {{ url or html }}</span></span></p>
|
23
|
+
{% endif %}
|
24
|
+
|
25
|
+
{% if edition %}
|
26
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
27
|
+
style='mso-no-proof:yes;font-size:10.0pt'>Version: {{ edition }}</span></span></p>
|
28
|
+
{% endif %}
|
29
|
+
|
30
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
31
|
+
style='mso-no-proof:yes;font-size:10.0pt'>Category: {{ doctype }}</span></span></p>
|
32
|
+
|
33
|
+
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
34
|
+
style='mso-no-proof:yes;font-size:10.0pt'>Editor: {{ editors | join: ", " }}</span></span></p>
|
35
|
+
|
36
|
+
<p class="MsoNormal" align="center" style='text-align:center;line-height:18.0pt;margin-bottom:0.0pt'><b
|
37
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:24.0pt'>OGC {{ doctitle }}</span>
|
38
|
+
</b></p>
|
39
|
+
|
40
|
+
<p class="MsoNormal" style='margin-top:100.0pt'><span lang="EN-GB"><o:p> </o:p></span></p>
|
41
|
+
|
42
|
+
<p class="MsoNormal" align="center" style='text-align:center;line-height:18.0pt;margin-bottom:0.0pt'><b
|
43
|
+
style='mso-bidi-font-weight:bold'>Copyright notice</b></p>
|
44
|
+
|
45
|
+
<p class=MsoNormal align=center style='text-align:center'><span lang=EN-US>Copyright
|
46
|
+
© {{ docyear }} Open Geospatial Consortium<br>
|
47
|
+
To obtain additional rights of use, visit <span class=MsoHyperlink><span
|
48
|
+
style='mso-color-alt:windowtext'><a href="http://www.opengeospatial.org/legal/"><span
|
49
|
+
style='mso-color-alt:windowtext'>http://www.opengeospatial.org/legal/</span></a></span></span>.<b
|
50
|
+
style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
|
51
|
+
|
52
|
+
{% if doctype == "Standard" or doctype == "Standard With Suite" %}
|
53
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
54
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
55
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
56
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning<o:p></o:p></span></b></p>
|
57
|
+
|
58
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
59
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
60
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This document is an OGC Member approved international standard. This document is available on a royalty free, non-discriminatory basis. Recipients of this document are invited to submit, with their comments, notification of any relevant patent rights of which they are aware and to provide supporting documentation.
|
61
|
+
<o:p></o:p></span></p>
|
62
|
+
{% endif %}
|
63
|
+
|
64
|
+
{% if doctype == "Discussion Paper" %}
|
65
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
66
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
67
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
68
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning<o:p></o:p></span></b></p>
|
69
|
+
|
70
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
71
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
72
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This document is not an OGC Standard. This document is an OGC Discussion Paper and is therefore <i>not an official position</i> of the OGC membership. It is distributed for review and comment. It is subject to change without notice and may not be referred to as an OGC Standard. Further, an OGC Discussion Paper should not be referenced as required or mandatory technology in procurements.
|
73
|
+
<o:p></o:p></span></p>
|
74
|
+
{% endif %}
|
75
|
+
|
76
|
+
{% if doctype == "Engineering Report" %}
|
77
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
78
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
79
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
80
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning<o:p></o:p></span></b></p>
|
81
|
+
|
82
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
83
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
84
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This document is not an OGC Standard. This document is an OGC Public Engineering Report created as a deliverable in an OGC Interoperability Initiative and is <i>not an official position</i> of the OGC membership. It is distributed for review and comment. It is subject to change without notice and may not be referred to as an OGC Standard. Further, any OGC Engineering Report should not be referenced as required or mandatory technology in procurements.
|
85
|
+
<o:p></o:p></span></p>
|
86
|
+
{% endif %}
|
87
|
+
|
88
|
+
{% if doctype == "Best Practice" %}
|
89
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
90
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
91
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
92
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning<o:p></o:p></span></b></p>
|
93
|
+
|
94
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
95
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
96
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This document defines an OGC Best Practices on a particular technology or approach related to an OGC standard. This document is <i>not</i> an OGC Standard and may not be referred to as an OGC Standard. It is subject to change without notice. However, this document is an <i>official</i> position of the OGC membership on this particular technology topic.
|
97
|
+
<o:p></o:p></span></p>
|
98
|
+
{% endif %}
|
99
|
+
|
100
|
+
{% if status == "Policy" %}
|
101
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
102
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
103
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
104
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning<o:p></o:p></span></b></p>
|
105
|
+
|
106
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;
|
107
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
108
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This document is an OGC Policies and Procedures Document. The document is subject to change based on membership requirements and motions. Please note that the OGC <a href="http://www.opengeospatial.org/ogc/policies/directives">Policies Related to OGC Standards</a> should be also be read.
|
109
|
+
<o:p></o:p></span></p>
|
110
|
+
{% endif %}
|
111
|
+
|
112
|
+
{% if status != "Published" and status != "Withdrawn" %}
|
113
|
+
<p class="MsoNormal" align="center" style='margin-bottom:6.0pt;text-align:center;
|
114
|
+
border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:
|
115
|
+
1.0pt 4.0pt 1.0pt 4.0pt'><b style='mso-bidi-font-weight:normal'><span
|
116
|
+
lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>Warning for drafts<o:p></o:p></span></b></p>
|
117
|
+
|
118
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>This document is not a OGC Standard. It is distributed for review and comment, and is subject to change without notice and may not be referred to as a Standard.
|
119
|
+
</p>
|
120
|
+
|
121
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>Attention is drawn to the possibility that some of the elements of this document may be the subject of patent rights. The Open Geospatial Consortium Inc. shall not be held responsible for identifying any or all such patent rights.
|
122
|
+
</p>
|
123
|
+
|
124
|
+
<p class="MsoNormal" style='margin-bottom:6.0pt;border:none;mso-border-alt:solid windowtext .5pt;padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>Recipients of this document are requested to submit, with their comments, notification of any relevant patent claims or other intellectual property rights of which they may be aware that might be infringed by any implementation of the standard set forth in this document, and to provide supporting documentation.
|
125
|
+
</p>
|
126
|
+
{% endif %}
|
127
|
+
|
128
|
+
<div style='mso-element:frame;mso-element-frame-hspace:7.1pt;mso-element-frame-vspace:
|
129
|
+
7.1pt;mso-element-wrap:auto;mso-element-anchor-vertical:page;mso-element-anchor-horizontal:
|
130
|
+
page;mso-element-left:39.9pt;mso-element-top:693.25pt;mso-height-rule:exactly'>
|
131
|
+
|
132
|
+
<table cellspacing=0 cellpadding=0 hspace=0 vspace=0>
|
133
|
+
<tr>
|
134
|
+
<td valign=top align=left style='padding-top:7.1pt;padding-right:7.1pt;
|
135
|
+
padding-bottom:7.1pt;padding-left:7.1pt'>
|
136
|
+
<p class=zzCover align=left style='margin-bottom:0cm;margin-bottom:.0001pt;
|
137
|
+
text-align:left;mso-hyphenate:none;tab-stops:99.0pt;mso-element:frame;
|
138
|
+
mso-element-frame-hspace:7.1pt;mso-element-frame-vspace:7.1pt;mso-element-wrap:
|
139
|
+
auto;mso-element-anchor-vertical:page;mso-element-anchor-horizontal:page;
|
140
|
+
mso-element-left:39.9pt;mso-element-top:693.25pt;mso-height-rule:exactly'><span
|
141
|
+
lang=EN-GB style='font-size:10.0pt;mso-color-alt:windowtext;font-weight:normal'>Document
|
142
|
+
type: <span style='mso-tab-count:1'> </span><span
|
143
|
+
class=SpellE>OGC</span><sup>®</sup> </span><span lang=EN-GB
|
144
|
+
style='font-size:10.0pt;font-weight:normal'>{{ doctype }}}</span><span lang=EN-GB style='font-size:10.0pt;
|
145
|
+
mso-color-alt:windowtext;font-weight:normal'><o:p></o:p></span></p>
|
146
|
+
|
147
|
+
{% if docsubstatus %}
|
148
|
+
<p class=zzCover align=left style='margin-bottom:0cm;margin-bottom:.0001pt;
|
149
|
+
text-align:left;mso-hyphenate:none;tab-stops:99.0pt;mso-element:frame;
|
150
|
+
mso-element-frame-hspace:7.1pt;mso-element-frame-vspace:7.1pt;mso-element-wrap:
|
151
|
+
auto;mso-element-anchor-vertical:page;mso-element-anchor-horizontal:page;
|
152
|
+
mso-element-left:39.9pt;mso-element-top:693.25pt;mso-height-rule:exactly'><span
|
153
|
+
lang=EN-GB style='font-size:10.0pt;mso-color-alt:windowtext;font-weight:normal'>Document
|
154
|
+
subtype: <span style='mso-tab-count:1'> </span>{{ docsubstatus }}<o:p></o:p></span></p>
|
155
|
+
{% endif %}
|
156
|
+
|
157
|
+
<p class=zzCover align=left style='margin-bottom:0cm;margin-bottom:.0001pt;
|
158
|
+
text-align:left;mso-hyphenate:none;tab-stops:99.0pt;mso-element:frame;
|
159
|
+
mso-element-frame-hspace:7.1pt;mso-element-frame-vspace:7.1pt;mso-element-wrap:
|
160
|
+
auto;mso-element-anchor-vertical:page;mso-element-anchor-horizontal:page;
|
161
|
+
mso-element-left:39.9pt;mso-element-top:693.25pt;mso-height-rule:exactly'><span
|
162
|
+
lang=EN-GB style='font-size:10.0pt;mso-color-alt:windowtext;font-weight:normal'>Document
|
163
|
+
stage: <span style='mso-tab-count:1'> </span>{{ status }}<o:p></o:p></span></p>
|
164
|
+
<p class=zzCover align=left style='margin-bottom:0cm;margin-bottom:.0001pt;
|
165
|
+
text-align:left;mso-hyphenate:none;tab-stops:99.0pt;mso-element:frame;
|
166
|
+
mso-element-frame-hspace:7.1pt;mso-element-frame-vspace:7.1pt;mso-element-wrap:
|
167
|
+
auto;mso-element-anchor-vertical:page;mso-element-anchor-horizontal:page;
|
168
|
+
mso-element-left:39.9pt;mso-element-top:693.25pt;mso-height-rule:exactly'><span
|
169
|
+
lang=EN-GB style='font-size:10.0pt;mso-color-alt:windowtext;font-weight:normal'>Document
|
170
|
+
language: <span style='mso-tab-count:1'> </span>{{ language }}</span><span
|
171
|
+
lang=EN-GB style='font-size:8.0pt;mso-bidi-font-size:10.0pt;mso-color-alt:
|
172
|
+
windowtext'><o:p></o:p></span></p>
|
173
|
+
</td>
|
174
|
+
</tr>
|
175
|
+
</table>
|
176
|
+
|
177
|
+
</div>
|
178
|
+
|
179
|
+
{% if status != "Published" and status != "Withdrawn" %}
|
180
|
+
<p class="MsoNormal" style='border:none;mso-border-alt:solid windowtext .5pt;
|
181
|
+
padding:0cm;mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt'><span lang="EN-GB"
|
182
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;mso-bidi-font-weight:bold'>Recipients
|
183
|
+
of this draft are invited to submit, with their comments, notification of any
|
184
|
+
relevant patent rights of which they are aware and to provide supporting
|
185
|
+
documentation.</span><span lang="EN-GB" style='font-size:10.0pt;mso-bidi-font-size:
|
186
|
+
11.0pt'><o:p></o:p></span></p>
|
187
|
+
|
188
|
+
{% endif %}
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
|
194
|
+
|
@@ -0,0 +1,1104 @@
|
|
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
|
+
h1
|
320
|
+
{mso-style-priority:1;
|
321
|
+
mso-style-unhide:no;
|
322
|
+
mso-style-qformat:yes;
|
323
|
+
mso-style-link:"Heading 1 Char";
|
324
|
+
mso-style-next:Normal;
|
325
|
+
margin-top:13.5pt;
|
326
|
+
margin-right:0cm;
|
327
|
+
margin-bottom:12.0pt;
|
328
|
+
margin-left:0cm;
|
329
|
+
text-indent:0cm;
|
330
|
+
line-height:13.5pt;
|
331
|
+
mso-pagination:widow-orphan;
|
332
|
+
page-break-after:avoid;
|
333
|
+
mso-outline-level:1;
|
334
|
+
mso-list:l1 level1 lfo6;
|
335
|
+
mso-hyphenate:none;
|
336
|
+
tab-stops:20.0pt list 21.6pt left 28.0pt;
|
337
|
+
font-size:13.0pt;
|
338
|
+
mso-bidi-font-size:11.0pt;
|
339
|
+
font-family:$headerfont;
|
340
|
+
mso-fareast-font-family:$headerfont;
|
341
|
+
color:#0E1A85;
|
342
|
+
mso-font-kerning:0pt;
|
343
|
+
mso-ansi-language:EN-GB;
|
344
|
+
mso-fareast-language:JA;
|
345
|
+
mso-bidi-font-weight:normal;}
|
346
|
+
h1.Annex
|
347
|
+
{mso-style-priority:1;
|
348
|
+
mso-style-unhide:no;
|
349
|
+
mso-style-qformat:yes;
|
350
|
+
mso-style-link:"Heading 1 Char";
|
351
|
+
mso-style-next:Normal;
|
352
|
+
margin-top:3.0pt;
|
353
|
+
margin-right:0cm;
|
354
|
+
margin-bottom:12.0pt;
|
355
|
+
margin-left:0cm;
|
356
|
+
text-indent:0cm;
|
357
|
+
line-height:12.5pt;
|
358
|
+
text-align:center;
|
359
|
+
mso-pagination:widow-orphan;
|
360
|
+
page-break-after:avoid;
|
361
|
+
font-weight:normal;
|
362
|
+
mso-outline-level:1;
|
363
|
+
mso-list:l1 level1 lfo6;
|
364
|
+
mso-hyphenate:none;
|
365
|
+
tab-stops:20.0pt list 21.6pt left 28.0pt;
|
366
|
+
font-size:12.0pt;
|
367
|
+
mso-bidi-font-size:11.0pt;
|
368
|
+
font-family:$headerfont;
|
369
|
+
mso-fareast-font-family:$headerfont;
|
370
|
+
color:#0E1A85;
|
371
|
+
mso-font-kerning:0pt;
|
372
|
+
mso-ansi-language:EN-GB;
|
373
|
+
mso-fareast-language:JA;
|
374
|
+
mso-bidi-font-weight:normal;}
|
375
|
+
.h2Annex
|
376
|
+
{mso-style-priority:2;
|
377
|
+
mso-style-unhide:no;
|
378
|
+
mso-style-qformat:yes;
|
379
|
+
mso-style-parent:"Heading 1";
|
380
|
+
mso-style-link:"Heading 2 Char";
|
381
|
+
mso-style-next:Normal;
|
382
|
+
margin-top:3.0pt;
|
383
|
+
margin-right:0cm;
|
384
|
+
margin-bottom:12.0pt;
|
385
|
+
margin-left:0cm;
|
386
|
+
text-indent:0cm;
|
387
|
+
line-height:12.5pt;
|
388
|
+
mso-pagination:widow-orphan;
|
389
|
+
page-break-after:avoid;
|
390
|
+
mso-outline-level:2;
|
391
|
+
mso-hyphenate:none;
|
392
|
+
tab-stops:27.0pt 35.0pt;
|
393
|
+
font-size:12.0pt;
|
394
|
+
font-weight:bold;
|
395
|
+
mso-bidi-font-size:11.0pt;
|
396
|
+
font-family:$headerfont;
|
397
|
+
mso-fareast-font-family:$headerfont;
|
398
|
+
color:#0E1A85;
|
399
|
+
mso-ansi-language:EN-GB;
|
400
|
+
mso-fareast-language:JA;
|
401
|
+
mso-bidi-font-weight:normal;}
|
402
|
+
h2
|
403
|
+
{mso-style-priority:2;
|
404
|
+
mso-style-unhide:no;
|
405
|
+
mso-style-qformat:yes;
|
406
|
+
mso-style-parent:"Heading 1";
|
407
|
+
mso-style-link:"Heading 2 Char";
|
408
|
+
mso-style-next:Normal;
|
409
|
+
margin-top:3.0pt;
|
410
|
+
margin-right:0cm;
|
411
|
+
margin-bottom:12.0pt;
|
412
|
+
margin-left:0cm;
|
413
|
+
text-indent:0cm;
|
414
|
+
line-height:12.5pt;
|
415
|
+
mso-pagination:widow-orphan;
|
416
|
+
page-break-after:avoid;
|
417
|
+
mso-outline-level:2;
|
418
|
+
mso-list:l1 level2 lfo6;
|
419
|
+
mso-hyphenate:none;
|
420
|
+
tab-stops:27.0pt 35.0pt;
|
421
|
+
font-size:12.0pt;
|
422
|
+
mso-bidi-font-size:11.0pt;
|
423
|
+
font-family:$headerfont;
|
424
|
+
mso-fareast-font-family:$headerfont;
|
425
|
+
color:#0E1A85;
|
426
|
+
mso-ansi-language:EN-GB;
|
427
|
+
mso-fareast-language:JA;
|
428
|
+
mso-bidi-font-weight:normal;}
|
429
|
+
h3
|
430
|
+
{mso-style-priority:3;
|
431
|
+
mso-style-unhide:no;
|
432
|
+
mso-style-qformat:yes;
|
433
|
+
mso-style-parent:"Heading 1";
|
434
|
+
mso-style-link:"Heading 3 Char";
|
435
|
+
mso-style-next:Normal;
|
436
|
+
margin-top:3.0pt;
|
437
|
+
margin-right:0cm;
|
438
|
+
margin-bottom:12.0pt;
|
439
|
+
margin-left:0cm;
|
440
|
+
text-indent:0cm;
|
441
|
+
line-height:12.0pt;
|
442
|
+
mso-pagination:widow-orphan;
|
443
|
+
page-break-after:avoid;
|
444
|
+
mso-outline-level:3;
|
445
|
+
mso-list:l1 level3 lfo6;
|
446
|
+
mso-hyphenate:none;
|
447
|
+
tab-stops:list 36.0pt left 44.0pt;
|
448
|
+
font-size:11.0pt;
|
449
|
+
font-family:$headerfont;
|
450
|
+
color:#0E1A85;
|
451
|
+
mso-fareast-font-family:$headerfont;
|
452
|
+
mso-ansi-language:EN-GB;
|
453
|
+
mso-fareast-language:JA;
|
454
|
+
mso-bidi-font-weight:normal;}
|
455
|
+
h4
|
456
|
+
{mso-style-priority:4;
|
457
|
+
mso-style-unhide:no;
|
458
|
+
mso-style-qformat:yes;
|
459
|
+
mso-style-parent:"Heading 3";
|
460
|
+
mso-style-link:"Heading 4 Char";
|
461
|
+
mso-style-next:Normal;
|
462
|
+
margin-top:3.0pt;
|
463
|
+
margin-right:0cm;
|
464
|
+
margin-bottom:12.0pt;
|
465
|
+
margin-left:0cm;
|
466
|
+
text-indent:0cm;
|
467
|
+
line-height:12.0pt;
|
468
|
+
mso-pagination:widow-orphan;
|
469
|
+
page-break-after:avoid;
|
470
|
+
mso-outline-level:4;
|
471
|
+
mso-list:l1 level4 lfo6;
|
472
|
+
mso-hyphenate:none;
|
473
|
+
tab-stops:51.05pt 57.0pt 68.0pt;
|
474
|
+
font-size:11.0pt;
|
475
|
+
font-family:$headerfont;
|
476
|
+
color:#0E1A85;
|
477
|
+
mso-fareast-font-family:$headerfont;
|
478
|
+
mso-ansi-language:EN-GB;
|
479
|
+
mso-fareast-language:JA;
|
480
|
+
mso-bidi-font-weight:normal;}
|
481
|
+
h5
|
482
|
+
{mso-style-priority:5;
|
483
|
+
mso-style-unhide:no;
|
484
|
+
mso-style-qformat:yes;
|
485
|
+
mso-style-parent:"Heading 4";
|
486
|
+
mso-style-link:"Heading 5 Char";
|
487
|
+
mso-style-next:Normal;
|
488
|
+
margin-top:3.0pt;
|
489
|
+
margin-right:0cm;
|
490
|
+
margin-bottom:12.0pt;
|
491
|
+
margin-left:0cm;
|
492
|
+
text-indent:0cm;
|
493
|
+
line-height:12.0pt;
|
494
|
+
mso-pagination:widow-orphan;
|
495
|
+
page-break-after:avoid;
|
496
|
+
mso-outline-level:5;
|
497
|
+
mso-list:l1 level5 lfo6;
|
498
|
+
mso-hyphenate:none;
|
499
|
+
tab-stops:51.05pt list 54.0pt;
|
500
|
+
font-size:11.0pt;
|
501
|
+
font-family:$headerfont;
|
502
|
+
mso-fareast-font-family:$headerfont;
|
503
|
+
color:#0E1A85;
|
504
|
+
mso-ansi-language:EN-GB;
|
505
|
+
mso-fareast-language:JA;
|
506
|
+
mso-bidi-font-weight:normal;}
|
507
|
+
h6
|
508
|
+
{mso-style-priority:6;
|
509
|
+
mso-style-unhide:no;
|
510
|
+
mso-style-qformat:yes;
|
511
|
+
mso-style-parent:"Heading 5";
|
512
|
+
mso-style-link:"Heading 6 Char";
|
513
|
+
mso-style-next:Normal;
|
514
|
+
margin-top:3.0pt;
|
515
|
+
margin-right:0cm;
|
516
|
+
margin-bottom:12.0pt;
|
517
|
+
margin-left:0cm;
|
518
|
+
text-indent:0cm;
|
519
|
+
line-height:12.0pt;
|
520
|
+
mso-pagination:widow-orphan;
|
521
|
+
page-break-after:avoid;
|
522
|
+
mso-outline-level:6;
|
523
|
+
mso-list:l1 level6 lfo6;
|
524
|
+
mso-hyphenate:none;
|
525
|
+
tab-stops:51.05pt list 72.0pt;
|
526
|
+
font-size:11.0pt;
|
527
|
+
font-family:$headerfont;
|
528
|
+
color:#0E1A85;
|
529
|
+
mso-fareast-font-family:$headerfont;
|
530
|
+
mso-ansi-language:EN-GB;
|
531
|
+
mso-fareast-language:JA;
|
532
|
+
mso-bidi-font-weight:normal;}
|
533
|
+
p.MsoToc1, li.MsoToc1, div.MsoToc1
|
534
|
+
{mso-style-priority:39;
|
535
|
+
mso-style-unhide:no;
|
536
|
+
mso-style-next:Normal;
|
537
|
+
margin-top:6.0pt;
|
538
|
+
margin-right:25.0pt;
|
539
|
+
margin-bottom:0cm;
|
540
|
+
margin-left:36.0pt;
|
541
|
+
margin-bottom:.0001pt;
|
542
|
+
text-indent:-36.0pt;
|
543
|
+
line-height:12.0pt;
|
544
|
+
mso-pagination:widow-orphan;
|
545
|
+
mso-hyphenate:none;
|
546
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
547
|
+
font-size:10.5pt;
|
548
|
+
font-family:$bodyfont;
|
549
|
+
mso-fareast-font-family:$bodyfont;
|
550
|
+
mso-bidi-font-family:$bodyfont;
|
551
|
+
mso-ansi-language:EN-GB;
|
552
|
+
font-weight:bold;
|
553
|
+
mso-bidi-font-weight:normal;}
|
554
|
+
p.MsoToc2, li.MsoToc2, div.MsoToc2
|
555
|
+
{mso-style-noshow:yes;
|
556
|
+
mso-style-priority:39;
|
557
|
+
mso-style-unhide:no;
|
558
|
+
mso-style-parent:"TOC 1";
|
559
|
+
mso-style-next:Normal;
|
560
|
+
margin-top:0cm;
|
561
|
+
margin-right:25.0pt;
|
562
|
+
margin-bottom:0cm;
|
563
|
+
margin-left:36.0pt;
|
564
|
+
margin-bottom:.0001pt;
|
565
|
+
text-indent:-36.0pt;
|
566
|
+
line-height:12.0pt;
|
567
|
+
mso-pagination:widow-orphan;
|
568
|
+
mso-hyphenate:none;
|
569
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
570
|
+
font-size:10.5pt;
|
571
|
+
font-family:$bodyfont;
|
572
|
+
mso-fareast-font-family:$bodyfont;
|
573
|
+
mso-bidi-font-family:$bodyfont;
|
574
|
+
mso-ansi-language:EN-GB;
|
575
|
+
font-weight:bold;
|
576
|
+
mso-bidi-font-weight:normal;}
|
577
|
+
p.MsoToc3, li.MsoToc3, div.MsoToc3
|
578
|
+
{mso-style-noshow:yes;
|
579
|
+
mso-style-priority:39;
|
580
|
+
mso-style-unhide:no;
|
581
|
+
mso-style-parent:"TOC 2";
|
582
|
+
mso-style-next:Normal;
|
583
|
+
margin-top:0cm;
|
584
|
+
margin-right:25.0pt;
|
585
|
+
margin-bottom:0cm;
|
586
|
+
margin-left:36.0pt;
|
587
|
+
margin-bottom:.0001pt;
|
588
|
+
text-indent:-36.0pt;
|
589
|
+
line-height:12.0pt;
|
590
|
+
mso-pagination:widow-orphan;
|
591
|
+
mso-hyphenate:none;
|
592
|
+
tab-stops:20.15pt 36.0pt right dotted 487.6pt;
|
593
|
+
font-size:10.5pt;
|
594
|
+
font-family:$bodyfont;
|
595
|
+
mso-fareast-font-family:$bodyfont;
|
596
|
+
mso-bidi-font-family:$bodyfont;
|
597
|
+
mso-ansi-language:EN-GB;
|
598
|
+
font-weight:bold;
|
599
|
+
mso-bidi-font-weight:normal;}
|
600
|
+
span.MsoFootnoteReference
|
601
|
+
{mso-style-priority:99;
|
602
|
+
vertical-align:super;}
|
603
|
+
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
|
604
|
+
{mso-style-noshow:yes;
|
605
|
+
mso-style-priority:99;
|
606
|
+
mso-style-link:"Footnote Text Char";
|
607
|
+
margin-top:0cm;
|
608
|
+
margin-right:0cm;
|
609
|
+
margin-bottom:12.0pt;
|
610
|
+
margin-left:0cm;
|
611
|
+
text-align:justify;
|
612
|
+
line-height:12.0pt;
|
613
|
+
mso-pagination:widow-orphan;
|
614
|
+
tab-stops:20.15pt;
|
615
|
+
font-size:10.0pt;
|
616
|
+
font-family:$bodyfont;
|
617
|
+
mso-fareast-font-family:$bodyfont;
|
618
|
+
mso-bidi-font-family:$bodyfont;
|
619
|
+
mso-ansi-language:EN-GB;
|
620
|
+
mso-fareast-language:EN-US;}
|
621
|
+
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
|
622
|
+
{mso-style-noshow:yes;
|
623
|
+
mso-style-priority:99;
|
624
|
+
mso-style-unhide:no;
|
625
|
+
mso-style-link:"Body Text Char";
|
626
|
+
margin-top:0cm;
|
627
|
+
margin-right:0cm;
|
628
|
+
margin-bottom:6.0pt;
|
629
|
+
margin-left:0cm;
|
630
|
+
text-align:justify;
|
631
|
+
line-height:12.0pt;
|
632
|
+
mso-pagination:widow-orphan;
|
633
|
+
font-size:10.5pt;
|
634
|
+
font-family:$bodyfont;
|
635
|
+
mso-fareast-font-family:$bodyfont;
|
636
|
+
mso-bidi-font-family:$bodyfont;
|
637
|
+
mso-ansi-language:EN-GB;}
|
638
|
+
span.Heading1Char
|
639
|
+
{mso-style-name:"Heading 1 Char";
|
640
|
+
mso-style-priority:1;
|
641
|
+
mso-style-unhide:no;
|
642
|
+
mso-style-locked:yes;
|
643
|
+
mso-style-parent:"";
|
644
|
+
mso-style-link:"Heading 1";
|
645
|
+
mso-ansi-font-size:13.0pt;
|
646
|
+
font-family:$headerfont;
|
647
|
+
mso-ascii-font-family:Cambria;
|
648
|
+
mso-fareast-font-family:$headerfont;
|
649
|
+
mso-hansi-font-family:$headerfont;
|
650
|
+
mso-ansi-language:EN-GB;
|
651
|
+
mso-fareast-language:JA;
|
652
|
+
font-weight:bold;
|
653
|
+
mso-bidi-font-weight:normal;}
|
654
|
+
span.Heading2Char
|
655
|
+
{mso-style-name:"Heading 2 Char";
|
656
|
+
mso-style-priority:2;
|
657
|
+
mso-style-unhide:no;
|
658
|
+
mso-style-locked:yes;
|
659
|
+
mso-style-parent:"";
|
660
|
+
mso-style-link:"Heading 2";
|
661
|
+
mso-ansi-font-size:12.0pt;
|
662
|
+
font-family:$headerfont;
|
663
|
+
mso-ascii-font-family:Cambria;
|
664
|
+
mso-fareast-font-family:$headerfont;
|
665
|
+
mso-hansi-font-family:$headerfont;
|
666
|
+
mso-ansi-language:EN-GB;
|
667
|
+
mso-fareast-language:JA;
|
668
|
+
font-weight:bold;
|
669
|
+
mso-bidi-font-weight:normal;}
|
670
|
+
span.Heading3Char
|
671
|
+
{mso-style-name:"Heading 3 Char";
|
672
|
+
mso-style-priority:3;
|
673
|
+
mso-style-unhide:no;
|
674
|
+
mso-style-locked:yes;
|
675
|
+
mso-style-parent:"";
|
676
|
+
mso-style-link:"Heading 3";
|
677
|
+
mso-ansi-font-size:11.0pt;
|
678
|
+
font-family:$headerfont;
|
679
|
+
mso-ascii-font-family:$headerfont;
|
680
|
+
mso-fareast-font-family:$headerfont;
|
681
|
+
mso-hansi-font-family:$headerfont;
|
682
|
+
mso-ansi-language:EN-GB;
|
683
|
+
mso-fareast-language:JA;
|
684
|
+
font-weight:bold;
|
685
|
+
mso-bidi-font-weight:normal;}
|
686
|
+
span.Heading4Char
|
687
|
+
{mso-style-name:"Heading 4 Char";
|
688
|
+
mso-style-priority:4;
|
689
|
+
mso-style-unhide:no;
|
690
|
+
mso-style-locked:yes;
|
691
|
+
mso-style-parent:"";
|
692
|
+
mso-style-link:"Heading 4";
|
693
|
+
mso-ansi-font-size:11.0pt;
|
694
|
+
font-family:$headerfont;
|
695
|
+
mso-ascii-font-family:$headerfont;
|
696
|
+
mso-fareast-font-family:$headerfont;
|
697
|
+
mso-hansi-font-family:$headerfont;
|
698
|
+
mso-ansi-language:EN-GB;
|
699
|
+
mso-fareast-language:JA;
|
700
|
+
font-weight:bold;
|
701
|
+
mso-bidi-font-weight:normal;}
|
702
|
+
span.Heading5Char
|
703
|
+
{mso-style-name:"Heading 5 Char";
|
704
|
+
mso-style-priority:5;
|
705
|
+
mso-style-unhide:no;
|
706
|
+
mso-style-locked:yes;
|
707
|
+
mso-style-parent:"";
|
708
|
+
mso-style-link:"Heading 5";
|
709
|
+
mso-ansi-font-size:11.0pt;
|
710
|
+
font-family:$headerfont;
|
711
|
+
mso-ascii-font-family:$headerfont;
|
712
|
+
mso-fareast-font-family:$headerfont;
|
713
|
+
mso-hansi-font-family:$headerfont;
|
714
|
+
mso-ansi-language:EN-GB;
|
715
|
+
mso-fareast-language:JA;
|
716
|
+
font-weight:bold;
|
717
|
+
mso-bidi-font-weight:normal;}
|
718
|
+
span.Heading6Char
|
719
|
+
{mso-style-name:"Heading 6 Char";
|
720
|
+
mso-style-priority:6;
|
721
|
+
mso-style-unhide:no;
|
722
|
+
mso-style-locked:yes;
|
723
|
+
mso-style-parent:"";
|
724
|
+
mso-style-link:"Heading 6";
|
725
|
+
mso-ansi-font-size:11.0pt;
|
726
|
+
font-family:$headerfont;
|
727
|
+
mso-ascii-font-family:$headerfont;
|
728
|
+
mso-fareast-font-family:$headerfont;
|
729
|
+
mso-hansi-font-family:$headerfont;
|
730
|
+
mso-ansi-language:EN-GB;
|
731
|
+
mso-fareast-language:JA;
|
732
|
+
font-weight:bold;
|
733
|
+
mso-bidi-font-weight:normal;}
|
734
|
+
p.Tablebody, li.Tablebody, div.Tablebody
|
735
|
+
{mso-style-name:"Table body";
|
736
|
+
mso-style-noshow:yes;
|
737
|
+
mso-style-unhide:no;
|
738
|
+
margin-top:3.0pt;
|
739
|
+
margin-right:0cm;
|
740
|
+
margin-bottom:3.0pt;
|
741
|
+
margin-left:0cm;
|
742
|
+
line-height:10.5pt;
|
743
|
+
mso-pagination:widow-orphan;
|
744
|
+
font-size:10.0pt;
|
745
|
+
mso-bidi-font-size:11.0pt;
|
746
|
+
font-family:$bodyfont;
|
747
|
+
mso-fareast-font-family:$bodyfont;
|
748
|
+
mso-bidi-font-family:$bodyfont;
|
749
|
+
mso-ansi-language:EN-GB;}
|
750
|
+
|
751
|
+
|
752
|
+
/* Page Definitions */
|
753
|
+
@page
|
754
|
+
{
|
755
|
+
size:612.0pt 792.0pt;
|
756
|
+
margin:36.0pt 53.85pt 21.55pt 53.85pt;
|
757
|
+
mso-header-margin:42.55pt;
|
758
|
+
mso-footer-margin:43.1pt;
|
759
|
+
mso-footnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") fs;
|
760
|
+
mso-footnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") fcs;
|
761
|
+
mso-endnote-separator:url("file:///C:/Doc/FILENAME_files/header.html") es;
|
762
|
+
mso-endnote-continuation-separator:url("file:///C:/Doc/FILENAME_files/header.html") ecs;
|
763
|
+
}
|
764
|
+
/* List Definitions */
|
765
|
+
@list l0
|
766
|
+
{mso-list-id:145051656;
|
767
|
+
mso-list-template-ids:2112159680;}
|
768
|
+
@list l0:level1
|
769
|
+
{mso-level-number-format:alpha-upper;
|
770
|
+
mso-level-style-link:ANNEX;
|
771
|
+
mso-level-suffix:none;
|
772
|
+
mso-level-text:"Annex\00A0%1";
|
773
|
+
mso-level-tab-stop:none;
|
774
|
+
mso-level-number-position:left;
|
775
|
+
margin-left:0cm;
|
776
|
+
text-indent:0cm;
|
777
|
+
mso-ansi-font-size:14.0pt;
|
778
|
+
mso-bidi-font-size:14.0pt;
|
779
|
+
font-family:$bodyfont;
|
780
|
+
mso-bidi-font-family:$bodyfont;
|
781
|
+
mso-ansi-font-weight:bold;
|
782
|
+
mso-ansi-font-style:normal;}
|
783
|
+
@list l0:level2
|
784
|
+
{mso-level-style-link:a2;
|
785
|
+
mso-level-text:"%1\.%2";
|
786
|
+
mso-level-tab-stop:18.0pt;
|
787
|
+
mso-level-number-position:left;
|
788
|
+
margin-left:0cm;
|
789
|
+
text-indent:0cm;
|
790
|
+
mso-bidi-font-family:$bodyfont;
|
791
|
+
mso-ansi-font-weight:bold;
|
792
|
+
mso-ansi-font-style:normal;}
|
793
|
+
@list l0:level3
|
794
|
+
{mso-level-style-link:a3;
|
795
|
+
mso-level-text:"%1\.%2\.%3";
|
796
|
+
mso-level-tab-stop:36.0pt;
|
797
|
+
mso-level-number-position:left;
|
798
|
+
margin-left:0cm;
|
799
|
+
text-indent:0cm;
|
800
|
+
mso-bidi-font-family:$bodyfont;
|
801
|
+
mso-ansi-font-weight:bold;
|
802
|
+
mso-ansi-font-style:normal;}
|
803
|
+
@list l0:level4
|
804
|
+
{mso-level-style-link:a4;
|
805
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
806
|
+
mso-level-tab-stop:54.0pt;
|
807
|
+
mso-level-number-position:left;
|
808
|
+
margin-left:0cm;
|
809
|
+
text-indent:0cm;
|
810
|
+
mso-bidi-font-family:$bodyfont;
|
811
|
+
mso-ansi-font-weight:bold;
|
812
|
+
mso-ansi-font-style:normal;}
|
813
|
+
@list l0:level5
|
814
|
+
{mso-level-style-link:a5;
|
815
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
816
|
+
mso-level-tab-stop:54.0pt;
|
817
|
+
mso-level-number-position:left;
|
818
|
+
margin-left:0cm;
|
819
|
+
text-indent:0cm;
|
820
|
+
mso-bidi-font-family:$bodyfont;
|
821
|
+
mso-ansi-font-weight:bold;
|
822
|
+
mso-ansi-font-style:normal;}
|
823
|
+
@list l0:level6
|
824
|
+
{mso-level-style-link:a6;
|
825
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
826
|
+
mso-level-tab-stop:72.0pt;
|
827
|
+
mso-level-number-position:left;
|
828
|
+
margin-left:0cm;
|
829
|
+
text-indent:0cm;
|
830
|
+
mso-bidi-font-family:$bodyfont;
|
831
|
+
mso-ansi-font-weight:bold;
|
832
|
+
mso-ansi-font-style:normal;}
|
833
|
+
@list l0:level7
|
834
|
+
{mso-level-reset-level:level2;
|
835
|
+
mso-level-suffix:space;
|
836
|
+
mso-level-text:"Figure\00A0%1\.%7\00A0—";
|
837
|
+
mso-level-tab-stop:none;
|
838
|
+
mso-level-number-position:left;
|
839
|
+
margin-left:0cm;
|
840
|
+
text-indent:0cm;
|
841
|
+
mso-bidi-font-family:$bodyfont;}
|
842
|
+
@list l0:level8
|
843
|
+
{mso-level-reset-level:level2;
|
844
|
+
mso-level-suffix:space;
|
845
|
+
mso-level-text:"Table\00A0%1\.%8\00A0—";
|
846
|
+
mso-level-tab-stop:none;
|
847
|
+
mso-level-number-position:left;
|
848
|
+
margin-left:0cm;
|
849
|
+
text-indent:0cm;
|
850
|
+
mso-bidi-font-family:$bodyfont;}
|
851
|
+
@list l0:level9
|
852
|
+
{mso-level-number-format:roman-lower;
|
853
|
+
mso-level-text:"\(%9\)";
|
854
|
+
mso-level-tab-stop:306.0pt;
|
855
|
+
mso-level-number-position:left;
|
856
|
+
margin-left:0cm;
|
857
|
+
text-indent:0cm;
|
858
|
+
mso-bidi-font-family:$bodyfont;}
|
859
|
+
@list l1
|
860
|
+
{mso-list-id:866942648;
|
861
|
+
mso-list-template-ids:-1756330000;}
|
862
|
+
@list l1:level1
|
863
|
+
{mso-level-style-link:"Heading 1";
|
864
|
+
mso-level-text:"%1";
|
865
|
+
mso-level-tab-stop:21.6pt;
|
866
|
+
mso-level-number-position:left;
|
867
|
+
margin-left:21.6pt;
|
868
|
+
text-indent:-21.6pt;
|
869
|
+
mso-bidi-font-family:$headerfont;
|
870
|
+
mso-ansi-font-weight:bold;
|
871
|
+
mso-ansi-font-style:normal;}
|
872
|
+
@list l1:level2
|
873
|
+
{mso-level-style-link:"Heading 2";
|
874
|
+
mso-level-text:"%1\.%2";
|
875
|
+
mso-level-tab-stop:18.0pt;
|
876
|
+
mso-level-number-position:left;
|
877
|
+
margin-left:0cm;
|
878
|
+
text-indent:0cm;
|
879
|
+
mso-bidi-font-family:$headerfont;
|
880
|
+
mso-ansi-font-weight:bold;
|
881
|
+
mso-ansi-font-style:normal;}
|
882
|
+
@list l1:level3
|
883
|
+
{mso-level-style-link:"Heading 3";
|
884
|
+
mso-level-text:"%1\.%2\.%3";
|
885
|
+
mso-level-tab-stop:36.0pt;
|
886
|
+
mso-level-number-position:left;
|
887
|
+
margin-left:0cm;
|
888
|
+
text-indent:0cm;
|
889
|
+
mso-bidi-font-family:$headerfont;
|
890
|
+
mso-ansi-font-weight:bold;
|
891
|
+
mso-ansi-font-style:normal;}
|
892
|
+
@list l1:level4
|
893
|
+
{mso-level-style-link:"Heading 4";
|
894
|
+
mso-level-text:"%1\.%2\.%3\.%4";
|
895
|
+
mso-level-tab-stop:54.0pt;
|
896
|
+
mso-level-number-position:left;
|
897
|
+
margin-left:0cm;
|
898
|
+
text-indent:0cm;
|
899
|
+
mso-bidi-font-family:$headerfont;
|
900
|
+
mso-ansi-font-weight:bold;
|
901
|
+
mso-ansi-font-style:normal;}
|
902
|
+
@list l1:level5
|
903
|
+
{mso-level-style-link:"Heading 5";
|
904
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5";
|
905
|
+
mso-level-tab-stop:54.0pt;
|
906
|
+
mso-level-number-position:left;
|
907
|
+
margin-left:0cm;
|
908
|
+
text-indent:0cm;
|
909
|
+
mso-bidi-font-family:$headerfont;
|
910
|
+
mso-ansi-font-weight:bold;
|
911
|
+
mso-ansi-font-style:normal;}
|
912
|
+
@list l1:level6
|
913
|
+
{mso-level-style-link:"Heading 6";
|
914
|
+
mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
|
915
|
+
mso-level-tab-stop:72.0pt;
|
916
|
+
mso-level-number-position:left;
|
917
|
+
margin-left:0cm;
|
918
|
+
text-indent:0cm;
|
919
|
+
mso-bidi-font-family:$headerfont;
|
920
|
+
mso-ansi-font-weight:bold;
|
921
|
+
mso-ansi-font-style:normal;}
|
922
|
+
@list l1:level7
|
923
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
|
924
|
+
mso-level-tab-stop:72.0pt;
|
925
|
+
mso-level-number-position:left;
|
926
|
+
margin-left:0cm;
|
927
|
+
text-indent:0cm;
|
928
|
+
mso-bidi-font-family:$headerfont;}
|
929
|
+
@list l1:level8
|
930
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
|
931
|
+
mso-level-tab-stop:90.0pt;
|
932
|
+
mso-level-number-position:left;
|
933
|
+
margin-left:0cm;
|
934
|
+
text-indent:0cm;
|
935
|
+
mso-bidi-font-family:$headerfont;}
|
936
|
+
@list l1:level9
|
937
|
+
{mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
|
938
|
+
mso-level-tab-stop:90.0pt;
|
939
|
+
mso-level-number-position:left;
|
940
|
+
margin-left:0cm;
|
941
|
+
text-indent:0cm;
|
942
|
+
mso-bidi-font-family:$headerfont;}
|
943
|
+
/* ordered list */
|
944
|
+
@list l2
|
945
|
+
{mso-list-id:525294607;
|
946
|
+
mso-list-template-ids:67633181;}
|
947
|
+
@list l2:level1
|
948
|
+
{mso-level-number-format:alpha-lower;
|
949
|
+
mso-level-text:"%1\)";
|
950
|
+
mso-level-tab-stop:none;
|
951
|
+
mso-level-number-position:left;
|
952
|
+
margin-left:18.0pt;
|
953
|
+
text-indent:-18.0pt;}
|
954
|
+
@list l2:level2
|
955
|
+
{mso-level-text:"%2\)";
|
956
|
+
mso-level-tab-stop:none;
|
957
|
+
mso-level-number-position:left;
|
958
|
+
margin-left:36.0pt;
|
959
|
+
text-indent:-18.0pt;}
|
960
|
+
@list l2:level3
|
961
|
+
{mso-level-number-format:roman-lower;
|
962
|
+
mso-level-text:"%3\)";
|
963
|
+
mso-level-tab-stop:none;
|
964
|
+
mso-level-number-position:left;
|
965
|
+
margin-left:54.0pt;
|
966
|
+
text-indent:-18.0pt;}
|
967
|
+
@list l2:level4
|
968
|
+
{mso-level-number-format:alpha-upper;
|
969
|
+
mso-level-text:"%4\)";
|
970
|
+
mso-level-tab-stop:none;
|
971
|
+
mso-level-number-position:left;
|
972
|
+
margin-left:72.0pt;
|
973
|
+
text-indent:-18.0pt;}
|
974
|
+
@list l2:level5
|
975
|
+
{mso-level-number-format:roman-upper;
|
976
|
+
mso-level-text:"%5\)";
|
977
|
+
mso-level-tab-stop:none;
|
978
|
+
mso-level-number-position:left;
|
979
|
+
margin-left:90.0pt;
|
980
|
+
text-indent:-18.0pt;}
|
981
|
+
@list l2:level6
|
982
|
+
{mso-level-number-format:alpha-lower;
|
983
|
+
mso-level-text:"%6\)";
|
984
|
+
mso-level-tab-stop:none;
|
985
|
+
mso-level-number-position:left;
|
986
|
+
margin-left:108.0pt;
|
987
|
+
text-indent:-18.0pt;}
|
988
|
+
@list l2:level7
|
989
|
+
{mso-level-tab-stop:none;
|
990
|
+
mso-level-text:"%7\)";
|
991
|
+
mso-level-number-position:left;
|
992
|
+
margin-left:126.0pt;
|
993
|
+
text-indent:-18.0pt;}
|
994
|
+
@list l2:level8
|
995
|
+
{mso-level-number-format:roman-lower;
|
996
|
+
mso-level-text:"%8\)";
|
997
|
+
mso-level-tab-stop:none;
|
998
|
+
mso-level-number-position:left;
|
999
|
+
margin-left:144.0pt;
|
1000
|
+
text-indent:-18.0pt;}
|
1001
|
+
@list l2:level9
|
1002
|
+
{mso-level-number-format:alpha-upper;
|
1003
|
+
mso-level-text:"%9\)";
|
1004
|
+
mso-level-tab-stop:none;
|
1005
|
+
mso-level-number-position:left;
|
1006
|
+
margin-left:162.0pt;
|
1007
|
+
text-indent:-18.0pt;}
|
1008
|
+
/* Unordered list */
|
1009
|
+
@list l3
|
1010
|
+
{mso-list-id:1308196397;
|
1011
|
+
mso-list-type:hybrid;
|
1012
|
+
mso-list-template-ids:-277327948 -457018030 67633155 67633157 67633153 67633155 67633157 67633153 67633155 67633157;}
|
1013
|
+
@list l3:level1
|
1014
|
+
{mso-level-number-format:bullet;
|
1015
|
+
mso-level-text:—;
|
1016
|
+
mso-level-tab-stop:none;
|
1017
|
+
mso-level-number-position:left;
|
1018
|
+
margin-left:18.0pt;
|
1019
|
+
text-indent:-18.0pt;}
|
1020
|
+
@list l3:level2
|
1021
|
+
{mso-level-number-format:bullet;
|
1022
|
+
mso-level-text:—;
|
1023
|
+
mso-level-tab-stop:none;
|
1024
|
+
mso-level-number-position:left;
|
1025
|
+
margin-left:36.0pt;
|
1026
|
+
text-indent:-18.0pt;}
|
1027
|
+
@list l3:level3
|
1028
|
+
{mso-level-number-format:bullet;
|
1029
|
+
mso-level-text:—;
|
1030
|
+
mso-level-tab-stop:none;
|
1031
|
+
mso-level-number-position:left;
|
1032
|
+
margin-left:54.0pt;
|
1033
|
+
text-indent:-18.0pt;}
|
1034
|
+
@list l3:level4
|
1035
|
+
{mso-level-number-format:bullet;
|
1036
|
+
mso-level-text:—;
|
1037
|
+
mso-level-tab-stop:none;
|
1038
|
+
mso-level-number-position:left;
|
1039
|
+
margin-left:72.0pt;
|
1040
|
+
text-indent:-18.0pt;}
|
1041
|
+
@list l3:level5
|
1042
|
+
{mso-level-number-format:bullet;
|
1043
|
+
mso-level-text:—;
|
1044
|
+
mso-level-tab-stop:none;
|
1045
|
+
mso-level-number-position:left;
|
1046
|
+
margin-left:90.0pt;
|
1047
|
+
text-indent:-18.0pt;}
|
1048
|
+
@list l3:level6
|
1049
|
+
{mso-level-number-format:bullet;
|
1050
|
+
mso-level-text:—;
|
1051
|
+
mso-level-tab-stop:none;
|
1052
|
+
mso-level-number-position:left;
|
1053
|
+
margin-left:108.0pt;
|
1054
|
+
text-indent:-18.0pt;}
|
1055
|
+
@list l3:level7
|
1056
|
+
{mso-level-number-format:bullet;
|
1057
|
+
mso-level-text:—;
|
1058
|
+
mso-level-tab-stop:none;
|
1059
|
+
mso-level-number-position:left;
|
1060
|
+
margin-left:126.0pt;
|
1061
|
+
text-indent:-18.0pt;}
|
1062
|
+
@list l3:level8
|
1063
|
+
{mso-level-number-format:bullet;
|
1064
|
+
mso-level-text:—;
|
1065
|
+
mso-level-tab-stop:none;
|
1066
|
+
mso-level-number-position:left;
|
1067
|
+
margin-left:144.0pt;
|
1068
|
+
text-indent:-18.0pt;}
|
1069
|
+
@list l3:level9
|
1070
|
+
{mso-level-number-format:bullet;
|
1071
|
+
mso-level-text:—;
|
1072
|
+
mso-level-tab-stop:none;
|
1073
|
+
mso-level-number-position:left;
|
1074
|
+
margin-left:162.0pt;
|
1075
|
+
text-indent:-18.0pt;}
|
1076
|
+
|
1077
|
+
table.MsoNormalTable
|
1078
|
+
{mso-style-name:"Table Normal";
|
1079
|
+
mso-tstyle-rowband-size:0;
|
1080
|
+
mso-tstyle-colband-size:0;
|
1081
|
+
mso-style-noshow:yes;
|
1082
|
+
mso-style-priority:99;
|
1083
|
+
mso-style-parent:"";
|
1084
|
+
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
|
1085
|
+
mso-para-margin:0cm;
|
1086
|
+
mso-para-margin-bottom:.0001pt;
|
1087
|
+
mso-pagination:widow-orphan;
|
1088
|
+
mso-table-anchor-vertical:paragraph;
|
1089
|
+
mso-table-bspace:12.0pt;
|
1090
|
+
font-size:10.0pt;
|
1091
|
+
font-family:$bodyfont;}
|
1092
|
+
br.section
|
1093
|
+
{page-break-before:always;
|
1094
|
+
mso-break-type:section-break;}
|
1095
|
+
br.pagebreak
|
1096
|
+
{page-break-before:always;
|
1097
|
+
mso-special-character:line-break;}
|
1098
|
+
ol
|
1099
|
+
{margin-bottom:0cm;
|
1100
|
+
margin-left:18pt;}
|
1101
|
+
ul
|
1102
|
+
{margin-bottom:0cm;
|
1103
|
+
margin-left:18pt;}
|
1104
|
+
|