metanorma-iso 2.0.8.1 → 2.1.2

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.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/lib/html2doc/lists.rb +169 -0
  3. data/lib/isodoc/iso/base_convert.rb +11 -1
  4. data/lib/isodoc/iso/html/html_iso_titlepage.html +7 -0
  5. data/lib/isodoc/iso/html/isodoc-dis.css +407 -427
  6. data/lib/isodoc/iso/html/isodoc-dis.scss +482 -438
  7. data/lib/isodoc/iso/html/isodoc.css +38 -13
  8. data/lib/isodoc/iso/html/isodoc.scss +38 -12
  9. data/lib/isodoc/iso/html/style-human.css +14 -1
  10. data/lib/isodoc/iso/html/style-human.scss +10 -1
  11. data/lib/isodoc/iso/html/style-iso.css +35 -23
  12. data/lib/isodoc/iso/html/style-iso.scss +31 -23
  13. data/lib/isodoc/iso/html/word_iso_intro-dis.html +3 -1
  14. data/lib/isodoc/iso/html/word_iso_titlepage-dis.html +26 -13
  15. data/lib/isodoc/iso/html/word_iso_titlepage-prf.html +58 -0
  16. data/lib/isodoc/iso/html/word_iso_titlepage.html +16 -6
  17. data/lib/isodoc/iso/html/wordstyle-dis.css +168 -48
  18. data/lib/isodoc/iso/html/wordstyle-dis.scss +158 -43
  19. data/lib/isodoc/iso/html_convert.rb +7 -2
  20. data/lib/isodoc/iso/i18n-en.yaml +33 -4
  21. data/lib/isodoc/iso/i18n-fr.yaml +30 -3
  22. data/lib/isodoc/iso/i18n-ru.yaml +33 -4
  23. data/lib/isodoc/iso/i18n-zh-Hans.yaml +33 -3
  24. data/lib/isodoc/iso/i18n.rb +1 -1
  25. data/lib/isodoc/iso/init.rb +17 -1
  26. data/lib/isodoc/iso/iso.amendment.xsl +1711 -367
  27. data/lib/isodoc/iso/iso.international-standard.xsl +1711 -367
  28. data/lib/isodoc/iso/metadata.rb +72 -78
  29. data/lib/isodoc/iso/presentation_bibdata.rb +74 -0
  30. data/lib/isodoc/iso/presentation_xml_convert.rb +52 -100
  31. data/lib/isodoc/iso/presentation_xref.rb +132 -0
  32. data/lib/isodoc/iso/sections.rb +3 -3
  33. data/lib/isodoc/iso/word_cleanup.rb +17 -0
  34. data/lib/isodoc/iso/word_convert.rb +32 -12
  35. data/lib/isodoc/iso/word_dis_cleanup.rb +235 -0
  36. data/lib/isodoc/iso/word_dis_convert.rb +122 -0
  37. data/lib/isodoc/iso/xref.rb +78 -29
  38. data/lib/metanorma/iso/base.rb +20 -1
  39. data/lib/metanorma/iso/biblio.rng +69 -42
  40. data/lib/metanorma/iso/boilerplate-fr.xml +4 -1
  41. data/lib/metanorma/iso/boilerplate-ru.xml +4 -3
  42. data/lib/metanorma/iso/boilerplate.xml +4 -3
  43. data/lib/metanorma/iso/cleanup.rb +29 -1
  44. data/lib/metanorma/iso/front.rb +31 -6
  45. data/lib/metanorma/iso/front_id.rb +2 -0
  46. data/lib/metanorma/iso/isodoc.rng +65 -0
  47. data/lib/metanorma/iso/isostandard.rng +30 -12
  48. data/lib/metanorma/iso/macros.rb +29 -0
  49. data/lib/metanorma/iso/version.rb +1 -1
  50. data/lib/metanorma-iso.rb +1 -0
  51. data/lib/relaton/render/config.yml +4 -0
  52. data/lib/relaton/render/general.rb +13 -0
  53. data/metanorma-iso.gemspec +1 -1
  54. data/spec/isodoc/amd_spec.rb +35 -60
  55. data/spec/isodoc/blocks_spec.rb +783 -179
  56. data/spec/isodoc/i18n_spec.rb +331 -100
  57. data/spec/isodoc/inline_spec.rb +35 -42
  58. data/spec/isodoc/iso_spec.rb +51 -170
  59. data/spec/isodoc/metadata_spec.rb +240 -99
  60. data/spec/isodoc/postproc_spec.rb +68 -7
  61. data/spec/isodoc/ref_spec.rb +66 -69
  62. data/spec/isodoc/section_spec.rb +88 -80
  63. data/spec/isodoc/table_spec.rb +2 -2
  64. data/spec/isodoc/terms_spec.rb +2 -2
  65. data/spec/isodoc/word_dis_spec.rb +1886 -0
  66. data/spec/isodoc/xref_spec.rb +138 -64
  67. data/spec/metanorma/amd_spec.rb +53 -1
  68. data/spec/metanorma/base_spec.rb +195 -20
  69. data/spec/metanorma/blocks_spec.rb +54 -0
  70. data/spec/metanorma/lists_spec.rb +2 -2
  71. data/spec/metanorma/section_spec.rb +2 -2
  72. data/spec/spec_helper.rb +23 -4
  73. data/spec/vcr_cassettes/withdrawn_iso.yml +25 -25
  74. metadata +15 -10
  75. data/docs/asciiiso-syntax.adoc +0 -307
  76. data/docs/guidance.adoc +0 -487
  77. data/docs/navigation.adoc +0 -23
  78. data/docs/quickstart.adoc +0 -179
  79. data/spec/vcr_cassettes/docrels.yml +0 -385
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode {
3
- mso-style-name: sourcecode;
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, 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, 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, p.admonitiontitle, li.admonitiontitle, div.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, p.sourcetitle, li.sourcetitle, div.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.Tabletitle, li.Tabletitle, div.Tabletitle, p.tabletitle, li.tabletitle, div.tabletitle {
406
- mso-style-name: tabletitle;
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, p.note, li.note, div.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;
@@ -596,8 +620,8 @@ p.tablefootnote, li.tablefootnote, div.tablefootnote {
596
620
 
597
621
  p.ANNEX, li.ANNEX, div.ANNEX {
598
622
  mso-style-name: ANNEX;
599
- mso-style-priority: 10;
600
623
  mso-style-unhide: no;
624
+ mso-style-parent: Base_Heading;
601
625
  mso-style-next: Normal;
602
626
  margin-top: 0cm;
603
627
  margin-right: 0cm;
@@ -611,13 +635,12 @@ p.ANNEX, li.ANNEX, div.ANNEX {
611
635
  mso-pagination: widow-orphan;
612
636
  page-break-after: avoid;
613
637
  mso-outline-level: 1;
614
- mso-list: l0 level1 lfo12;
615
- tab-stops: 20.15pt;
638
+ mso-list: l11 level1 lfo4;
616
639
  font-size: 14.0pt;
617
- mso-bidi-font-size: {{normalfontsize}};
640
+ mso-bidi-font-size: 10.0pt;
618
641
  font-family: {{headerfont}};
619
- mso-fareast-font-family: "SimHei",serif;
620
- mso-bidi-font-family: {{headerfont}};
642
+ mso-fareast-font-family: "MS Mincho";
643
+ mso-bidi-font-family: "Times New Roman";
621
644
  mso-ansi-language: EN-GB;
622
645
  mso-fareast-language: JA;
623
646
  font-weight: bold;
@@ -667,26 +690,26 @@ p.Definition, li.Definition, div.Definition {
667
690
 
668
691
  p.ForewordTitle, li.ForewordTitle, div.ForewordTitle {
669
692
  mso-style-name: "Foreword Title";
670
- mso-style-noshow: yes;
671
693
  mso-style-unhide: no;
694
+ mso-style-parent: Base_Heading;
672
695
  margin-top: 15.5pt;
673
696
  margin-right: 0cm;
674
697
  margin-bottom: 15.5pt;
675
698
  margin-left: 0cm;
676
- text-align: justify;
677
699
  line-height: 15.5pt;
678
700
  page-break-before: always;
701
+ tab-stops: 20.15pt;
679
702
  mso-pagination: widow-orphan;
680
703
  page-break-after: avoid;
681
704
  mso-outline-level: 1;
682
705
  mso-hyphenate: none;
683
- tab-stops: 20.15pt;
684
706
  font-size: 14.0pt;
685
- mso-bidi-font-size: {{normalfontsize}};
707
+ mso-bidi-font-size: 11.0pt;
686
708
  font-family: {{headerfont}};
687
- mso-fareast-font-family: "SimHei",serif;
688
- mso-bidi-font-family: {{headerfont}};
709
+ mso-fareast-font-family: Calibri;
710
+ mso-bidi-font-family: "Times New Roman";
689
711
  mso-ansi-language: EN-GB;
712
+ mso-fareast-language: EN-US;
690
713
  font-weight: bold;
691
714
  mso-bidi-font-weight: normal; }
692
715
 
@@ -714,9 +737,10 @@ p.IntroTitle, li.IntroTitle, div.IntroTitle {
714
737
  mso-ansi-language: EN-GB;
715
738
  font-weight: bold;
716
739
  page-break-before: always;
717
- mso-bidi-font-weight: normal; }
740
+ mso-bidi-font-weight: normal;
741
+ page-break-before: always; }
718
742
 
719
- p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead, p.titlepagesubhead, li.titlepagesubhead, div.titlepagesubhead {
743
+ p.TitlePageSubhead, li.TitlePageSubhead, div.TitlePageSubhead {
720
744
  mso-style-name: titlepagesubhead;
721
745
  mso-style-noshow: yes;
722
746
  mso-style-unhide: no;
@@ -813,6 +837,25 @@ p.TermNum, li.TermNum, div.TermNum {
813
837
  font-weight: bold;
814
838
  mso-bidi-font-weight: normal; }
815
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
+
816
859
  p.zzContents, li.zzContents, div.zzContents {
817
860
  mso-style-name: zzContents;
818
861
  mso-style-noshow: yes;
@@ -840,50 +883,31 @@ p.zzContents, li.zzContents, div.zzContents {
840
883
 
841
884
  p.zzCopyright, li.zzCopyright, div.zzCopyright {
842
885
  mso-style-name: zzCopyright;
843
- mso-style-noshow: yes;
844
- mso-style-unhide: no;
845
- mso-style-next: Normal;
846
- margin-top: 0cm;
847
- margin-right: 0pt;
848
- margin-bottom: 12.0pt;
849
- margin-left: 0pt;
850
- text-align: justify;
851
- line-height: 12.0pt;
852
- mso-pagination: widow-orphan;
853
- tab-stops: 20.15pt 25.7pt 481.15pt;
854
- border: none;
855
- padding: 0cm;
856
- mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
857
- font-size: 10.0pt;
858
- font-family: {{bodyfont}};
859
- mso-fareast-font-family: "SimSun",serif;
860
- mso-bidi-font-family: {{bodyfont}};
861
- mso-ansi-language: EN-GB; }
862
-
863
- p.zzCopyright1 {
864
- mso-style-name: zzCopyright;
865
- mso-style-noshow: yes;
866
886
  mso-style-unhide: no;
867
887
  mso-style-next: Normal;
868
888
  margin-top: 0cm;
869
- margin-right: 0pt;
889
+ margin-right: 14.2pt;
870
890
  margin-bottom: 12.0pt;
871
- margin-left: 0pt;
891
+ margin-left: 14.2pt;
872
892
  text-align: justify;
873
893
  line-height: 12.0pt;
874
894
  mso-pagination: widow-orphan;
875
- tab-stops: 20.15pt 25.7pt 481.15pt;
895
+ tab-stops: 25.7pt 481.15pt;
876
896
  border: none;
897
+ mso-border-alt: solid blue .5pt;
877
898
  padding: 0cm;
878
899
  mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
879
- font-size: 10.0pt;
900
+ font-size: {{normalfontsize}};
901
+ mso-bidi-font-size: 10.0pt;
880
902
  font-family: {{bodyfont}};
881
- mso-fareast-font-family: "SimSun",serif;
882
- mso-bidi-font-family: {{bodyfont}};
883
- mso-ansi-language: EN-GB; }
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; }
884
908
 
885
- p.zzAddress, p.zzaddress, li.zzaddress, div.zzaddress {
886
- mso-style-name: zzaddress;
909
+ p.zzAddress {
910
+ mso-style-name: zzAddress;
887
911
  margin: 0cm;
888
912
  margin-bottom: 12pt;
889
913
  margin-left: 20.15pt;
@@ -892,10 +916,11 @@ p.zzAddress, p.zzaddress, li.zzaddress, div.zzaddress {
892
916
  text-autospace: none;
893
917
  padding: 0cm;
894
918
  mso-padding-alt: 0cm 4.0pt 0cm 4.0pt;
919
+ color: blue;
895
920
  font-size: 10.0pt;
896
921
  font-family: {{bodyfont}}; }
897
922
 
898
- p.zzWarning, p.zzwarning, li.zzwarning, div.zzwarning {
923
+ p.zzWarning {
899
924
  mso-style-name: zzwarning;
900
925
  mso-style-unhide: no;
901
926
  mso-margin-top-alt: auto;
@@ -911,7 +936,7 @@ p.zzWarning, p.zzwarning, li.zzwarning, div.zzwarning {
911
936
  mso-bidi-font-weight: bold;
912
937
  font-family: {{bodyfont}}; }
913
938
 
914
- p.zzWarningHdr, p.zzwarninghdr, li.zzwarninghdr, div.zzwarninghdr {
939
+ p.zzWarningHdr {
915
940
  mso-style-name: zzwarninghdr;
916
941
  mso-style-unhide: no;
917
942
  mso-margin-top-alt: auto;
@@ -949,54 +974,10 @@ p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle {
949
974
  mso-fareast-font-family: "SimHei",serif;
950
975
  mso-bidi-font-family: {{headerfont}};
951
976
  mso-ansi-language: EN-GB;
977
+ color: blue;
952
978
  font-weight: bold;
953
979
  mso-bidi-font-weight: normal; }
954
980
 
955
- p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1 {
956
- mso-style-name: zzSTDTitle;
957
- mso-style-noshow: yes;
958
- mso-style-unhide: no;
959
- mso-style-next: Normal;
960
- margin-top: 0pt;
961
- margin-right: 0cm;
962
- margin-bottom: 18.0pt;
963
- margin-left: 0cm;
964
- line-height: 17.5pt;
965
- mso-line-height-rule: exactly;
966
- mso-pagination: widow-orphan;
967
- mso-hyphenate: none;
968
- tab-stops: 20.15pt;
969
- font-size: 16.0pt;
970
- mso-bidi-font-size: {{normalfontsize}};
971
- font-family: {{headerfont}};
972
- mso-fareast-font-family: "SimHei",serif;
973
- mso-bidi-font-family: {{headerfont}};
974
- mso-ansi-language: EN-GB;
975
- font-weight: bold;
976
- mso-bidi-font-weight: normal; }
977
-
978
- p.zzSTDTitle2, li.zzSTDTitle2, div.zzSTDTitle2 {
979
- mso-style-name: zzSTDTitle;
980
- mso-style-noshow: yes;
981
- mso-style-unhide: no;
982
- mso-style-next: Normal;
983
- margin-top: 0pt;
984
- margin-right: 0cm;
985
- margin-bottom: 18.0pt;
986
- margin-left: 0cm;
987
- line-height: 17.5pt;
988
- mso-line-height-rule: exactly;
989
- mso-pagination: widow-orphan;
990
- mso-hyphenate: none;
991
- tab-stops: 20.15pt;
992
- font-size: 16.0pt;
993
- mso-bidi-font-size: {{normalfontsize}};
994
- font-family: {{headerfont}};
995
- mso-fareast-font-family: "SimHei",serif;
996
- mso-bidi-font-family: {{headerfont}};
997
- mso-ansi-language: EN-GB;
998
- mso-bidi-font-weight: normal; }
999
-
1000
981
  p.1, li.1, div.1 {
1001
982
  mso-style-name: 引用1;
1002
983
  mso-style-priority: 99;
@@ -1017,7 +998,7 @@ p.1, li.1, div.1 {
1017
998
  mso-ansi-language: EN-GB;
1018
999
  mso-fareast-language: JA; }
1019
1000
 
1020
- p.Quote, li.Quote, div.Quote {
1001
+ p.Quote, li.Quote {
1021
1002
  mso-style-priority: 99;
1022
1003
  margin-top: 0cm;
1023
1004
  margin-right: 36.0pt;
@@ -1033,7 +1014,19 @@ p.Quote, li.Quote, div.Quote {
1033
1014
  mso-bidi-font-family: {{bodyfont}};
1034
1015
  mso-ansi-language: EN-GB; }
1035
1016
 
1036
- p.QuoteAttribution, p.quoteattribution, li.quoteattribution, div.quoteattribution {
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 {
1037
1030
  mso-style-name: quoteattribution;
1038
1031
  mso-style-unhide: no;
1039
1032
  mso-margin-top-alt: auto;
@@ -1049,16 +1042,13 @@ p.QuoteAttribution, p.quoteattribution, li.quoteattribution, div.quoteattributio
1049
1042
  mso-ansi-language: EN-HK;
1050
1043
  mso-fareast-language: JA; }
1051
1044
 
1052
- p.Admonition, li.Admonition, div.Admonition, p.admonition, li.admonition, div.admonition {
1053
- mso-style-name: admonition;
1045
+ p.Admonition, li.Admonition, div.Admonition {
1054
1046
  mso-style-priority: 99;
1055
1047
  mso-margin-top-alt: auto;
1056
1048
  margin-right: 0cm;
1057
1049
  mso-margin-bottom-alt: auto;
1058
1050
  margin-left: 0cm;
1059
1051
  mso-pagination: widow-orphan;
1060
- font-size: 12.0pt;
1061
- font-family: "Calibri",sans-serif;
1062
1052
  mso-ascii-font-family: {{bodyfont}};
1063
1053
  mso-ascii-theme-font: minor-latin;
1064
1054
  mso-fareast-font-family: "SimSun",serif;
@@ -1067,9 +1057,14 @@ p.Admonition, li.Admonition, div.Admonition, p.admonition, li.admonition, div.ad
1067
1057
  mso-hansi-theme-font: minor-latin;
1068
1058
  mso-bidi-font-family: {{bodyfont}};
1069
1059
  mso-bidi-theme-font: minor-bidi;
1070
- font-weight: bold;
1071
1060
  mso-ansi-language: EN-AU; }
1072
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
+
1073
1068
  p.Code, li.Code, div.Code {
1074
1069
  mso-style-name: Code;
1075
1070
  mso-style-priority: 16;
@@ -1079,13 +1074,54 @@ p.Code, li.Code, div.Code {
1079
1074
  line-height: 12.0pt;
1080
1075
  mso-pagination: widow-orphan;
1081
1076
  tab-stops: 16.15pt 32.6pt 48.75pt 65.2pt 81.35pt 97.8pt 113.95pt 130.4pt 146.55pt 162.75pt;
1082
- font-size: 11.0;
1077
+ font-size: 11.0pt;
1083
1078
  mso-bidi-font-size: {{normalfontsize}};
1084
1079
  font-family: {{monospacefont}};
1085
1080
  mso-fareast-font-family: "SimSun",serif;
1086
1081
  mso-bidi-font-family: "Cambria";
1087
1082
  mso-ansi-language: EN-GB; }
1088
1083
 
1084
+ span.ISOCode {
1085
+ mso-style-name: ISOCode;
1086
+ mso-style-unhide: no;
1087
+ mso-ansi-font-size: 11.0pt;
1088
+ mso-bidi-font-size: 14.0pt;
1089
+ font-family: {{monospacefont}};
1090
+ mso-ascii-font-family: "Courier New";
1091
+ mso-hansi-font-family: "Courier New";
1092
+ mso-bidi-font-family: "Courier New";
1093
+ font-weight: normal;
1094
+ font-style: normal;
1095
+ mso-no-proof: yes; }
1096
+
1097
+ span.ISOCodeitalic {
1098
+ mso-style-name: ISOCode_italic;
1099
+ mso-style-unhide: no;
1100
+ mso-ansi-font-size: 11.0pt;
1101
+ mso-bidi-font-size: 14.0pt;
1102
+ font-family: {{monospacefont}};
1103
+ mso-ascii-font-family: "Courier New";
1104
+ mso-hansi-font-family: "Courier New";
1105
+ mso-bidi-font-family: "Courier New";
1106
+ font-weight: normal;
1107
+ font-style: italic;
1108
+ mso-bidi-font-style: normal;
1109
+ mso-no-proof: yes; }
1110
+
1111
+ span.ISOCodebold {
1112
+ mso-style-name: ISOCode_bold;
1113
+ mso-style-unhide: no;
1114
+ mso-ansi-font-size: 11.0pt;
1115
+ mso-bidi-font-size: 14.0pt;
1116
+ font-family: {{monospacefont}};
1117
+ mso-ascii-font-family: "Courier New";
1118
+ mso-hansi-font-family: "Courier New";
1119
+ mso-bidi-font-family: "Courier New";
1120
+ font-weight: bold;
1121
+ mso-bidi-font-weight: normal;
1122
+ font-style: normal;
1123
+ mso-no-proof: yes; }
1124
+
1089
1125
  p.Formula, li.Formula, div.Formula {
1090
1126
  mso-style-name: Formula;
1091
1127
  mso-style-noshow: yes;
@@ -1464,51 +1500,6 @@ div.doctitle {
1464
1500
  text-align: left;
1465
1501
  font-size: 16.0pt; }
1466
1502
 
1467
- p.boilerplate-copyright, li.boilerplate-copyright, div.boilerplate-copyright {
1468
- mso-style-name: boilerplate-copyright;
1469
- mso-style-unhide: no;
1470
- mso-margin-top-alt: auto;
1471
- margin-right: 0cm;
1472
- mso-margin-bottom-alt: auto;
1473
- margin-left: 0cm;
1474
- mso-pagination: widow-orphan;
1475
- font-size: 12.0pt;
1476
- font-family: "Times New Roman",serif;
1477
- mso-fareast-font-family: DengXian;
1478
- mso-fareast-theme-font: minor-fareast;
1479
- mso-ansi-language: EN-HK;
1480
- mso-fareast-language: JA; }
1481
-
1482
- p.boilerplate-name, li.boilerplate-name, div.boilerplate-name {
1483
- mso-style-name: boilerplate-name;
1484
- mso-style-unhide: no;
1485
- mso-margin-top-alt: auto;
1486
- margin-right: 0cm;
1487
- mso-margin-bottom-alt: auto;
1488
- margin-left: 0cm;
1489
- mso-pagination: widow-orphan;
1490
- font-size: 12.0pt;
1491
- font-family: "Times New Roman",serif;
1492
- mso-fareast-font-family: DengXian;
1493
- mso-fareast-theme-font: minor-fareast;
1494
- mso-ansi-language: EN-HK;
1495
- mso-fareast-language: JA; }
1496
-
1497
- p.boilerplate-address, li.boilerplate-address, div.boilerplate-address {
1498
- mso-style-name: boilerplate-address;
1499
- mso-style-unhide: no;
1500
- mso-margin-top-alt: auto;
1501
- margin-right: 0cm;
1502
- mso-margin-bottom-alt: auto;
1503
- margin-left: 0cm;
1504
- mso-pagination: widow-orphan;
1505
- font-size: 12.0pt;
1506
- font-family: "Times New Roman",serif;
1507
- mso-fareast-font-family: DengXian;
1508
- mso-fareast-theme-font: minor-fareast;
1509
- mso-ansi-language: EN-HK;
1510
- mso-fareast-language: JA; }
1511
-
1512
1503
  div.rule {
1513
1504
  width: 100%;
1514
1505
  height: 1px;
@@ -1674,24 +1665,6 @@ a.TableFootnoteRef, span.TableFootnoteRef, span.tablefootnoteref {
1674
1665
  aside {
1675
1666
  font-size: {{footnotefontsize}}; }
1676
1667
 
1677
- span.notelabel {
1678
- mso-style-name: note_label;
1679
- mso-style-unhide: no;
1680
- mso-ansi-font-size: 10.0pt;
1681
- mso-bidi-font-size: 10.0pt;
1682
- font-family: {{bodyfont}};
1683
- mso-ascii-font-family: Cambria;
1684
- mso-hansi-font-family: Cambria; }
1685
-
1686
- span.examplelabel {
1687
- mso-style-name: example_label;
1688
- mso-style-unhide: no;
1689
- mso-ansi-font-size: 10.0pt;
1690
- mso-bidi-font-size: 10.0pt;
1691
- font-family: {{bodyfont}};
1692
- mso-ascii-font-family: Cambria;
1693
- mso-hansi-font-family: Cambria; }
1694
-
1695
1668
  /*
1696
1669
  div.example {
1697
1670
  border:solid black .25pt;
@@ -1709,7 +1682,11 @@ div.example {
1709
1682
  }
1710
1683
  */
1711
1684
  p.Example, li.Example, div.Example, td.Example {
1712
- tab-stops: 70.9pt;
1685
+ tab-stops: 70.9pt; }
1686
+
1687
+ p.Example, li.Example, td.Example {
1688
+ mso-style-name: Example;
1689
+ mso-style-link: "Example Char";
1713
1690
  font-size: {{smallerfontsize}};
1714
1691
  font-family: {{bodyfont}}; }
1715
1692
 
@@ -1723,21 +1700,19 @@ td.Example p.MsoListParagraph {
1723
1700
  div.Example p.MsoListParagraph {
1724
1701
  font-size: {{smallerfontsize}}; }
1725
1702
 
1726
- p.Example, li.Example, div.Example, p.example, li.example, div.example {
1727
- mso-style-name: example;
1703
+ p.Example, li.Example, div.Example {
1728
1704
  mso-style-unhide: no;
1729
1705
  mso-style-qformat: yes;
1730
- mso-style-link: "Example Char";
1731
1706
  mso-margin-top-alt: auto;
1707
+ margin-top: 0cm;
1732
1708
  margin-right: 0cm;
1733
- mso-margin-bottom-alt: auto;
1709
+ margin-bottom: 12.0pt;
1734
1710
  margin-left: 0cm;
1735
1711
  text-align: justify;
1736
- line-height: 12.0pt;
1712
+ line-height: 11.0pt;
1737
1713
  mso-pagination: none;
1738
- tab-stops: 70.9pt;
1739
- font-size: {{smallerfontsize}};
1740
- font-family: {{bodyfont}};
1714
+ mso-pagination: widow-orphan;
1715
+ tab-stops: 67.7pt;
1741
1716
  mso-fareast-font-family: Calibri;
1742
1717
  mso-bidi-font-family: "Times New Roman";
1743
1718
  mso-ansi-language: EN-GB;
@@ -1840,72 +1815,72 @@ span.aucollab {
1840
1815
  mso-style-name: au_collab;
1841
1816
  mso-style-unhide: no;
1842
1817
  mso-style-parent: "";
1843
- font-size: {{bodyfont}};
1818
+ font-family: {{bodyfont}};
1844
1819
  mso-ascii-font-family: Cambria;
1845
1820
  mso-hansi-font-family: Cambria;
1846
1821
  border: none;
1847
- background: silver; }
1822
+ {% if stage_int >= 40 and stage_int < 60 %}background:silver;{% endif %} }
1848
1823
 
1849
1824
  span.audeg {
1850
1825
  mso-style-name: au_deg;
1851
1826
  mso-style-unhide: no;
1852
1827
  mso-style-parent: "";
1853
1828
  mso-ansi-font-size: 11.0pt;
1854
- font-size: {{bodyfont}};
1829
+ font-family: {{bodyfont}};
1855
1830
  mso-ascii-font-family: Cambria;
1856
1831
  mso-hansi-font-family: Cambria;
1857
1832
  border: none;
1858
- background: yellow; }
1833
+ {% if stage_int >= 40 and stage_int < 60 %}background:yellow;{% endif %} }
1859
1834
 
1860
1835
  span.aufname {
1861
1836
  mso-style-name: au_fname;
1862
1837
  mso-style-unhide: no;
1863
1838
  mso-style-parent: "";
1864
1839
  mso-ansi-font-size: 11.0pt;
1865
- font-size: {{bodyfont}};
1840
+ font-family: {{bodyfont}};
1866
1841
  mso-ascii-font-family: Cambria;
1867
1842
  mso-hansi-font-family: Cambria;
1868
1843
  border: none;
1869
- background: #FFFFCC; }
1844
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFFFCC;{% endif %} }
1870
1845
 
1871
1846
  span.aurole {
1872
1847
  mso-style-name: au_role;
1873
1848
  mso-style-unhide: no;
1874
1849
  mso-style-parent: "";
1875
1850
  mso-ansi-font-size: 11.0pt;
1876
- font-size: {{bodyfont}};
1851
+ font-family: {{bodyfont}};
1877
1852
  mso-ascii-font-family: Cambria;
1878
1853
  mso-hansi-font-family: Cambria;
1879
1854
  border: none;
1880
- background: olive; }
1855
+ {% if stage_int >= 40 and stage_int < 60 %}background:olive;{% endif %} }
1881
1856
 
1882
1857
  span.ausuffix {
1883
1858
  mso-style-name: au_suffix;
1884
1859
  mso-style-unhide: no;
1885
1860
  mso-style-parent: "";
1886
1861
  mso-ansi-font-size: 11.0pt;
1887
- font-size: {{bodyfont}};
1862
+ font-family: {{bodyfont}};
1888
1863
  mso-ascii-font-family: Cambria;
1889
1864
  mso-hansi-font-family: Cambria;
1890
1865
  border: none;
1891
- background: fuchsia; }
1866
+ {% if stage_int >= 40 and stage_int < 60 %}background:fuchsia;{% endif %} }
1892
1867
 
1893
1868
  span.ausurname {
1894
1869
  mso-style-name: au_surname;
1895
1870
  mso-style-unhide: no;
1896
1871
  mso-style-parent: "";
1897
1872
  mso-ansi-font-size: 11.0pt;
1898
- font-size: {{bodyfont}};
1873
+ font-family: {{bodyfont}};
1899
1874
  mso-ascii-font-family: Cambria;
1900
1875
  mso-hansi-font-family: Cambria;
1901
1876
  border: none;
1902
- background: #CCFF99; }
1877
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
1903
1878
 
1904
1879
  span.bibbase {
1905
1880
  mso-style-name: bib_base;
1906
1881
  mso-style-unhide: no;
1907
1882
  mso-style-parent: "";
1908
- font-size: {{bodyfont}};
1883
+ font-family: {{bodyfont}};
1909
1884
  mso-ascii-font-family: Cambria;
1910
1885
  mso-hansi-font-family: Cambria; }
1911
1886
 
@@ -1913,17 +1888,17 @@ span.bibarticle {
1913
1888
  mso-style-name: bib_article;
1914
1889
  mso-style-unhide: no;
1915
1890
  mso-style-parent: "";
1916
- font-size: {{bodyfont}};
1891
+ font-family: {{bodyfont}};
1917
1892
  mso-ascii-font-family: Cambria;
1918
1893
  mso-hansi-font-family: Cambria;
1919
1894
  border: none;
1920
- background: #CCFFFF; }
1895
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFFFF;{% endif %} }
1921
1896
 
1922
1897
  span.bibcomment {
1923
1898
  mso-style-name: bib_comment;
1924
1899
  mso-style-unhide: no;
1925
1900
  mso-style-parent: bib_base;
1926
- font-size: {{bodyfont}};
1901
+ font-family: {{bodyfont}};
1927
1902
  mso-ascii-font-family: Cambria;
1928
1903
  mso-hansi-font-family: Cambria; }
1929
1904
 
@@ -1931,7 +1906,7 @@ span.bibdeg {
1931
1906
  mso-style-name: bib_deg;
1932
1907
  mso-style-unhide: no;
1933
1908
  mso-style-parent: bib_base;
1934
- font-size: {{bodyfont}};
1909
+ font-family: {{bodyfont}};
1935
1910
  mso-ascii-font-family: Cambria;
1936
1911
  mso-hansi-font-family: Cambria; }
1937
1912
 
@@ -1939,97 +1914,97 @@ span.bibdoi {
1939
1914
  mso-style-name: bib_doi;
1940
1915
  mso-style-unhide: no;
1941
1916
  mso-style-parent: "";
1942
- font-size: {{bodyfont}};
1917
+ font-family: {{bodyfont}};
1943
1918
  mso-ascii-font-family: Cambria;
1944
1919
  mso-hansi-font-family: Cambria;
1945
1920
  border: none;
1946
- background: #CCFFCC; }
1921
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
1947
1922
 
1948
1923
  span.bibetal {
1949
1924
  mso-style-name: bib_etal;
1950
1925
  mso-style-unhide: no;
1951
1926
  mso-style-parent: "";
1952
- font-size: {{bodyfont}};
1927
+ font-family: {{bodyfont}};
1953
1928
  mso-ascii-font-family: Cambria;
1954
1929
  mso-hansi-font-family: Cambria;
1955
1930
  border: none;
1956
- background: #CCFF99; }
1931
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
1957
1932
 
1958
1933
  span.bibfname {
1959
1934
  mso-style-name: bib_fname;
1960
1935
  mso-style-unhide: no;
1961
1936
  mso-style-parent: "";
1962
- font-size: {{bodyfont}};
1937
+ font-family: {{bodyfont}};
1963
1938
  mso-ascii-font-family: Cambria;
1964
1939
  mso-hansi-font-family: Cambria;
1965
1940
  border: none;
1966
- background: #FFFFCC; }
1941
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFFFCC;{% endif %} }
1967
1942
 
1968
1943
  span.bibfpage {
1969
1944
  mso-style-name: bib_fpage;
1970
1945
  mso-style-unhide: no;
1971
1946
  mso-style-parent: "";
1972
- font-size: {{bodyfont}};
1947
+ font-family: {{bodyfont}};
1973
1948
  mso-ascii-font-family: Cambria;
1974
1949
  mso-hansi-font-family: Cambria;
1975
1950
  border: none;
1976
- background: #E6E6E6; }
1951
+ {% if stage_int >= 40 and stage_int < 60 %}background:#E6E6E6;{% endif %} }
1977
1952
 
1978
1953
  span.bibissue {
1979
1954
  mso-style-name: bib_issue;
1980
1955
  mso-style-unhide: no;
1981
1956
  mso-style-parent: "";
1982
- font-size: {{bodyfont}};
1957
+ font-family: {{bodyfont}};
1983
1958
  mso-ascii-font-family: Cambria;
1984
1959
  mso-hansi-font-family: Cambria;
1985
1960
  border: none;
1986
- background: #FFFFAB; }
1961
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFFFAB;{% endif %} }
1987
1962
 
1988
1963
  span.bibjournal {
1989
1964
  mso-style-name: bib_journal;
1990
1965
  mso-style-unhide: no;
1991
1966
  mso-style-parent: "";
1992
- font-size: {{bodyfont}};
1967
+ font-family: {{bodyfont}};
1993
1968
  mso-ascii-font-family: Cambria;
1994
1969
  mso-hansi-font-family: Cambria;
1995
1970
  border: none;
1996
- background: #F9DECF; }
1971
+ {% if stage_int >= 40 and stage_int < 60 %}background:#F9DECF;{% endif %} }
1997
1972
 
1998
1973
  span.biblpage {
1999
1974
  mso-style-name: bib_lpage;
2000
1975
  mso-style-unhide: no;
2001
1976
  mso-style-parent: "";
2002
- font-size: {{bodyfont}};
1977
+ font-family: {{bodyfont}};
2003
1978
  mso-ascii-font-family: Cambria;
2004
1979
  mso-hansi-font-family: Cambria;
2005
1980
  border: none;
2006
- background: #D9D9D9; }
1981
+ {% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
2007
1982
 
2008
1983
  span.bibnumber {
2009
1984
  mso-style-name: bib_number;
2010
1985
  mso-style-unhide: no;
2011
1986
  mso-style-parent: "";
2012
- font-size: {{bodyfont}};
1987
+ font-family: {{bodyfont}};
2013
1988
  mso-ascii-font-family: Cambria;
2014
1989
  mso-hansi-font-family: Cambria;
2015
1990
  border: none;
2016
- background: #CCCCFF; }
1991
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCCCFF;{% endif %} }
2017
1992
 
2018
1993
  span.biborganization {
2019
1994
  mso-style-name: bib_organization;
2020
1995
  mso-style-unhide: no;
2021
1996
  mso-style-parent: "";
2022
- font-size: {{bodyfont}};
1997
+ font-family: {{bodyfont}};
2023
1998
  mso-ascii-font-family: Cambria;
2024
1999
  mso-hansi-font-family: Cambria;
2025
2000
  border: none;
2026
- background: #CCFF99; }
2001
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
2027
2002
 
2028
2003
  span.bibsuffix {
2029
2004
  mso-style-name: bib_suffix;
2030
2005
  mso-style-unhide: no;
2031
2006
  mso-style-parent: bib_base;
2032
- font-size: {{bodyfont}};
2007
+ font-family: {{bodyfont}};
2033
2008
  mso-ascii-font-family: Cambria;
2034
2009
  mso-hansi-font-family: Cambria; }
2035
2010
 
@@ -2037,27 +2012,27 @@ span.bibsuppl {
2037
2012
  mso-style-name: bib_suppl;
2038
2013
  mso-style-unhide: no;
2039
2014
  mso-style-parent: "";
2040
- font-size: {{bodyfont}};
2015
+ font-family: {{bodyfont}};
2041
2016
  mso-ascii-font-family: Cambria;
2042
2017
  mso-hansi-font-family: Cambria;
2043
2018
  border: none;
2044
- background: #FFCC66; }
2019
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCC66;{% endif %} }
2045
2020
 
2046
2021
  span.bibsurname {
2047
2022
  mso-style-name: bib_surname;
2048
2023
  mso-style-unhide: no;
2049
2024
  mso-style-parent: "";
2050
- font-size: {{bodyfont}};
2025
+ font-family: {{bodyfont}};
2051
2026
  mso-ascii-font-family: Cambria;
2052
2027
  mso-hansi-font-family: Cambria;
2053
2028
  border: none;
2054
- background: #CCFF99; }
2029
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
2055
2030
 
2056
2031
  span.bibunpubl {
2057
2032
  mso-style-name: bib_unpubl;
2058
2033
  mso-style-unhide: no;
2059
2034
  mso-style-parent: bib_base;
2060
- font-size: {{bodyfont}};
2035
+ font-family: {{bodyfont}};
2061
2036
  mso-ascii-font-family: Cambria;
2062
2037
  mso-hansi-font-family: Cambria; }
2063
2038
 
@@ -2065,37 +2040,37 @@ span.biburl {
2065
2040
  mso-style-name: bib_url;
2066
2041
  mso-style-unhide: no;
2067
2042
  mso-style-parent: "";
2068
- font-size: {{bodyfont}};
2043
+ font-family: {{bodyfont}};
2069
2044
  mso-ascii-font-family: Cambria;
2070
2045
  mso-hansi-font-family: Cambria;
2071
2046
  border: none;
2072
- background: #CCFF66; }
2047
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFF66;{% endif %} }
2073
2048
 
2074
2049
  span.bibvolume {
2075
2050
  mso-style-name: bib_volume;
2076
2051
  mso-style-unhide: no;
2077
2052
  mso-style-parent: "";
2078
- font-size: {{bodyfont}};
2053
+ font-family: {{bodyfont}};
2079
2054
  mso-ascii-font-family: Cambria;
2080
2055
  mso-hansi-font-family: Cambria;
2081
2056
  border: none;
2082
- background: #CCECFF; }
2057
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCECFF;{% endif %} }
2083
2058
 
2084
2059
  span.bibyear {
2085
2060
  mso-style-name: bib_year;
2086
2061
  mso-style-unhide: no;
2087
2062
  mso-style-parent: "";
2088
- font-size: {{bodyfont}};
2063
+ font-family: {{bodyfont}};
2089
2064
  mso-ascii-font-family: Cambria;
2090
2065
  mso-hansi-font-family: Cambria;
2091
2066
  border: none;
2092
- background: #FFCCFF; }
2067
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCCFF;{% endif %} }
2093
2068
 
2094
2069
  span.citebase {
2095
2070
  mso-style-name: cite_base;
2096
2071
  mso-style-unhide: no;
2097
2072
  mso-style-parent: "";
2098
- font-size: {{bodyfont}};
2073
+ font-family: {{bodyfont}};
2099
2074
  mso-ascii-font-family: Cambria;
2100
2075
  mso-hansi-font-family: Cambria; }
2101
2076
 
@@ -2103,17 +2078,17 @@ span.citebib {
2103
2078
  mso-style-name: cite_bib;
2104
2079
  mso-style-unhide: no;
2105
2080
  mso-style-parent: "";
2106
- font-size: {{bodyfont}};
2081
+ font-family: {{bodyfont}};
2107
2082
  mso-ascii-font-family: Cambria;
2108
2083
  mso-hansi-font-family: Cambria;
2109
2084
  border: none;
2110
- background: #CCFFFF; }
2085
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFFFF;{% endif %} }
2111
2086
 
2112
2087
  span.citebox {
2113
2088
  mso-style-name: cite_box;
2114
2089
  mso-style-unhide: no;
2115
2090
  mso-style-parent: cite_base;
2116
- font-size: {{bodyfont}};
2091
+ font-family: {{bodyfont}};
2117
2092
  mso-ascii-font-family: Cambria;
2118
2093
  mso-hansi-font-family: Cambria; }
2119
2094
 
@@ -2121,53 +2096,53 @@ span.citeen {
2121
2096
  mso-style-name: cite_en;
2122
2097
  mso-style-unhide: no;
2123
2098
  mso-style-parent: "";
2124
- font-size: {{bodyfont}};
2099
+ font-family: {{bodyfont}};
2125
2100
  mso-ascii-font-family: Cambria;
2126
2101
  mso-hansi-font-family: Cambria;
2127
2102
  border: none;
2128
- background: #FFFF99;
2103
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFFF99;{% endif %}
2129
2104
  vertical-align: super; }
2130
2105
 
2131
2106
  span.citefig {
2132
2107
  mso-style-name: cite_fig;
2133
2108
  mso-style-unhide: no;
2134
2109
  mso-style-parent: "";
2135
- font-size: {{bodyfont}};
2110
+ font-family: {{bodyfont}};
2136
2111
  mso-ascii-font-family: Cambria;
2137
2112
  mso-hansi-font-family: Cambria;
2138
2113
  color: windowtext;
2139
2114
  border: none;
2140
- background: #CCFFCC; }
2115
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
2141
2116
 
2142
2117
  span.citefn {
2143
2118
  mso-style-name: cite_fn;
2144
2119
  mso-style-unhide: no;
2145
2120
  mso-style-parent: "";
2146
2121
  mso-ansi-font-size: 11.0pt;
2147
- font-size: {{bodyfont}};
2122
+ font-family: {{bodyfont}};
2148
2123
  mso-ascii-font-family: Cambria;
2149
2124
  mso-hansi-font-family: Cambria;
2150
2125
  color: windowtext;
2151
2126
  border: none;
2152
- background: #FF99CC;
2127
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %}
2153
2128
  vertical-align: baseline; }
2154
2129
 
2155
2130
  span.citetbl {
2156
2131
  mso-style-name: cite_tbl;
2157
2132
  mso-style-unhide: no;
2158
2133
  mso-style-parent: "";
2159
- font-size: {{bodyfont}};
2134
+ font-family: {{bodyfont}};
2160
2135
  mso-ascii-font-family: Cambria;
2161
2136
  mso-hansi-font-family: Cambria;
2162
2137
  color: windowtext;
2163
2138
  border: none;
2164
- background: #FF9999; }
2139
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FF9999;{% endif %} }
2165
2140
 
2166
2141
  span.stdbase {
2167
2142
  mso-style-name: std_base;
2168
2143
  mso-style-unhide: no;
2169
2144
  mso-style-parent: "";
2170
- font-size: {{bodyfont}};
2145
+ font-family: {{bodyfont}};
2171
2146
  mso-ascii-font-family: Cambria;
2172
2147
  mso-hansi-font-family: Cambria; }
2173
2148
 
@@ -2175,27 +2150,27 @@ span.bibextlink {
2175
2150
  mso-style-name: bib_extlink;
2176
2151
  mso-style-unhide: no;
2177
2152
  mso-style-parent: "";
2178
- font-size: {{bodyfont}};
2153
+ font-family: {{bodyfont}};
2179
2154
  mso-ascii-font-family: Cambria;
2180
2155
  mso-hansi-font-family: Cambria;
2181
2156
  border: none;
2182
- background: #6CCE9D; }
2157
+ {% if stage_int >= 40 and stage_int < 60 %}background:#6CCE9D;{% endif %} }
2183
2158
 
2184
2159
  span.citeeq {
2185
2160
  mso-style-name: cite_eq;
2186
2161
  mso-style-unhide: no;
2187
2162
  mso-style-parent: "";
2188
- font-size: {{bodyfont}};
2163
+ font-family: {{bodyfont}};
2189
2164
  mso-ascii-font-family: Cambria;
2190
2165
  mso-hansi-font-family: Cambria;
2191
2166
  border: none;
2192
- background: #FFAE37; }
2167
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFAE37;{% endif %} }
2193
2168
 
2194
2169
  span.bibmedline {
2195
2170
  mso-style-name: bib_medline;
2196
2171
  mso-style-unhide: no;
2197
2172
  mso-style-parent: bib_base;
2198
- font-size: {{bodyfont}};
2173
+ font-family: {{bodyfont}};
2199
2174
  mso-ascii-font-family: Cambria;
2200
2175
  mso-hansi-font-family: Cambria; }
2201
2176
 
@@ -2203,72 +2178,72 @@ span.citetfn {
2203
2178
  mso-style-name: cite_tfn;
2204
2179
  mso-style-unhide: no;
2205
2180
  mso-style-parent: "";
2206
- font-size: {{bodyfont}};
2181
+ font-family: {{bodyfont}};
2207
2182
  mso-ascii-font-family: Cambria;
2208
2183
  mso-hansi-font-family: Cambria;
2209
2184
  border: none;
2210
- background: #FBBA79; }
2185
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FBBA79;{% endif %} }
2211
2186
 
2212
2187
  span.auprefix {
2213
2188
  mso-style-name: au_prefix;
2214
2189
  mso-style-unhide: no;
2215
2190
  mso-style-parent: "";
2216
2191
  mso-ansi-font-size: 11.0pt;
2217
- font-size: {{bodyfont}};
2192
+ font-family: {{bodyfont}};
2218
2193
  mso-ascii-font-family: Cambria;
2219
2194
  mso-hansi-font-family: Cambria;
2220
2195
  border: none;
2221
- background: #FFCC99; }
2196
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCC99;{% endif %} }
2222
2197
 
2223
2198
  span.citeapp {
2224
2199
  mso-style-name: cite_app;
2225
2200
  mso-style-unhide: no;
2226
2201
  mso-style-parent: "";
2227
- font-size: {{bodyfont}};
2202
+ font-family: {{bodyfont}};
2228
2203
  mso-ascii-font-family: Cambria;
2229
2204
  mso-hansi-font-family: Cambria;
2230
2205
  border: none;
2231
- background: #CCFF33; }
2206
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFF33;{% endif %} }
2232
2207
 
2233
2208
  span.citesec {
2234
2209
  mso-style-name: cite_sec;
2235
2210
  mso-style-unhide: no;
2236
2211
  mso-style-parent: "";
2237
- font-size: {{bodyfont}};
2212
+ font-family: {{bodyfont}};
2238
2213
  mso-ascii-font-family: Cambria;
2239
2214
  mso-hansi-font-family: Cambria;
2240
2215
  border: none;
2241
- background: #FFCCCC; }
2216
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCCCC;{% endif %} }
2242
2217
 
2243
2218
  span.stddocNumber {
2244
2219
  mso-style-name: std_docNumber;
2245
2220
  mso-style-unhide: no;
2246
2221
  mso-style-parent: "";
2247
- font-size: {{bodyfont}};
2222
+ font-family: {{bodyfont}};
2248
2223
  mso-ascii-font-family: Cambria;
2249
2224
  mso-hansi-font-family: Cambria;
2250
2225
  border: none;
2251
- background: #F2DBDB; }
2226
+ {% if stage_int >= 40 and stage_int < 60 %}background:#F2DBDB;{% endif %} }
2252
2227
 
2253
2228
  span.stddocPartNumber {
2254
2229
  mso-style-name: std_docPartNumber;
2255
2230
  mso-style-unhide: no;
2256
2231
  mso-style-parent: "";
2257
- font-size: {{bodyfont}};
2232
+ font-family: {{bodyfont}};
2258
2233
  mso-ascii-font-family: Cambria;
2259
2234
  mso-hansi-font-family: Cambria;
2260
2235
  border: none;
2261
- background: #EAF1DD; }
2236
+ {% if stage_int >= 40 and stage_int < 60 %}background:#EAF1DD;{% endif %} }
2262
2237
 
2263
2238
  span.stddocTitle {
2264
2239
  mso-style-name: std_docTitle;
2265
2240
  mso-style-unhide: no;
2266
2241
  mso-style-parent: "";
2267
- font-size: {{bodyfont}};
2242
+ font-family: {{bodyfont}};
2268
2243
  mso-ascii-font-family: Cambria;
2269
2244
  mso-hansi-font-family: Cambria;
2270
2245
  border: none;
2271
- background: #FDE9D9;
2246
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FDE9D9;{% endif %}
2272
2247
  font-style: italic;
2273
2248
  mso-bidi-font-style: normal; }
2274
2249
 
@@ -2277,288 +2252,288 @@ span.aumember {
2277
2252
  mso-style-unhide: no;
2278
2253
  mso-style-parent: "";
2279
2254
  mso-ansi-font-size: 11.0pt;
2280
- font-size: {{bodyfont}};
2255
+ font-family: {{bodyfont}};
2281
2256
  mso-ascii-font-family: Cambria;
2282
2257
  mso-hansi-font-family: Cambria;
2283
2258
  border: none;
2284
- background: #FF99CC; }
2259
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %} }
2285
2260
 
2286
2261
  span.stdfootnote {
2287
2262
  mso-style-name: std_footnote;
2288
2263
  mso-style-unhide: no;
2289
2264
  mso-style-parent: "";
2290
- font-size: {{bodyfont}};
2265
+ font-family: {{bodyfont}};
2291
2266
  mso-ascii-font-family: Cambria;
2292
2267
  mso-hansi-font-family: Cambria;
2293
2268
  border: none;
2294
- background: #F2F2F2; }
2269
+ {% if stage_int >= 40 and stage_int < 60 %}background:#F2F2F2;{% endif %} }
2295
2270
 
2296
2271
  span.stdpublisher {
2297
2272
  mso-style-name: std_publisher;
2298
2273
  mso-style-unhide: no;
2299
2274
  mso-style-parent: "";
2300
- font-size: {{bodyfont}};
2275
+ font-family: {{bodyfont}};
2301
2276
  mso-ascii-font-family: Cambria;
2302
2277
  mso-hansi-font-family: Cambria;
2303
2278
  border: none;
2304
- background: #C6D9F1; }
2279
+ {% if stage_int >= 40 and stage_int < 60 %}background:#C6D9F1;{% endif %} }
2305
2280
 
2306
2281
  span.stdsection {
2307
2282
  mso-style-name: std_section;
2308
2283
  mso-style-unhide: no;
2309
2284
  mso-style-parent: "";
2310
- font-size: {{bodyfont}};
2285
+ font-family: {{bodyfont}};
2311
2286
  mso-ascii-font-family: Cambria;
2312
2287
  mso-hansi-font-family: Cambria;
2313
2288
  border: none;
2314
- background: #E5DFEC; }
2289
+ {% if stage_int >= 40 and stage_int < 60 %}background:#E5DFEC;{% endif %} }
2315
2290
 
2316
2291
  span.stdyear {
2317
2292
  mso-style-name: std_year;
2318
2293
  mso-style-unhide: no;
2319
2294
  mso-style-parent: "";
2320
- font-size: {{bodyfont}};
2295
+ font-family: {{bodyfont}};
2321
2296
  mso-ascii-font-family: Cambria;
2322
2297
  mso-hansi-font-family: Cambria;
2323
2298
  border: none;
2324
- background: #DAEEF3; }
2299
+ {% if stage_int >= 40 and stage_int < 60 %}background:#DAEEF3;{% endif %} }
2325
2300
 
2326
2301
  span.stddocumentType {
2327
2302
  mso-style-name: std_documentType;
2328
2303
  mso-style-unhide: no;
2329
2304
  mso-style-parent: "";
2330
- font-size: {{bodyfont}};
2305
+ font-family: {{bodyfont}};
2331
2306
  mso-ascii-font-family: Cambria;
2332
2307
  mso-hansi-font-family: Cambria;
2333
2308
  border: none;
2334
- background: #7DE1DF; }
2309
+ {% if stage_int >= 40 and stage_int < 60 %}background:#7DE1DF;{% endif %} }
2335
2310
 
2336
2311
  span.bibalt-year {
2337
2312
  mso-style-name: bib_alt-year;
2338
2313
  mso-style-unhide: no;
2339
2314
  mso-style-parent: "";
2340
2315
  mso-bidi-font-size: 12.0pt;
2341
- font-size: {{bodyfont}};
2316
+ font-family: {{bodyfont}};
2342
2317
  mso-ascii-font-family: Cambria;
2343
2318
  mso-hansi-font-family: Cambria;
2344
2319
  border: none;
2345
- background: #CC99FF; }
2320
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CC99FF;{% endif %} }
2346
2321
 
2347
2322
  span.bibbook {
2348
2323
  mso-style-name: bib_book;
2349
2324
  mso-style-unhide: no;
2350
2325
  mso-style-parent: "";
2351
- font-size: {{bodyfont}};
2326
+ font-family: {{bodyfont}};
2352
2327
  mso-ascii-font-family: Cambria;
2353
2328
  mso-hansi-font-family: Cambria;
2354
2329
  border: none;
2355
- background: #99CCFF; }
2330
+ {% if stage_int >= 40 and stage_int < 60 %}background:#99CCFF;{% endif %} }
2356
2331
 
2357
2332
  span.bibchapterno {
2358
2333
  mso-style-name: bib_chapterno;
2359
2334
  mso-style-unhide: no;
2360
2335
  mso-style-parent: "";
2361
- font-size: {{bodyfont}};
2336
+ font-family: {{bodyfont}};
2362
2337
  mso-ascii-font-family: Cambria;
2363
2338
  mso-hansi-font-family: Cambria;
2364
2339
  border: none;
2365
- background: #D9D9D9; }
2340
+ {% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
2366
2341
 
2367
2342
  span.bibchaptertitle {
2368
2343
  mso-style-name: bib_chaptertitle;
2369
2344
  mso-style-unhide: no;
2370
2345
  mso-style-parent: "";
2371
- font-size: {{bodyfont}};
2346
+ font-family: {{bodyfont}};
2372
2347
  mso-ascii-font-family: Cambria;
2373
2348
  mso-hansi-font-family: Cambria;
2374
2349
  border: none;
2375
- background: #FF9D5B; }
2350
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FF9D5B;{% endif %} }
2376
2351
 
2377
2352
  span.bibed-etal {
2378
2353
  mso-style-name: bib_ed-etal;
2379
2354
  mso-style-unhide: no;
2380
2355
  mso-style-parent: "";
2381
- font-size: {{bodyfont}};
2356
+ font-family: {{bodyfont}};
2382
2357
  mso-ascii-font-family: Cambria;
2383
2358
  mso-hansi-font-family: Cambria;
2384
2359
  border: none;
2385
- background: #00F4EE; }
2360
+ {% if stage_int >= 40 and stage_int < 60 %}background:#00F4EE;{% endif %} }
2386
2361
 
2387
2362
  span.bibed-fname {
2388
2363
  mso-style-name: bib_ed-fname;
2389
2364
  mso-style-unhide: no;
2390
2365
  mso-style-parent: "";
2391
- font-size: {{bodyfont}};
2366
+ font-family: {{bodyfont}};
2392
2367
  mso-ascii-font-family: Cambria;
2393
2368
  mso-hansi-font-family: Cambria;
2394
2369
  border: none;
2395
- background: #FFFFB7; }
2370
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFFFB7;{% endif %} }
2396
2371
 
2397
2372
  span.bibeditionno {
2398
2373
  mso-style-name: bib_editionno;
2399
2374
  mso-style-unhide: no;
2400
2375
  mso-style-parent: "";
2401
- font-size: {{bodyfont}};
2376
+ font-family: {{bodyfont}};
2402
2377
  mso-ascii-font-family: Cambria;
2403
2378
  mso-hansi-font-family: Cambria;
2404
2379
  border: none;
2405
- background: #FFCC00; }
2380
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCC00;{% endif %} }
2406
2381
 
2407
2382
  span.bibed-organization {
2408
2383
  mso-style-name: bib_ed-organization;
2409
2384
  mso-style-unhide: no;
2410
2385
  mso-style-parent: "";
2411
- font-size: {{bodyfont}};
2386
+ font-family: {{bodyfont}};
2412
2387
  mso-ascii-font-family: Cambria;
2413
2388
  mso-hansi-font-family: Cambria;
2414
2389
  border: none;
2415
- background: #FCAAC3; }
2390
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FCAAC3;{% endif %} }
2416
2391
 
2417
2392
  span.bibed-suffix {
2418
2393
  mso-style-name: bib_ed-suffix;
2419
2394
  mso-style-unhide: no;
2420
2395
  mso-style-parent: "";
2421
- font-size: {{bodyfont}};
2396
+ font-family: {{bodyfont}};
2422
2397
  mso-ascii-font-family: Cambria;
2423
2398
  mso-hansi-font-family: Cambria;
2424
2399
  border: none;
2425
- background: #CCFFCC; }
2400
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
2426
2401
 
2427
2402
  span.bibed-surname {
2428
2403
  mso-style-name: bib_ed-surname;
2429
2404
  mso-style-unhide: no;
2430
2405
  mso-style-parent: "";
2431
- font-size: {{bodyfont}};
2406
+ font-family: {{bodyfont}};
2432
2407
  mso-ascii-font-family: Cambria;
2433
2408
  mso-hansi-font-family: Cambria;
2434
2409
  border: none;
2435
- background: yellow; }
2410
+ {% if stage_int >= 40 and stage_int < 60 %}background:yellow;{% endif %} }
2436
2411
 
2437
2412
  span.bibinstitution {
2438
2413
  mso-style-name: bib_institution;
2439
2414
  mso-style-unhide: no;
2440
2415
  mso-style-parent: "";
2441
- font-size: {{bodyfont}};
2416
+ font-family: {{bodyfont}};
2442
2417
  mso-ascii-font-family: Cambria;
2443
2418
  mso-hansi-font-family: Cambria;
2444
2419
  border: none;
2445
- background: #CCFFCC; }
2420
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
2446
2421
 
2447
2422
  span.bibisbn {
2448
2423
  mso-style-name: bib_isbn;
2449
2424
  mso-style-unhide: no;
2450
2425
  mso-style-parent: "";
2451
- font-size: {{bodyfont}};
2426
+ font-family: {{bodyfont}};
2452
2427
  mso-ascii-font-family: Cambria;
2453
2428
  mso-hansi-font-family: Cambria;
2454
- background: #D9D9D9; }
2429
+ {% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
2455
2430
 
2456
2431
  span.biblocation {
2457
2432
  mso-style-name: bib_location;
2458
2433
  mso-style-unhide: no;
2459
2434
  mso-style-parent: "";
2460
- font-size: {{bodyfont}};
2435
+ font-family: {{bodyfont}};
2461
2436
  mso-ascii-font-family: Cambria;
2462
2437
  mso-hansi-font-family: Cambria;
2463
2438
  border: none;
2464
- background: #FFCCCC; }
2439
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCCCC;{% endif %} }
2465
2440
 
2466
2441
  span.bibpagecount {
2467
2442
  mso-style-name: bib_pagecount;
2468
2443
  mso-style-unhide: no;
2469
2444
  mso-style-parent: "";
2470
- font-size: {{bodyfont}};
2445
+ font-family: {{bodyfont}};
2471
2446
  mso-ascii-font-family: Cambria;
2472
2447
  mso-hansi-font-family: Cambria;
2473
2448
  border: none;
2474
- background: lime; }
2449
+ {% if stage_int >= 40 and stage_int < 60 %}background:lime;{% endif %} }
2475
2450
 
2476
2451
  span.bibpatent {
2477
2452
  mso-style-name: bib_patent;
2478
2453
  mso-style-unhide: no;
2479
2454
  mso-style-parent: "";
2480
- font-size: {{bodyfont}};
2455
+ font-family: {{bodyfont}};
2481
2456
  mso-ascii-font-family: Cambria;
2482
2457
  mso-hansi-font-family: Cambria;
2483
2458
  border: none;
2484
- background: #66FFCC; }
2459
+ {% if stage_int >= 40 and stage_int < 60 %}background:#66FFCC;{% endif %} }
2485
2460
 
2486
2461
  span.bibpublisher {
2487
2462
  mso-style-name: bib_publisher;
2488
2463
  mso-style-unhide: no;
2489
2464
  mso-style-parent: "";
2490
- font-size: {{bodyfont}};
2465
+ font-family: {{bodyfont}};
2491
2466
  mso-ascii-font-family: Cambria;
2492
2467
  mso-hansi-font-family: Cambria;
2493
2468
  border: none;
2494
- background: #FF99CC; }
2469
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %} }
2495
2470
 
2496
2471
  span.bibreportnum {
2497
2472
  mso-style-name: bib_reportnum;
2498
2473
  mso-style-unhide: no;
2499
2474
  mso-style-parent: "";
2500
- font-size: {{bodyfont}};
2475
+ font-family: {{bodyfont}};
2501
2476
  mso-ascii-font-family: Cambria;
2502
2477
  mso-hansi-font-family: Cambria;
2503
2478
  border: none;
2504
- background: #CCCCFF; }
2479
+ {% if stage_int >= 40 and stage_int < 60 %}background:#CCCCFF;{% endif %} }
2505
2480
 
2506
2481
  span.bibschool {
2507
2482
  mso-style-name: bib_school;
2508
2483
  mso-style-unhide: no;
2509
2484
  mso-style-parent: "";
2510
- font-size: {{bodyfont}};
2485
+ font-family: {{bodyfont}};
2511
2486
  mso-ascii-font-family: Cambria;
2512
2487
  mso-hansi-font-family: Cambria;
2513
2488
  border: none;
2514
- background: #FFCC66; }
2489
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCC66;{% endif %} }
2515
2490
 
2516
2491
  span.bibseries {
2517
2492
  mso-style-name: bib_series;
2518
2493
  mso-style-unhide: no;
2519
2494
  mso-style-parent: "";
2520
- font-size: {{bodyfont}};
2495
+ font-family: {{bodyfont}};
2521
2496
  mso-ascii-font-family: Cambria;
2522
2497
  mso-hansi-font-family: Cambria;
2523
- background: #FFCC99; }
2498
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFCC99;{% endif %} }
2524
2499
 
2525
2500
  span.bibseriesno {
2526
2501
  mso-style-name: bib_seriesno;
2527
2502
  mso-style-unhide: no;
2528
2503
  mso-style-parent: "";
2529
- font-size: {{bodyfont}};
2504
+ font-family: {{bodyfont}};
2530
2505
  mso-ascii-font-family: Cambria;
2531
2506
  mso-hansi-font-family: Cambria;
2532
- background: #FFFF99; }
2507
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FFFF99;{% endif %} }
2533
2508
 
2534
2509
  span.bibtrans {
2535
2510
  mso-style-name: bib_trans;
2536
2511
  mso-style-unhide: no;
2537
2512
  mso-style-parent: "";
2538
- font-size: {{bodyfont}};
2513
+ font-family: {{bodyfont}};
2539
2514
  mso-ascii-font-family: Cambria;
2540
2515
  mso-hansi-font-family: Cambria;
2541
- background: #99CC00; }
2516
+ {% if stage_int >= 40 and stage_int < 60 %}background:#99CC00;{% endif %} }
2542
2517
 
2543
2518
  span.stdsuppl {
2544
2519
  mso-style-name: std_suppl;
2545
2520
  mso-style-unhide: no;
2546
2521
  mso-style-parent: "";
2547
- font-size: {{bodyfont}};
2522
+ font-family: {{bodyfont}};
2548
2523
  mso-ascii-font-family: Cambria;
2549
2524
  mso-hansi-font-family: Cambria;
2550
2525
  border: none;
2551
- background: #F6FBB5; }
2526
+ {% if stage_int >= 40 and stage_int < 60 %}background:#F6FBB5;{% endif %} }
2552
2527
 
2553
2528
  span.citesection {
2554
2529
  mso-style-name: cite_section;
2555
2530
  mso-style-unhide: no;
2556
2531
  mso-style-parent: "";
2557
- font-size: {{bodyfont}};
2532
+ font-family: {{bodyfont}};
2558
2533
  mso-ascii-font-family: Cambria;
2559
2534
  mso-hansi-font-family: Cambria;
2560
2535
  border: none;
2561
- background: #FF7C80; }
2536
+ {% if stage_int >= 40 and stage_int < 60 %}background:#FF7C80;{% endif %} }
2562
2537
 
2563
2538
  p.BaseText, li.BaseText, div.BaseText {
2564
2539
  mso-style-name: Base_Text;
@@ -2615,7 +2590,7 @@ p.BodyText-, li.BodyText-, div.BodyText- {
2615
2590
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
2616
2591
  font-size: 9.0pt;
2617
2592
  mso-bidi-font-size: {{normalfontsize}};
2618
- font-size: {{bodyfont}};
2593
+ font-family: {{bodyfont}};
2619
2594
  mso-fareast-font-family: Calibri;
2620
2595
  mso-bidi-font-family: "Times New Roman";
2621
2596
  mso-ansi-language: EN-GB;
@@ -2635,7 +2610,7 @@ p.BodyTextindent1, li.BodyTextindent1, div.BodyTextindent1 {
2635
2610
  mso-pagination: widow-orphan;
2636
2611
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
2637
2612
  font-size: {{normalfontsize}};
2638
- font-size: {{bodyfont}};
2613
+ font-family: {{bodyfont}};
2639
2614
  mso-fareast-font-family: Calibri;
2640
2615
  mso-bidi-font-family: "Times New Roman";
2641
2616
  mso-ansi-language: EN-GB;
@@ -2656,7 +2631,7 @@ p.BodyTextindent1-, li.BodyTextindent1-, div.BodyTextindent1- {
2656
2631
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
2657
2632
  font-size: 9.0pt;
2658
2633
  mso-bidi-font-size: {{normalfontsize}};
2659
- font-size: {{bodyfont}};
2634
+ font-family: {{bodyfont}};
2660
2635
  mso-fareast-font-family: Calibri;
2661
2636
  mso-bidi-font-family: "Times New Roman";
2662
2637
  mso-ansi-language: EN-GB;
@@ -2675,7 +2650,7 @@ p.BodyTextIndent21, li.BodyTextIndent21, div.BodyTextIndent21 {
2675
2650
  mso-pagination: widow-orphan;
2676
2651
  font-size: {{normalfontsize}};
2677
2652
  mso-bidi-font-size: 10.0pt;
2678
- font-size: {{bodyfont}};
2653
+ font-family: {{bodyfont}};
2679
2654
  mso-fareast-font-family: "MS Mincho";
2680
2655
  mso-bidi-font-family: "Times New Roman";
2681
2656
  mso-ansi-language: EN-GB;
@@ -2695,7 +2670,7 @@ p.BodyTextindent2-, li.BodyTextindent2-, div.BodyTextindent2- {
2695
2670
  mso-pagination: widow-orphan;
2696
2671
  font-size: 9.0pt;
2697
2672
  mso-bidi-font-size: 10.0pt;
2698
- font-size: {{bodyfont}};
2673
+ font-family: {{bodyfont}};
2699
2674
  mso-fareast-font-family: "MS Mincho";
2700
2675
  mso-bidi-font-family: "Times New Roman";
2701
2676
  mso-ansi-language: EN-GB;
@@ -2715,7 +2690,7 @@ p.BodyTextIndent31, li.BodyTextIndent31, div.BodyTextIndent31 {
2715
2690
  mso-pagination: widow-orphan;
2716
2691
  font-size: {{normalfontsize}};
2717
2692
  mso-bidi-font-size: 10.0pt;
2718
- font-size: {{bodyfont}};
2693
+ font-family: {{bodyfont}};
2719
2694
  mso-fareast-font-family: "MS Mincho";
2720
2695
  mso-bidi-font-family: "Times New Roman";
2721
2696
  mso-ansi-language: EN-GB;
@@ -2735,7 +2710,7 @@ p.BodyTextindent3-, li.BodyTextindent3-, div.BodyTextindent3- {
2735
2710
  mso-pagination: widow-orphan;
2736
2711
  font-size: 9.0pt;
2737
2712
  mso-bidi-font-size: 10.0pt;
2738
- font-size: {{bodyfont}};
2713
+ font-family: {{bodyfont}};
2739
2714
  mso-fareast-font-family: "MS Mincho";
2740
2715
  mso-bidi-font-family: "Times New Roman";
2741
2716
  mso-ansi-language: EN-GB;
@@ -2755,7 +2730,7 @@ p.BodyTextindent4, li.BodyTextindent4, div.BodyTextindent4 {
2755
2730
  mso-pagination: widow-orphan;
2756
2731
  font-size: {{normalfontsize}};
2757
2732
  mso-bidi-font-size: 10.0pt;
2758
- font-size: {{bodyfont}};
2733
+ font-family: {{bodyfont}};
2759
2734
  mso-fareast-font-family: "MS Mincho";
2760
2735
  mso-bidi-font-family: "Times New Roman";
2761
2736
  mso-ansi-language: EN-GB;
@@ -2775,7 +2750,7 @@ p.BodyTextindent4-, li.BodyTextindent4-, div.BodyTextindent4- {
2775
2750
  mso-pagination: widow-orphan;
2776
2751
  font-size: 9.0pt;
2777
2752
  mso-bidi-font-size: 10.0pt;
2778
- font-size: {{bodyfont}};
2753
+ font-family: {{bodyfont}};
2779
2754
  mso-fareast-font-family: "MS Mincho";
2780
2755
  mso-bidi-font-family: "Times New Roman";
2781
2756
  mso-ansi-language: EN-GB;
@@ -2793,7 +2768,7 @@ p.BodyTextCenter, li.BodyTextCenter, div.BodyTextCenter {
2793
2768
  line-height: 12.0pt;
2794
2769
  mso-pagination: widow-orphan;
2795
2770
  font-size: {{normalfontsize}};
2796
- font-size: {{bodyfont}};
2771
+ font-family: {{bodyfont}};
2797
2772
  mso-fareast-font-family: Calibri;
2798
2773
  mso-bidi-font-family: "Times New Roman";
2799
2774
  mso-ansi-language: EN-GB;
@@ -2844,7 +2819,7 @@ p.CoverTitleA1, li.CoverTitleA1, div.CoverTitleA1 {
2844
2819
  mso-pagination: widow-orphan;
2845
2820
  font-size: 16.0pt;
2846
2821
  mso-bidi-font-size: {{normalfontsize}};
2847
- font-size: {{bodyfont}};
2822
+ font-family: {{bodyfont}};
2848
2823
  mso-fareast-font-family: Calibri;
2849
2824
  mso-bidi-font-family: "Times New Roman";
2850
2825
  mso-ansi-language: EN-GB;
@@ -2865,7 +2840,7 @@ p.CoverTitleA2, li.CoverTitleA2, div.CoverTitleA2 {
2865
2840
  mso-pagination: widow-orphan;
2866
2841
  font-size: 16.0pt;
2867
2842
  mso-bidi-font-size: {{normalfontsize}};
2868
- font-size: {{bodyfont}};
2843
+ font-family: {{bodyfont}};
2869
2844
  mso-fareast-font-family: Calibri;
2870
2845
  mso-bidi-font-family: "Times New Roman";
2871
2846
  mso-ansi-language: EN-GB;
@@ -2886,7 +2861,7 @@ p.CoverTitleA3, li.CoverTitleA3, div.CoverTitleA3 {
2886
2861
  mso-pagination: widow-orphan;
2887
2862
  font-size: 16.0pt;
2888
2863
  mso-bidi-font-size: {{normalfontsize}};
2889
- font-size: {{bodyfont}};
2864
+ font-family: {{bodyfont}};
2890
2865
  mso-fareast-font-family: Calibri;
2891
2866
  mso-bidi-font-family: "Times New Roman";
2892
2867
  mso-ansi-language: EN-GB;
@@ -2903,7 +2878,7 @@ p.CoverTitleB, li.CoverTitleB, div.CoverTitleB {
2903
2878
  line-height: 12.0pt;
2904
2879
  mso-pagination: widow-orphan;
2905
2880
  font-size: {{normalfontsize}};
2906
- font-size: {{bodyfont}};
2881
+ font-family: {{bodyfont}};
2907
2882
  mso-fareast-font-family: Calibri;
2908
2883
  mso-bidi-font-family: "Times New Roman";
2909
2884
  mso-ansi-language: FR;
@@ -2924,7 +2899,7 @@ p.Dimension100, li.Dimension100, div.Dimension100 {
2924
2899
  mso-pagination: widow-orphan;
2925
2900
  font-size: 10.0pt;
2926
2901
  mso-bidi-font-size: {{normalfontsize}};
2927
- font-size: {{bodyfont}};
2902
+ font-family: {{bodyfont}};
2928
2903
  mso-fareast-font-family: Calibri;
2929
2904
  mso-bidi-font-family: "Times New Roman";
2930
2905
  mso-ansi-language: EN-GB;
@@ -2943,7 +2918,7 @@ p.Dimension50, li.Dimension50, div.Dimension50 {
2943
2918
  mso-pagination: widow-orphan;
2944
2919
  font-size: 10.0pt;
2945
2920
  mso-bidi-font-size: {{normalfontsize}};
2946
- font-size: {{bodyfont}};
2921
+ font-family: {{bodyfont}};
2947
2922
  mso-fareast-font-family: Calibri;
2948
2923
  mso-bidi-font-family: "Times New Roman";
2949
2924
  mso-ansi-language: EN-GB;
@@ -2962,7 +2937,7 @@ p.Dimension75, li.Dimension75, div.Dimension75 {
2962
2937
  mso-pagination: widow-orphan;
2963
2938
  font-size: 10.0pt;
2964
2939
  mso-bidi-font-size: {{normalfontsize}};
2965
- font-size: {{bodyfont}};
2940
+ font-family: {{bodyfont}};
2966
2941
  mso-fareast-font-family: Calibri;
2967
2942
  mso-bidi-font-family: "Times New Roman";
2968
2943
  mso-ansi-language: EN-GB;
@@ -2983,28 +2958,7 @@ p.dl, li.dl, div.dl {
2983
2958
  mso-pagination: widow-orphan;
2984
2959
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
2985
2960
  font-size: {{normalfontsize}};
2986
- font-size: {{bodyfont}};
2987
- mso-fareast-font-family: Calibri;
2988
- mso-bidi-font-family: "Times New Roman";
2989
- mso-ansi-language: EN-GB;
2990
- mso-fareast-language: EN-US; }
2991
-
2992
- p.Example0, li.Example0, div.Example0 {
2993
- mso-style-name: Example;
2994
- mso-style-unhide: no;
2995
- mso-style-parent: Base_Text;
2996
- margin-top: 0cm;
2997
- margin-right: 0cm;
2998
- margin-bottom: 12.0pt;
2999
- margin-left: 0cm;
3000
- text-align: justify;
3001
- text-justify: inter-ideograph;
3002
- line-height: 11.0pt;
3003
- mso-pagination: widow-orphan;
3004
- tab-stops: 67.7pt;
3005
- font-size: 10.0pt;
3006
- mso-bidi-font-size: {{normalfontsize}};
3007
- font-size: {{bodyfont}};
2961
+ font-family: {{bodyfont}};
3008
2962
  mso-fareast-font-family: Calibri;
3009
2963
  mso-bidi-font-family: "Times New Roman";
3010
2964
  mso-ansi-language: EN-GB;
@@ -3025,7 +2979,7 @@ p.Examplecontinued, li.Examplecontinued, div.Examplecontinued {
3025
2979
  tab-stops: 67.7pt;
3026
2980
  font-size: 10.0pt;
3027
2981
  mso-bidi-font-size: {{normalfontsize}};
3028
- font-size: {{bodyfont}};
2982
+ font-family: {{bodyfont}};
3029
2983
  mso-fareast-font-family: Calibri;
3030
2984
  mso-bidi-font-family: "Times New Roman";
3031
2985
  mso-ansi-language: EN-GB;
@@ -3046,7 +3000,7 @@ p.Exampleindent, li.Exampleindent, div.Exampleindent {
3046
3000
  tab-stops: 87.85pt;
3047
3001
  font-size: 10.0pt;
3048
3002
  mso-bidi-font-size: {{normalfontsize}};
3049
- font-size: {{bodyfont}};
3003
+ font-family: {{bodyfont}};
3050
3004
  mso-fareast-font-family: Calibri;
3051
3005
  mso-bidi-font-family: "Times New Roman";
3052
3006
  mso-ansi-language: EN-GB;
@@ -3067,7 +3021,7 @@ p.Exampleindentcontinued, li.Exampleindentcontinued, div.Exampleindentcontinued
3067
3021
  tab-stops: 87.85pt;
3068
3022
  font-size: 10.0pt;
3069
3023
  mso-bidi-font-size: {{normalfontsize}};
3070
- font-size: {{bodyfont}};
3024
+ font-family: {{bodyfont}};
3071
3025
  mso-fareast-font-family: Calibri;
3072
3026
  mso-bidi-font-family: "Times New Roman";
3073
3027
  mso-ansi-language: EN-GB;
@@ -3088,7 +3042,7 @@ p.Figureexample, li.Figureexample, div.Figureexample {
3088
3042
  tab-stops: 67.7pt;
3089
3043
  font-size: 10.0pt;
3090
3044
  mso-bidi-font-size: {{normalfontsize}};
3091
- font-size: {{bodyfont}};
3045
+ font-family: {{bodyfont}};
3092
3046
  mso-fareast-font-family: Calibri;
3093
3047
  mso-bidi-font-family: "Times New Roman";
3094
3048
  mso-ansi-language: EN-GB;
@@ -3106,7 +3060,7 @@ p.FigureGraphic, li.FigureGraphic, div.FigureGraphic {
3106
3060
  line-height: 12.0pt;
3107
3061
  mso-pagination: widow-orphan;
3108
3062
  font-size: {{normalfontsize}};
3109
- font-size: {{bodyfont}};
3063
+ font-family: {{bodyfont}};
3110
3064
  mso-fareast-font-family: Calibri;
3111
3065
  mso-bidi-font-family: "Times New Roman";
3112
3066
  mso-ansi-language: EN-GB;
@@ -3127,7 +3081,7 @@ p.Note0, li.Note0, div.Note0 {
3127
3081
  tab-stops: 48.25pt;
3128
3082
  font-size: 10.0pt;
3129
3083
  mso-bidi-font-size: {{normalfontsize}};
3130
- font-size: {{bodyfont}};
3084
+ font-family: {{bodyfont}};
3131
3085
  mso-fareast-font-family: Calibri;
3132
3086
  mso-bidi-font-family: "Times New Roman";
3133
3087
  mso-ansi-language: EN-GB;
@@ -3148,7 +3102,7 @@ p.Figurenote, li.Figurenote, div.Figurenote {
3148
3102
  tab-stops: 48.25pt;
3149
3103
  font-size: 10.0pt;
3150
3104
  mso-bidi-font-size: {{normalfontsize}};
3151
- font-size: {{bodyfont}};
3105
+ font-family: {{bodyfont}};
3152
3106
  mso-fareast-font-family: Calibri;
3153
3107
  mso-bidi-font-family: "Times New Roman";
3154
3108
  mso-ansi-language: EN-GB;
@@ -3166,7 +3120,28 @@ p.Figuresubtitle, li.Figuresubtitle, div.Figuresubtitle {
3166
3120
  line-height: 12.0pt;
3167
3121
  mso-pagination: widow-orphan;
3168
3122
  font-size: {{normalfontsize}};
3169
- font-size: {{bodyfont}};
3123
+ font-family: {{bodyfont}};
3124
+ mso-fareast-font-family: Calibri;
3125
+ mso-bidi-font-family: "Times New Roman";
3126
+ mso-ansi-language: EN-GB;
3127
+ mso-fareast-language: EN-US;
3128
+ font-weight: bold;
3129
+ mso-bidi-font-weight: normal; }
3130
+
3131
+ p.Figuretitle, li.Figuretitle, div.Figuretitle {
3132
+ mso-style-name: "Figure title";
3133
+ mso-style-unhide: no;
3134
+ mso-style-parent: Base_Heading;
3135
+ margin-top: 12.0pt;
3136
+ margin-right: 0cm;
3137
+ margin-bottom: 18.0pt;
3138
+ margin-left: 0cm;
3139
+ text-align: center;
3140
+ line-height: 12.0pt;
3141
+ mso-pagination: widow-orphan;
3142
+ mso-hyphenate: none;
3143
+ font-size: {{normalfontsize}};
3144
+ font-family: {{bodyfont}};
3170
3145
  mso-fareast-font-family: Calibri;
3171
3146
  mso-bidi-font-family: "Times New Roman";
3172
3147
  mso-ansi-language: EN-GB;
@@ -3187,7 +3162,7 @@ p.Figuretitle0, li.Figuretitle0, div.Figuretitle0 {
3187
3162
  mso-pagination: widow-orphan;
3188
3163
  mso-hyphenate: none;
3189
3164
  font-size: {{normalfontsize}};
3190
- font-size: {{bodyfont}};
3165
+ font-family: {{bodyfont}};
3191
3166
  mso-fareast-font-family: Calibri;
3192
3167
  mso-bidi-font-family: "Times New Roman";
3193
3168
  mso-ansi-language: EN-GB;
@@ -3211,7 +3186,7 @@ p.KeyText, li.KeyText, div.KeyText {
3211
3186
  tab-stops: 17.3pt;
3212
3187
  font-size: 9.0pt;
3213
3188
  mso-bidi-font-size: {{normalfontsize}};
3214
- font-size: {{bodyfont}};
3189
+ font-family: {{bodyfont}};
3215
3190
  mso-fareast-font-family: Calibri;
3216
3191
  mso-bidi-font-family: "Times New Roman";
3217
3192
  mso-ansi-language: EN-GB;
@@ -3232,7 +3207,7 @@ p.KeyTitle, li.KeyTitle, div.KeyTitle {
3232
3207
  tab-stops: 17.3pt;
3233
3208
  font-size: 9.0pt;
3234
3209
  mso-bidi-font-size: {{normalfontsize}};
3235
- font-size: {{bodyfont}};
3210
+ font-family: {{bodyfont}};
3236
3211
  mso-fareast-font-family: Calibri;
3237
3212
  mso-bidi-font-family: "Times New Roman";
3238
3213
  mso-ansi-language: EN-GB;
@@ -3254,7 +3229,7 @@ p.ListContinue1, li.ListContinue1, div.ListContinue1 {
3254
3229
  line-height: 12.0pt;
3255
3230
  mso-pagination: widow-orphan;
3256
3231
  font-size: {{normalfontsize}};
3257
- font-size: {{bodyfont}};
3232
+ font-family: {{bodyfont}};
3258
3233
  mso-fareast-font-family: Calibri;
3259
3234
  mso-bidi-font-family: "Times New Roman";
3260
3235
  mso-ansi-language: EN-GB;
@@ -3275,7 +3250,7 @@ p.ListContinue1-, li.ListContinue1-, div.ListContinue1- {
3275
3250
  mso-pagination: widow-orphan;
3276
3251
  font-size: 10.0pt;
3277
3252
  mso-bidi-font-size: {{normalfontsize}};
3278
- font-size: {{bodyfont}};
3253
+ font-family: {{bodyfont}};
3279
3254
  mso-fareast-font-family: Calibri;
3280
3255
  mso-bidi-font-family: "Times New Roman";
3281
3256
  mso-ansi-language: EN-GB;
@@ -3316,7 +3291,7 @@ p.ListContinue3-, li.ListContinue3-, div.ListContinue3- {
3316
3291
  mso-pagination: widow-orphan;
3317
3292
  font-size: 10.0pt;
3318
3293
  mso-bidi-font-size: {{normalfontsize}};
3319
- font-size: {{bodyfont}};
3294
+ font-family: {{bodyfont}};
3320
3295
  mso-fareast-font-family: Calibri;
3321
3296
  mso-bidi-font-family: "Times New Roman";
3322
3297
  mso-ansi-language: EN-GB;
@@ -3337,7 +3312,7 @@ p.ListContinue4-, li.ListContinue4-, div.ListContinue4- {
3337
3312
  mso-pagination: widow-orphan;
3338
3313
  font-size: 10.0pt;
3339
3314
  mso-bidi-font-size: {{normalfontsize}};
3340
- font-size: {{bodyfont}};
3315
+ font-family: {{bodyfont}};
3341
3316
  mso-fareast-font-family: Calibri;
3342
3317
  mso-bidi-font-family: "Times New Roman";
3343
3318
  mso-ansi-language: EN-GB;
@@ -3357,7 +3332,7 @@ p.ListNumber1, li.ListNumber1, div.ListNumber1 {
3357
3332
  line-height: 12.0pt;
3358
3333
  mso-pagination: widow-orphan;
3359
3334
  font-size: {{normalfontsize}};
3360
- font-size: {{bodyfont}};
3335
+ font-family: {{bodyfont}};
3361
3336
  mso-fareast-font-family: Calibri;
3362
3337
  mso-bidi-font-family: "Times New Roman";
3363
3338
  mso-ansi-language: EN-GB;
@@ -3378,7 +3353,7 @@ p.ListNumber1-, li.ListNumber1-, div.ListNumber1- {
3378
3353
  mso-pagination: widow-orphan;
3379
3354
  font-size: 10.0pt;
3380
3355
  mso-bidi-font-size: {{normalfontsize}};
3381
- font-size: {{bodyfont}};
3356
+ font-family: {{bodyfont}};
3382
3357
  mso-fareast-font-family: Calibri;
3383
3358
  mso-bidi-font-family: "Times New Roman";
3384
3359
  mso-ansi-language: EN-GB;
@@ -3400,7 +3375,7 @@ p.ListNumber2-, li.ListNumber2-, div.ListNumber2- {
3400
3375
  mso-pagination: widow-orphan;
3401
3376
  font-size: 10.0pt;
3402
3377
  mso-bidi-font-size: {{normalfontsize}};
3403
- font-size: {{bodyfont}};
3378
+ font-family: {{bodyfont}};
3404
3379
  mso-fareast-font-family: Calibri;
3405
3380
  mso-bidi-font-family: "Times New Roman";
3406
3381
  mso-ansi-language: EN-GB;
@@ -3421,7 +3396,7 @@ p.ListNumber3-, li.ListNumber3-, div.ListNumber3- {
3421
3396
  mso-pagination: widow-orphan;
3422
3397
  font-size: 10.0pt;
3423
3398
  mso-bidi-font-size: {{normalfontsize}};
3424
- font-size: {{bodyfont}};
3399
+ font-family: {{bodyfont}};
3425
3400
  mso-fareast-font-family: Calibri;
3426
3401
  mso-bidi-font-family: "Times New Roman";
3427
3402
  mso-ansi-language: EN-GB;
@@ -3442,7 +3417,7 @@ p.ListNumber4-, li.ListNumber4-, div.ListNumber4- {
3442
3417
  mso-pagination: widow-orphan;
3443
3418
  font-size: 10.0pt;
3444
3419
  mso-bidi-font-size: {{normalfontsize}};
3445
- font-size: {{bodyfont}};
3420
+ font-family: {{bodyfont}};
3446
3421
  mso-fareast-font-family: Calibri;
3447
3422
  mso-bidi-font-family: "Times New Roman";
3448
3423
  mso-ansi-language: EN-GB;
@@ -3461,7 +3436,7 @@ p.Tabletitle0, li.Tabletitle0, div.Tabletitle0 {
3461
3436
  mso-pagination: widow-orphan;
3462
3437
  mso-hyphenate: none;
3463
3438
  font-size: {{normalfontsize}};
3464
- font-size: {{bodyfont}};
3439
+ font-family: {{bodyfont}};
3465
3440
  mso-fareast-font-family: Calibri;
3466
3441
  mso-bidi-font-family: "Times New Roman";
3467
3442
  mso-ansi-language: EN-GB;
@@ -3482,7 +3457,7 @@ p.Tablebody-, li.Tablebody-, div.Tablebody- {
3482
3457
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3483
3458
  font-size: 9.0pt;
3484
3459
  mso-bidi-font-size: {{normalfontsize}};
3485
- font-size: {{bodyfont}};
3460
+ font-family: {{bodyfont}};
3486
3461
  mso-fareast-font-family: Calibri;
3487
3462
  mso-bidi-font-family: "Times New Roman";
3488
3463
  mso-ansi-language: EN-GB;
@@ -3501,7 +3476,7 @@ p.Tablebody--, li.Tablebody--, div.Tablebody-- {
3501
3476
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3502
3477
  font-size: 8.0pt;
3503
3478
  mso-bidi-font-size: {{normalfontsize}};
3504
- font-size: {{bodyfont}};
3479
+ font-family: {{bodyfont}};
3505
3480
  mso-fareast-font-family: Calibri;
3506
3481
  mso-bidi-font-family: "Times New Roman";
3507
3482
  mso-ansi-language: EN-GB;
@@ -3519,7 +3494,7 @@ p.Tablebody0, li.Tablebody0, div.Tablebody0 {
3519
3494
  mso-pagination: widow-orphan;
3520
3495
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3521
3496
  font-size: {{normalfontsize}};
3522
- font-size: {{bodyfont}};
3497
+ font-family: {{bodyfont}};
3523
3498
  mso-fareast-font-family: Calibri;
3524
3499
  mso-bidi-font-family: "Times New Roman";
3525
3500
  mso-ansi-language: EN-GB;
@@ -3540,7 +3515,7 @@ p.Tablefooter, li.Tablefooter, div.Tablefooter {
3540
3515
  tab-stops: 17.3pt;
3541
3516
  font-size: 9.0pt;
3542
3517
  mso-bidi-font-size: {{normalfontsize}};
3543
- font-size: {{bodyfont}};
3518
+ font-family: {{bodyfont}};
3544
3519
  mso-fareast-font-family: Calibri;
3545
3520
  mso-bidi-font-family: "Times New Roman";
3546
3521
  mso-ansi-language: EN-GB;
@@ -3559,7 +3534,7 @@ p.Tableheader, li.Tableheader, div.Tableheader {
3559
3534
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3560
3535
  font-size: 10.0pt;
3561
3536
  mso-bidi-font-size: {{normalfontsize}};
3562
- font-size: {{bodyfont}};
3537
+ font-family: {{bodyfont}};
3563
3538
  mso-fareast-font-family: Calibri;
3564
3539
  mso-bidi-font-family: "Times New Roman";
3565
3540
  mso-ansi-language: EN-GB;
@@ -3578,7 +3553,7 @@ p.Tableheader-, li.Tableheader-, div.Tableheader- {
3578
3553
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3579
3554
  font-size: 9.0pt;
3580
3555
  mso-bidi-font-size: {{normalfontsize}};
3581
- font-size: {{bodyfont}};
3556
+ font-family: {{bodyfont}};
3582
3557
  mso-fareast-font-family: Calibri;
3583
3558
  mso-bidi-font-family: "Times New Roman";
3584
3559
  mso-ansi-language: EN-GB;
@@ -3597,7 +3572,7 @@ p.Tableheader--, li.Tableheader--, div.Tableheader-- {
3597
3572
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3598
3573
  font-size: 8.0pt;
3599
3574
  mso-bidi-font-size: {{normalfontsize}};
3600
- font-size: {{bodyfont}};
3575
+ font-family: {{bodyfont}};
3601
3576
  mso-fareast-font-family: Calibri;
3602
3577
  mso-bidi-font-family: "Times New Roman";
3603
3578
  mso-ansi-language: EN-GB;
@@ -3615,7 +3590,7 @@ p.Tableheader0, li.Tableheader0, div.Tableheader0 {
3615
3590
  mso-pagination: widow-orphan;
3616
3591
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3617
3592
  font-size: {{normalfontsize}};
3618
- font-size: {{bodyfont}};
3593
+ font-family: {{bodyfont}};
3619
3594
  mso-fareast-font-family: Calibri;
3620
3595
  mso-bidi-font-family: "Times New Roman";
3621
3596
  mso-ansi-language: EN-GB;
@@ -3635,7 +3610,7 @@ p.Notice, li.Notice, div.Notice {
3635
3610
  mso-pagination: widow-orphan;
3636
3611
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3637
3612
  font-size: {{normalfontsize}};
3638
- font-size: {{bodyfont}};
3613
+ font-family: {{bodyfont}};
3639
3614
  mso-fareast-font-family: Calibri;
3640
3615
  mso-bidi-font-family: "Times New Roman";
3641
3616
  mso-ansi-language: EN-GB;
@@ -3655,7 +3630,7 @@ p.p2, li.p2, div.p2 {
3655
3630
  mso-pagination: widow-orphan;
3656
3631
  tab-stops: 28.1pt;
3657
3632
  font-size: {{normalfontsize}};
3658
- font-size: {{bodyfont}};
3633
+ font-family: {{bodyfont}};
3659
3634
  mso-fareast-font-family: Calibri;
3660
3635
  mso-bidi-font-family: "Times New Roman";
3661
3636
  mso-ansi-language: EN-GB;
@@ -3675,7 +3650,7 @@ p.p3, li.p3, div.p3 {
3675
3650
  mso-pagination: widow-orphan;
3676
3651
  tab-stops: 36.0pt;
3677
3652
  font-size: {{normalfontsize}};
3678
- font-size: {{bodyfont}};
3653
+ font-family: {{bodyfont}};
3679
3654
  mso-fareast-font-family: Calibri;
3680
3655
  mso-bidi-font-family: "Times New Roman";
3681
3656
  mso-ansi-language: EN-GB;
@@ -3695,7 +3670,7 @@ p.p4, li.p4, div.p4 {
3695
3670
  mso-pagination: widow-orphan;
3696
3671
  tab-stops: 54.7pt;
3697
3672
  font-size: {{normalfontsize}};
3698
- font-size: {{bodyfont}};
3673
+ font-family: {{bodyfont}};
3699
3674
  mso-fareast-font-family: Calibri;
3700
3675
  mso-bidi-font-family: "Times New Roman";
3701
3676
  mso-ansi-language: EN-GB;
@@ -3715,7 +3690,7 @@ p.p5, li.p5, div.p5 {
3715
3690
  mso-pagination: widow-orphan;
3716
3691
  tab-stops: 54.7pt;
3717
3692
  font-size: {{normalfontsize}};
3718
- font-size: {{bodyfont}};
3693
+ font-family: {{bodyfont}};
3719
3694
  mso-fareast-font-family: Calibri;
3720
3695
  mso-bidi-font-family: "Times New Roman";
3721
3696
  mso-ansi-language: EN-GB;
@@ -3735,7 +3710,7 @@ p.p6, li.p6, div.p6 {
3735
3710
  mso-pagination: widow-orphan;
3736
3711
  tab-stops: 72.0pt;
3737
3712
  font-size: {{normalfontsize}};
3738
- font-size: {{bodyfont}};
3713
+ font-family: {{bodyfont}};
3739
3714
  mso-fareast-font-family: Calibri;
3740
3715
  mso-bidi-font-family: "Times New Roman";
3741
3716
  mso-ansi-language: EN-GB;
@@ -3754,7 +3729,7 @@ p.RefNorm, li.RefNorm, div.RefNorm {
3754
3729
  line-height: 12.0pt;
3755
3730
  mso-pagination: widow-orphan;
3756
3731
  font-size: {{normalfontsize}};
3757
- font-size: {{bodyfont}};
3732
+ font-family: {{bodyfont}};
3758
3733
  mso-fareast-font-family: Calibri;
3759
3734
  mso-bidi-font-family: "Times New Roman";
3760
3735
  mso-ansi-language: EN-GB;
@@ -3775,7 +3750,7 @@ p.Notecontinued, li.Notecontinued, div.Notecontinued {
3775
3750
  tab-stops: 48.25pt;
3776
3751
  font-size: {{smallerfontsize}};
3777
3752
  mso-bidi-font-size: {{normalfontsize}};
3778
- font-size: {{bodyfont}};
3753
+ font-family: {{bodyfont}};
3779
3754
  mso-fareast-font-family: Calibri;
3780
3755
  mso-bidi-font-family: "Times New Roman";
3781
3756
  mso-ansi-language: EN-GB;
@@ -3796,7 +3771,7 @@ p.Noteindent, li.Noteindent, div.Noteindent {
3796
3771
  tab-stops: 68.4pt;
3797
3772
  font-size: {{smallerfontsize}};
3798
3773
  mso-bidi-font-size: {{normalfontsize}};
3799
- font-size: {{bodyfont}};
3774
+ font-family: {{bodyfont}};
3800
3775
  mso-fareast-font-family: Calibri;
3801
3776
  mso-bidi-font-family: "Times New Roman";
3802
3777
  mso-ansi-language: EN-GB;
@@ -3818,7 +3793,7 @@ p.Noteindentcontinued, li.Noteindentcontinued, div.Noteindentcontinued {
3818
3793
  tab-stops: 68.4pt;
3819
3794
  font-size: {{smallerfontsize}};
3820
3795
  mso-bidi-font-size: {{normalfontsize}};
3821
- font-size: {{bodyfont}};
3796
+ font-family: {{bodyfont}};
3822
3797
  mso-fareast-font-family: Calibri;
3823
3798
  mso-bidi-font-family: "Times New Roman";
3824
3799
  mso-ansi-language: EN-GB;
@@ -3950,7 +3925,7 @@ p.ListNumber5-, li.ListNumber5-, div.ListNumber5- {
3950
3925
  mso-pagination: widow-orphan;
3951
3926
  font-size: {{smallerfontsize}};
3952
3927
  mso-bidi-font-size: {{normalfontsize}};
3953
- font-size: {{bodyfont}};
3928
+ font-family: {{bodyfont}};
3954
3929
  mso-fareast-font-family: Calibri;
3955
3930
  mso-bidi-font-family: "Times New Roman";
3956
3931
  mso-ansi-language: EN-GB;
@@ -3972,7 +3947,7 @@ p.ListContinue5-, li.ListContinue5-, div.ListContinue5- {
3972
3947
  mso-pagination: widow-orphan;
3973
3948
  font-size: {{smallerfontsize}};
3974
3949
  mso-bidi-font-size: {{normalfontsize}};
3975
- font-size: {{bodyfont}};
3950
+ font-family: {{bodyfont}};
3976
3951
  mso-fareast-font-family: Calibri;
3977
3952
  mso-bidi-font-family: "Times New Roman";
3978
3953
  mso-ansi-language: EN-GB;
@@ -3993,7 +3968,7 @@ p.BiblioText, li.BiblioText, div.BiblioText {
3993
3968
  mso-pagination: widow-orphan;
3994
3969
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
3995
3970
  font-size: {{normalfontsize}};
3996
- font-size: {{bodyfont}};
3971
+ font-family: {{bodyfont}};
3997
3972
  mso-fareast-font-family: Calibri;
3998
3973
  mso-bidi-font-family: "Times New Roman";
3999
3974
  mso-ansi-language: EN-GB;
@@ -4011,7 +3986,7 @@ p.FigureImage, li.FigureImage, div.FigureImage {
4011
3986
  line-height: 12.0pt;
4012
3987
  mso-pagination: widow-orphan;
4013
3988
  font-size: {{normalfontsize}};
4014
- font-size: {{bodyfont}};
3989
+ font-family: {{bodyfont}};
4015
3990
  mso-fareast-font-family: Calibri;
4016
3991
  mso-bidi-font-family: "Times New Roman";
4017
3992
  mso-ansi-language: EN-GB;
@@ -4034,7 +4009,7 @@ p.Figuredescription, li.Figuredescription, div.Figuredescription {
4034
4009
  mso-pattern: gray-10 auto;
4035
4010
  font-size: {{normalfontsize}};
4036
4011
  mso-bidi-font-size: 12.0pt;
4037
- font-size: {{bodyfont}};
4012
+ font-family: {{bodyfont}};
4038
4013
  mso-fareast-font-family: Calibri;
4039
4014
  mso-bidi-font-family: "Times New Roman";
4040
4015
  mso-ansi-language: EN-GB;
@@ -4058,7 +4033,7 @@ p.Formuladescription, li.Formuladescription, div.Formuladescription {
4058
4033
  mso-pattern: gray-10 auto;
4059
4034
  font-size: {{normalfontsize}};
4060
4035
  mso-bidi-font-size: 12.0pt;
4061
- font-size: {{bodyfont}};
4036
+ font-family: {{bodyfont}};
4062
4037
  mso-fareast-font-family: Calibri;
4063
4038
  mso-bidi-font-family: "Times New Roman";
4064
4039
  mso-ansi-language: EN-GB;
@@ -4081,7 +4056,7 @@ p.Tabledescription, li.Tabledescription, div.Tabledescription {
4081
4056
  mso-pattern: gray-10 auto;
4082
4057
  font-size: {{normalfontsize}};
4083
4058
  mso-bidi-font-size: 12.0pt;
4084
- font-size: {{bodyfont}};
4059
+ font-family: {{bodyfont}};
4085
4060
  mso-fareast-font-family: Calibri;
4086
4061
  mso-bidi-font-family: "Times New Roman";
4087
4062
  mso-ansi-language: EN-GB;
@@ -4103,7 +4078,7 @@ p.Box-begin, li.Box-begin, div.Box-begin {
4103
4078
  background: #D9D9D9;
4104
4079
  font-size: {{normalfontsize}};
4105
4080
  mso-bidi-font-size: 12.0pt;
4106
- font-size: {{bodyfont}};
4081
+ font-family: {{bodyfont}};
4107
4082
  mso-fareast-font-family: Calibri;
4108
4083
  mso-bidi-font-family: "Times New Roman";
4109
4084
  mso-ansi-language: EN-GB;
@@ -4123,7 +4098,7 @@ p.Box-end, li.Box-end, div.Box-end {
4123
4098
  background: #D9D9D9;
4124
4099
  font-size: {{normalfontsize}};
4125
4100
  mso-bidi-font-size: 12.0pt;
4126
- font-size: {{bodyfont}};
4101
+ font-family: {{bodyfont}};
4127
4102
  mso-fareast-font-family: Calibri;
4128
4103
  mso-bidi-font-family: "Times New Roman";
4129
4104
  mso-ansi-language: EN-GB;
@@ -4143,7 +4118,7 @@ p.Box-title, li.Box-title, div.Box-title {
4143
4118
  background: #E6E6E6;
4144
4119
  font-size: 13.0pt;
4145
4120
  mso-bidi-font-size: 12.0pt;
4146
- font-size: {{bodyfont}};
4121
+ font-family: {{bodyfont}};
4147
4122
  mso-fareast-font-family: Calibri;
4148
4123
  mso-bidi-font-family: "Times New Roman";
4149
4124
  mso-ansi-language: EN-GB;
@@ -4169,7 +4144,7 @@ p.FrontHead, li.FrontHead, div.FrontHead {
4169
4144
  mso-hyphenate: none;
4170
4145
  font-size: 14.0pt;
4171
4146
  mso-bidi-font-size: {{normalfontsize}};
4172
- font-size: {{headerfont}};
4147
+ font-family: {{headerfont}};
4173
4148
  mso-fareast-font-family: Calibri;
4174
4149
  mso-bidi-font-family: "Times New Roman";
4175
4150
  mso-ansi-language: EN-GB;
@@ -4191,7 +4166,7 @@ p.IndexHead, li.IndexHead, div.IndexHead {
4191
4166
  mso-pagination: widow-orphan;
4192
4167
  mso-outline-level: 1;
4193
4168
  font-size: 14.0pt;
4194
- font-size: {{headerfont}};
4169
+ font-family: {{headerfont}};
4195
4170
  mso-fareast-font-family: Calibri;
4196
4171
  mso-bidi-font-family: "Times New Roman";
4197
4172
  mso-ansi-language: EN-GB;
@@ -4212,7 +4187,7 @@ p.BodyTextIndent22, li.BodyTextIndent22, div.BodyTextIndent22 {
4212
4187
  mso-pagination: widow-orphan;
4213
4188
  font-size: {{normalfontsize}};
4214
4189
  mso-bidi-font-size: {{smallerfontsize}};
4215
- font-size: {{bodyfont}};
4190
+ font-family: {{bodyfont}};
4216
4191
  mso-fareast-font-family: "MS Mincho";
4217
4192
  mso-bidi-font-family: "Times New Roman";
4218
4193
  mso-ansi-language: EN-GB;
@@ -4232,7 +4207,7 @@ p.BodyTextIndent32, li.BodyTextIndent32, div.BodyTextIndent32 {
4232
4207
  mso-pagination: widow-orphan;
4233
4208
  font-size: {{normalfontsize}};
4234
4209
  mso-bidi-font-size: {{smallerfontsize}};
4235
- font-size: {{bodyfont}};
4210
+ font-family: {{bodyfont}};
4236
4211
  mso-fareast-font-family: "MS Mincho";
4237
4212
  mso-bidi-font-family: "Times New Roman";
4238
4213
  mso-ansi-language: EN-GB;
@@ -4253,7 +4228,7 @@ p.Exampleindent2, li.Exampleindent2, div.Exampleindent2 {
4253
4228
  tab-stops: 67.7pt 87.9pt;
4254
4229
  font-size: {{smallerfontsize}};
4255
4230
  mso-bidi-font-size: {{normalfontsize}};
4256
- font-size: {{bodyfont}};
4231
+ font-family: {{bodyfont}};
4257
4232
  mso-fareast-font-family: Calibri;
4258
4233
  mso-bidi-font-family: "Times New Roman";
4259
4234
  mso-ansi-language: EN-GB;
@@ -4274,7 +4249,7 @@ p.Exampleindent2continued, li.Exampleindent2continued, div.Exampleindent2continu
4274
4249
  tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
4275
4250
  font-size: {{smallerfontsize}};
4276
4251
  mso-bidi-font-size: {{normalfontsize}};
4277
- font-size: {{bodyfont}};
4252
+ font-family: {{bodyfont}};
4278
4253
  mso-fareast-font-family: Calibri;
4279
4254
  mso-bidi-font-family: "Times New Roman";
4280
4255
  mso-ansi-language: EN-GB;
@@ -4295,7 +4270,7 @@ p.Noteindent2continued, li.Noteindent2continued, div.Noteindent2continued {
4295
4270
  tab-stops: 87.9pt;
4296
4271
  font-size: {{smallerfontsize}};
4297
4272
  mso-bidi-font-size: {{normalfontsize}};
4298
- font-size: {{bodyfont}};
4273
+ font-family: {{bodyfont}};
4299
4274
  mso-fareast-font-family: Calibri;
4300
4275
  mso-bidi-font-family: "Times New Roman";
4301
4276
  mso-ansi-language: EN-GB;
@@ -4316,7 +4291,7 @@ p.Noteindent2, li.Noteindent2, div.Noteindent2 {
4316
4291
  tab-stops: 87.9pt;
4317
4292
  font-size: {{smallerfontsize}};
4318
4293
  mso-bidi-font-size: {{normalfontsize}};
4319
- font-size: {{bodyfont}};
4294
+ font-family: {{bodyfont}};
4320
4295
  mso-fareast-font-family: Calibri;
4321
4296
  mso-bidi-font-family: "Times New Roman";
4322
4297
  mso-ansi-language: EN-GB;
@@ -4437,23 +4412,28 @@ p.dlnoindent, li.dlnoindent, div.dlnoindent {
4437
4412
  p.zzCover, li.zzCover, div.zzCover {
4438
4413
  mso-style-name: zzCover;
4439
4414
  mso-style-unhide: no;
4440
- mso-style-parent: "Body Text";
4441
4415
  mso-style-link: "zzCover Char";
4442
4416
  margin-top: 0cm;
4443
4417
  margin-right: 0cm;
4444
- margin-bottom: 6.0pt;
4418
+ margin-bottom: 11.0pt;
4445
4419
  margin-left: 0cm;
4446
4420
  text-align: right;
4447
- line-height: 11.5pt;
4421
+ line-height: 12.0pt;
4448
4422
  mso-pagination: widow-orphan;
4449
- tab-stops: 19.85pt 39.7pt 59.55pt 79.4pt 99.25pt 119.05pt 138.9pt 158.75pt 178.6pt 7.0cm;
4450
- font-size: {{normalfontsize}};
4451
- mso-bidi-font-size: 12.0pt;
4423
+ {% if stage_int >= 40 and stage_int < 60 %}
4424
+ font-size: 13.0pt;
4425
+ {% else %}
4426
+ font-size: 12.0pt;
4427
+ {% endif %}
4428
+ mso-bidi-font-size: 10.0pt;
4452
4429
  font-family: {{bodyfont}};
4453
- mso-fareast-font-family: SimSun;
4430
+ mso-fareast-font-family: "MS Mincho";
4454
4431
  mso-bidi-font-family: "Times New Roman";
4432
+ color: black;
4455
4433
  mso-ansi-language: EN-GB;
4456
- mso-fareast-language: EN-US; }
4434
+ mso-fareast-language: JA;
4435
+ font-weight: bold;
4436
+ mso-bidi-font-weight: normal; }
4457
4437
 
4458
4438
  span.zzCoverChar {
4459
4439
  mso-style-name: "zzCover Char";
@@ -4519,6 +4499,6 @@ div.Note table.dl {
4519
4499
  font-size: {{smallerfontsize}};
4520
4500
  margin-left: 1.0cm; }
4521
4501
 
4522
- span.note_label, span.example_label, td.example_label, td.note_label {
4502
+ td.example_label, td.note_label {
4523
4503
  font-size: {{smallerfontsize}};
4524
4504
  font-family: {{bodyfont}}; }