metanorma-iso 2.1.0 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/html2doc/lists.rb +145 -10
- data/lib/isodoc/iso/base_convert.rb +11 -1
- data/lib/isodoc/iso/html/html_iso_titlepage.html +2 -0
- data/lib/isodoc/iso/html/isodoc-dis.css +216 -278
- data/lib/isodoc/iso/html/isodoc-dis.scss +294 -288
- data/lib/isodoc/iso/html/isodoc.css +38 -13
- data/lib/isodoc/iso/html/isodoc.scss +38 -12
- data/lib/isodoc/iso/html/style-human.css +14 -1
- data/lib/isodoc/iso/html/style-human.scss +10 -1
- data/lib/isodoc/iso/html/style-iso.css +35 -23
- data/lib/isodoc/iso/html/style-iso.scss +31 -23
- data/lib/isodoc/iso/html/word_iso_intro-dis.html +1 -6
- data/lib/isodoc/iso/html/word_iso_titlepage-dis.html +24 -13
- data/lib/isodoc/iso/html/word_iso_titlepage-prf.html +58 -0
- data/lib/isodoc/iso/html/word_iso_titlepage.html +10 -6
- data/lib/isodoc/iso/html/wordstyle-dis.css +12 -62
- data/lib/isodoc/iso/html/wordstyle-dis.scss +7 -56
- data/lib/isodoc/iso/html_convert.rb +7 -2
- data/lib/isodoc/iso/i18n-en.yaml +32 -4
- data/lib/isodoc/iso/i18n-fr.yaml +29 -3
- data/lib/isodoc/iso/i18n-ru.yaml +32 -4
- data/lib/isodoc/iso/i18n-zh-Hans.yaml +32 -3
- data/lib/isodoc/iso/i18n.rb +1 -1
- data/lib/isodoc/iso/iso.amendment.xsl +1570 -246
- data/lib/isodoc/iso/iso.international-standard.xsl +1570 -246
- data/lib/isodoc/iso/metadata.rb +67 -67
- data/lib/isodoc/iso/presentation_bibdata.rb +74 -0
- data/lib/isodoc/iso/presentation_xml_convert.rb +16 -5
- data/lib/isodoc/iso/presentation_xref.rb +10 -4
- data/lib/isodoc/iso/sections.rb +3 -3
- data/lib/isodoc/iso/word_cleanup.rb +3 -0
- data/lib/isodoc/iso/word_convert.rb +8 -5
- data/lib/isodoc/iso/word_dis_cleanup.rb +235 -0
- data/lib/isodoc/iso/word_dis_convert.rb +48 -100
- data/lib/isodoc/iso/xref.rb +34 -6
- data/lib/metanorma/iso/base.rb +20 -1
- data/lib/metanorma/iso/biblio.rng +134 -39
- data/lib/metanorma/iso/boilerplate-fr.xml +3 -0
- data/lib/metanorma/iso/boilerplate-ru.xml +3 -0
- data/lib/metanorma/iso/boilerplate.xml +3 -0
- data/lib/metanorma/iso/cleanup.rb +49 -11
- data/lib/metanorma/iso/front.rb +38 -6
- data/lib/metanorma/iso/front_id.rb +2 -0
- data/lib/metanorma/iso/isodoc.rng +16 -0
- data/lib/metanorma/iso/isostandard.rng +30 -12
- data/lib/metanorma/iso/macros.rb +29 -0
- data/lib/metanorma/iso/validate_section.rb +0 -12
- data/lib/metanorma/iso/version.rb +1 -1
- data/spec/isodoc/amd_spec.rb +20 -46
- data/spec/isodoc/blocks_spec.rb +499 -2
- data/spec/isodoc/i18n_spec.rb +145 -80
- data/spec/isodoc/iso_spec.rb +50 -169
- data/spec/isodoc/metadata_spec.rb +240 -99
- data/spec/isodoc/postproc_spec.rb +43 -7
- data/spec/isodoc/section_spec.rb +9 -9
- data/spec/isodoc/word_dis_spec.rb +1332 -146
- data/spec/isodoc/xref_spec.rb +87 -13
- data/spec/metanorma/amd_spec.rb +39 -23
- data/spec/metanorma/base_spec.rb +174 -44
- data/spec/metanorma/blocks_spec.rb +54 -0
- data/spec/metanorma/lists_spec.rb +2 -2
- data/spec/metanorma/section_spec.rb +2 -2
- data/spec/metanorma/validate_spec.rb +8 -19
- data/spec/spec_helper.rb +17 -7
- data/spec/vcr_cassettes/withdrawn_iso.yml +30 -30
- metadata +7 -8
- data/docs/asciiiso-syntax.adoc +0 -307
- data/docs/guidance.adoc +0 -487
- data/docs/navigation.adoc +0 -23
- data/docs/quickstart.adoc +0 -179
- data/lib/isodoc/iso/presentation_inline.rb +0 -90
@@ -1,6 +1,6 @@
|
|
1
1
|
@charset "UTF-8";
|
2
2
|
p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode {
|
3
|
-
mso-style-name:
|
3
|
+
mso-style-name: Sourcecode;
|
4
4
|
mso-style-unhide: no;
|
5
5
|
mso-style-qformat: yes;
|
6
6
|
mso-style-parent: "";
|
@@ -56,7 +56,7 @@ p.Biblio, li.Biblio, div.Biblio, p.biblio, li.biblio, div.biblio {
|
|
56
56
|
mso-bidi-font-family: {{bodyfont}};
|
57
57
|
mso-ansi-language: EN-GB; }
|
58
58
|
|
59
|
-
p.NormRef, li.NormRef, div.NormRef
|
59
|
+
p.NormRef, li.NormRef, div.NormRef {
|
60
60
|
mso-style-name: normref;
|
61
61
|
mso-style-unhide: no;
|
62
62
|
mso-style-qformat: yes;
|
@@ -75,7 +75,7 @@ p.NormRef, li.NormRef, div.NormRef, p.normref, li.normref, div.normref {
|
|
75
75
|
mso-bidi-font-family: {{bodyfont}};
|
76
76
|
mso-ansi-language: EN-GB; }
|
77
77
|
|
78
|
-
p.FigureTitle, li.FigureTitle, div.FigureTitle
|
78
|
+
p.FigureTitle, li.FigureTitle, div.FigureTitle {
|
79
79
|
mso-style-name: figuretitle;
|
80
80
|
mso-style-unhide: no;
|
81
81
|
mso-style-qformat: yes;
|
@@ -339,7 +339,7 @@ span.AnnexTableTitleChar {
|
|
339
339
|
font-weight: bold;
|
340
340
|
mso-bidi-font-weight: normal; }
|
341
341
|
|
342
|
-
p.AdmonitionTitle
|
342
|
+
p.AdmonitionTitle {
|
343
343
|
mso-style-name: recommendationtitle;
|
344
344
|
mso-style-unhide: no;
|
345
345
|
mso-style-qformat: yes;
|
@@ -382,7 +382,7 @@ p.recommendationtitle, li.recommendationtitle, div.recommendationtitle {
|
|
382
382
|
mso-fareast-language: ZH-CN;
|
383
383
|
font-weight: bold; }
|
384
384
|
|
385
|
-
p.SourceTitle
|
385
|
+
p.SourceTitle {
|
386
386
|
mso-style-name: sourcetitle;
|
387
387
|
mso-style-unhide: no;
|
388
388
|
mso-style-qformat: yes;
|
@@ -402,11 +402,33 @@ p.SourceTitle, p.sourcetitle, li.sourcetitle, div.sourcetitle {
|
|
402
402
|
mso-bidi-font-family: {{bodyfont}};
|
403
403
|
mso-ansi-language: EN-GB; }
|
404
404
|
|
405
|
-
p.
|
406
|
-
mso-style-name:
|
405
|
+
p.ListTitle {
|
406
|
+
mso-style-name: "List title";
|
407
407
|
mso-style-unhide: no;
|
408
408
|
mso-style-qformat: yes;
|
409
|
-
mso-style-parent: "";
|
409
|
+
mso-style-parent: "Figure title";
|
410
|
+
margin-top: 0cm;
|
411
|
+
margin-right: 0cm;
|
412
|
+
margin-bottom: 6.0pt;
|
413
|
+
margin-left: 0.0pt;
|
414
|
+
text-align: center;
|
415
|
+
line-height: 12.0pt;
|
416
|
+
page-break-after: avoid;
|
417
|
+
line-height: 12.0pt;
|
418
|
+
mso-pagination: widow-orphan;
|
419
|
+
tab-stops: 20.15pt;
|
420
|
+
font-size: {{normalfontsize}};
|
421
|
+
font-weight: bold;
|
422
|
+
font-family: {{bodyfont}};
|
423
|
+
mso-fareast-font-family: "SimSun",serif;
|
424
|
+
mso-bidi-font-family: {{bodyfont}};
|
425
|
+
mso-ansi-language: EN-GB; }
|
426
|
+
|
427
|
+
p.Tabletitle, li.Tabletitle, div.Tabletitle {
|
428
|
+
mso-style-name: "Table title";
|
429
|
+
mso-style-unhide: no;
|
430
|
+
mso-style-qformat: yes;
|
431
|
+
mso-style-parent: "Figure title";
|
410
432
|
margin-top: 0cm;
|
411
433
|
margin-right: 0cm;
|
412
434
|
margin-bottom: 6.0pt;
|
@@ -551,8 +573,7 @@ span.AnnexFigureTitleChar {
|
|
551
573
|
mso-ansi-language: EN-GB;
|
552
574
|
font-weight: bold; }
|
553
575
|
|
554
|
-
p.Note, div.Note, li.Note
|
555
|
-
mso-style-name: note;
|
576
|
+
p.Note, div.Note, li.Note {
|
556
577
|
mso-style-unhide: no;
|
557
578
|
mso-style-qformat: yes;
|
558
579
|
mso-style-parent: "";
|
@@ -564,13 +585,16 @@ p.Note, div.Note, li.Note, p.note, li.note, div.note {
|
|
564
585
|
line-height: 12.0pt;
|
565
586
|
mso-pagination: widow-orphan;
|
566
587
|
tab-stops: 20.15pt;
|
567
|
-
font-size: {{smallerfontsize}};
|
568
588
|
mso-bidi-font-size: {{normalfontsize}};
|
569
|
-
font-family: {{bodyfont}};
|
570
589
|
mso-fareast-font-family: "SimSun",serif;
|
571
590
|
mso-bidi-font-family: {{bodyfont}};
|
572
591
|
mso-ansi-language: EN-GB; }
|
573
592
|
|
593
|
+
p.Note, div.Note, li.Note {
|
594
|
+
mso-style-name: Note;
|
595
|
+
font-size: {{smallerfontsize}};
|
596
|
+
font-family: {{bodyfont}}; }
|
597
|
+
|
574
598
|
/* may need to be revised */
|
575
599
|
p.tablefootnote, li.tablefootnote, div.tablefootnote {
|
576
600
|
mso-style-name: tablefootnote;
|
@@ -666,26 +690,26 @@ p.Definition, li.Definition, div.Definition {
|
|
666
690
|
|
667
691
|
p.ForewordTitle, li.ForewordTitle, div.ForewordTitle {
|
668
692
|
mso-style-name: "Foreword Title";
|
669
|
-
mso-style-noshow: yes;
|
670
693
|
mso-style-unhide: no;
|
694
|
+
mso-style-parent: Base_Heading;
|
671
695
|
margin-top: 15.5pt;
|
672
696
|
margin-right: 0cm;
|
673
697
|
margin-bottom: 15.5pt;
|
674
698
|
margin-left: 0cm;
|
675
|
-
text-align: justify;
|
676
699
|
line-height: 15.5pt;
|
677
700
|
page-break-before: always;
|
701
|
+
tab-stops: 20.15pt;
|
678
702
|
mso-pagination: widow-orphan;
|
679
703
|
page-break-after: avoid;
|
680
704
|
mso-outline-level: 1;
|
681
705
|
mso-hyphenate: none;
|
682
|
-
tab-stops: 20.15pt;
|
683
706
|
font-size: 14.0pt;
|
684
|
-
mso-bidi-font-size:
|
707
|
+
mso-bidi-font-size: 11.0pt;
|
685
708
|
font-family: {{headerfont}};
|
686
|
-
mso-fareast-font-family:
|
687
|
-
mso-bidi-font-family:
|
709
|
+
mso-fareast-font-family: Calibri;
|
710
|
+
mso-bidi-font-family: "Times New Roman";
|
688
711
|
mso-ansi-language: EN-GB;
|
712
|
+
mso-fareast-language: EN-US;
|
689
713
|
font-weight: bold;
|
690
714
|
mso-bidi-font-weight: normal; }
|
691
715
|
|
@@ -713,9 +737,10 @@ p.IntroTitle, li.IntroTitle, div.IntroTitle {
|
|
713
737
|
mso-ansi-language: EN-GB;
|
714
738
|
font-weight: bold;
|
715
739
|
page-break-before: always;
|
716
|
-
mso-bidi-font-weight: normal;
|
740
|
+
mso-bidi-font-weight: normal;
|
741
|
+
page-break-before: always; }
|
717
742
|
|
718
|
-
p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead
|
743
|
+
p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead {
|
719
744
|
mso-style-name: titlepagesubhead;
|
720
745
|
mso-style-noshow: yes;
|
721
746
|
mso-style-unhide: no;
|
@@ -812,6 +837,25 @@ p.TermNum, li.TermNum, div.TermNum {
|
|
812
837
|
font-weight: bold;
|
813
838
|
mso-bidi-font-weight: normal; }
|
814
839
|
|
840
|
+
p.zzHelp, li.zzHelp, div.zzHelp {
|
841
|
+
mso-style-name: zzHelp;
|
842
|
+
mso-style-unhide: no;
|
843
|
+
margin-top: 0cm;
|
844
|
+
margin-right: 0cm;
|
845
|
+
margin-bottom: 12.0pt;
|
846
|
+
margin-left: 0cm;
|
847
|
+
text-align: justify;
|
848
|
+
line-height: 12.0pt;
|
849
|
+
mso-pagination: widow-orphan;
|
850
|
+
font-size: {{normalfontsize}};
|
851
|
+
mso-bidi-font-size: 10.0pt;
|
852
|
+
font-family: {{bodyfont}};
|
853
|
+
mso-fareast-font-family: "MS Mincho";
|
854
|
+
mso-bidi-font-family: "Times New Roman";
|
855
|
+
color: green;
|
856
|
+
mso-ansi-language: EN-GB;
|
857
|
+
mso-fareast-language: JA; }
|
858
|
+
|
815
859
|
p.zzContents, li.zzContents, div.zzContents {
|
816
860
|
mso-style-name: zzContents;
|
817
861
|
mso-style-noshow: yes;
|
@@ -839,50 +883,31 @@ p.zzContents, li.zzContents, div.zzContents {
|
|
839
883
|
|
840
884
|
p.zzCopyright, li.zzCopyright, div.zzCopyright {
|
841
885
|
mso-style-name: zzCopyright;
|
842
|
-
mso-style-noshow: yes;
|
843
886
|
mso-style-unhide: no;
|
844
887
|
mso-style-next: Normal;
|
845
888
|
margin-top: 0cm;
|
846
|
-
margin-right:
|
889
|
+
margin-right: 14.2pt;
|
847
890
|
margin-bottom: 12.0pt;
|
848
|
-
margin-left:
|
891
|
+
margin-left: 14.2pt;
|
849
892
|
text-align: justify;
|
850
893
|
line-height: 12.0pt;
|
851
894
|
mso-pagination: widow-orphan;
|
852
|
-
tab-stops:
|
895
|
+
tab-stops: 25.7pt 481.15pt;
|
853
896
|
border: none;
|
897
|
+
mso-border-alt: solid blue .5pt;
|
854
898
|
padding: 0cm;
|
855
899
|
mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
|
856
|
-
font-size:
|
857
|
-
font-
|
858
|
-
mso-fareast-font-family: "SimSun",serif;
|
859
|
-
mso-bidi-font-family: {{bodyfont}};
|
860
|
-
mso-ansi-language: EN-GB; }
|
861
|
-
|
862
|
-
p.zzCopyright1 {
|
863
|
-
mso-style-name: zzCopyright;
|
864
|
-
mso-style-noshow: yes;
|
865
|
-
mso-style-unhide: no;
|
866
|
-
mso-style-next: Normal;
|
867
|
-
margin-top: 0cm;
|
868
|
-
margin-right: 0pt;
|
869
|
-
margin-bottom: 12.0pt;
|
870
|
-
margin-left: 0pt;
|
871
|
-
text-align: justify;
|
872
|
-
line-height: 12.0pt;
|
873
|
-
mso-pagination: widow-orphan;
|
874
|
-
tab-stops: 20.15pt 25.7pt 481.15pt;
|
875
|
-
border: none;
|
876
|
-
padding: 0cm;
|
877
|
-
mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
|
878
|
-
font-size: 10.0pt;
|
900
|
+
font-size: {{normalfontsize}};
|
901
|
+
mso-bidi-font-size: 10.0pt;
|
879
902
|
font-family: {{bodyfont}};
|
880
|
-
mso-fareast-font-family: "
|
881
|
-
mso-bidi-font-family:
|
882
|
-
|
903
|
+
mso-fareast-font-family: "MS Mincho";
|
904
|
+
mso-bidi-font-family: "Times New Roman";
|
905
|
+
color: blue;
|
906
|
+
mso-ansi-language: EN-GB;
|
907
|
+
mso-fareast-language: JA; }
|
883
908
|
|
884
|
-
p.zzAddress
|
885
|
-
mso-style-name:
|
909
|
+
p.zzAddress {
|
910
|
+
mso-style-name: zzAddress;
|
886
911
|
margin: 0cm;
|
887
912
|
margin-bottom: 12pt;
|
888
913
|
margin-left: 20.15pt;
|
@@ -891,10 +916,11 @@ p.zzAddress, p.zzaddress, li.zzaddress, div.zzaddress {
|
|
891
916
|
text-autospace: none;
|
892
917
|
padding: 0cm;
|
893
918
|
mso-padding-alt: 0cm 4.0pt 0cm 4.0pt;
|
919
|
+
color: blue;
|
894
920
|
font-size: 10.0pt;
|
895
921
|
font-family: {{bodyfont}}; }
|
896
922
|
|
897
|
-
p.zzWarning
|
923
|
+
p.zzWarning {
|
898
924
|
mso-style-name: zzwarning;
|
899
925
|
mso-style-unhide: no;
|
900
926
|
mso-margin-top-alt: auto;
|
@@ -910,7 +936,7 @@ p.zzWarning, p.zzwarning, li.zzwarning, div.zzwarning {
|
|
910
936
|
mso-bidi-font-weight: bold;
|
911
937
|
font-family: {{bodyfont}}; }
|
912
938
|
|
913
|
-
p.zzWarningHdr
|
939
|
+
p.zzWarningHdr {
|
914
940
|
mso-style-name: zzwarninghdr;
|
915
941
|
mso-style-unhide: no;
|
916
942
|
mso-margin-top-alt: auto;
|
@@ -948,54 +974,10 @@ p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle {
|
|
948
974
|
mso-fareast-font-family: "SimHei",serif;
|
949
975
|
mso-bidi-font-family: {{headerfont}};
|
950
976
|
mso-ansi-language: EN-GB;
|
977
|
+
color: blue;
|
951
978
|
font-weight: bold;
|
952
979
|
mso-bidi-font-weight: normal; }
|
953
980
|
|
954
|
-
p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1 {
|
955
|
-
mso-style-name: zzSTDTitle;
|
956
|
-
mso-style-noshow: yes;
|
957
|
-
mso-style-unhide: no;
|
958
|
-
mso-style-next: Normal;
|
959
|
-
margin-top: 0pt;
|
960
|
-
margin-right: 0cm;
|
961
|
-
margin-bottom: 18.0pt;
|
962
|
-
margin-left: 0cm;
|
963
|
-
line-height: 17.5pt;
|
964
|
-
mso-line-height-rule: exactly;
|
965
|
-
mso-pagination: widow-orphan;
|
966
|
-
mso-hyphenate: none;
|
967
|
-
tab-stops: 20.15pt;
|
968
|
-
font-size: 16.0pt;
|
969
|
-
mso-bidi-font-size: {{normalfontsize}};
|
970
|
-
font-family: {{headerfont}};
|
971
|
-
mso-fareast-font-family: "SimHei",serif;
|
972
|
-
mso-bidi-font-family: {{headerfont}};
|
973
|
-
mso-ansi-language: EN-GB;
|
974
|
-
font-weight: bold;
|
975
|
-
mso-bidi-font-weight: normal; }
|
976
|
-
|
977
|
-
p.zzSTDTitle2, li.zzSTDTitle2, div.zzSTDTitle2 {
|
978
|
-
mso-style-name: zzSTDTitle;
|
979
|
-
mso-style-noshow: yes;
|
980
|
-
mso-style-unhide: no;
|
981
|
-
mso-style-next: Normal;
|
982
|
-
margin-top: 0pt;
|
983
|
-
margin-right: 0cm;
|
984
|
-
margin-bottom: 18.0pt;
|
985
|
-
margin-left: 0cm;
|
986
|
-
line-height: 17.5pt;
|
987
|
-
mso-line-height-rule: exactly;
|
988
|
-
mso-pagination: widow-orphan;
|
989
|
-
mso-hyphenate: none;
|
990
|
-
tab-stops: 20.15pt;
|
991
|
-
font-size: 16.0pt;
|
992
|
-
mso-bidi-font-size: {{normalfontsize}};
|
993
|
-
font-family: {{headerfont}};
|
994
|
-
mso-fareast-font-family: "SimHei",serif;
|
995
|
-
mso-bidi-font-family: {{headerfont}};
|
996
|
-
mso-ansi-language: EN-GB;
|
997
|
-
mso-bidi-font-weight: normal; }
|
998
|
-
|
999
981
|
p.1, li.1, div.1 {
|
1000
982
|
mso-style-name: 引用1;
|
1001
983
|
mso-style-priority: 99;
|
@@ -1016,7 +998,7 @@ p.1, li.1, div.1 {
|
|
1016
998
|
mso-ansi-language: EN-GB;
|
1017
999
|
mso-fareast-language: JA; }
|
1018
1000
|
|
1019
|
-
p.Quote, li.Quote
|
1001
|
+
p.Quote, li.Quote {
|
1020
1002
|
mso-style-priority: 99;
|
1021
1003
|
margin-top: 0cm;
|
1022
1004
|
margin-right: 36.0pt;
|
@@ -1032,7 +1014,19 @@ p.Quote, li.Quote, div.Quote {
|
|
1032
1014
|
mso-bidi-font-family: {{bodyfont}};
|
1033
1015
|
mso-ansi-language: EN-GB; }
|
1034
1016
|
|
1035
|
-
|
1017
|
+
div.Quote {
|
1018
|
+
mso-style-priority: 99;
|
1019
|
+
text-align: justify;
|
1020
|
+
line-height: 12.0pt;
|
1021
|
+
mso-pagination: widow-orphan;
|
1022
|
+
tab-stops: 20.15pt;
|
1023
|
+
font-size: {{normalfontsize}};
|
1024
|
+
font-family: {{bodyfont}};
|
1025
|
+
mso-fareast-font-family: "SimSun",serif;
|
1026
|
+
mso-bidi-font-family: {{bodyfont}};
|
1027
|
+
mso-ansi-language: EN-GB; }
|
1028
|
+
|
1029
|
+
p.QuoteAttribution {
|
1036
1030
|
mso-style-name: quoteattribution;
|
1037
1031
|
mso-style-unhide: no;
|
1038
1032
|
mso-margin-top-alt: auto;
|
@@ -1048,16 +1042,13 @@ p.QuoteAttribution, p.quoteattribution, li.quoteattribution, div.quoteattributio
|
|
1048
1042
|
mso-ansi-language: EN-HK;
|
1049
1043
|
mso-fareast-language: JA; }
|
1050
1044
|
|
1051
|
-
p.Admonition, li.Admonition, div.Admonition
|
1052
|
-
mso-style-name: admonition;
|
1045
|
+
p.Admonition, li.Admonition, div.Admonition {
|
1053
1046
|
mso-style-priority: 99;
|
1054
1047
|
mso-margin-top-alt: auto;
|
1055
1048
|
margin-right: 0cm;
|
1056
1049
|
mso-margin-bottom-alt: auto;
|
1057
1050
|
margin-left: 0cm;
|
1058
1051
|
mso-pagination: widow-orphan;
|
1059
|
-
font-size: 12.0pt;
|
1060
|
-
font-family: "Calibri",sans-serif;
|
1061
1052
|
mso-ascii-font-family: {{bodyfont}};
|
1062
1053
|
mso-ascii-theme-font: minor-latin;
|
1063
1054
|
mso-fareast-font-family: "SimSun",serif;
|
@@ -1066,9 +1057,14 @@ p.Admonition, li.Admonition, div.Admonition, p.admonition, li.admonition, div.ad
|
|
1066
1057
|
mso-hansi-theme-font: minor-latin;
|
1067
1058
|
mso-bidi-font-family: {{bodyfont}};
|
1068
1059
|
mso-bidi-theme-font: minor-bidi;
|
1069
|
-
font-weight: bold;
|
1070
1060
|
mso-ansi-language: EN-AU; }
|
1071
1061
|
|
1062
|
+
p.Admonition, li.Admonition {
|
1063
|
+
mso-style-name: admonition;
|
1064
|
+
font-size: 12.0pt;
|
1065
|
+
font-family: "Calibri",sans-serif;
|
1066
|
+
font-weight: bold; }
|
1067
|
+
|
1072
1068
|
p.Code, li.Code, div.Code {
|
1073
1069
|
mso-style-name: Code;
|
1074
1070
|
mso-style-priority: 16;
|
@@ -1078,7 +1074,7 @@ p.Code, li.Code, div.Code {
|
|
1078
1074
|
line-height: 12.0pt;
|
1079
1075
|
mso-pagination: widow-orphan;
|
1080
1076
|
tab-stops: 16.15pt 32.6pt 48.75pt 65.2pt 81.35pt 97.8pt 113.95pt 130.4pt 146.55pt 162.75pt;
|
1081
|
-
font-size: 11.
|
1077
|
+
font-size: 11.0pt;
|
1082
1078
|
mso-bidi-font-size: {{normalfontsize}};
|
1083
1079
|
font-family: {{monospacefont}};
|
1084
1080
|
mso-fareast-font-family: "SimSun",serif;
|
@@ -1268,9 +1264,6 @@ table.MsoISOTable td, table.MsoISOTableBig td {
|
|
1268
1264
|
mso-border-alt: solid windowtext 1pt;
|
1269
1265
|
padding: 0cm 2.85pt 0cm 2.85pt; }
|
1270
1266
|
|
1271
|
-
table.MsoISOTable p, table.MsoISOTableBig p {
|
1272
|
-
font-size: {{smallerfontsize}}; }
|
1273
|
-
|
1274
1267
|
table.MsoTableGrid {
|
1275
1268
|
mso-style-name: "Table Grid";
|
1276
1269
|
mso-tstyle-rowband-size: 0;
|
@@ -1504,51 +1497,6 @@ div.doctitle {
|
|
1504
1497
|
text-align: left;
|
1505
1498
|
font-size: 16.0pt; }
|
1506
1499
|
|
1507
|
-
p.boilerplate-copyright, li.boilerplate-copyright, div.boilerplate-copyright {
|
1508
|
-
mso-style-name: boilerplate-copyright;
|
1509
|
-
mso-style-unhide: no;
|
1510
|
-
mso-margin-top-alt: auto;
|
1511
|
-
margin-right: 0cm;
|
1512
|
-
mso-margin-bottom-alt: auto;
|
1513
|
-
margin-left: 0cm;
|
1514
|
-
mso-pagination: widow-orphan;
|
1515
|
-
font-size: 12.0pt;
|
1516
|
-
font-family: "Times New Roman",serif;
|
1517
|
-
mso-fareast-font-family: DengXian;
|
1518
|
-
mso-fareast-theme-font: minor-fareast;
|
1519
|
-
mso-ansi-language: EN-HK;
|
1520
|
-
mso-fareast-language: JA; }
|
1521
|
-
|
1522
|
-
p.boilerplate-name, li.boilerplate-name, div.boilerplate-name {
|
1523
|
-
mso-style-name: boilerplate-name;
|
1524
|
-
mso-style-unhide: no;
|
1525
|
-
mso-margin-top-alt: auto;
|
1526
|
-
margin-right: 0cm;
|
1527
|
-
mso-margin-bottom-alt: auto;
|
1528
|
-
margin-left: 0cm;
|
1529
|
-
mso-pagination: widow-orphan;
|
1530
|
-
font-size: 12.0pt;
|
1531
|
-
font-family: "Times New Roman",serif;
|
1532
|
-
mso-fareast-font-family: DengXian;
|
1533
|
-
mso-fareast-theme-font: minor-fareast;
|
1534
|
-
mso-ansi-language: EN-HK;
|
1535
|
-
mso-fareast-language: JA; }
|
1536
|
-
|
1537
|
-
p.boilerplate-address, li.boilerplate-address, div.boilerplate-address {
|
1538
|
-
mso-style-name: boilerplate-address;
|
1539
|
-
mso-style-unhide: no;
|
1540
|
-
mso-margin-top-alt: auto;
|
1541
|
-
margin-right: 0cm;
|
1542
|
-
mso-margin-bottom-alt: auto;
|
1543
|
-
margin-left: 0cm;
|
1544
|
-
mso-pagination: widow-orphan;
|
1545
|
-
font-size: 12.0pt;
|
1546
|
-
font-family: "Times New Roman",serif;
|
1547
|
-
mso-fareast-font-family: DengXian;
|
1548
|
-
mso-fareast-theme-font: minor-fareast;
|
1549
|
-
mso-ansi-language: EN-HK;
|
1550
|
-
mso-fareast-language: JA; }
|
1551
|
-
|
1552
1500
|
div.rule {
|
1553
1501
|
width: 100%;
|
1554
1502
|
height: 1px;
|
@@ -1714,24 +1662,6 @@ a.TableFootnoteRef, span.TableFootnoteRef, span.tablefootnoteref {
|
|
1714
1662
|
aside {
|
1715
1663
|
font-size: {{footnotefontsize}}; }
|
1716
1664
|
|
1717
|
-
span.notelabel {
|
1718
|
-
mso-style-name: note_label;
|
1719
|
-
mso-style-unhide: no;
|
1720
|
-
mso-ansi-font-size: 10.0pt;
|
1721
|
-
mso-bidi-font-size: 10.0pt;
|
1722
|
-
font-family: {{bodyfont}};
|
1723
|
-
mso-ascii-font-family: Cambria;
|
1724
|
-
mso-hansi-font-family: Cambria; }
|
1725
|
-
|
1726
|
-
span.examplelabel {
|
1727
|
-
mso-style-name: example_label;
|
1728
|
-
mso-style-unhide: no;
|
1729
|
-
mso-ansi-font-size: 10.0pt;
|
1730
|
-
mso-bidi-font-size: 10.0pt;
|
1731
|
-
font-family: {{bodyfont}};
|
1732
|
-
mso-ascii-font-family: Cambria;
|
1733
|
-
mso-hansi-font-family: Cambria; }
|
1734
|
-
|
1735
1665
|
/*
|
1736
1666
|
div.example {
|
1737
1667
|
border:solid black .25pt;
|
@@ -1749,7 +1679,11 @@ div.example {
|
|
1749
1679
|
}
|
1750
1680
|
*/
|
1751
1681
|
p.Example, li.Example, div.Example, td.Example {
|
1752
|
-
tab-stops: 70.9pt;
|
1682
|
+
tab-stops: 70.9pt; }
|
1683
|
+
|
1684
|
+
p.Example, li.Example, td.Example {
|
1685
|
+
mso-style-name: Example;
|
1686
|
+
mso-style-link: "Example Char";
|
1753
1687
|
font-size: {{smallerfontsize}};
|
1754
1688
|
font-family: {{bodyfont}}; }
|
1755
1689
|
|
@@ -1763,21 +1697,19 @@ td.Example p.MsoListParagraph {
|
|
1763
1697
|
div.Example p.MsoListParagraph {
|
1764
1698
|
font-size: {{smallerfontsize}}; }
|
1765
1699
|
|
1766
|
-
p.Example, li.Example, div.Example
|
1767
|
-
mso-style-name: Example;
|
1700
|
+
p.Example, li.Example, div.Example {
|
1768
1701
|
mso-style-unhide: no;
|
1769
1702
|
mso-style-qformat: yes;
|
1770
|
-
mso-style-link: "Example Char";
|
1771
1703
|
mso-margin-top-alt: auto;
|
1704
|
+
margin-top: 0cm;
|
1772
1705
|
margin-right: 0cm;
|
1773
|
-
|
1706
|
+
margin-bottom: 12.0pt;
|
1774
1707
|
margin-left: 0cm;
|
1775
1708
|
text-align: justify;
|
1776
|
-
line-height:
|
1709
|
+
line-height: 11.0pt;
|
1777
1710
|
mso-pagination: none;
|
1778
|
-
|
1779
|
-
|
1780
|
-
font-family: {{bodyfont}};
|
1711
|
+
mso-pagination: widow-orphan;
|
1712
|
+
tab-stops: 67.7pt;
|
1781
1713
|
mso-fareast-font-family: Calibri;
|
1782
1714
|
mso-bidi-font-family: "Times New Roman";
|
1783
1715
|
mso-ansi-language: EN-GB;
|
@@ -1884,7 +1816,7 @@ span.aucollab {
|
|
1884
1816
|
mso-ascii-font-family: Cambria;
|
1885
1817
|
mso-hansi-font-family: Cambria;
|
1886
1818
|
border: none;
|
1887
|
-
|
1819
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:silver;{% endif %} }
|
1888
1820
|
|
1889
1821
|
span.audeg {
|
1890
1822
|
mso-style-name: au_deg;
|
@@ -1895,7 +1827,7 @@ span.audeg {
|
|
1895
1827
|
mso-ascii-font-family: Cambria;
|
1896
1828
|
mso-hansi-font-family: Cambria;
|
1897
1829
|
border: none;
|
1898
|
-
|
1830
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:yellow;{% endif %} }
|
1899
1831
|
|
1900
1832
|
span.aufname {
|
1901
1833
|
mso-style-name: au_fname;
|
@@ -1906,7 +1838,7 @@ span.aufname {
|
|
1906
1838
|
mso-ascii-font-family: Cambria;
|
1907
1839
|
mso-hansi-font-family: Cambria;
|
1908
1840
|
border: none;
|
1909
|
-
|
1841
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFCC;{% endif %} }
|
1910
1842
|
|
1911
1843
|
span.aurole {
|
1912
1844
|
mso-style-name: au_role;
|
@@ -1917,7 +1849,7 @@ span.aurole {
|
|
1917
1849
|
mso-ascii-font-family: Cambria;
|
1918
1850
|
mso-hansi-font-family: Cambria;
|
1919
1851
|
border: none;
|
1920
|
-
|
1852
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:olive;{% endif %} }
|
1921
1853
|
|
1922
1854
|
span.ausuffix {
|
1923
1855
|
mso-style-name: au_suffix;
|
@@ -1928,7 +1860,7 @@ span.ausuffix {
|
|
1928
1860
|
mso-ascii-font-family: Cambria;
|
1929
1861
|
mso-hansi-font-family: Cambria;
|
1930
1862
|
border: none;
|
1931
|
-
|
1863
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:fuchsia;{% endif %} }
|
1932
1864
|
|
1933
1865
|
span.ausurname {
|
1934
1866
|
mso-style-name: au_surname;
|
@@ -1939,7 +1871,7 @@ span.ausurname {
|
|
1939
1871
|
mso-ascii-font-family: Cambria;
|
1940
1872
|
mso-hansi-font-family: Cambria;
|
1941
1873
|
border: none;
|
1942
|
-
|
1874
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
1943
1875
|
|
1944
1876
|
span.bibbase {
|
1945
1877
|
mso-style-name: bib_base;
|
@@ -1957,7 +1889,7 @@ span.bibarticle {
|
|
1957
1889
|
mso-ascii-font-family: Cambria;
|
1958
1890
|
mso-hansi-font-family: Cambria;
|
1959
1891
|
border: none;
|
1960
|
-
|
1892
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFFF;{% endif %} }
|
1961
1893
|
|
1962
1894
|
span.bibcomment {
|
1963
1895
|
mso-style-name: bib_comment;
|
@@ -1983,7 +1915,7 @@ span.bibdoi {
|
|
1983
1915
|
mso-ascii-font-family: Cambria;
|
1984
1916
|
mso-hansi-font-family: Cambria;
|
1985
1917
|
border: none;
|
1986
|
-
|
1918
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
1987
1919
|
|
1988
1920
|
span.bibetal {
|
1989
1921
|
mso-style-name: bib_etal;
|
@@ -1993,7 +1925,7 @@ span.bibetal {
|
|
1993
1925
|
mso-ascii-font-family: Cambria;
|
1994
1926
|
mso-hansi-font-family: Cambria;
|
1995
1927
|
border: none;
|
1996
|
-
|
1928
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
1997
1929
|
|
1998
1930
|
span.bibfname {
|
1999
1931
|
mso-style-name: bib_fname;
|
@@ -2003,7 +1935,7 @@ span.bibfname {
|
|
2003
1935
|
mso-ascii-font-family: Cambria;
|
2004
1936
|
mso-hansi-font-family: Cambria;
|
2005
1937
|
border: none;
|
2006
|
-
|
1938
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFCC;{% endif %} }
|
2007
1939
|
|
2008
1940
|
span.bibfpage {
|
2009
1941
|
mso-style-name: bib_fpage;
|
@@ -2013,7 +1945,7 @@ span.bibfpage {
|
|
2013
1945
|
mso-ascii-font-family: Cambria;
|
2014
1946
|
mso-hansi-font-family: Cambria;
|
2015
1947
|
border: none;
|
2016
|
-
|
1948
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#E6E6E6;{% endif %} }
|
2017
1949
|
|
2018
1950
|
span.bibissue {
|
2019
1951
|
mso-style-name: bib_issue;
|
@@ -2023,7 +1955,7 @@ span.bibissue {
|
|
2023
1955
|
mso-ascii-font-family: Cambria;
|
2024
1956
|
mso-hansi-font-family: Cambria;
|
2025
1957
|
border: none;
|
2026
|
-
|
1958
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFAB;{% endif %} }
|
2027
1959
|
|
2028
1960
|
span.bibjournal {
|
2029
1961
|
mso-style-name: bib_journal;
|
@@ -2033,7 +1965,7 @@ span.bibjournal {
|
|
2033
1965
|
mso-ascii-font-family: Cambria;
|
2034
1966
|
mso-hansi-font-family: Cambria;
|
2035
1967
|
border: none;
|
2036
|
-
|
1968
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F9DECF;{% endif %} }
|
2037
1969
|
|
2038
1970
|
span.biblpage {
|
2039
1971
|
mso-style-name: bib_lpage;
|
@@ -2043,7 +1975,7 @@ span.biblpage {
|
|
2043
1975
|
mso-ascii-font-family: Cambria;
|
2044
1976
|
mso-hansi-font-family: Cambria;
|
2045
1977
|
border: none;
|
2046
|
-
|
1978
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
|
2047
1979
|
|
2048
1980
|
span.bibnumber {
|
2049
1981
|
mso-style-name: bib_number;
|
@@ -2053,7 +1985,7 @@ span.bibnumber {
|
|
2053
1985
|
mso-ascii-font-family: Cambria;
|
2054
1986
|
mso-hansi-font-family: Cambria;
|
2055
1987
|
border: none;
|
2056
|
-
|
1988
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCCCFF;{% endif %} }
|
2057
1989
|
|
2058
1990
|
span.biborganization {
|
2059
1991
|
mso-style-name: bib_organization;
|
@@ -2063,7 +1995,7 @@ span.biborganization {
|
|
2063
1995
|
mso-ascii-font-family: Cambria;
|
2064
1996
|
mso-hansi-font-family: Cambria;
|
2065
1997
|
border: none;
|
2066
|
-
|
1998
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
2067
1999
|
|
2068
2000
|
span.bibsuffix {
|
2069
2001
|
mso-style-name: bib_suffix;
|
@@ -2081,7 +2013,7 @@ span.bibsuppl {
|
|
2081
2013
|
mso-ascii-font-family: Cambria;
|
2082
2014
|
mso-hansi-font-family: Cambria;
|
2083
2015
|
border: none;
|
2084
|
-
|
2016
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC66;{% endif %} }
|
2085
2017
|
|
2086
2018
|
span.bibsurname {
|
2087
2019
|
mso-style-name: bib_surname;
|
@@ -2091,7 +2023,7 @@ span.bibsurname {
|
|
2091
2023
|
mso-ascii-font-family: Cambria;
|
2092
2024
|
mso-hansi-font-family: Cambria;
|
2093
2025
|
border: none;
|
2094
|
-
|
2026
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
2095
2027
|
|
2096
2028
|
span.bibunpubl {
|
2097
2029
|
mso-style-name: bib_unpubl;
|
@@ -2109,7 +2041,7 @@ span.biburl {
|
|
2109
2041
|
mso-ascii-font-family: Cambria;
|
2110
2042
|
mso-hansi-font-family: Cambria;
|
2111
2043
|
border: none;
|
2112
|
-
|
2044
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF66;{% endif %} }
|
2113
2045
|
|
2114
2046
|
span.bibvolume {
|
2115
2047
|
mso-style-name: bib_volume;
|
@@ -2119,7 +2051,7 @@ span.bibvolume {
|
|
2119
2051
|
mso-ascii-font-family: Cambria;
|
2120
2052
|
mso-hansi-font-family: Cambria;
|
2121
2053
|
border: none;
|
2122
|
-
|
2054
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCECFF;{% endif %} }
|
2123
2055
|
|
2124
2056
|
span.bibyear {
|
2125
2057
|
mso-style-name: bib_year;
|
@@ -2129,7 +2061,7 @@ span.bibyear {
|
|
2129
2061
|
mso-ascii-font-family: Cambria;
|
2130
2062
|
mso-hansi-font-family: Cambria;
|
2131
2063
|
border: none;
|
2132
|
-
|
2064
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCCFF;{% endif %} }
|
2133
2065
|
|
2134
2066
|
span.citebase {
|
2135
2067
|
mso-style-name: cite_base;
|
@@ -2147,7 +2079,7 @@ span.citebib {
|
|
2147
2079
|
mso-ascii-font-family: Cambria;
|
2148
2080
|
mso-hansi-font-family: Cambria;
|
2149
2081
|
border: none;
|
2150
|
-
|
2082
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFFF;{% endif %} }
|
2151
2083
|
|
2152
2084
|
span.citebox {
|
2153
2085
|
mso-style-name: cite_box;
|
@@ -2165,7 +2097,7 @@ span.citeen {
|
|
2165
2097
|
mso-ascii-font-family: Cambria;
|
2166
2098
|
mso-hansi-font-family: Cambria;
|
2167
2099
|
border: none;
|
2168
|
-
|
2100
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFF99;{% endif %}
|
2169
2101
|
vertical-align: super; }
|
2170
2102
|
|
2171
2103
|
span.citefig {
|
@@ -2177,7 +2109,7 @@ span.citefig {
|
|
2177
2109
|
mso-hansi-font-family: Cambria;
|
2178
2110
|
color: windowtext;
|
2179
2111
|
border: none;
|
2180
|
-
|
2112
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
2181
2113
|
|
2182
2114
|
span.citefn {
|
2183
2115
|
mso-style-name: cite_fn;
|
@@ -2189,7 +2121,7 @@ span.citefn {
|
|
2189
2121
|
mso-hansi-font-family: Cambria;
|
2190
2122
|
color: windowtext;
|
2191
2123
|
border: none;
|
2192
|
-
|
2124
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %}
|
2193
2125
|
vertical-align: baseline; }
|
2194
2126
|
|
2195
2127
|
span.citetbl {
|
@@ -2201,7 +2133,7 @@ span.citetbl {
|
|
2201
2133
|
mso-hansi-font-family: Cambria;
|
2202
2134
|
color: windowtext;
|
2203
2135
|
border: none;
|
2204
|
-
|
2136
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF9999;{% endif %} }
|
2205
2137
|
|
2206
2138
|
span.stdbase {
|
2207
2139
|
mso-style-name: std_base;
|
@@ -2219,7 +2151,7 @@ span.bibextlink {
|
|
2219
2151
|
mso-ascii-font-family: Cambria;
|
2220
2152
|
mso-hansi-font-family: Cambria;
|
2221
2153
|
border: none;
|
2222
|
-
|
2154
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#6CCE9D;{% endif %} }
|
2223
2155
|
|
2224
2156
|
span.citeeq {
|
2225
2157
|
mso-style-name: cite_eq;
|
@@ -2229,7 +2161,7 @@ span.citeeq {
|
|
2229
2161
|
mso-ascii-font-family: Cambria;
|
2230
2162
|
mso-hansi-font-family: Cambria;
|
2231
2163
|
border: none;
|
2232
|
-
|
2164
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFAE37;{% endif %} }
|
2233
2165
|
|
2234
2166
|
span.bibmedline {
|
2235
2167
|
mso-style-name: bib_medline;
|
@@ -2247,7 +2179,7 @@ span.citetfn {
|
|
2247
2179
|
mso-ascii-font-family: Cambria;
|
2248
2180
|
mso-hansi-font-family: Cambria;
|
2249
2181
|
border: none;
|
2250
|
-
|
2182
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FBBA79;{% endif %} }
|
2251
2183
|
|
2252
2184
|
span.auprefix {
|
2253
2185
|
mso-style-name: au_prefix;
|
@@ -2258,7 +2190,7 @@ span.auprefix {
|
|
2258
2190
|
mso-ascii-font-family: Cambria;
|
2259
2191
|
mso-hansi-font-family: Cambria;
|
2260
2192
|
border: none;
|
2261
|
-
|
2193
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC99;{% endif %} }
|
2262
2194
|
|
2263
2195
|
span.citeapp {
|
2264
2196
|
mso-style-name: cite_app;
|
@@ -2268,7 +2200,7 @@ span.citeapp {
|
|
2268
2200
|
mso-ascii-font-family: Cambria;
|
2269
2201
|
mso-hansi-font-family: Cambria;
|
2270
2202
|
border: none;
|
2271
|
-
|
2203
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF33;{% endif %} }
|
2272
2204
|
|
2273
2205
|
span.citesec {
|
2274
2206
|
mso-style-name: cite_sec;
|
@@ -2278,7 +2210,7 @@ span.citesec {
|
|
2278
2210
|
mso-ascii-font-family: Cambria;
|
2279
2211
|
mso-hansi-font-family: Cambria;
|
2280
2212
|
border: none;
|
2281
|
-
|
2213
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCCCC;{% endif %} }
|
2282
2214
|
|
2283
2215
|
span.stddocNumber {
|
2284
2216
|
mso-style-name: std_docNumber;
|
@@ -2288,7 +2220,7 @@ span.stddocNumber {
|
|
2288
2220
|
mso-ascii-font-family: Cambria;
|
2289
2221
|
mso-hansi-font-family: Cambria;
|
2290
2222
|
border: none;
|
2291
|
-
|
2223
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F2DBDB;{% endif %} }
|
2292
2224
|
|
2293
2225
|
span.stddocPartNumber {
|
2294
2226
|
mso-style-name: std_docPartNumber;
|
@@ -2298,7 +2230,7 @@ span.stddocPartNumber {
|
|
2298
2230
|
mso-ascii-font-family: Cambria;
|
2299
2231
|
mso-hansi-font-family: Cambria;
|
2300
2232
|
border: none;
|
2301
|
-
|
2233
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#EAF1DD;{% endif %} }
|
2302
2234
|
|
2303
2235
|
span.stddocTitle {
|
2304
2236
|
mso-style-name: std_docTitle;
|
@@ -2308,7 +2240,7 @@ span.stddocTitle {
|
|
2308
2240
|
mso-ascii-font-family: Cambria;
|
2309
2241
|
mso-hansi-font-family: Cambria;
|
2310
2242
|
border: none;
|
2311
|
-
|
2243
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FDE9D9;{% endif %}
|
2312
2244
|
font-style: italic;
|
2313
2245
|
mso-bidi-font-style: normal; }
|
2314
2246
|
|
@@ -2321,7 +2253,7 @@ span.aumember {
|
|
2321
2253
|
mso-ascii-font-family: Cambria;
|
2322
2254
|
mso-hansi-font-family: Cambria;
|
2323
2255
|
border: none;
|
2324
|
-
|
2256
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %} }
|
2325
2257
|
|
2326
2258
|
span.stdfootnote {
|
2327
2259
|
mso-style-name: std_footnote;
|
@@ -2331,7 +2263,7 @@ span.stdfootnote {
|
|
2331
2263
|
mso-ascii-font-family: Cambria;
|
2332
2264
|
mso-hansi-font-family: Cambria;
|
2333
2265
|
border: none;
|
2334
|
-
|
2266
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F2F2F2;{% endif %} }
|
2335
2267
|
|
2336
2268
|
span.stdpublisher {
|
2337
2269
|
mso-style-name: std_publisher;
|
@@ -2341,7 +2273,7 @@ span.stdpublisher {
|
|
2341
2273
|
mso-ascii-font-family: Cambria;
|
2342
2274
|
mso-hansi-font-family: Cambria;
|
2343
2275
|
border: none;
|
2344
|
-
|
2276
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#C6D9F1;{% endif %} }
|
2345
2277
|
|
2346
2278
|
span.stdsection {
|
2347
2279
|
mso-style-name: std_section;
|
@@ -2351,7 +2283,7 @@ span.stdsection {
|
|
2351
2283
|
mso-ascii-font-family: Cambria;
|
2352
2284
|
mso-hansi-font-family: Cambria;
|
2353
2285
|
border: none;
|
2354
|
-
|
2286
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#E5DFEC;{% endif %} }
|
2355
2287
|
|
2356
2288
|
span.stdyear {
|
2357
2289
|
mso-style-name: std_year;
|
@@ -2361,7 +2293,7 @@ span.stdyear {
|
|
2361
2293
|
mso-ascii-font-family: Cambria;
|
2362
2294
|
mso-hansi-font-family: Cambria;
|
2363
2295
|
border: none;
|
2364
|
-
|
2296
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#DAEEF3;{% endif %} }
|
2365
2297
|
|
2366
2298
|
span.stddocumentType {
|
2367
2299
|
mso-style-name: std_documentType;
|
@@ -2371,7 +2303,7 @@ span.stddocumentType {
|
|
2371
2303
|
mso-ascii-font-family: Cambria;
|
2372
2304
|
mso-hansi-font-family: Cambria;
|
2373
2305
|
border: none;
|
2374
|
-
|
2306
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#7DE1DF;{% endif %} }
|
2375
2307
|
|
2376
2308
|
span.bibalt-year {
|
2377
2309
|
mso-style-name: bib_alt-year;
|
@@ -2382,7 +2314,7 @@ span.bibalt-year {
|
|
2382
2314
|
mso-ascii-font-family: Cambria;
|
2383
2315
|
mso-hansi-font-family: Cambria;
|
2384
2316
|
border: none;
|
2385
|
-
|
2317
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CC99FF;{% endif %} }
|
2386
2318
|
|
2387
2319
|
span.bibbook {
|
2388
2320
|
mso-style-name: bib_book;
|
@@ -2392,7 +2324,7 @@ span.bibbook {
|
|
2392
2324
|
mso-ascii-font-family: Cambria;
|
2393
2325
|
mso-hansi-font-family: Cambria;
|
2394
2326
|
border: none;
|
2395
|
-
|
2327
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#99CCFF;{% endif %} }
|
2396
2328
|
|
2397
2329
|
span.bibchapterno {
|
2398
2330
|
mso-style-name: bib_chapterno;
|
@@ -2402,7 +2334,7 @@ span.bibchapterno {
|
|
2402
2334
|
mso-ascii-font-family: Cambria;
|
2403
2335
|
mso-hansi-font-family: Cambria;
|
2404
2336
|
border: none;
|
2405
|
-
|
2337
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
|
2406
2338
|
|
2407
2339
|
span.bibchaptertitle {
|
2408
2340
|
mso-style-name: bib_chaptertitle;
|
@@ -2412,7 +2344,7 @@ span.bibchaptertitle {
|
|
2412
2344
|
mso-ascii-font-family: Cambria;
|
2413
2345
|
mso-hansi-font-family: Cambria;
|
2414
2346
|
border: none;
|
2415
|
-
|
2347
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF9D5B;{% endif %} }
|
2416
2348
|
|
2417
2349
|
span.bibed-etal {
|
2418
2350
|
mso-style-name: bib_ed-etal;
|
@@ -2422,7 +2354,7 @@ span.bibed-etal {
|
|
2422
2354
|
mso-ascii-font-family: Cambria;
|
2423
2355
|
mso-hansi-font-family: Cambria;
|
2424
2356
|
border: none;
|
2425
|
-
|
2357
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#00F4EE;{% endif %} }
|
2426
2358
|
|
2427
2359
|
span.bibed-fname {
|
2428
2360
|
mso-style-name: bib_ed-fname;
|
@@ -2432,7 +2364,7 @@ span.bibed-fname {
|
|
2432
2364
|
mso-ascii-font-family: Cambria;
|
2433
2365
|
mso-hansi-font-family: Cambria;
|
2434
2366
|
border: none;
|
2435
|
-
|
2367
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFB7;{% endif %} }
|
2436
2368
|
|
2437
2369
|
span.bibeditionno {
|
2438
2370
|
mso-style-name: bib_editionno;
|
@@ -2442,7 +2374,7 @@ span.bibeditionno {
|
|
2442
2374
|
mso-ascii-font-family: Cambria;
|
2443
2375
|
mso-hansi-font-family: Cambria;
|
2444
2376
|
border: none;
|
2445
|
-
|
2377
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC00;{% endif %} }
|
2446
2378
|
|
2447
2379
|
span.bibed-organization {
|
2448
2380
|
mso-style-name: bib_ed-organization;
|
@@ -2452,7 +2384,7 @@ span.bibed-organization {
|
|
2452
2384
|
mso-ascii-font-family: Cambria;
|
2453
2385
|
mso-hansi-font-family: Cambria;
|
2454
2386
|
border: none;
|
2455
|
-
|
2387
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FCAAC3;{% endif %} }
|
2456
2388
|
|
2457
2389
|
span.bibed-suffix {
|
2458
2390
|
mso-style-name: bib_ed-suffix;
|
@@ -2462,7 +2394,7 @@ span.bibed-suffix {
|
|
2462
2394
|
mso-ascii-font-family: Cambria;
|
2463
2395
|
mso-hansi-font-family: Cambria;
|
2464
2396
|
border: none;
|
2465
|
-
|
2397
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
2466
2398
|
|
2467
2399
|
span.bibed-surname {
|
2468
2400
|
mso-style-name: bib_ed-surname;
|
@@ -2472,7 +2404,7 @@ span.bibed-surname {
|
|
2472
2404
|
mso-ascii-font-family: Cambria;
|
2473
2405
|
mso-hansi-font-family: Cambria;
|
2474
2406
|
border: none;
|
2475
|
-
|
2407
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:yellow;{% endif %} }
|
2476
2408
|
|
2477
2409
|
span.bibinstitution {
|
2478
2410
|
mso-style-name: bib_institution;
|
@@ -2482,7 +2414,7 @@ span.bibinstitution {
|
|
2482
2414
|
mso-ascii-font-family: Cambria;
|
2483
2415
|
mso-hansi-font-family: Cambria;
|
2484
2416
|
border: none;
|
2485
|
-
|
2417
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
2486
2418
|
|
2487
2419
|
span.bibisbn {
|
2488
2420
|
mso-style-name: bib_isbn;
|
@@ -2491,7 +2423,7 @@ span.bibisbn {
|
|
2491
2423
|
font-family: {{bodyfont}};
|
2492
2424
|
mso-ascii-font-family: Cambria;
|
2493
2425
|
mso-hansi-font-family: Cambria;
|
2494
|
-
|
2426
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
|
2495
2427
|
|
2496
2428
|
span.biblocation {
|
2497
2429
|
mso-style-name: bib_location;
|
@@ -2501,7 +2433,7 @@ span.biblocation {
|
|
2501
2433
|
mso-ascii-font-family: Cambria;
|
2502
2434
|
mso-hansi-font-family: Cambria;
|
2503
2435
|
border: none;
|
2504
|
-
|
2436
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCCCC;{% endif %} }
|
2505
2437
|
|
2506
2438
|
span.bibpagecount {
|
2507
2439
|
mso-style-name: bib_pagecount;
|
@@ -2511,7 +2443,7 @@ span.bibpagecount {
|
|
2511
2443
|
mso-ascii-font-family: Cambria;
|
2512
2444
|
mso-hansi-font-family: Cambria;
|
2513
2445
|
border: none;
|
2514
|
-
|
2446
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:lime;{% endif %} }
|
2515
2447
|
|
2516
2448
|
span.bibpatent {
|
2517
2449
|
mso-style-name: bib_patent;
|
@@ -2521,7 +2453,7 @@ span.bibpatent {
|
|
2521
2453
|
mso-ascii-font-family: Cambria;
|
2522
2454
|
mso-hansi-font-family: Cambria;
|
2523
2455
|
border: none;
|
2524
|
-
|
2456
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#66FFCC;{% endif %} }
|
2525
2457
|
|
2526
2458
|
span.bibpublisher {
|
2527
2459
|
mso-style-name: bib_publisher;
|
@@ -2531,7 +2463,7 @@ span.bibpublisher {
|
|
2531
2463
|
mso-ascii-font-family: Cambria;
|
2532
2464
|
mso-hansi-font-family: Cambria;
|
2533
2465
|
border: none;
|
2534
|
-
|
2466
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %} }
|
2535
2467
|
|
2536
2468
|
span.bibreportnum {
|
2537
2469
|
mso-style-name: bib_reportnum;
|
@@ -2541,7 +2473,7 @@ span.bibreportnum {
|
|
2541
2473
|
mso-ascii-font-family: Cambria;
|
2542
2474
|
mso-hansi-font-family: Cambria;
|
2543
2475
|
border: none;
|
2544
|
-
|
2476
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCCCFF;{% endif %} }
|
2545
2477
|
|
2546
2478
|
span.bibschool {
|
2547
2479
|
mso-style-name: bib_school;
|
@@ -2551,7 +2483,7 @@ span.bibschool {
|
|
2551
2483
|
mso-ascii-font-family: Cambria;
|
2552
2484
|
mso-hansi-font-family: Cambria;
|
2553
2485
|
border: none;
|
2554
|
-
|
2486
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC66;{% endif %} }
|
2555
2487
|
|
2556
2488
|
span.bibseries {
|
2557
2489
|
mso-style-name: bib_series;
|
@@ -2560,7 +2492,7 @@ span.bibseries {
|
|
2560
2492
|
font-family: {{bodyfont}};
|
2561
2493
|
mso-ascii-font-family: Cambria;
|
2562
2494
|
mso-hansi-font-family: Cambria;
|
2563
|
-
|
2495
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC99;{% endif %} }
|
2564
2496
|
|
2565
2497
|
span.bibseriesno {
|
2566
2498
|
mso-style-name: bib_seriesno;
|
@@ -2569,7 +2501,7 @@ span.bibseriesno {
|
|
2569
2501
|
font-family: {{bodyfont}};
|
2570
2502
|
mso-ascii-font-family: Cambria;
|
2571
2503
|
mso-hansi-font-family: Cambria;
|
2572
|
-
|
2504
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFF99;{% endif %} }
|
2573
2505
|
|
2574
2506
|
span.bibtrans {
|
2575
2507
|
mso-style-name: bib_trans;
|
@@ -2578,7 +2510,7 @@ span.bibtrans {
|
|
2578
2510
|
font-family: {{bodyfont}};
|
2579
2511
|
mso-ascii-font-family: Cambria;
|
2580
2512
|
mso-hansi-font-family: Cambria;
|
2581
|
-
|
2513
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#99CC00;{% endif %} }
|
2582
2514
|
|
2583
2515
|
span.stdsuppl {
|
2584
2516
|
mso-style-name: std_suppl;
|
@@ -2588,7 +2520,7 @@ span.stdsuppl {
|
|
2588
2520
|
mso-ascii-font-family: Cambria;
|
2589
2521
|
mso-hansi-font-family: Cambria;
|
2590
2522
|
border: none;
|
2591
|
-
|
2523
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F6FBB5;{% endif %} }
|
2592
2524
|
|
2593
2525
|
span.citesection {
|
2594
2526
|
mso-style-name: cite_section;
|
@@ -2598,7 +2530,7 @@ span.citesection {
|
|
2598
2530
|
mso-ascii-font-family: Cambria;
|
2599
2531
|
mso-hansi-font-family: Cambria;
|
2600
2532
|
border: none;
|
2601
|
-
|
2533
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF7C80;{% endif %} }
|
2602
2534
|
|
2603
2535
|
p.BaseText, li.BaseText, div.BaseText {
|
2604
2536
|
mso-style-name: Base_Text;
|
@@ -3029,27 +2961,6 @@ p.dl, li.dl, div.dl {
|
|
3029
2961
|
mso-ansi-language: EN-GB;
|
3030
2962
|
mso-fareast-language: EN-US; }
|
3031
2963
|
|
3032
|
-
p.Example0, li.Example0, div.Example0 {
|
3033
|
-
mso-style-name: Example;
|
3034
|
-
mso-style-unhide: no;
|
3035
|
-
mso-style-parent: Base_Text;
|
3036
|
-
margin-top: 0cm;
|
3037
|
-
margin-right: 0cm;
|
3038
|
-
margin-bottom: 12.0pt;
|
3039
|
-
margin-left: 0cm;
|
3040
|
-
text-align: justify;
|
3041
|
-
text-justify: inter-ideograph;
|
3042
|
-
line-height: 11.0pt;
|
3043
|
-
mso-pagination: widow-orphan;
|
3044
|
-
tab-stops: 67.7pt;
|
3045
|
-
font-size: 10.0pt;
|
3046
|
-
mso-bidi-font-size: {{normalfontsize}};
|
3047
|
-
font-family: {{bodyfont}};
|
3048
|
-
mso-fareast-font-family: Calibri;
|
3049
|
-
mso-bidi-font-family: "Times New Roman";
|
3050
|
-
mso-ansi-language: EN-GB;
|
3051
|
-
mso-fareast-language: EN-US; }
|
3052
|
-
|
3053
2964
|
p.Examplecontinued, li.Examplecontinued, div.Examplecontinued {
|
3054
2965
|
mso-style-name: "Example continued";
|
3055
2966
|
mso-style-unhide: no;
|
@@ -3214,6 +3125,27 @@ p.Figuresubtitle, li.Figuresubtitle, div.Figuresubtitle {
|
|
3214
3125
|
font-weight: bold;
|
3215
3126
|
mso-bidi-font-weight: normal; }
|
3216
3127
|
|
3128
|
+
p.Figuretitle, li.Figuretitle, div.Figuretitle {
|
3129
|
+
mso-style-name: "Figure title";
|
3130
|
+
mso-style-unhide: no;
|
3131
|
+
mso-style-parent: Base_Heading;
|
3132
|
+
margin-top: 12.0pt;
|
3133
|
+
margin-right: 0cm;
|
3134
|
+
margin-bottom: 18.0pt;
|
3135
|
+
margin-left: 0cm;
|
3136
|
+
text-align: center;
|
3137
|
+
line-height: 12.0pt;
|
3138
|
+
mso-pagination: widow-orphan;
|
3139
|
+
mso-hyphenate: none;
|
3140
|
+
font-size: {{normalfontsize}};
|
3141
|
+
font-family: {{bodyfont}};
|
3142
|
+
mso-fareast-font-family: Calibri;
|
3143
|
+
mso-bidi-font-family: "Times New Roman";
|
3144
|
+
mso-ansi-language: EN-GB;
|
3145
|
+
mso-fareast-language: EN-US;
|
3146
|
+
font-weight: bold;
|
3147
|
+
mso-bidi-font-weight: normal; }
|
3148
|
+
|
3217
3149
|
p.Figuretitle0, li.Figuretitle0, div.Figuretitle0 {
|
3218
3150
|
mso-style-name: "Figure title";
|
3219
3151
|
mso-style-unhide: no;
|
@@ -3333,9 +3265,10 @@ p.ListContinue2-, li.ListContinue2-, div.ListContinue2- {
|
|
3333
3265
|
line-height: 10.5pt;
|
3334
3266
|
mso-pagination: widow-orphan;
|
3335
3267
|
tab-stops: 40.3pt;
|
3336
|
-
font-size:
|
3268
|
+
font-size: 10.0pt;
|
3337
3269
|
mso-bidi-font-size: {{normalfontsize}};
|
3338
|
-
font-family:
|
3270
|
+
font-family: {{bodyfont}};
|
3271
|
+
/*font-family:"Arial",sans-serif;*/
|
3339
3272
|
mso-fareast-font-family: Calibri;
|
3340
3273
|
mso-bidi-font-family: "Times New Roman";
|
3341
3274
|
mso-ansi-language: EN-GB;
|
@@ -4477,23 +4410,28 @@ p.dlnoindent, li.dlnoindent, div.dlnoindent {
|
|
4477
4410
|
p.zzCover, li.zzCover, div.zzCover {
|
4478
4411
|
mso-style-name: zzCover;
|
4479
4412
|
mso-style-unhide: no;
|
4480
|
-
mso-style-parent: "Body Text";
|
4481
4413
|
mso-style-link: "zzCover Char";
|
4482
4414
|
margin-top: 0cm;
|
4483
4415
|
margin-right: 0cm;
|
4484
|
-
margin-bottom:
|
4416
|
+
margin-bottom: 11.0pt;
|
4485
4417
|
margin-left: 0cm;
|
4486
4418
|
text-align: right;
|
4487
|
-
line-height:
|
4419
|
+
line-height: 12.0pt;
|
4488
4420
|
mso-pagination: widow-orphan;
|
4489
|
-
|
4490
|
-
font-size:
|
4491
|
-
|
4421
|
+
{% if stage_int >= 40 and stage_int < 60 %}
|
4422
|
+
font-size: 13.0pt;
|
4423
|
+
{% else %}
|
4424
|
+
font-size: 12.0pt;
|
4425
|
+
{% endif %}
|
4426
|
+
mso-bidi-font-size: 10.0pt;
|
4492
4427
|
font-family: {{bodyfont}};
|
4493
|
-
mso-fareast-font-family:
|
4428
|
+
mso-fareast-font-family: "MS Mincho";
|
4494
4429
|
mso-bidi-font-family: "Times New Roman";
|
4430
|
+
color: black;
|
4495
4431
|
mso-ansi-language: EN-GB;
|
4496
|
-
mso-fareast-language:
|
4432
|
+
mso-fareast-language: JA;
|
4433
|
+
font-weight: bold;
|
4434
|
+
mso-bidi-font-weight: normal; }
|
4497
4435
|
|
4498
4436
|
span.zzCoverChar {
|
4499
4437
|
mso-style-name: "zzCover Char";
|
@@ -4559,6 +4497,6 @@ div.Note table.dl {
|
|
4559
4497
|
font-size: {{smallerfontsize}};
|
4560
4498
|
margin-left: 1.0cm; }
|
4561
4499
|
|
4562
|
-
|
4500
|
+
td.example_label, td.note_label {
|
4563
4501
|
font-size: {{smallerfontsize}};
|
4564
4502
|
font-family: {{bodyfont}}; }
|