metanorma-iso 2.1.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.
- checksums.yaml +4 -4
- data/lib/html2doc/lists.rb +142 -10
- data/lib/isodoc/iso/base_convert.rb +10 -0
- data/lib/isodoc/iso/html/html_iso_titlepage.html +2 -0
- data/lib/isodoc/iso/html/isodoc-dis.css +170 -252
- data/lib/isodoc/iso/html/isodoc-dis.scss +170 -245
- 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 +6 -2
- data/lib/isodoc/iso/html_convert.rb +5 -0
- 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 +332 -187
- data/lib/isodoc/iso/iso.international-standard.xsl +332 -187
- data/lib/isodoc/iso/metadata.rb +63 -63
- data/lib/isodoc/iso/presentation_bibdata.rb +74 -0
- data/lib/isodoc/iso/presentation_xml_convert.rb +14 -3
- data/lib/isodoc/iso/presentation_xref.rb +8 -2
- data/lib/isodoc/iso/sections.rb +1 -1
- data/lib/isodoc/iso/word_cleanup.rb +3 -0
- data/lib/isodoc/iso/word_convert.rb +6 -3
- data/lib/isodoc/iso/word_dis_cleanup.rb +235 -0
- data/lib/isodoc/iso/word_dis_convert.rb +47 -108
- data/lib/isodoc/iso/xref.rb +34 -6
- data/lib/metanorma/iso/base.rb +20 -1
- data/lib/metanorma/iso/biblio.rng +32 -34
- 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 +28 -1
- data/lib/metanorma/iso/front.rb +31 -6
- data/lib/metanorma/iso/front_id.rb +2 -0
- data/lib/metanorma/iso/isodoc.rng +9 -0
- data/lib/metanorma/iso/isostandard.rng +30 -12
- data/lib/metanorma/iso/macros.rb +29 -0
- data/lib/metanorma/iso/version.rb +1 -1
- data/spec/isodoc/amd_spec.rb +4 -30
- 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 +224 -83
- data/spec/isodoc/postproc_spec.rb +41 -5
- data/spec/isodoc/section_spec.rb +12 -6
- data/spec/isodoc/word_dis_spec.rb +1273 -147
- data/spec/isodoc/xref_spec.rb +87 -13
- data/spec/metanorma/amd_spec.rb +53 -1
- data/spec/metanorma/base_spec.rb +185 -10
- 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/spec_helper.rb +13 -4
- data/spec/vcr_cassettes/withdrawn_iso.yml +27 -27
- 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: "";
|
@@ -402,6 +402,28 @@ p.SourceTitle {
|
|
402
402
|
mso-bidi-font-family: {{bodyfont}};
|
403
403
|
mso-ansi-language: EN-GB; }
|
404
404
|
|
405
|
+
p.ListTitle {
|
406
|
+
mso-style-name: "List title";
|
407
|
+
mso-style-unhide: no;
|
408
|
+
mso-style-qformat: yes;
|
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
|
+
|
405
427
|
p.Tabletitle, li.Tabletitle, div.Tabletitle {
|
406
428
|
mso-style-name: "Table title";
|
407
429
|
mso-style-unhide: no;
|
@@ -552,7 +574,6 @@ span.AnnexFigureTitleChar {
|
|
552
574
|
font-weight: bold; }
|
553
575
|
|
554
576
|
p.Note, div.Note, li.Note {
|
555
|
-
mso-style-name: 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 {
|
|
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;
|
@@ -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
886
|
mso-style-unhide: no;
|
845
887
|
mso-style-next: Normal;
|
846
888
|
margin-top: 0cm;
|
847
|
-
margin-right:
|
889
|
+
margin-right: 14.2pt;
|
848
890
|
margin-bottom: 12.0pt;
|
849
|
-
margin-left:
|
891
|
+
margin-left: 14.2pt;
|
850
892
|
text-align: justify;
|
851
893
|
line-height: 12.0pt;
|
852
894
|
mso-pagination: widow-orphan;
|
853
|
-
tab-stops:
|
895
|
+
tab-stops: 25.7pt 481.15pt;
|
854
896
|
border: none;
|
897
|
+
mso-border-alt: solid blue .5pt;
|
855
898
|
padding: 0cm;
|
856
899
|
mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;
|
857
|
-
font-size:
|
858
|
-
font-
|
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
|
-
mso-style-unhide: no;
|
867
|
-
mso-style-next: Normal;
|
868
|
-
margin-top: 0cm;
|
869
|
-
margin-right: 0pt;
|
870
|
-
margin-bottom: 12.0pt;
|
871
|
-
margin-left: 0pt;
|
872
|
-
text-align: justify;
|
873
|
-
line-height: 12.0pt;
|
874
|
-
mso-pagination: widow-orphan;
|
875
|
-
tab-stops: 20.15pt 25.7pt 481.15pt;
|
876
|
-
border: none;
|
877
|
-
padding: 0cm;
|
878
|
-
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: "
|
882
|
-
mso-bidi-font-family:
|
883
|
-
|
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
|
886
|
-
mso-style-name:
|
909
|
+
p.zzAddress {
|
910
|
+
mso-style-name: zzAddress;
|
887
911
|
margin: 0cm;
|
888
912
|
margin-bottom: 12pt;
|
889
913
|
margin-left: 20.15pt;
|
@@ -892,6 +916,7 @@ 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
|
|
@@ -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
|
1001
|
+
p.Quote, li.Quote {
|
1021
1002
|
mso-style-priority: 99;
|
1022
1003
|
margin-top: 0cm;
|
1023
1004
|
margin-right: 36.0pt;
|
@@ -1033,6 +1014,18 @@ p.Quote, li.Quote, div.Quote {
|
|
1033
1014
|
mso-bidi-font-family: {{bodyfont}};
|
1034
1015
|
mso-ansi-language: EN-GB; }
|
1035
1016
|
|
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
|
+
|
1036
1029
|
p.QuoteAttribution {
|
1037
1030
|
mso-style-name: quoteattribution;
|
1038
1031
|
mso-style-unhide: no;
|
@@ -1050,15 +1043,12 @@ p.QuoteAttribution {
|
|
1050
1043
|
mso-fareast-language: JA; }
|
1051
1044
|
|
1052
1045
|
p.Admonition, li.Admonition, div.Admonition {
|
1053
|
-
mso-style-name: 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 {
|
|
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,7 +1074,7 @@ 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.
|
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;
|
@@ -1505,51 +1500,6 @@ div.doctitle {
|
|
1505
1500
|
text-align: left;
|
1506
1501
|
font-size: 16.0pt; }
|
1507
1502
|
|
1508
|
-
p.boilerplate-copyright, li.boilerplate-copyright, div.boilerplate-copyright {
|
1509
|
-
mso-style-name: boilerplate-copyright;
|
1510
|
-
mso-style-unhide: no;
|
1511
|
-
mso-margin-top-alt: auto;
|
1512
|
-
margin-right: 0cm;
|
1513
|
-
mso-margin-bottom-alt: auto;
|
1514
|
-
margin-left: 0cm;
|
1515
|
-
mso-pagination: widow-orphan;
|
1516
|
-
font-size: 12.0pt;
|
1517
|
-
font-family: "Times New Roman",serif;
|
1518
|
-
mso-fareast-font-family: DengXian;
|
1519
|
-
mso-fareast-theme-font: minor-fareast;
|
1520
|
-
mso-ansi-language: EN-HK;
|
1521
|
-
mso-fareast-language: JA; }
|
1522
|
-
|
1523
|
-
p.boilerplate-name, li.boilerplate-name, div.boilerplate-name {
|
1524
|
-
mso-style-name: boilerplate-name;
|
1525
|
-
mso-style-unhide: no;
|
1526
|
-
mso-margin-top-alt: auto;
|
1527
|
-
margin-right: 0cm;
|
1528
|
-
mso-margin-bottom-alt: auto;
|
1529
|
-
margin-left: 0cm;
|
1530
|
-
mso-pagination: widow-orphan;
|
1531
|
-
font-size: 12.0pt;
|
1532
|
-
font-family: "Times New Roman",serif;
|
1533
|
-
mso-fareast-font-family: DengXian;
|
1534
|
-
mso-fareast-theme-font: minor-fareast;
|
1535
|
-
mso-ansi-language: EN-HK;
|
1536
|
-
mso-fareast-language: JA; }
|
1537
|
-
|
1538
|
-
p.boilerplate-address, li.boilerplate-address, div.boilerplate-address {
|
1539
|
-
mso-style-name: boilerplate-address;
|
1540
|
-
mso-style-unhide: no;
|
1541
|
-
mso-margin-top-alt: auto;
|
1542
|
-
margin-right: 0cm;
|
1543
|
-
mso-margin-bottom-alt: auto;
|
1544
|
-
margin-left: 0cm;
|
1545
|
-
mso-pagination: widow-orphan;
|
1546
|
-
font-size: 12.0pt;
|
1547
|
-
font-family: "Times New Roman",serif;
|
1548
|
-
mso-fareast-font-family: DengXian;
|
1549
|
-
mso-fareast-theme-font: minor-fareast;
|
1550
|
-
mso-ansi-language: EN-HK;
|
1551
|
-
mso-fareast-language: JA; }
|
1552
|
-
|
1553
1503
|
div.rule {
|
1554
1504
|
width: 100%;
|
1555
1505
|
height: 1px;
|
@@ -1715,24 +1665,6 @@ a.TableFootnoteRef, span.TableFootnoteRef, span.tablefootnoteref {
|
|
1715
1665
|
aside {
|
1716
1666
|
font-size: {{footnotefontsize}}; }
|
1717
1667
|
|
1718
|
-
span.notelabel {
|
1719
|
-
mso-style-name: note_label;
|
1720
|
-
mso-style-unhide: no;
|
1721
|
-
mso-ansi-font-size: 10.0pt;
|
1722
|
-
mso-bidi-font-size: 10.0pt;
|
1723
|
-
font-family: {{bodyfont}};
|
1724
|
-
mso-ascii-font-family: Cambria;
|
1725
|
-
mso-hansi-font-family: Cambria; }
|
1726
|
-
|
1727
|
-
span.examplelabel {
|
1728
|
-
mso-style-name: example_label;
|
1729
|
-
mso-style-unhide: no;
|
1730
|
-
mso-ansi-font-size: 10.0pt;
|
1731
|
-
mso-bidi-font-size: 10.0pt;
|
1732
|
-
font-family: {{bodyfont}};
|
1733
|
-
mso-ascii-font-family: Cambria;
|
1734
|
-
mso-hansi-font-family: Cambria; }
|
1735
|
-
|
1736
1668
|
/*
|
1737
1669
|
div.example {
|
1738
1670
|
border:solid black .25pt;
|
@@ -1750,7 +1682,11 @@ div.example {
|
|
1750
1682
|
}
|
1751
1683
|
*/
|
1752
1684
|
p.Example, li.Example, div.Example, td.Example {
|
1753
|
-
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";
|
1754
1690
|
font-size: {{smallerfontsize}};
|
1755
1691
|
font-family: {{bodyfont}}; }
|
1756
1692
|
|
@@ -1765,20 +1701,18 @@ div.Example p.MsoListParagraph {
|
|
1765
1701
|
font-size: {{smallerfontsize}}; }
|
1766
1702
|
|
1767
1703
|
p.Example, li.Example, div.Example {
|
1768
|
-
mso-style-name: Example;
|
1769
1704
|
mso-style-unhide: no;
|
1770
1705
|
mso-style-qformat: yes;
|
1771
|
-
mso-style-link: "Example Char";
|
1772
1706
|
mso-margin-top-alt: auto;
|
1707
|
+
margin-top: 0cm;
|
1773
1708
|
margin-right: 0cm;
|
1774
|
-
|
1709
|
+
margin-bottom: 12.0pt;
|
1775
1710
|
margin-left: 0cm;
|
1776
1711
|
text-align: justify;
|
1777
|
-
line-height:
|
1712
|
+
line-height: 11.0pt;
|
1778
1713
|
mso-pagination: none;
|
1779
|
-
|
1780
|
-
|
1781
|
-
font-family: {{bodyfont}};
|
1714
|
+
mso-pagination: widow-orphan;
|
1715
|
+
tab-stops: 67.7pt;
|
1782
1716
|
mso-fareast-font-family: Calibri;
|
1783
1717
|
mso-bidi-font-family: "Times New Roman";
|
1784
1718
|
mso-ansi-language: EN-GB;
|
@@ -1885,7 +1819,7 @@ span.aucollab {
|
|
1885
1819
|
mso-ascii-font-family: Cambria;
|
1886
1820
|
mso-hansi-font-family: Cambria;
|
1887
1821
|
border: none;
|
1888
|
-
{% if
|
1822
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:silver;{% endif %} }
|
1889
1823
|
|
1890
1824
|
span.audeg {
|
1891
1825
|
mso-style-name: au_deg;
|
@@ -1896,7 +1830,7 @@ span.audeg {
|
|
1896
1830
|
mso-ascii-font-family: Cambria;
|
1897
1831
|
mso-hansi-font-family: Cambria;
|
1898
1832
|
border: none;
|
1899
|
-
{% if
|
1833
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:yellow;{% endif %} }
|
1900
1834
|
|
1901
1835
|
span.aufname {
|
1902
1836
|
mso-style-name: au_fname;
|
@@ -1907,7 +1841,7 @@ span.aufname {
|
|
1907
1841
|
mso-ascii-font-family: Cambria;
|
1908
1842
|
mso-hansi-font-family: Cambria;
|
1909
1843
|
border: none;
|
1910
|
-
{% if
|
1844
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFCC;{% endif %} }
|
1911
1845
|
|
1912
1846
|
span.aurole {
|
1913
1847
|
mso-style-name: au_role;
|
@@ -1918,7 +1852,7 @@ span.aurole {
|
|
1918
1852
|
mso-ascii-font-family: Cambria;
|
1919
1853
|
mso-hansi-font-family: Cambria;
|
1920
1854
|
border: none;
|
1921
|
-
{% if
|
1855
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:olive;{% endif %} }
|
1922
1856
|
|
1923
1857
|
span.ausuffix {
|
1924
1858
|
mso-style-name: au_suffix;
|
@@ -1929,7 +1863,7 @@ span.ausuffix {
|
|
1929
1863
|
mso-ascii-font-family: Cambria;
|
1930
1864
|
mso-hansi-font-family: Cambria;
|
1931
1865
|
border: none;
|
1932
|
-
{% if
|
1866
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:fuchsia;{% endif %} }
|
1933
1867
|
|
1934
1868
|
span.ausurname {
|
1935
1869
|
mso-style-name: au_surname;
|
@@ -1940,7 +1874,7 @@ span.ausurname {
|
|
1940
1874
|
mso-ascii-font-family: Cambria;
|
1941
1875
|
mso-hansi-font-family: Cambria;
|
1942
1876
|
border: none;
|
1943
|
-
{% if
|
1877
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
1944
1878
|
|
1945
1879
|
span.bibbase {
|
1946
1880
|
mso-style-name: bib_base;
|
@@ -1958,7 +1892,7 @@ span.bibarticle {
|
|
1958
1892
|
mso-ascii-font-family: Cambria;
|
1959
1893
|
mso-hansi-font-family: Cambria;
|
1960
1894
|
border: none;
|
1961
|
-
{% if
|
1895
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFFF;{% endif %} }
|
1962
1896
|
|
1963
1897
|
span.bibcomment {
|
1964
1898
|
mso-style-name: bib_comment;
|
@@ -1984,7 +1918,7 @@ span.bibdoi {
|
|
1984
1918
|
mso-ascii-font-family: Cambria;
|
1985
1919
|
mso-hansi-font-family: Cambria;
|
1986
1920
|
border: none;
|
1987
|
-
{% if
|
1921
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
1988
1922
|
|
1989
1923
|
span.bibetal {
|
1990
1924
|
mso-style-name: bib_etal;
|
@@ -1994,7 +1928,7 @@ span.bibetal {
|
|
1994
1928
|
mso-ascii-font-family: Cambria;
|
1995
1929
|
mso-hansi-font-family: Cambria;
|
1996
1930
|
border: none;
|
1997
|
-
{% if
|
1931
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
1998
1932
|
|
1999
1933
|
span.bibfname {
|
2000
1934
|
mso-style-name: bib_fname;
|
@@ -2004,7 +1938,7 @@ span.bibfname {
|
|
2004
1938
|
mso-ascii-font-family: Cambria;
|
2005
1939
|
mso-hansi-font-family: Cambria;
|
2006
1940
|
border: none;
|
2007
|
-
{% if
|
1941
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFCC;{% endif %} }
|
2008
1942
|
|
2009
1943
|
span.bibfpage {
|
2010
1944
|
mso-style-name: bib_fpage;
|
@@ -2014,7 +1948,7 @@ span.bibfpage {
|
|
2014
1948
|
mso-ascii-font-family: Cambria;
|
2015
1949
|
mso-hansi-font-family: Cambria;
|
2016
1950
|
border: none;
|
2017
|
-
{% if
|
1951
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#E6E6E6;{% endif %} }
|
2018
1952
|
|
2019
1953
|
span.bibissue {
|
2020
1954
|
mso-style-name: bib_issue;
|
@@ -2024,7 +1958,7 @@ span.bibissue {
|
|
2024
1958
|
mso-ascii-font-family: Cambria;
|
2025
1959
|
mso-hansi-font-family: Cambria;
|
2026
1960
|
border: none;
|
2027
|
-
{% if
|
1961
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFAB;{% endif %} }
|
2028
1962
|
|
2029
1963
|
span.bibjournal {
|
2030
1964
|
mso-style-name: bib_journal;
|
@@ -2034,7 +1968,7 @@ span.bibjournal {
|
|
2034
1968
|
mso-ascii-font-family: Cambria;
|
2035
1969
|
mso-hansi-font-family: Cambria;
|
2036
1970
|
border: none;
|
2037
|
-
{% if
|
1971
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F9DECF;{% endif %} }
|
2038
1972
|
|
2039
1973
|
span.biblpage {
|
2040
1974
|
mso-style-name: bib_lpage;
|
@@ -2044,7 +1978,7 @@ span.biblpage {
|
|
2044
1978
|
mso-ascii-font-family: Cambria;
|
2045
1979
|
mso-hansi-font-family: Cambria;
|
2046
1980
|
border: none;
|
2047
|
-
{% if
|
1981
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
|
2048
1982
|
|
2049
1983
|
span.bibnumber {
|
2050
1984
|
mso-style-name: bib_number;
|
@@ -2054,7 +1988,7 @@ span.bibnumber {
|
|
2054
1988
|
mso-ascii-font-family: Cambria;
|
2055
1989
|
mso-hansi-font-family: Cambria;
|
2056
1990
|
border: none;
|
2057
|
-
{% if
|
1991
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCCCFF;{% endif %} }
|
2058
1992
|
|
2059
1993
|
span.biborganization {
|
2060
1994
|
mso-style-name: bib_organization;
|
@@ -2064,7 +1998,7 @@ span.biborganization {
|
|
2064
1998
|
mso-ascii-font-family: Cambria;
|
2065
1999
|
mso-hansi-font-family: Cambria;
|
2066
2000
|
border: none;
|
2067
|
-
{% if
|
2001
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
2068
2002
|
|
2069
2003
|
span.bibsuffix {
|
2070
2004
|
mso-style-name: bib_suffix;
|
@@ -2082,7 +2016,7 @@ span.bibsuppl {
|
|
2082
2016
|
mso-ascii-font-family: Cambria;
|
2083
2017
|
mso-hansi-font-family: Cambria;
|
2084
2018
|
border: none;
|
2085
|
-
{% if
|
2019
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC66;{% endif %} }
|
2086
2020
|
|
2087
2021
|
span.bibsurname {
|
2088
2022
|
mso-style-name: bib_surname;
|
@@ -2092,7 +2026,7 @@ span.bibsurname {
|
|
2092
2026
|
mso-ascii-font-family: Cambria;
|
2093
2027
|
mso-hansi-font-family: Cambria;
|
2094
2028
|
border: none;
|
2095
|
-
{% if
|
2029
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF99;{% endif %} }
|
2096
2030
|
|
2097
2031
|
span.bibunpubl {
|
2098
2032
|
mso-style-name: bib_unpubl;
|
@@ -2110,7 +2044,7 @@ span.biburl {
|
|
2110
2044
|
mso-ascii-font-family: Cambria;
|
2111
2045
|
mso-hansi-font-family: Cambria;
|
2112
2046
|
border: none;
|
2113
|
-
{% if
|
2047
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF66;{% endif %} }
|
2114
2048
|
|
2115
2049
|
span.bibvolume {
|
2116
2050
|
mso-style-name: bib_volume;
|
@@ -2120,7 +2054,7 @@ span.bibvolume {
|
|
2120
2054
|
mso-ascii-font-family: Cambria;
|
2121
2055
|
mso-hansi-font-family: Cambria;
|
2122
2056
|
border: none;
|
2123
|
-
{% if
|
2057
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCECFF;{% endif %} }
|
2124
2058
|
|
2125
2059
|
span.bibyear {
|
2126
2060
|
mso-style-name: bib_year;
|
@@ -2130,7 +2064,7 @@ span.bibyear {
|
|
2130
2064
|
mso-ascii-font-family: Cambria;
|
2131
2065
|
mso-hansi-font-family: Cambria;
|
2132
2066
|
border: none;
|
2133
|
-
{% if
|
2067
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCCFF;{% endif %} }
|
2134
2068
|
|
2135
2069
|
span.citebase {
|
2136
2070
|
mso-style-name: cite_base;
|
@@ -2148,7 +2082,7 @@ span.citebib {
|
|
2148
2082
|
mso-ascii-font-family: Cambria;
|
2149
2083
|
mso-hansi-font-family: Cambria;
|
2150
2084
|
border: none;
|
2151
|
-
{% if
|
2085
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFFF;{% endif %} }
|
2152
2086
|
|
2153
2087
|
span.citebox {
|
2154
2088
|
mso-style-name: cite_box;
|
@@ -2166,7 +2100,7 @@ span.citeen {
|
|
2166
2100
|
mso-ascii-font-family: Cambria;
|
2167
2101
|
mso-hansi-font-family: Cambria;
|
2168
2102
|
border: none;
|
2169
|
-
{% if
|
2103
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFF99;{% endif %}
|
2170
2104
|
vertical-align: super; }
|
2171
2105
|
|
2172
2106
|
span.citefig {
|
@@ -2178,7 +2112,7 @@ span.citefig {
|
|
2178
2112
|
mso-hansi-font-family: Cambria;
|
2179
2113
|
color: windowtext;
|
2180
2114
|
border: none;
|
2181
|
-
{% if
|
2115
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
2182
2116
|
|
2183
2117
|
span.citefn {
|
2184
2118
|
mso-style-name: cite_fn;
|
@@ -2190,7 +2124,7 @@ span.citefn {
|
|
2190
2124
|
mso-hansi-font-family: Cambria;
|
2191
2125
|
color: windowtext;
|
2192
2126
|
border: none;
|
2193
|
-
{% if
|
2127
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %}
|
2194
2128
|
vertical-align: baseline; }
|
2195
2129
|
|
2196
2130
|
span.citetbl {
|
@@ -2202,7 +2136,7 @@ span.citetbl {
|
|
2202
2136
|
mso-hansi-font-family: Cambria;
|
2203
2137
|
color: windowtext;
|
2204
2138
|
border: none;
|
2205
|
-
{% if
|
2139
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF9999;{% endif %} }
|
2206
2140
|
|
2207
2141
|
span.stdbase {
|
2208
2142
|
mso-style-name: std_base;
|
@@ -2220,7 +2154,7 @@ span.bibextlink {
|
|
2220
2154
|
mso-ascii-font-family: Cambria;
|
2221
2155
|
mso-hansi-font-family: Cambria;
|
2222
2156
|
border: none;
|
2223
|
-
{% if
|
2157
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#6CCE9D;{% endif %} }
|
2224
2158
|
|
2225
2159
|
span.citeeq {
|
2226
2160
|
mso-style-name: cite_eq;
|
@@ -2230,7 +2164,7 @@ span.citeeq {
|
|
2230
2164
|
mso-ascii-font-family: Cambria;
|
2231
2165
|
mso-hansi-font-family: Cambria;
|
2232
2166
|
border: none;
|
2233
|
-
{% if
|
2167
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFAE37;{% endif %} }
|
2234
2168
|
|
2235
2169
|
span.bibmedline {
|
2236
2170
|
mso-style-name: bib_medline;
|
@@ -2248,7 +2182,7 @@ span.citetfn {
|
|
2248
2182
|
mso-ascii-font-family: Cambria;
|
2249
2183
|
mso-hansi-font-family: Cambria;
|
2250
2184
|
border: none;
|
2251
|
-
{% if
|
2185
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FBBA79;{% endif %} }
|
2252
2186
|
|
2253
2187
|
span.auprefix {
|
2254
2188
|
mso-style-name: au_prefix;
|
@@ -2259,7 +2193,7 @@ span.auprefix {
|
|
2259
2193
|
mso-ascii-font-family: Cambria;
|
2260
2194
|
mso-hansi-font-family: Cambria;
|
2261
2195
|
border: none;
|
2262
|
-
{% if
|
2196
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC99;{% endif %} }
|
2263
2197
|
|
2264
2198
|
span.citeapp {
|
2265
2199
|
mso-style-name: cite_app;
|
@@ -2269,7 +2203,7 @@ span.citeapp {
|
|
2269
2203
|
mso-ascii-font-family: Cambria;
|
2270
2204
|
mso-hansi-font-family: Cambria;
|
2271
2205
|
border: none;
|
2272
|
-
{% if
|
2206
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFF33;{% endif %} }
|
2273
2207
|
|
2274
2208
|
span.citesec {
|
2275
2209
|
mso-style-name: cite_sec;
|
@@ -2279,7 +2213,7 @@ span.citesec {
|
|
2279
2213
|
mso-ascii-font-family: Cambria;
|
2280
2214
|
mso-hansi-font-family: Cambria;
|
2281
2215
|
border: none;
|
2282
|
-
{% if
|
2216
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCCCC;{% endif %} }
|
2283
2217
|
|
2284
2218
|
span.stddocNumber {
|
2285
2219
|
mso-style-name: std_docNumber;
|
@@ -2289,7 +2223,7 @@ span.stddocNumber {
|
|
2289
2223
|
mso-ascii-font-family: Cambria;
|
2290
2224
|
mso-hansi-font-family: Cambria;
|
2291
2225
|
border: none;
|
2292
|
-
{% if
|
2226
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F2DBDB;{% endif %} }
|
2293
2227
|
|
2294
2228
|
span.stddocPartNumber {
|
2295
2229
|
mso-style-name: std_docPartNumber;
|
@@ -2299,7 +2233,7 @@ span.stddocPartNumber {
|
|
2299
2233
|
mso-ascii-font-family: Cambria;
|
2300
2234
|
mso-hansi-font-family: Cambria;
|
2301
2235
|
border: none;
|
2302
|
-
{% if
|
2236
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#EAF1DD;{% endif %} }
|
2303
2237
|
|
2304
2238
|
span.stddocTitle {
|
2305
2239
|
mso-style-name: std_docTitle;
|
@@ -2309,7 +2243,7 @@ span.stddocTitle {
|
|
2309
2243
|
mso-ascii-font-family: Cambria;
|
2310
2244
|
mso-hansi-font-family: Cambria;
|
2311
2245
|
border: none;
|
2312
|
-
{% if
|
2246
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FDE9D9;{% endif %}
|
2313
2247
|
font-style: italic;
|
2314
2248
|
mso-bidi-font-style: normal; }
|
2315
2249
|
|
@@ -2322,7 +2256,7 @@ span.aumember {
|
|
2322
2256
|
mso-ascii-font-family: Cambria;
|
2323
2257
|
mso-hansi-font-family: Cambria;
|
2324
2258
|
border: none;
|
2325
|
-
{% if
|
2259
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %} }
|
2326
2260
|
|
2327
2261
|
span.stdfootnote {
|
2328
2262
|
mso-style-name: std_footnote;
|
@@ -2332,7 +2266,7 @@ span.stdfootnote {
|
|
2332
2266
|
mso-ascii-font-family: Cambria;
|
2333
2267
|
mso-hansi-font-family: Cambria;
|
2334
2268
|
border: none;
|
2335
|
-
{% if
|
2269
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F2F2F2;{% endif %} }
|
2336
2270
|
|
2337
2271
|
span.stdpublisher {
|
2338
2272
|
mso-style-name: std_publisher;
|
@@ -2342,7 +2276,7 @@ span.stdpublisher {
|
|
2342
2276
|
mso-ascii-font-family: Cambria;
|
2343
2277
|
mso-hansi-font-family: Cambria;
|
2344
2278
|
border: none;
|
2345
|
-
{% if
|
2279
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#C6D9F1;{% endif %} }
|
2346
2280
|
|
2347
2281
|
span.stdsection {
|
2348
2282
|
mso-style-name: std_section;
|
@@ -2352,7 +2286,7 @@ span.stdsection {
|
|
2352
2286
|
mso-ascii-font-family: Cambria;
|
2353
2287
|
mso-hansi-font-family: Cambria;
|
2354
2288
|
border: none;
|
2355
|
-
{% if
|
2289
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#E5DFEC;{% endif %} }
|
2356
2290
|
|
2357
2291
|
span.stdyear {
|
2358
2292
|
mso-style-name: std_year;
|
@@ -2362,7 +2296,7 @@ span.stdyear {
|
|
2362
2296
|
mso-ascii-font-family: Cambria;
|
2363
2297
|
mso-hansi-font-family: Cambria;
|
2364
2298
|
border: none;
|
2365
|
-
{% if
|
2299
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#DAEEF3;{% endif %} }
|
2366
2300
|
|
2367
2301
|
span.stddocumentType {
|
2368
2302
|
mso-style-name: std_documentType;
|
@@ -2372,7 +2306,7 @@ span.stddocumentType {
|
|
2372
2306
|
mso-ascii-font-family: Cambria;
|
2373
2307
|
mso-hansi-font-family: Cambria;
|
2374
2308
|
border: none;
|
2375
|
-
{% if
|
2309
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#7DE1DF;{% endif %} }
|
2376
2310
|
|
2377
2311
|
span.bibalt-year {
|
2378
2312
|
mso-style-name: bib_alt-year;
|
@@ -2383,7 +2317,7 @@ span.bibalt-year {
|
|
2383
2317
|
mso-ascii-font-family: Cambria;
|
2384
2318
|
mso-hansi-font-family: Cambria;
|
2385
2319
|
border: none;
|
2386
|
-
{% if
|
2320
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CC99FF;{% endif %} }
|
2387
2321
|
|
2388
2322
|
span.bibbook {
|
2389
2323
|
mso-style-name: bib_book;
|
@@ -2393,7 +2327,7 @@ span.bibbook {
|
|
2393
2327
|
mso-ascii-font-family: Cambria;
|
2394
2328
|
mso-hansi-font-family: Cambria;
|
2395
2329
|
border: none;
|
2396
|
-
{% if
|
2330
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#99CCFF;{% endif %} }
|
2397
2331
|
|
2398
2332
|
span.bibchapterno {
|
2399
2333
|
mso-style-name: bib_chapterno;
|
@@ -2403,7 +2337,7 @@ span.bibchapterno {
|
|
2403
2337
|
mso-ascii-font-family: Cambria;
|
2404
2338
|
mso-hansi-font-family: Cambria;
|
2405
2339
|
border: none;
|
2406
|
-
{% if
|
2340
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
|
2407
2341
|
|
2408
2342
|
span.bibchaptertitle {
|
2409
2343
|
mso-style-name: bib_chaptertitle;
|
@@ -2413,7 +2347,7 @@ span.bibchaptertitle {
|
|
2413
2347
|
mso-ascii-font-family: Cambria;
|
2414
2348
|
mso-hansi-font-family: Cambria;
|
2415
2349
|
border: none;
|
2416
|
-
{% if
|
2350
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF9D5B;{% endif %} }
|
2417
2351
|
|
2418
2352
|
span.bibed-etal {
|
2419
2353
|
mso-style-name: bib_ed-etal;
|
@@ -2423,7 +2357,7 @@ span.bibed-etal {
|
|
2423
2357
|
mso-ascii-font-family: Cambria;
|
2424
2358
|
mso-hansi-font-family: Cambria;
|
2425
2359
|
border: none;
|
2426
|
-
{% if
|
2360
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#00F4EE;{% endif %} }
|
2427
2361
|
|
2428
2362
|
span.bibed-fname {
|
2429
2363
|
mso-style-name: bib_ed-fname;
|
@@ -2433,7 +2367,7 @@ span.bibed-fname {
|
|
2433
2367
|
mso-ascii-font-family: Cambria;
|
2434
2368
|
mso-hansi-font-family: Cambria;
|
2435
2369
|
border: none;
|
2436
|
-
{% if
|
2370
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFFB7;{% endif %} }
|
2437
2371
|
|
2438
2372
|
span.bibeditionno {
|
2439
2373
|
mso-style-name: bib_editionno;
|
@@ -2443,7 +2377,7 @@ span.bibeditionno {
|
|
2443
2377
|
mso-ascii-font-family: Cambria;
|
2444
2378
|
mso-hansi-font-family: Cambria;
|
2445
2379
|
border: none;
|
2446
|
-
{% if
|
2380
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC00;{% endif %} }
|
2447
2381
|
|
2448
2382
|
span.bibed-organization {
|
2449
2383
|
mso-style-name: bib_ed-organization;
|
@@ -2453,7 +2387,7 @@ span.bibed-organization {
|
|
2453
2387
|
mso-ascii-font-family: Cambria;
|
2454
2388
|
mso-hansi-font-family: Cambria;
|
2455
2389
|
border: none;
|
2456
|
-
{% if
|
2390
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FCAAC3;{% endif %} }
|
2457
2391
|
|
2458
2392
|
span.bibed-suffix {
|
2459
2393
|
mso-style-name: bib_ed-suffix;
|
@@ -2463,7 +2397,7 @@ span.bibed-suffix {
|
|
2463
2397
|
mso-ascii-font-family: Cambria;
|
2464
2398
|
mso-hansi-font-family: Cambria;
|
2465
2399
|
border: none;
|
2466
|
-
{% if
|
2400
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
2467
2401
|
|
2468
2402
|
span.bibed-surname {
|
2469
2403
|
mso-style-name: bib_ed-surname;
|
@@ -2473,7 +2407,7 @@ span.bibed-surname {
|
|
2473
2407
|
mso-ascii-font-family: Cambria;
|
2474
2408
|
mso-hansi-font-family: Cambria;
|
2475
2409
|
border: none;
|
2476
|
-
{% if
|
2410
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:yellow;{% endif %} }
|
2477
2411
|
|
2478
2412
|
span.bibinstitution {
|
2479
2413
|
mso-style-name: bib_institution;
|
@@ -2483,7 +2417,7 @@ span.bibinstitution {
|
|
2483
2417
|
mso-ascii-font-family: Cambria;
|
2484
2418
|
mso-hansi-font-family: Cambria;
|
2485
2419
|
border: none;
|
2486
|
-
{% if
|
2420
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCFFCC;{% endif %} }
|
2487
2421
|
|
2488
2422
|
span.bibisbn {
|
2489
2423
|
mso-style-name: bib_isbn;
|
@@ -2492,7 +2426,7 @@ span.bibisbn {
|
|
2492
2426
|
font-family: {{bodyfont}};
|
2493
2427
|
mso-ascii-font-family: Cambria;
|
2494
2428
|
mso-hansi-font-family: Cambria;
|
2495
|
-
{% if
|
2429
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#D9D9D9;{% endif %} }
|
2496
2430
|
|
2497
2431
|
span.biblocation {
|
2498
2432
|
mso-style-name: bib_location;
|
@@ -2502,7 +2436,7 @@ span.biblocation {
|
|
2502
2436
|
mso-ascii-font-family: Cambria;
|
2503
2437
|
mso-hansi-font-family: Cambria;
|
2504
2438
|
border: none;
|
2505
|
-
{% if
|
2439
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCCCC;{% endif %} }
|
2506
2440
|
|
2507
2441
|
span.bibpagecount {
|
2508
2442
|
mso-style-name: bib_pagecount;
|
@@ -2512,7 +2446,7 @@ span.bibpagecount {
|
|
2512
2446
|
mso-ascii-font-family: Cambria;
|
2513
2447
|
mso-hansi-font-family: Cambria;
|
2514
2448
|
border: none;
|
2515
|
-
{% if
|
2449
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:lime;{% endif %} }
|
2516
2450
|
|
2517
2451
|
span.bibpatent {
|
2518
2452
|
mso-style-name: bib_patent;
|
@@ -2522,7 +2456,7 @@ span.bibpatent {
|
|
2522
2456
|
mso-ascii-font-family: Cambria;
|
2523
2457
|
mso-hansi-font-family: Cambria;
|
2524
2458
|
border: none;
|
2525
|
-
{% if
|
2459
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#66FFCC;{% endif %} }
|
2526
2460
|
|
2527
2461
|
span.bibpublisher {
|
2528
2462
|
mso-style-name: bib_publisher;
|
@@ -2532,7 +2466,7 @@ span.bibpublisher {
|
|
2532
2466
|
mso-ascii-font-family: Cambria;
|
2533
2467
|
mso-hansi-font-family: Cambria;
|
2534
2468
|
border: none;
|
2535
|
-
{% if
|
2469
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF99CC;{% endif %} }
|
2536
2470
|
|
2537
2471
|
span.bibreportnum {
|
2538
2472
|
mso-style-name: bib_reportnum;
|
@@ -2542,7 +2476,7 @@ span.bibreportnum {
|
|
2542
2476
|
mso-ascii-font-family: Cambria;
|
2543
2477
|
mso-hansi-font-family: Cambria;
|
2544
2478
|
border: none;
|
2545
|
-
{% if
|
2479
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#CCCCFF;{% endif %} }
|
2546
2480
|
|
2547
2481
|
span.bibschool {
|
2548
2482
|
mso-style-name: bib_school;
|
@@ -2552,7 +2486,7 @@ span.bibschool {
|
|
2552
2486
|
mso-ascii-font-family: Cambria;
|
2553
2487
|
mso-hansi-font-family: Cambria;
|
2554
2488
|
border: none;
|
2555
|
-
{% if
|
2489
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC66;{% endif %} }
|
2556
2490
|
|
2557
2491
|
span.bibseries {
|
2558
2492
|
mso-style-name: bib_series;
|
@@ -2561,7 +2495,7 @@ span.bibseries {
|
|
2561
2495
|
font-family: {{bodyfont}};
|
2562
2496
|
mso-ascii-font-family: Cambria;
|
2563
2497
|
mso-hansi-font-family: Cambria;
|
2564
|
-
{% if
|
2498
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFCC99;{% endif %} }
|
2565
2499
|
|
2566
2500
|
span.bibseriesno {
|
2567
2501
|
mso-style-name: bib_seriesno;
|
@@ -2570,7 +2504,7 @@ span.bibseriesno {
|
|
2570
2504
|
font-family: {{bodyfont}};
|
2571
2505
|
mso-ascii-font-family: Cambria;
|
2572
2506
|
mso-hansi-font-family: Cambria;
|
2573
|
-
{% if
|
2507
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FFFF99;{% endif %} }
|
2574
2508
|
|
2575
2509
|
span.bibtrans {
|
2576
2510
|
mso-style-name: bib_trans;
|
@@ -2579,7 +2513,7 @@ span.bibtrans {
|
|
2579
2513
|
font-family: {{bodyfont}};
|
2580
2514
|
mso-ascii-font-family: Cambria;
|
2581
2515
|
mso-hansi-font-family: Cambria;
|
2582
|
-
{% if
|
2516
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#99CC00;{% endif %} }
|
2583
2517
|
|
2584
2518
|
span.stdsuppl {
|
2585
2519
|
mso-style-name: std_suppl;
|
@@ -2589,7 +2523,7 @@ span.stdsuppl {
|
|
2589
2523
|
mso-ascii-font-family: Cambria;
|
2590
2524
|
mso-hansi-font-family: Cambria;
|
2591
2525
|
border: none;
|
2592
|
-
{% if
|
2526
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#F6FBB5;{% endif %} }
|
2593
2527
|
|
2594
2528
|
span.citesection {
|
2595
2529
|
mso-style-name: cite_section;
|
@@ -2599,7 +2533,7 @@ span.citesection {
|
|
2599
2533
|
mso-ascii-font-family: Cambria;
|
2600
2534
|
mso-hansi-font-family: Cambria;
|
2601
2535
|
border: none;
|
2602
|
-
{% if
|
2536
|
+
{% if stage_int >= 40 and stage_int < 60 %}background:#FF7C80;{% endif %} }
|
2603
2537
|
|
2604
2538
|
p.BaseText, li.BaseText, div.BaseText {
|
2605
2539
|
mso-style-name: Base_Text;
|
@@ -3030,27 +2964,6 @@ p.dl, li.dl, div.dl {
|
|
3030
2964
|
mso-ansi-language: EN-GB;
|
3031
2965
|
mso-fareast-language: EN-US; }
|
3032
2966
|
|
3033
|
-
p.Example0, li.Example0, div.Example0 {
|
3034
|
-
mso-style-name: Example;
|
3035
|
-
mso-style-unhide: no;
|
3036
|
-
mso-style-parent: Base_Text;
|
3037
|
-
margin-top: 0cm;
|
3038
|
-
margin-right: 0cm;
|
3039
|
-
margin-bottom: 12.0pt;
|
3040
|
-
margin-left: 0cm;
|
3041
|
-
text-align: justify;
|
3042
|
-
text-justify: inter-ideograph;
|
3043
|
-
line-height: 11.0pt;
|
3044
|
-
mso-pagination: widow-orphan;
|
3045
|
-
tab-stops: 67.7pt;
|
3046
|
-
font-size: 10.0pt;
|
3047
|
-
mso-bidi-font-size: {{normalfontsize}};
|
3048
|
-
font-family: {{bodyfont}};
|
3049
|
-
mso-fareast-font-family: Calibri;
|
3050
|
-
mso-bidi-font-family: "Times New Roman";
|
3051
|
-
mso-ansi-language: EN-GB;
|
3052
|
-
mso-fareast-language: EN-US; }
|
3053
|
-
|
3054
2967
|
p.Examplecontinued, li.Examplecontinued, div.Examplecontinued {
|
3055
2968
|
mso-style-name: "Example continued";
|
3056
2969
|
mso-style-unhide: no;
|
@@ -4499,23 +4412,28 @@ p.dlnoindent, li.dlnoindent, div.dlnoindent {
|
|
4499
4412
|
p.zzCover, li.zzCover, div.zzCover {
|
4500
4413
|
mso-style-name: zzCover;
|
4501
4414
|
mso-style-unhide: no;
|
4502
|
-
mso-style-parent: "Body Text";
|
4503
4415
|
mso-style-link: "zzCover Char";
|
4504
4416
|
margin-top: 0cm;
|
4505
4417
|
margin-right: 0cm;
|
4506
|
-
margin-bottom:
|
4418
|
+
margin-bottom: 11.0pt;
|
4507
4419
|
margin-left: 0cm;
|
4508
4420
|
text-align: right;
|
4509
|
-
line-height:
|
4421
|
+
line-height: 12.0pt;
|
4510
4422
|
mso-pagination: widow-orphan;
|
4511
|
-
|
4512
|
-
font-size:
|
4513
|
-
|
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;
|
4514
4429
|
font-family: {{bodyfont}};
|
4515
|
-
mso-fareast-font-family:
|
4430
|
+
mso-fareast-font-family: "MS Mincho";
|
4516
4431
|
mso-bidi-font-family: "Times New Roman";
|
4432
|
+
color: black;
|
4517
4433
|
mso-ansi-language: EN-GB;
|
4518
|
-
mso-fareast-language:
|
4434
|
+
mso-fareast-language: JA;
|
4435
|
+
font-weight: bold;
|
4436
|
+
mso-bidi-font-weight: normal; }
|
4519
4437
|
|
4520
4438
|
span.zzCoverChar {
|
4521
4439
|
mso-style-name: "zzCover Char";
|
@@ -4581,6 +4499,6 @@ div.Note table.dl {
|
|
4581
4499
|
font-size: {{smallerfontsize}};
|
4582
4500
|
margin-left: 1.0cm; }
|
4583
4501
|
|
4584
|
-
|
4502
|
+
td.example_label, td.note_label {
|
4585
4503
|
font-size: {{smallerfontsize}};
|
4586
4504
|
font-family: {{bodyfont}}; }
|