isodoc 0.5.9 → 0.6.0
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/isodoc.gemspec +1 -0
 - data/lib/isodoc.rb +2 -0
 - data/lib/isodoc/convert.rb +17 -1
 - data/lib/isodoc/footnotes.rb +8 -3
 - data/lib/isodoc/html.rb +65 -27
 - data/lib/isodoc/i18n-en.yaml +1 -1
 - data/lib/isodoc/iso/convert.rb +46 -0
 - data/lib/isodoc/iso/html/header.html +184 -0
 - data/lib/isodoc/iso/html/html_iso_intro.html +34 -0
 - data/lib/isodoc/iso/html/html_iso_titlepage.html +32 -0
 - data/lib/isodoc/iso/html/htmlstyle.scss +46 -0
 - data/lib/isodoc/iso/html/isodoc.scss +679 -0
 - data/lib/isodoc/iso/html/scripts.html +174 -0
 - data/lib/isodoc/iso/html/style-human.scss +1277 -0
 - data/lib/isodoc/iso/html/style-iso.scss +1257 -0
 - data/lib/isodoc/iso/html/word_iso_intro.html +72 -0
 - data/lib/isodoc/iso/html/word_iso_titlepage.html +58 -0
 - data/lib/isodoc/iso/html/wordstyle.scss +1135 -0
 - data/lib/isodoc/iso/wordconvert.rb +34 -0
 - data/lib/isodoc/iso2wordhtml.rb +17 -23
 - data/lib/isodoc/section.rb +1 -1
 - data/lib/isodoc/version.rb +1 -1
 - data/lib/isodoc/wordconvert/comments.rb +0 -15
 - data/lib/isodoc/wordconvert/convert.rb +1 -0
 - data/lib/isodoc/wordconvert/footnotes.rb +0 -12
 - data/lib/isodoc/wordconvert/postprocess.rb +110 -0
 - data/lib/isodoc/wordconvert/wordconvertmodule.rb +18 -130
 - data/lib/isodoc/xref_sect_gen.rb +7 -4
 - data/spec/assets/scripts.html +3 -1
 - data/spec/isodoc/blocks_spec.rb +97 -211
 - data/spec/isodoc/cleanup_spec.rb +27 -0
 - data/spec/isodoc/footnotes_spec.rb +40 -53
 - data/spec/isodoc/i18n_spec.rb +4 -56
 - data/spec/isodoc/inline_spec.rb +7 -98
 - data/spec/isodoc/iso_spec.rb +89 -0
 - data/spec/isodoc/lists_spec.rb +5 -57
 - data/spec/isodoc/postproc_spec.rb +43 -79
 - data/spec/isodoc/ref_spec.rb +4 -17
 - data/spec/isodoc/section_spec.rb +11 -24
 - data/spec/isodoc/table_spec.rb +61 -76
 - data/spec/isodoc/terms_spec.rb +1 -13
 - data/spec/isodoc/xref_spec.rb +21 -164
 - data/spec/spec_helper.rb +21 -1
 - metadata +31 -2
 
| 
         @@ -0,0 +1,1257 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
                0 CSS RESET
         
     | 
| 
      
 3 
     | 
    
         
            +
            */
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            /* http://meyerweb.com/eric/tools/css/reset/
         
     | 
| 
      
 6 
     | 
    
         
            +
               v2.0 | 20110126
         
     | 
| 
      
 7 
     | 
    
         
            +
               License: none (public domain)
         
     | 
| 
      
 8 
     | 
    
         
            +
            */
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            html, body, div, span, applet, object, iframe,
         
     | 
| 
      
 11 
     | 
    
         
            +
            h1, h2, h3, h4, h5, h6, p, blockquote, pre,
         
     | 
| 
      
 12 
     | 
    
         
            +
            a, abbr, acronym, address, big, cite, code,
         
     | 
| 
      
 13 
     | 
    
         
            +
            del, dfn, em, img, ins, kbd, q, s, samp,
         
     | 
| 
      
 14 
     | 
    
         
            +
            small, strike, strong, sub, sup, tt, var,
         
     | 
| 
      
 15 
     | 
    
         
            +
            b, u, i, center,
         
     | 
| 
      
 16 
     | 
    
         
            +
            ol, ul, li,
         
     | 
| 
      
 17 
     | 
    
         
            +
            fieldset, form, label, legend,
         
     | 
| 
      
 18 
     | 
    
         
            +
            table, caption, tbody, tfoot, thead, tr, th, td,
         
     | 
| 
      
 19 
     | 
    
         
            +
            article, aside, canvas, details, embed,
         
     | 
| 
      
 20 
     | 
    
         
            +
            figure, figcaption, footer, header, hgroup,
         
     | 
| 
      
 21 
     | 
    
         
            +
            menu, nav, output, ruby, section, summary,
         
     | 
| 
      
 22 
     | 
    
         
            +
            time, mark, audio, video {
         
     | 
| 
      
 23 
     | 
    
         
            +
                    margin: 0;
         
     | 
| 
      
 24 
     | 
    
         
            +
                    padding: 0;
         
     | 
| 
      
 25 
     | 
    
         
            +
            }
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            html, body, div, span, applet, object, iframe,
         
     | 
| 
      
 28 
     | 
    
         
            +
            h1, h2, h3, h4, h5, h6, p, blockquote, pre,
         
     | 
| 
      
 29 
     | 
    
         
            +
            a, abbr, acronym, address, big, cite, code,
         
     | 
| 
      
 30 
     | 
    
         
            +
            del, dfn, em, img, ins, kbd, q, s, samp,
         
     | 
| 
      
 31 
     | 
    
         
            +
            small, strike, strong, sub, sup, tt, var,
         
     | 
| 
      
 32 
     | 
    
         
            +
            b, u, i, center,
         
     | 
| 
      
 33 
     | 
    
         
            +
            dl, dt, dd, ol, ul, li,
         
     | 
| 
      
 34 
     | 
    
         
            +
            fieldset, form, label, legend,
         
     | 
| 
      
 35 
     | 
    
         
            +
            table, caption, tbody, tfoot, thead, tr, th, td,
         
     | 
| 
      
 36 
     | 
    
         
            +
            article, aside, canvas, details, embed,
         
     | 
| 
      
 37 
     | 
    
         
            +
            figure, figcaption, footer, header, hgroup,
         
     | 
| 
      
 38 
     | 
    
         
            +
            menu, nav, output, ruby, section, summary,
         
     | 
| 
      
 39 
     | 
    
         
            +
            time, mark, audio, video {
         
     | 
| 
      
 40 
     | 
    
         
            +
                    border: 0;
         
     | 
| 
      
 41 
     | 
    
         
            +
                    font-size: 100%;
         
     | 
| 
      
 42 
     | 
    
         
            +
            }
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            html, body, div, span, applet, object, iframe,
         
     | 
| 
      
 45 
     | 
    
         
            +
            h1, h2, h3, h4, h5, h6, p, blockquote, pre,
         
     | 
| 
      
 46 
     | 
    
         
            +
            a, abbr, acronym, address, big, cite, code,
         
     | 
| 
      
 47 
     | 
    
         
            +
            del, dfn, em, img, ins, kbd, q, s, samp,
         
     | 
| 
      
 48 
     | 
    
         
            +
            small, strike, strong, tt, var,
         
     | 
| 
      
 49 
     | 
    
         
            +
            b, u, i, center,
         
     | 
| 
      
 50 
     | 
    
         
            +
            dl, dt, dd, ol, ul, li,
         
     | 
| 
      
 51 
     | 
    
         
            +
            fieldset, form, label, legend,
         
     | 
| 
      
 52 
     | 
    
         
            +
            table, caption, tbody, tfoot, thead, tr, th, td,
         
     | 
| 
      
 53 
     | 
    
         
            +
            article, aside, canvas, details, embed,
         
     | 
| 
      
 54 
     | 
    
         
            +
            figure, figcaption, footer, header, hgroup,
         
     | 
| 
      
 55 
     | 
    
         
            +
            menu, nav, output, ruby, section, summary,
         
     | 
| 
      
 56 
     | 
    
         
            +
            time, mark, audio, video {
         
     | 
| 
      
 57 
     | 
    
         
            +
                    vertical-align: baseline;
         
     | 
| 
      
 58 
     | 
    
         
            +
            }
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            html, body, div, span, applet, object, iframe,
         
     | 
| 
      
 61 
     | 
    
         
            +
            p, blockquote, pre,
         
     | 
| 
      
 62 
     | 
    
         
            +
            a, abbr, acronym, address, big, cite, code,
         
     | 
| 
      
 63 
     | 
    
         
            +
            del, dfn, em, img, ins, kbd, q, s, samp,
         
     | 
| 
      
 64 
     | 
    
         
            +
            small, strike, strong, sub, sup, tt, var,
         
     | 
| 
      
 65 
     | 
    
         
            +
            b, u, i, center,
         
     | 
| 
      
 66 
     | 
    
         
            +
            dl, dt, dd, ol, ul, li,
         
     | 
| 
      
 67 
     | 
    
         
            +
            fieldset, form, label, legend,
         
     | 
| 
      
 68 
     | 
    
         
            +
            table, caption, tbody, tfoot, thead, tr, th, td,
         
     | 
| 
      
 69 
     | 
    
         
            +
            article, aside, canvas, details, embed,
         
     | 
| 
      
 70 
     | 
    
         
            +
            figure, figcaption, footer, header, hgroup,
         
     | 
| 
      
 71 
     | 
    
         
            +
            menu, nav, output, ruby, section, summary,
         
     | 
| 
      
 72 
     | 
    
         
            +
            time, mark, audio, video {
         
     | 
| 
      
 73 
     | 
    
         
            +
              font-family: $bodyfont;
         
     | 
| 
      
 74 
     | 
    
         
            +
            }
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
            dl {
         
     | 
| 
      
 77 
     | 
    
         
            +
              display: grid;
         
     | 
| 
      
 78 
     | 
    
         
            +
              grid-template-columns: max-content auto;
         
     | 
| 
      
 79 
     | 
    
         
            +
            }
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            dt {
         
     | 
| 
      
 82 
     | 
    
         
            +
              grid-column-start: 1;
         
     | 
| 
      
 83 
     | 
    
         
            +
            }
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
            dd {
         
     | 
| 
      
 86 
     | 
    
         
            +
              grid-column-start: 2;
         
     | 
| 
      
 87 
     | 
    
         
            +
            }
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
            dd p {
         
     | 
| 
      
 90 
     | 
    
         
            +
              margin-top: 0px;
         
     | 
| 
      
 91 
     | 
    
         
            +
            }
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
            h1, h2, h3, h4, h5, h6, .h2Annex {
         
     | 
| 
      
 94 
     | 
    
         
            +
              font-family: $headerfont;
         
     | 
| 
      
 95 
     | 
    
         
            +
            }
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
            /* HTML5 display-role reset for older browsers */
         
     | 
| 
      
 99 
     | 
    
         
            +
            article, aside, details, figcaption, figure,
         
     | 
| 
      
 100 
     | 
    
         
            +
            footer, header, hgroup, menu, nav, section {
         
     | 
| 
      
 101 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 102 
     | 
    
         
            +
            }
         
     | 
| 
      
 103 
     | 
    
         
            +
            body {
         
     | 
| 
      
 104 
     | 
    
         
            +
            	line-height: 1.3;
         
     | 
| 
      
 105 
     | 
    
         
            +
            }
         
     | 
| 
      
 106 
     | 
    
         
            +
            blockquote, q {
         
     | 
| 
      
 107 
     | 
    
         
            +
            	quotes: none;
         
     | 
| 
      
 108 
     | 
    
         
            +
            }
         
     | 
| 
      
 109 
     | 
    
         
            +
            blockquote:before, blockquote:after,
         
     | 
| 
      
 110 
     | 
    
         
            +
            q:before, q:after {
         
     | 
| 
      
 111 
     | 
    
         
            +
            	content: '';
         
     | 
| 
      
 112 
     | 
    
         
            +
            	content: none;
         
     | 
| 
      
 113 
     | 
    
         
            +
            }
         
     | 
| 
      
 114 
     | 
    
         
            +
            table {
         
     | 
| 
      
 115 
     | 
    
         
            +
            	border-collapse: collapse;
         
     | 
| 
      
 116 
     | 
    
         
            +
            	border-spacing: 0;
         
     | 
| 
      
 117 
     | 
    
         
            +
            }
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
            /* New CSS */
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            body {
         
     | 
| 
      
 122 
     | 
    
         
            +
                margin-left: 298px;
         
     | 
| 
      
 123 
     | 
    
         
            +
                margin-right: 2em;
         
     | 
| 
      
 124 
     | 
    
         
            +
            }
         
     | 
| 
      
 125 
     | 
    
         
            +
             
     | 
| 
      
 126 
     | 
    
         
            +
            main {
         
     | 
| 
      
 127 
     | 
    
         
            +
                padding-left: 4em;
         
     | 
| 
      
 128 
     | 
    
         
            +
                padding-right: 2em;
         
     | 
| 
      
 129 
     | 
    
         
            +
            }
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
            .WordSection1, .WordSection2 {
         
     | 
| 
      
 132 
     | 
    
         
            +
                padding-left: 4em;
         
     | 
| 
      
 133 
     | 
    
         
            +
                padding-top: 2em;
         
     | 
| 
      
 134 
     | 
    
         
            +
            }
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
            .coverpage_docnumber, .coverpage_techcommittee {
         
     | 
| 
      
 137 
     | 
    
         
            +
                text-align: right;
         
     | 
| 
      
 138 
     | 
    
         
            +
                font-size: 0.9em;
         
     | 
| 
      
 139 
     | 
    
         
            +
                line-height: 0.5em;
         
     | 
| 
      
 140 
     | 
    
         
            +
            }
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
            .doctitle-en, .doctitle-fr {
         
     | 
| 
      
 143 
     | 
    
         
            +
                margin-top: 2em;
         
     | 
| 
      
 144 
     | 
    
         
            +
                text-align: left;
         
     | 
| 
      
 145 
     | 
    
         
            +
            }
         
     | 
| 
      
 146 
     | 
    
         
            +
             
     | 
| 
      
 147 
     | 
    
         
            +
            .doctitle-en {
         
     | 
| 
      
 148 
     | 
    
         
            +
                padding-left: 3em;
         
     | 
| 
      
 149 
     | 
    
         
            +
                margin-left: -3em;
         
     | 
| 
      
 150 
     | 
    
         
            +
                padding-top: 2em;
         
     | 
| 
      
 151 
     | 
    
         
            +
                padding-bottom: 2em;
         
     | 
| 
      
 152 
     | 
    
         
            +
                
         
     | 
| 
      
 153 
     | 
    
         
            +
            }
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
            .doctitle-en span {
         
     | 
| 
      
 156 
     | 
    
         
            +
                font-size: 2em;
         
     | 
| 
      
 157 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 158 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 159 
     | 
    
         
            +
            }
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
      
 162 
     | 
    
         
            +
            .doctitle-fr span {
         
     | 
| 
      
 163 
     | 
    
         
            +
                font-size: 1.5em;
         
     | 
| 
      
 164 
     | 
    
         
            +
                line-height: 1.2em;
         
     | 
| 
      
 165 
     | 
    
         
            +
                font-style: italic;
         
     | 
| 
      
 166 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 167 
     | 
    
         
            +
            }
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
            span.title {
         
     | 
| 
      
 170 
     | 
    
         
            +
                text-transform: uppercase;
         
     | 
| 
      
 171 
     | 
    
         
            +
                font-size: 1em;
         
     | 
| 
      
 172 
     | 
    
         
            +
                font-weight: 800;
         
     | 
| 
      
 173 
     | 
    
         
            +
            }
         
     | 
| 
      
 174 
     | 
    
         
            +
             
     | 
| 
      
 175 
     | 
    
         
            +
            .coverpage_docstage {
         
     | 
| 
      
 176 
     | 
    
         
            +
                margin-top: 2em;
         
     | 
| 
      
 177 
     | 
    
         
            +
                margin-bottom: 2em;
         
     | 
| 
      
 178 
     | 
    
         
            +
            }
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
            .coverpage_warning {
         
     | 
| 
      
 181 
     | 
    
         
            +
                font-size: 0.9em;
         
     | 
| 
      
 182 
     | 
    
         
            +
                font-style: italic;
         
     | 
| 
      
 183 
     | 
    
         
            +
                padding-bottom: 1em;
         
     | 
| 
      
 184 
     | 
    
         
            +
            }
         
     | 
| 
      
 185 
     | 
    
         
            +
             
     | 
| 
      
 186 
     | 
    
         
            +
            .copyright .year, .copyright .message,
         
     | 
| 
      
 187 
     | 
    
         
            +
            .copyright .name, .copyright .address {
         
     | 
| 
      
 188 
     | 
    
         
            +
                margin-top: 1em;
         
     | 
| 
      
 189 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 190 
     | 
    
         
            +
            }
         
     | 
| 
      
 191 
     | 
    
         
            +
             
     | 
| 
      
 192 
     | 
    
         
            +
            .copyright .message, .copyright .name, 
         
     | 
| 
      
 193 
     | 
    
         
            +
            .copyright .address {
         
     | 
| 
      
 194 
     | 
    
         
            +
                font-size: 0.9em;
         
     | 
| 
      
 195 
     | 
    
         
            +
            }
         
     | 
| 
      
 196 
     | 
    
         
            +
             
     | 
| 
      
 197 
     | 
    
         
            +
            /* TYPOGRAPHY */
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
            h1 {
         
     | 
| 
      
 200 
     | 
    
         
            +
                font-size: 1.5em;
         
     | 
| 
      
 201 
     | 
    
         
            +
                line-height: 2em;
         
     | 
| 
      
 202 
     | 
    
         
            +
                margin-top: 2em;
         
     | 
| 
      
 203 
     | 
    
         
            +
                margin-bottom: 1em;
         
     | 
| 
      
 204 
     | 
    
         
            +
            }
         
     | 
| 
      
 205 
     | 
    
         
            +
             
     | 
| 
      
 206 
     | 
    
         
            +
            h2 {
         
     | 
| 
      
 207 
     | 
    
         
            +
                font-size: 1.2em;
         
     | 
| 
      
 208 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 209 
     | 
    
         
            +
                margin-top: 2em;
         
     | 
| 
      
 210 
     | 
    
         
            +
                margin-bottom: 1em;
         
     | 
| 
      
 211 
     | 
    
         
            +
            }
         
     | 
| 
      
 212 
     | 
    
         
            +
             
     | 
| 
      
 213 
     | 
    
         
            +
            h1, h2, h3, h4, h5, h6 {
         
     | 
| 
      
 214 
     | 
    
         
            +
                line-height: 1.2;
         
     | 
| 
      
 215 
     | 
    
         
            +
            }
         
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
            p {
         
     | 
| 
      
 218 
     | 
    
         
            +
                margin-top: 1em;
         
     | 
| 
      
 219 
     | 
    
         
            +
                margin-bottom: 1em;
         
     | 
| 
      
 220 
     | 
    
         
            +
            }
         
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
      
 222 
     | 
    
         
            +
            p.zzSTDTitle1 {
         
     | 
| 
      
 223 
     | 
    
         
            +
                font-weight: 700;
         
     | 
| 
      
 224 
     | 
    
         
            +
                font-size: 1.5em;
         
     | 
| 
      
 225 
     | 
    
         
            +
            }
         
     | 
| 
      
 226 
     | 
    
         
            +
             
     | 
| 
      
 227 
     | 
    
         
            +
            span.obligation {
         
     | 
| 
      
 228 
     | 
    
         
            +
                font-weight: 400;
         
     | 
| 
      
 229 
     | 
    
         
            +
            }
         
     | 
| 
      
 230 
     | 
    
         
            +
             
     | 
| 
      
 231 
     | 
    
         
            +
            a {
         
     | 
| 
      
 232 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 233 
     | 
    
         
            +
                text-decoration-color: black;
         
     | 
| 
      
 234 
     | 
    
         
            +
            }
         
     | 
| 
      
 235 
     | 
    
         
            +
             
     | 
| 
      
 236 
     | 
    
         
            +
            nav a {
         
     | 
| 
      
 237 
     | 
    
         
            +
                text-decoration: none;
         
     | 
| 
      
 238 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 239 
     | 
    
         
            +
            }
         
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
            h2 p {
         
     | 
| 
      
 242 
     | 
    
         
            +
                display: inline;
         
     | 
| 
      
 243 
     | 
    
         
            +
            }
         
     | 
| 
      
 244 
     | 
    
         
            +
             
     | 
| 
      
 245 
     | 
    
         
            +
              
         
     | 
| 
      
 246 
     | 
    
         
            +
              li {
         
     | 
| 
      
 247 
     | 
    
         
            +
                list-style: none;
         
     | 
| 
      
 248 
     | 
    
         
            +
              }
         
     | 
| 
      
 249 
     | 
    
         
            +
              
         
     | 
| 
      
 250 
     | 
    
         
            +
              li p:before {
         
     | 
| 
      
 251 
     | 
    
         
            +
                content: "—";
         
     | 
| 
      
 252 
     | 
    
         
            +
                display: inline-block;
         
     | 
| 
      
 253 
     | 
    
         
            +
                width: 1em;
         
     | 
| 
      
 254 
     | 
    
         
            +
                margin-left: -1.5em;
         
     | 
| 
      
 255 
     | 
    
         
            +
                margin-right: 0.5em;
         
     | 
| 
      
 256 
     | 
    
         
            +
              }
         
     | 
| 
      
 257 
     | 
    
         
            +
             
     | 
| 
      
 258 
     | 
    
         
            +
              li p {
         
     | 
| 
      
 259 
     | 
    
         
            +
                  /* display: inline-block; */
         
     | 
| 
      
 260 
     | 
    
         
            +
                  margin-bottom: 0.6em;
         
     | 
| 
      
 261 
     | 
    
         
            +
                  line-height: 1.2;
         
     | 
| 
      
 262 
     | 
    
         
            +
              }
         
     | 
| 
      
 263 
     | 
    
         
            +
              
         
     | 
| 
      
 264 
     | 
    
         
            +
             
     | 
| 
      
 265 
     | 
    
         
            +
              #toc li:before {
         
     | 
| 
      
 266 
     | 
    
         
            +
                content: " ";
         
     | 
| 
      
 267 
     | 
    
         
            +
                display: none;
         
     | 
| 
      
 268 
     | 
    
         
            +
              }
         
     | 
| 
      
 269 
     | 
    
         
            +
             
     | 
| 
      
 270 
     | 
    
         
            +
            p.AltTerms {
         
     | 
| 
      
 271 
     | 
    
         
            +
                margin-bottom: 0;
         
     | 
| 
      
 272 
     | 
    
         
            +
                font-style: italic;
         
     | 
| 
      
 273 
     | 
    
         
            +
                margin-left: 2em;
         
     | 
| 
      
 274 
     | 
    
         
            +
            }
         
     | 
| 
      
 275 
     | 
    
         
            +
             
     | 
| 
      
 276 
     | 
    
         
            +
            p.Terms {
         
     | 
| 
      
 277 
     | 
    
         
            +
                font-weight: bold;
         
     | 
| 
      
 278 
     | 
    
         
            +
            }
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
            /* Navigation*/
         
     | 
| 
      
 281 
     | 
    
         
            +
             
     | 
| 
      
 282 
     | 
    
         
            +
            @media (min-width: 768px) {
         
     | 
| 
      
 283 
     | 
    
         
            +
                nav {
         
     | 
| 
      
 284 
     | 
    
         
            +
                    position: fixed;
         
     | 
| 
      
 285 
     | 
    
         
            +
                    top: 0;
         
     | 
| 
      
 286 
     | 
    
         
            +
                    bottom: 0;
         
     | 
| 
      
 287 
     | 
    
         
            +
                    left: 0;
         
     | 
| 
      
 288 
     | 
    
         
            +
                    width: 278px;
         
     | 
| 
      
 289 
     | 
    
         
            +
                    font-size: 0.9em;
         
     | 
| 
      
 290 
     | 
    
         
            +
                    overflow: auto;
         
     | 
| 
      
 291 
     | 
    
         
            +
                    padding: 0 0 0 20px;
         
     | 
| 
      
 292 
     | 
    
         
            +
                    background-color:#f7f7f7; 
         
     | 
| 
      
 293 
     | 
    
         
            +
                    line-height: 1.2em;
         
     | 
| 
      
 294 
     | 
    
         
            +
                }
         
     | 
| 
      
 295 
     | 
    
         
            +
             
     | 
| 
      
 296 
     | 
    
         
            +
                #toggle {
         
     | 
| 
      
 297 
     | 
    
         
            +
                    position: fixed;
         
     | 
| 
      
 298 
     | 
    
         
            +
                    height: 100%;
         
     | 
| 
      
 299 
     | 
    
         
            +
                    width: 30px;
         
     | 
| 
      
 300 
     | 
    
         
            +
                    border-right: solid black 1px;
         
     | 
| 
      
 301 
     | 
    
         
            +
                    background-color: #f7f7f7;
         
     | 
| 
      
 302 
     | 
    
         
            +
                    color: black!important;
         
     | 
| 
      
 303 
     | 
    
         
            +
                    cursor: pointer;
         
     | 
| 
      
 304 
     | 
    
         
            +
                    margin-left: -4em;
         
     | 
| 
      
 305 
     | 
    
         
            +
                    margin-top: -2em;
         
     | 
| 
      
 306 
     | 
    
         
            +
                }
         
     | 
| 
      
 307 
     | 
    
         
            +
             
     | 
| 
      
 308 
     | 
    
         
            +
                #toggle span {
         
     | 
| 
      
 309 
     | 
    
         
            +
                    text-align: center;
         
     | 
| 
      
 310 
     | 
    
         
            +
                    width: 100%;
         
     | 
| 
      
 311 
     | 
    
         
            +
                    position: absolute;             
         
     | 
| 
      
 312 
     | 
    
         
            +
                    top: 50%;
         
     | 
| 
      
 313 
     | 
    
         
            +
                    transform: translate(0, -50%);
         
     | 
| 
      
 314 
     | 
    
         
            +
                    
         
     | 
| 
      
 315 
     | 
    
         
            +
                }
         
     | 
| 
      
 316 
     | 
    
         
            +
             
     | 
| 
      
 317 
     | 
    
         
            +
             
     | 
| 
      
 318 
     | 
    
         
            +
                .container {
         
     | 
| 
      
 319 
     | 
    
         
            +
                    padding-left: 360px;
         
     | 
| 
      
 320 
     | 
    
         
            +
                }
         
     | 
| 
      
 321 
     | 
    
         
            +
             
     | 
| 
      
 322 
     | 
    
         
            +
                .rule.toc {
         
     | 
| 
      
 323 
     | 
    
         
            +
                    display: none;
         
     | 
| 
      
 324 
     | 
    
         
            +
                }
         
     | 
| 
      
 325 
     | 
    
         
            +
             
     | 
| 
      
 326 
     | 
    
         
            +
                h1.toc-contents {
         
     | 
| 
      
 327 
     | 
    
         
            +
                    margin-top: 1em;
         
     | 
| 
      
 328 
     | 
    
         
            +
                }
         
     | 
| 
      
 329 
     | 
    
         
            +
             
     | 
| 
      
 330 
     | 
    
         
            +
                ul#toc-list {
         
     | 
| 
      
 331 
     | 
    
         
            +
                    padding:0;
         
     | 
| 
      
 332 
     | 
    
         
            +
                    margin:0;
         
     | 
| 
      
 333 
     | 
    
         
            +
                }
         
     | 
| 
      
 334 
     | 
    
         
            +
            }
         
     | 
| 
      
 335 
     | 
    
         
            +
             
     | 
| 
      
 336 
     | 
    
         
            +
            @media (max-width: 768px) {
         
     | 
| 
      
 337 
     | 
    
         
            +
                #toc {
         
     | 
| 
      
 338 
     | 
    
         
            +
                    padding: 0 1.5em 0 1.5em;
         
     | 
| 
      
 339 
     | 
    
         
            +
                    overflow: visible;
         
     | 
| 
      
 340 
     | 
    
         
            +
                }
         
     | 
| 
      
 341 
     | 
    
         
            +
             
     | 
| 
      
 342 
     | 
    
         
            +
                #toggle {
         
     | 
| 
      
 343 
     | 
    
         
            +
                    display: none;
         
     | 
| 
      
 344 
     | 
    
         
            +
                    margin-left: -4em;
         
     | 
| 
      
 345 
     | 
    
         
            +
                    margin-top: -2em;
         
     | 
| 
      
 346 
     | 
    
         
            +
                }
         
     | 
| 
      
 347 
     | 
    
         
            +
             
     | 
| 
      
 348 
     | 
    
         
            +
                body {
         
     | 
| 
      
 349 
     | 
    
         
            +
                    margin-left: 2em;
         
     | 
| 
      
 350 
     | 
    
         
            +
                }
         
     | 
| 
      
 351 
     | 
    
         
            +
             
     | 
| 
      
 352 
     | 
    
         
            +
                main {
         
     | 
| 
      
 353 
     | 
    
         
            +
                    padding: 0;
         
     | 
| 
      
 354 
     | 
    
         
            +
                }
         
     | 
| 
      
 355 
     | 
    
         
            +
             
     | 
| 
      
 356 
     | 
    
         
            +
                .WordSection1, .WordSection2 {
         
     | 
| 
      
 357 
     | 
    
         
            +
                    padding-left: 0;
         
     | 
| 
      
 358 
     | 
    
         
            +
                    padding-top: 0;
         
     | 
| 
      
 359 
     | 
    
         
            +
                    width: 100%;
         
     | 
| 
      
 360 
     | 
    
         
            +
                }
         
     | 
| 
      
 361 
     | 
    
         
            +
            }
         
     | 
| 
      
 362 
     | 
    
         
            +
              
         
     | 
| 
      
 363 
     | 
    
         
            +
             
     | 
| 
      
 364 
     | 
    
         
            +
             
     | 
| 
      
 365 
     | 
    
         
            +
            #toc ul {
         
     | 
| 
      
 366 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 367 
     | 
    
         
            +
                padding: 0;
         
     | 
| 
      
 368 
     | 
    
         
            +
                list-style: none;
         
     | 
| 
      
 369 
     | 
    
         
            +
            }
         
     | 
| 
      
 370 
     | 
    
         
            +
             
     | 
| 
      
 371 
     | 
    
         
            +
            #toc li {
         
     | 
| 
      
 372 
     | 
    
         
            +
                padding: 5px 10px;
         
     | 
| 
      
 373 
     | 
    
         
            +
            }
         
     | 
| 
      
 374 
     | 
    
         
            +
             
     | 
| 
      
 375 
     | 
    
         
            +
            #toc a {
         
     | 
| 
      
 376 
     | 
    
         
            +
                text-decoration: none;
         
     | 
| 
      
 377 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 378 
     | 
    
         
            +
            }
         
     | 
| 
      
 379 
     | 
    
         
            +
             
     | 
| 
      
 380 
     | 
    
         
            +
            #toc a:hover {
         
     | 
| 
      
 381 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 382 
     | 
    
         
            +
            }
         
     | 
| 
      
 383 
     | 
    
         
            +
             
     | 
| 
      
 384 
     | 
    
         
            +
            #toc .h2 {
         
     | 
| 
      
 385 
     | 
    
         
            +
                padding-left: 30px;
         
     | 
| 
      
 386 
     | 
    
         
            +
            }
         
     | 
| 
      
 387 
     | 
    
         
            +
             
     | 
| 
      
 388 
     | 
    
         
            +
            #toc .h3 {
         
     | 
| 
      
 389 
     | 
    
         
            +
                padding-left: 50px;
         
     | 
| 
      
 390 
     | 
    
         
            +
            }
         
     | 
| 
      
 391 
     | 
    
         
            +
             
     | 
| 
      
 392 
     | 
    
         
            +
            #toc .toc-active a {
         
     | 
| 
      
 393 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 394 
     | 
    
         
            +
            }
         
     | 
| 
      
 395 
     | 
    
         
            +
             
     | 
| 
      
 396 
     | 
    
         
            +
            /*#toc .toc-active, #toc li:hover {
         
     | 
| 
      
 397 
     | 
    
         
            +
                background: #1d1d1d;
         
     | 
| 
      
 398 
     | 
    
         
            +
                box-shadow: inset -5px 0px 10px -5px #1d1d1d!important;
         
     | 
| 
      
 399 
     | 
    
         
            +
            }*/
         
     | 
| 
      
 400 
     | 
    
         
            +
             
     | 
| 
      
 401 
     | 
    
         
            +
            #toc .toc-active, #toc li:hover {
         
     | 
| 
      
 402 
     | 
    
         
            +
                box-shadow: 0px 1px 0px 0px black!important;
         
     | 
| 
      
 403 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 404 
     | 
    
         
            +
            }
         
     | 
| 
      
 405 
     | 
    
         
            +
             
     | 
| 
      
 406 
     | 
    
         
            +
            #toc li:hover a {
         
     | 
| 
      
 407 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 408 
     | 
    
         
            +
            }
         
     | 
| 
      
 409 
     | 
    
         
            +
             
     | 
| 
      
 410 
     | 
    
         
            +
            /*
         
     | 
| 
      
 411 
     | 
    
         
            +
                Document types + stages
         
     | 
| 
      
 412 
     | 
    
         
            +
            */
         
     | 
| 
      
 413 
     | 
    
         
            +
             
     | 
| 
      
 414 
     | 
    
         
            +
            .document-type-band {
         
     | 
| 
      
 415 
     | 
    
         
            +
                left:0;
         
     | 
| 
      
 416 
     | 
    
         
            +
                top:180px;
         
     | 
| 
      
 417 
     | 
    
         
            +
                height: 100%;
         
     | 
| 
      
 418 
     | 
    
         
            +
                position: fixed;
         
     | 
| 
      
 419 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 420 
     | 
    
         
            +
                z-index: 99;
         
     | 
| 
      
 421 
     | 
    
         
            +
                /*box-shadow: -5px 0px 10px #1d1d1d*/
         
     | 
| 
      
 422 
     | 
    
         
            +
             
     | 
| 
      
 423 
     | 
    
         
            +
            }
         
     | 
| 
      
 424 
     | 
    
         
            +
             
     | 
| 
      
 425 
     | 
    
         
            +
            .document-stage-band {
         
     | 
| 
      
 426 
     | 
    
         
            +
                left:0;
         
     | 
| 
      
 427 
     | 
    
         
            +
                top:0;
         
     | 
| 
      
 428 
     | 
    
         
            +
                height: 100%;
         
     | 
| 
      
 429 
     | 
    
         
            +
                position: fixed;
         
     | 
| 
      
 430 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 431 
     | 
    
         
            +
                z-index: 98;
         
     | 
| 
      
 432 
     | 
    
         
            +
                box-shadow: -5px 0px 10px #1d1d1d
         
     | 
| 
      
 433 
     | 
    
         
            +
            }
         
     | 
| 
      
 434 
     | 
    
         
            +
             
     | 
| 
      
 435 
     | 
    
         
            +
            .document-type {
         
     | 
| 
      
 436 
     | 
    
         
            +
                position: relative;
         
     | 
| 
      
 437 
     | 
    
         
            +
                width: 25px;
         
     | 
| 
      
 438 
     | 
    
         
            +
            }
         
     | 
| 
      
 439 
     | 
    
         
            +
             
     | 
| 
      
 440 
     | 
    
         
            +
            .document-stage {
         
     | 
| 
      
 441 
     | 
    
         
            +
                position: relative;
         
     | 
| 
      
 442 
     | 
    
         
            +
                width: 25px;
         
     | 
| 
      
 443 
     | 
    
         
            +
            }
         
     | 
| 
      
 444 
     | 
    
         
            +
             
     | 
| 
      
 445 
     | 
    
         
            +
            p.document-type, p.document-stage {
         
     | 
| 
      
 446 
     | 
    
         
            +
                color: white;
         
     | 
| 
      
 447 
     | 
    
         
            +
                text-transform: uppercase;
         
     | 
| 
      
 448 
     | 
    
         
            +
                font-size: 0.9em;
         
     | 
| 
      
 449 
     | 
    
         
            +
                font-weight: 400;
         
     | 
| 
      
 450 
     | 
    
         
            +
                letter-spacing: 0.05em;
         
     | 
| 
      
 451 
     | 
    
         
            +
                margin:0;
         
     | 
| 
      
 452 
     | 
    
         
            +
                margin-left: 6px;
         
     | 
| 
      
 453 
     | 
    
         
            +
                writing-mode:tb-rl;
         
     | 
| 
      
 454 
     | 
    
         
            +
            	-webkit-transform:rotate(180deg);
         
     | 
| 
      
 455 
     | 
    
         
            +
            	-moz-transform:rotate(180deg);
         
     | 
| 
      
 456 
     | 
    
         
            +
            	-o-transform: rotate(180deg);
         
     | 
| 
      
 457 
     | 
    
         
            +
            	white-space:nowrap;
         
     | 
| 
      
 458 
     | 
    
         
            +
            	display:block;
         
     | 
| 
      
 459 
     | 
    
         
            +
                bottom:0;
         
     | 
| 
      
 460 
     | 
    
         
            +
            }
         
     | 
| 
      
 461 
     | 
    
         
            +
             
     | 
| 
      
 462 
     | 
    
         
            +
            p.document-type {
         
     | 
| 
      
 463 
     | 
    
         
            +
                font-weight: 400;
         
     | 
| 
      
 464 
     | 
    
         
            +
                height: 210px;
         
     | 
| 
      
 465 
     | 
    
         
            +
            }
         
     | 
| 
      
 466 
     | 
    
         
            +
             
     | 
| 
      
 467 
     | 
    
         
            +
            #governance-band p.document-type {
         
     | 
| 
      
 468 
     | 
    
         
            +
                font-weight: 400;
         
     | 
| 
      
 469 
     | 
    
         
            +
                height: 230px!important;
         
     | 
| 
      
 470 
     | 
    
         
            +
            }
         
     | 
| 
      
 471 
     | 
    
         
            +
             
     | 
| 
      
 472 
     | 
    
         
            +
            p.document-stage {
         
     | 
| 
      
 473 
     | 
    
         
            +
                font-weight: 300;
         
     | 
| 
      
 474 
     | 
    
         
            +
                height:160px;
         
     | 
| 
      
 475 
     | 
    
         
            +
            }
         
     | 
| 
      
 476 
     | 
    
         
            +
             
     | 
| 
      
 477 
     | 
    
         
            +
            #standard-band {
         
     | 
| 
      
 478 
     | 
    
         
            +
                background-color: #0ac442;
         
     | 
| 
      
 479 
     | 
    
         
            +
            }
         
     | 
| 
      
 480 
     | 
    
         
            +
             
     | 
| 
      
 481 
     | 
    
         
            +
            #standard {
         
     | 
| 
      
 482 
     | 
    
         
            +
                border-bottom: solid 3px #0ac442;
         
     | 
| 
      
 483 
     | 
    
         
            +
            }
         
     | 
| 
      
 484 
     | 
    
         
            +
             
     | 
| 
      
 485 
     | 
    
         
            +
            #governance {
         
     | 
| 
      
 486 
     | 
    
         
            +
                border-bottom: solid 3px #750697;
         
     | 
| 
      
 487 
     | 
    
         
            +
            }
         
     | 
| 
      
 488 
     | 
    
         
            +
             
     | 
| 
      
 489 
     | 
    
         
            +
            #governance-band {
         
     | 
| 
      
 490 
     | 
    
         
            +
                background-color: #750697;
         
     | 
| 
      
 491 
     | 
    
         
            +
            }
         
     | 
| 
      
 492 
     | 
    
         
            +
             
     | 
| 
      
 493 
     | 
    
         
            +
            #guide {
         
     | 
| 
      
 494 
     | 
    
         
            +
                border-bottom: solid 3px #48a0e7;
         
     | 
| 
      
 495 
     | 
    
         
            +
            }
         
     | 
| 
      
 496 
     | 
    
         
            +
             
     | 
| 
      
 497 
     | 
    
         
            +
            #guide-band {
         
     | 
| 
      
 498 
     | 
    
         
            +
                background-color: #48a0e7;
         
     | 
| 
      
 499 
     | 
    
         
            +
            }
         
     | 
| 
      
 500 
     | 
    
         
            +
             
     | 
| 
      
 501 
     | 
    
         
            +
            .coverpage-maturity {
         
     | 
| 
      
 502 
     | 
    
         
            +
                font-family: 'Overpass', sans-serif;
         
     | 
| 
      
 503 
     | 
    
         
            +
                font-weight: 400;
         
     | 
| 
      
 504 
     | 
    
         
            +
                font-size: 1em;
         
     | 
| 
      
 505 
     | 
    
         
            +
                margin: 0 0 2em 0;
         
     | 
| 
      
 506 
     | 
    
         
            +
                text-transform: uppercase;
         
     | 
| 
      
 507 
     | 
    
         
            +
                }
         
     | 
| 
      
 508 
     | 
    
         
            +
             
     | 
| 
      
 509 
     | 
    
         
            +
            #working-draft {
         
     | 
| 
      
 510 
     | 
    
         
            +
                border-bottom: solid 3px #fda706;
         
     | 
| 
      
 511 
     | 
    
         
            +
            }
         
     | 
| 
      
 512 
     | 
    
         
            +
             
     | 
| 
      
 513 
     | 
    
         
            +
            #working-draft-band {
         
     | 
| 
      
 514 
     | 
    
         
            +
                background-color: #fda706;
         
     | 
| 
      
 515 
     | 
    
         
            +
            }
         
     | 
| 
      
 516 
     | 
    
         
            +
             
     | 
| 
      
 517 
     | 
    
         
            +
            #committee-draft {
         
     | 
| 
      
 518 
     | 
    
         
            +
                border-bottom: solid 3px #fd06fd;
         
     | 
| 
      
 519 
     | 
    
         
            +
            }
         
     | 
| 
      
 520 
     | 
    
         
            +
             
     | 
| 
      
 521 
     | 
    
         
            +
            #committee-draft-band {
         
     | 
| 
      
 522 
     | 
    
         
            +
                background-color: #fd06fd;
         
     | 
| 
      
 523 
     | 
    
         
            +
            }
         
     | 
| 
      
 524 
     | 
    
         
            +
             
     | 
| 
      
 525 
     | 
    
         
            +
            #draft-standard {
         
     | 
| 
      
 526 
     | 
    
         
            +
                border-bottom: solid 3px #fdf906;
         
     | 
| 
      
 527 
     | 
    
         
            +
            }
         
     | 
| 
      
 528 
     | 
    
         
            +
             
     | 
| 
      
 529 
     | 
    
         
            +
            #draft-standard {
         
     | 
| 
      
 530 
     | 
    
         
            +
                border-bottom: solid 3px #fdf906;
         
     | 
| 
      
 531 
     | 
    
         
            +
            }
         
     | 
| 
      
 532 
     | 
    
         
            +
             
     | 
| 
      
 533 
     | 
    
         
            +
            #standard {
         
     | 
| 
      
 534 
     | 
    
         
            +
                border-bottom: solid 3px #0ac442;
         
     | 
| 
      
 535 
     | 
    
         
            +
            }
         
     | 
| 
      
 536 
     | 
    
         
            +
             
     | 
| 
      
 537 
     | 
    
         
            +
            #standard-band {
         
     | 
| 
      
 538 
     | 
    
         
            +
                background-color: #0ac442;
         
     | 
| 
      
 539 
     | 
    
         
            +
            }
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
            #obsolete {
         
     | 
| 
      
 542 
     | 
    
         
            +
                border-bottom: solid 3px #7e0d13;
         
     | 
| 
      
 543 
     | 
    
         
            +
            }
         
     | 
| 
      
 544 
     | 
    
         
            +
             
     | 
| 
      
 545 
     | 
    
         
            +
            #obsolete-band {
         
     | 
| 
      
 546 
     | 
    
         
            +
                background-color: #7e0d13;
         
     | 
| 
      
 547 
     | 
    
         
            +
            }
         
     | 
| 
      
 548 
     | 
    
         
            +
             
     | 
| 
      
 549 
     | 
    
         
            +
             
     | 
| 
      
 550 
     | 
    
         
            +
            /* 3 Other styles */
         
     | 
| 
      
 551 
     | 
    
         
            +
             
     | 
| 
      
 552 
     | 
    
         
            +
            /*
         
     | 
| 
      
 553 
     | 
    
         
            +
                3.3 Lists
         
     | 
| 
      
 554 
     | 
    
         
            +
            */
         
     | 
| 
      
 555 
     | 
    
         
            +
                    
         
     | 
| 
      
 556 
     | 
    
         
            +
            ul, ol {margin-left: 2em;}
         
     | 
| 
      
 557 
     | 
    
         
            +
                  
         
     | 
| 
      
 558 
     | 
    
         
            +
            #toc-list ul {margin-bottom: 0.25em;}
         
     | 
| 
      
 559 
     | 
    
         
            +
              
         
     | 
| 
      
 560 
     | 
    
         
            +
            #toc-list ol li {list-style-type: none;}
         
     | 
| 
      
 561 
     | 
    
         
            +
             
     | 
| 
      
 562 
     | 
    
         
            +
            /*
         
     | 
| 
      
 563 
     | 
    
         
            +
            3.4 Rules
         
     | 
| 
      
 564 
     | 
    
         
            +
            */
         
     | 
| 
      
 565 
     | 
    
         
            +
             
     | 
| 
      
 566 
     | 
    
         
            +
            .rule {
         
     | 
| 
      
 567 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 568 
     | 
    
         
            +
                height: 1px;
         
     | 
| 
      
 569 
     | 
    
         
            +
                background-color: #0e1a85;
         
     | 
| 
      
 570 
     | 
    
         
            +
                margin: 2em 0;
         
     | 
| 
      
 571 
     | 
    
         
            +
              }
         
     | 
| 
      
 572 
     | 
    
         
            +
             
     | 
| 
      
 573 
     | 
    
         
            +
            /*
         
     | 
| 
      
 574 
     | 
    
         
            +
            3.5 Bibliograhy
         
     | 
| 
      
 575 
     | 
    
         
            +
            */
         
     | 
| 
      
 576 
     | 
    
         
            +
             
     | 
| 
      
 577 
     | 
    
         
            +
            p.Biblio {
         
     | 
| 
      
 578 
     | 
    
         
            +
            margin-top: 1em;
         
     | 
| 
      
 579 
     | 
    
         
            +
            margin-left: 2em;
         
     | 
| 
      
 580 
     | 
    
         
            +
            }
         
     | 
| 
      
 581 
     | 
    
         
            +
             
     | 
| 
      
 582 
     | 
    
         
            +
            /*
         
     | 
| 
      
 583 
     | 
    
         
            +
            3.6 Source Code + figures
         
     | 
| 
      
 584 
     | 
    
         
            +
            */
         
     | 
| 
      
 585 
     | 
    
         
            +
             
     | 
| 
      
 586 
     | 
    
         
            +
            .Sourcecode {
         
     | 
| 
      
 587 
     | 
    
         
            +
            font-family: $monospacefont;
         
     | 
| 
      
 588 
     | 
    
         
            +
            }
         
     | 
| 
      
 589 
     | 
    
         
            +
             
     | 
| 
      
 590 
     | 
    
         
            +
            .figure, .Sourcecode {
         
     | 
| 
      
 591 
     | 
    
         
            +
            background-color: #f7f7f7;
         
     | 
| 
      
 592 
     | 
    
         
            +
            line-height: 1.6em;
         
     | 
| 
      
 593 
     | 
    
         
            +
            padding: 1.5em;
         
     | 
| 
      
 594 
     | 
    
         
            +
            margin: 2em 0 1em 0;
         
     | 
| 
      
 595 
     | 
    
         
            +
            overflow: auto;
         
     | 
| 
      
 596 
     | 
    
         
            +
            }
         
     | 
| 
      
 597 
     | 
    
         
            +
             
     | 
| 
      
 598 
     | 
    
         
            +
            .figure-title, .FigureTitle {
         
     | 
| 
      
 599 
     | 
    
         
            +
            font-weight: 700;
         
     | 
| 
      
 600 
     | 
    
         
            +
            font-size: 1em;
         
     | 
| 
      
 601 
     | 
    
         
            +
            text-align: center;
         
     | 
| 
      
 602 
     | 
    
         
            +
            }
         
     | 
| 
      
 603 
     | 
    
         
            +
             
     | 
| 
      
 604 
     | 
    
         
            +
            /*
         
     | 
| 
      
 605 
     | 
    
         
            +
            3.7 Notes
         
     | 
| 
      
 606 
     | 
    
         
            +
            */
         
     | 
| 
      
 607 
     | 
    
         
            +
             
     | 
| 
      
 608 
     | 
    
         
            +
            .Note, .note {
         
     | 
| 
      
 609 
     | 
    
         
            +
            background-color: #fff495;
         
     | 
| 
      
 610 
     | 
    
         
            +
            color: #47430c;
         
     | 
| 
      
 611 
     | 
    
         
            +
            padding: 0.5em;
         
     | 
| 
      
 612 
     | 
    
         
            +
            margin: 1.5em 0 1.5em 0;
         
     | 
| 
      
 613 
     | 
    
         
            +
            text-align: left;
         
     | 
| 
      
 614 
     | 
    
         
            +
            }
         
     | 
| 
      
 615 
     | 
    
         
            +
             
     | 
| 
      
 616 
     | 
    
         
            +
            .Note p, .note p {
         
     | 
| 
      
 617 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 618 
     | 
    
         
            +
            }
         
     | 
| 
      
 619 
     | 
    
         
            +
             
     | 
| 
      
 620 
     | 
    
         
            +
            /*
         
     | 
| 
      
 621 
     | 
    
         
            +
            3.8 Examples
         
     | 
| 
      
 622 
     | 
    
         
            +
            */
         
     | 
| 
      
 623 
     | 
    
         
            +
             
     | 
| 
      
 624 
     | 
    
         
            +
            .example {
         
     | 
| 
      
 625 
     | 
    
         
            +
            background-color: #e1eef1;
         
     | 
| 
      
 626 
     | 
    
         
            +
            padding: 0.5em;
         
     | 
| 
      
 627 
     | 
    
         
            +
            margin: 2em 0 1em 0;
         
     | 
| 
      
 628 
     | 
    
         
            +
            text-align: left;
         
     | 
| 
      
 629 
     | 
    
         
            +
            }
         
     | 
| 
      
 630 
     | 
    
         
            +
             
     | 
| 
      
 631 
     | 
    
         
            +
            .example p {
         
     | 
| 
      
 632 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 633 
     | 
    
         
            +
            }
         
     | 
| 
      
 634 
     | 
    
         
            +
             
     | 
| 
      
 635 
     | 
    
         
            +
            .example .example-title {
         
     | 
| 
      
 636 
     | 
    
         
            +
            font-weight: 700;
         
     | 
| 
      
 637 
     | 
    
         
            +
            text-transform: uppercase;
         
     | 
| 
      
 638 
     | 
    
         
            +
            text-align: center;
         
     | 
| 
      
 639 
     | 
    
         
            +
            margin-top:0;
         
     | 
| 
      
 640 
     | 
    
         
            +
            }
         
     | 
| 
      
 641 
     | 
    
         
            +
             
     | 
| 
      
 642 
     | 
    
         
            +
            /*
         
     | 
| 
      
 643 
     | 
    
         
            +
            3.9 Tables
         
     | 
| 
      
 644 
     | 
    
         
            +
            */
         
     | 
| 
      
 645 
     | 
    
         
            +
             
     | 
| 
      
 646 
     | 
    
         
            +
            table {
         
     | 
| 
      
 647 
     | 
    
         
            +
            border-collapse: collapse;
         
     | 
| 
      
 648 
     | 
    
         
            +
            width: 100%;
         
     | 
| 
      
 649 
     | 
    
         
            +
            font-weight: 300;
         
     | 
| 
      
 650 
     | 
    
         
            +
            margin: 1em 0 2em 0;
         
     | 
| 
      
 651 
     | 
    
         
            +
            margin-left: auto;
         
     | 
| 
      
 652 
     | 
    
         
            +
            margin-right: auto;
         
     | 
| 
      
 653 
     | 
    
         
            +
            padding-right: 2em;
         
     | 
| 
      
 654 
     | 
    
         
            +
            text-align: center;
         
     | 
| 
      
 655 
     | 
    
         
            +
            }
         
     | 
| 
      
 656 
     | 
    
         
            +
             
     | 
| 
      
 657 
     | 
    
         
            +
            table, th, td {
         
     | 
| 
      
 658 
     | 
    
         
            +
            border: 1px solid black;
         
     | 
| 
      
 659 
     | 
    
         
            +
            font-size: 0.95em;
         
     | 
| 
      
 660 
     | 
    
         
            +
            }
         
     | 
| 
      
 661 
     | 
    
         
            +
             
     | 
| 
      
 662 
     | 
    
         
            +
            td, th {
         
     | 
| 
      
 663 
     | 
    
         
            +
            padding: 1em!important;
         
     | 
| 
      
 664 
     | 
    
         
            +
            }
         
     | 
| 
      
 665 
     | 
    
         
            +
             
     | 
| 
      
 666 
     | 
    
         
            +
            td.header {
         
     | 
| 
      
 667 
     | 
    
         
            +
            font-weight: 400;
         
     | 
| 
      
 668 
     | 
    
         
            +
            }
         
     | 
| 
      
 669 
     | 
    
         
            +
             
     | 
| 
      
 670 
     | 
    
         
            +
            p.TableTitle {
         
     | 
| 
      
 671 
     | 
    
         
            +
            text-align: center;
         
     | 
| 
      
 672 
     | 
    
         
            +
            margin-top: 2.5em;
         
     | 
| 
      
 673 
     | 
    
         
            +
            font-weight: 800;
         
     | 
| 
      
 674 
     | 
    
         
            +
            font-size: 1.1em;
         
     | 
| 
      
 675 
     | 
    
         
            +
            }
         
     | 
| 
      
 676 
     | 
    
         
            +
             
     | 
| 
      
 677 
     | 
    
         
            +
            .TableFootnote {
         
     | 
| 
      
 678 
     | 
    
         
            +
                text-align: left!important;
         
     | 
| 
      
 679 
     | 
    
         
            +
            }
         
     | 
| 
      
 680 
     | 
    
         
            +
             
     | 
| 
      
 681 
     | 
    
         
            +
            /*
         
     | 
| 
      
 682 
     | 
    
         
            +
            3.10 Footnotes
         
     | 
| 
      
 683 
     | 
    
         
            +
            */
         
     | 
| 
      
 684 
     | 
    
         
            +
             
     | 
| 
      
 685 
     | 
    
         
            +
            a.footnote-number, a.TableFootnoteRef {
         
     | 
| 
      
 686 
     | 
    
         
            +
            vertical-align: super;
         
     | 
| 
      
 687 
     | 
    
         
            +
            font-size: 0.8em;
         
     | 
| 
      
 688 
     | 
    
         
            +
            }
         
     | 
| 
      
 689 
     | 
    
         
            +
             
     | 
| 
      
 690 
     | 
    
         
            +
            .footnote {
         
     | 
| 
      
 691 
     | 
    
         
            +
            font-size: 0.9em;
         
     | 
| 
      
 692 
     | 
    
         
            +
            }
         
     | 
| 
      
 693 
     | 
    
         
            +
             
     | 
| 
      
 694 
     | 
    
         
            +
            sup a { 
         
     | 
| 
      
 695 
     | 
    
         
            +
              vertical-align: super; 
         
     | 
| 
      
 696 
     | 
    
         
            +
              font-size: 0.8em;
         
     | 
| 
      
 697 
     | 
    
         
            +
            }
         
     | 
| 
      
 698 
     | 
    
         
            +
            #footnote_box {
         
     | 
| 
      
 699 
     | 
    
         
            +
              font-size: 14px;
         
     | 
| 
      
 700 
     | 
    
         
            +
              background: white;
         
     | 
| 
      
 701 
     | 
    
         
            +
              padding: 0 10px;
         
     | 
| 
      
 702 
     | 
    
         
            +
              margin: 10px;
         
     | 
| 
      
 703 
     | 
    
         
            +
              border: 1px solid #888;
         
     | 
| 
      
 704 
     | 
    
         
            +
              -moz-box-shadow: 0px 0px 5px #888;
         
     | 
| 
      
 705 
     | 
    
         
            +
              -webkit-box-shadow: 0px 0px 5px #888;
         
     | 
| 
      
 706 
     | 
    
         
            +
              box-shadow: 0px 0px 5px #888;
         
     | 
| 
      
 707 
     | 
    
         
            +
            }
         
     | 
| 
      
 708 
     | 
    
         
            +
             
     | 
| 
      
 709 
     | 
    
         
            +
            ol.footnotes-list, aside.footnote {
         
     | 
| 
      
 710 
     | 
    
         
            +
                margin-left: 1em;
         
     | 
| 
      
 711 
     | 
    
         
            +
                
         
     | 
| 
      
 712 
     | 
    
         
            +
            }
         
     | 
| 
      
 713 
     | 
    
         
            +
             
     | 
| 
      
 714 
     | 
    
         
            +
            ol.footnotes-list li, aside.footnote {
         
     | 
| 
      
 715 
     | 
    
         
            +
                font-size: 0.9em;
         
     | 
| 
      
 716 
     | 
    
         
            +
                vertical-align: top;
         
     | 
| 
      
 717 
     | 
    
         
            +
                list-style:decimal;
         
     | 
| 
      
 718 
     | 
    
         
            +
                margin-bottom: 1em;
         
     | 
| 
      
 719 
     | 
    
         
            +
            }
         
     | 
| 
      
 720 
     | 
    
         
            +
             
     | 
| 
      
 721 
     | 
    
         
            +
            ol.footnotes-list:first-child {
         
     | 
| 
      
 722 
     | 
    
         
            +
                margin-top: 2em;
         
     | 
| 
      
 723 
     | 
    
         
            +
            }
         
     | 
| 
      
 724 
     | 
    
         
            +
             
     | 
| 
      
 725 
     | 
    
         
            +
            ol.footnotes-list p, aside.footnote p {
         
     | 
| 
      
 726 
     | 
    
         
            +
                display: inline;
         
     | 
| 
      
 727 
     | 
    
         
            +
            }
         
     | 
| 
      
 728 
     | 
    
         
            +
             
     | 
| 
      
 729 
     | 
    
         
            +
            ol li p:before {
         
     | 
| 
      
 730 
     | 
    
         
            +
                content: "";
         
     | 
| 
      
 731 
     | 
    
         
            +
                display: none;
         
     | 
| 
      
 732 
     | 
    
         
            +
            }
         
     | 
| 
      
 733 
     | 
    
         
            +
             
     | 
| 
      
 734 
     | 
    
         
            +
             
     | 
| 
      
 735 
     | 
    
         
            +
            /*
         
     | 
| 
      
 736 
     | 
    
         
            +
            3.11 Blockquotes
         
     | 
| 
      
 737 
     | 
    
         
            +
            */
         
     | 
| 
      
 738 
     | 
    
         
            +
             
     | 
| 
      
 739 
     | 
    
         
            +
            .blockquote, .Quote {
         
     | 
| 
      
 740 
     | 
    
         
            +
            background-color: #f7f7f7;
         
     | 
| 
      
 741 
     | 
    
         
            +
            font-style: italic;
         
     | 
| 
      
 742 
     | 
    
         
            +
            width: 80%;
         
     | 
| 
      
 743 
     | 
    
         
            +
            padding: 1.5em;
         
     | 
| 
      
 744 
     | 
    
         
            +
            margin-top: 2em;
         
     | 
| 
      
 745 
     | 
    
         
            +
            margin-left: auto;
         
     | 
| 
      
 746 
     | 
    
         
            +
            margin-right: auto;
         
     | 
| 
      
 747 
     | 
    
         
            +
            }
         
     | 
| 
      
 748 
     | 
    
         
            +
             
     | 
| 
      
 749 
     | 
    
         
            +
             
     | 
| 
      
 750 
     | 
    
         
            +
            /*
         
     | 
| 
      
 751 
     | 
    
         
            +
            3.12 Formulas
         
     | 
| 
      
 752 
     | 
    
         
            +
            */
         
     | 
| 
      
 753 
     | 
    
         
            +
             
     | 
| 
      
 754 
     | 
    
         
            +
            .formula {
         
     | 
| 
      
 755 
     | 
    
         
            +
            background-color: #f7f7f7;
         
     | 
| 
      
 756 
     | 
    
         
            +
            padding: 1.5em;
         
     | 
| 
      
 757 
     | 
    
         
            +
            margin-top: 2em;
         
     | 
| 
      
 758 
     | 
    
         
            +
            text-align: center;
         
     | 
| 
      
 759 
     | 
    
         
            +
            margin-left: 20%;
         
     | 
| 
      
 760 
     | 
    
         
            +
            margin-right: 20%;
         
     | 
| 
      
 761 
     | 
    
         
            +
            }
         
     | 
| 
      
 762 
     | 
    
         
            +
             
     | 
| 
      
 763 
     | 
    
         
            +
            /*
         
     | 
| 
      
 764 
     | 
    
         
            +
            Keywords
         
     | 
| 
      
 765 
     | 
    
         
            +
            */
         
     | 
| 
      
 766 
     | 
    
         
            +
             
     | 
| 
      
 767 
     | 
    
         
            +
            span.keyword {
         
     | 
| 
      
 768 
     | 
    
         
            +
            font-weight: 600;
         
     | 
| 
      
 769 
     | 
    
         
            +
            }
         
     | 
| 
      
 770 
     | 
    
         
            +
             
     | 
| 
      
 771 
     | 
    
         
            +
            .Admonition, .admonition {
         
     | 
| 
      
 772 
     | 
    
         
            +
                background-color: #ffb3b3;
         
     | 
| 
      
 773 
     | 
    
         
            +
                /* color: #47430c;*/
         
     | 
| 
      
 774 
     | 
    
         
            +
                padding: 0.5em;
         
     | 
| 
      
 775 
     | 
    
         
            +
                margin: 1.5em 0 1.5em 0;
         
     | 
| 
      
 776 
     | 
    
         
            +
                text-align: left;
         
     | 
| 
      
 777 
     | 
    
         
            +
            }
         
     | 
| 
      
 778 
     | 
    
         
            +
             
     | 
| 
      
 779 
     | 
    
         
            +
            .Admonition p, .admonition p {
         
     | 
| 
      
 780 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 781 
     | 
    
         
            +
            }
         
     | 
| 
      
 782 
     | 
    
         
            +
             
     | 
| 
      
 783 
     | 
    
         
            +
             
     | 
| 
      
 784 
     | 
    
         
            +
             
     | 
| 
      
 785 
     | 
    
         
            +
            /* Old CSS 
         
     | 
| 
      
 786 
     | 
    
         
            +
            p.MsoCommentText, li.MsoCommentText, div.MsoCommentText {
         
     | 
| 
      
 787 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 788 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 789 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 790 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 791 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 792 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 793 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 794 
     | 
    
         
            +
                font-size: 12.0pt;
         
     | 
| 
      
 795 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 796 
     | 
    
         
            +
              
         
     | 
| 
      
 797 
     | 
    
         
            +
              p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject {
         
     | 
| 
      
 798 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 799 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 800 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 801 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 802 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 803 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 804 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 805 
     | 
    
         
            +
                font-size: 10.0pt;
         
     | 
| 
      
 806 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 807 
     | 
    
         
            +
                font-weight: bold;
         
     | 
| 
      
 808 
     | 
    
         
            +
              }
         
     | 
| 
      
 809 
     | 
    
         
            +
             
     | 
| 
      
 810 
     | 
    
         
            +
              p.Sourcecode, li.Sourcecode, div.Sourcecode, pre.Sourcecode {
         
     | 
| 
      
 811 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 812 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 813 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 814 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 815 
     | 
    
         
            +
                text-align: left;
         
     | 
| 
      
 816 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 817 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 818 
     | 
    
         
            +
                font-size: 9.0pt;
         
     | 
| 
      
 819 
     | 
    
         
            +
                font-family: "Courier New", monospace; }
         
     | 
| 
      
 820 
     | 
    
         
            +
              
         
     | 
| 
      
 821 
     | 
    
         
            +
              p.Biblio, li.Biblio, div.Biblio {
         
     | 
| 
      
 822 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 823 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 824 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 825 
     | 
    
         
            +
                margin-left: 33.15pt;
         
     | 
| 
      
 826 
     | 
    
         
            +
                text-indent: -33.15pt;
         
     | 
| 
      
 827 
     | 
    
         
            +
                tab-stops: 33.15pt;
         
     | 
| 
      
 828 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 829 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 830 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 831 
     | 
    
         
            +
              
         
     | 
| 
      
 832 
     | 
    
         
            +
              p.FigureTitle {
         
     | 
| 
      
 833 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 834 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 835 
     | 
    
         
            +
                margin-bottom: 6.0pt;
         
     | 
| 
      
 836 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 837 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 838 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 839 
     | 
    
         
            +
                page-break-before: avoid;
         
     | 
| 
      
 840 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 841 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 842 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 843 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 844 
     | 
    
         
            +
              
         
     | 
| 
      
 845 
     | 
    
         
            +
              p.TableTitle {
         
     | 
| 
      
 846 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 847 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 848 
     | 
    
         
            +
                margin-bottom: 6.0pt;
         
     | 
| 
      
 849 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 850 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 851 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 852 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 853 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 854 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 855 
     | 
    
         
            +
                font-weight: bold;
         
     | 
| 
      
 856 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 857 
     | 
    
         
            +
              
         
     | 
| 
      
 858 
     | 
    
         
            +
              p.Note, div.Note, li.Note, p.TableFootnote, div.TableFootnote, li.TableFootnote {
         
     | 
| 
      
 859 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 860 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 861 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 862 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 863 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 864 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 865 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 866 
     | 
    
         
            +
                font-size: 10.0pt;
         
     | 
| 
      
 867 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 868 
     | 
    
         
            +
              
         
     | 
| 
      
 869 
     | 
    
         
            +
              /* may need to be revised *//*
         
     | 
| 
      
 870 
     | 
    
         
            +
              p.ANNEX, li.ANNEX, div.ANNEX {
         
     | 
| 
      
 871 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 872 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 873 
     | 
    
         
            +
                margin-bottom: 24.0pt;
         
     | 
| 
      
 874 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 875 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 876 
     | 
    
         
            +
                text-indent: 0cm;
         
     | 
| 
      
 877 
     | 
    
         
            +
                line-height: 15.5pt;
         
     | 
| 
      
 878 
     | 
    
         
            +
                page-break-before: always;
         
     | 
| 
      
 879 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 880 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 881 
     | 
    
         
            +
                font-size: 14.0pt;
         
     | 
| 
      
 882 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 883 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 884 
     | 
    
         
            +
              
         
     | 
| 
      
 885 
     | 
    
         
            +
              p.BiblioTitle, li.BiblioTitle, div.BiblioTitle {
         
     | 
| 
      
 886 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 887 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 888 
     | 
    
         
            +
                margin-bottom: 15.5pt;
         
     | 
| 
      
 889 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 890 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 891 
     | 
    
         
            +
                line-height: 15.5pt;
         
     | 
| 
      
 892 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 893 
     | 
    
         
            +
                font-size: 14.0pt;
         
     | 
| 
      
 894 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 895 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 896 
     | 
    
         
            +
              
         
     | 
| 
      
 897 
     | 
    
         
            +
              p.Definition, li.Definition, div.Definition {
         
     | 
| 
      
 898 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 899 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 900 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 901 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 902 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 903 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 904 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 905 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 906 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 907 
     | 
    
         
            +
              
         
     | 
| 
      
 908 
     | 
    
         
            +
              p.ForewordTitle, li.ForewordTitle, div.ForewordTitle {
         
     | 
| 
      
 909 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 910 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 911 
     | 
    
         
            +
                margin-bottom: 15.5pt;
         
     | 
| 
      
 912 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 913 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 914 
     | 
    
         
            +
                line-height: 15.5pt;
         
     | 
| 
      
 915 
     | 
    
         
            +
                page-break-before: always;
         
     | 
| 
      
 916 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 917 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 918 
     | 
    
         
            +
                font-size: 14.0pt;
         
     | 
| 
      
 919 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 920 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 921 
     | 
    
         
            +
              
         
     | 
| 
      
 922 
     | 
    
         
            +
              p.IntroTitle, li.IntroTitle, div.IntroTitle {
         
     | 
| 
      
 923 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 924 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 925 
     | 
    
         
            +
                margin-bottom: 15.5pt;
         
     | 
| 
      
 926 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 927 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 928 
     | 
    
         
            +
                line-height: 15.5pt;
         
     | 
| 
      
 929 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 930 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 931 
     | 
    
         
            +
                font-size: 14.0pt;
         
     | 
| 
      
 932 
     | 
    
         
            +
                page-break-before: always;
         
     | 
| 
      
 933 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 934 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 935 
     | 
    
         
            +
              
         
     | 
| 
      
 936 
     | 
    
         
            +
              p.Terms, li.Terms, div.Terms {
         
     | 
| 
      
 937 
     | 
    
         
            +
                margin: 0cm;
         
     | 
| 
      
 938 
     | 
    
         
            +
                margin-bottom: .0001pt;
         
     | 
| 
      
 939 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 940 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 941 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 942 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 943 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 944 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 945 
     | 
    
         
            +
              
         
     | 
| 
      
 946 
     | 
    
         
            +
              p.AltTerms, li.AltTerms, div.AltTerms {
         
     | 
| 
      
 947 
     | 
    
         
            +
                margin: 0cm;
         
     | 
| 
      
 948 
     | 
    
         
            +
                margin-bottom: .0001pt;
         
     | 
| 
      
 949 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 950 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 951 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 952 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 953 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 954 
     | 
    
         
            +
              
         
     | 
| 
      
 955 
     | 
    
         
            +
              p.DeprecatedTerms, li.DeprecatedTerms, div.DeprecatedTerms {
         
     | 
| 
      
 956 
     | 
    
         
            +
                margin: 0cm;
         
     | 
| 
      
 957 
     | 
    
         
            +
                margin-bottom: .0001pt;
         
     | 
| 
      
 958 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 959 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 960 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 961 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 962 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 963 
     | 
    
         
            +
              
         
     | 
| 
      
 964 
     | 
    
         
            +
              p.TermNum, li.TermNum, div.TermNum {
         
     | 
| 
      
 965 
     | 
    
         
            +
                margin: 0cm;
         
     | 
| 
      
 966 
     | 
    
         
            +
                margin-bottom: .0001pt;
         
     | 
| 
      
 967 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 968 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 969 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 970 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 971 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 972 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 973 
     | 
    
         
            +
              
         
     | 
| 
      
 974 
     | 
    
         
            +
              p.zzContents, li.zzContents, div.zzContents {
         
     | 
| 
      
 975 
     | 
    
         
            +
                margin-top: 48.0pt;
         
     | 
| 
      
 976 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 977 
     | 
    
         
            +
                margin-bottom: 15.5pt;
         
     | 
| 
      
 978 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 979 
     | 
    
         
            +
                line-height: 15.5pt;
         
     | 
| 
      
 980 
     | 
    
         
            +
                page-break-before: always;
         
     | 
| 
      
 981 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 982 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 983 
     | 
    
         
            +
                font-size: 14.0pt;
         
     | 
| 
      
 984 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 985 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 986 
     | 
    
         
            +
              
         
     | 
| 
      
 987 
     | 
    
         
            +
              p.zzCopyright, li.zzCopyright, div.zzCopyright {
         
     | 
| 
      
 988 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 989 
     | 
    
         
            +
                margin-right: 14.2pt;
         
     | 
| 
      
 990 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 991 
     | 
    
         
            +
                margin-left: 14.2pt;
         
     | 
| 
      
 992 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 993 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 994 
     | 
    
         
            +
                tab-stops: 20.15pt 25.7pt 481.15pt;
         
     | 
| 
      
 995 
     | 
    
         
            +
                border: none;
         
     | 
| 
      
 996 
     | 
    
         
            +
                padding: 0cm;
         
     | 
| 
      
 997 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 998 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 999 
     | 
    
         
            +
              
         
     | 
| 
      
 1000 
     | 
    
         
            +
              p.zzSTDTitle, li.zzSTDTitle, div.zzSTDTitle {
         
     | 
| 
      
 1001 
     | 
    
         
            +
                margin-top: 20.0pt;
         
     | 
| 
      
 1002 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 1003 
     | 
    
         
            +
                margin-bottom: 38.0pt;
         
     | 
| 
      
 1004 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 1005 
     | 
    
         
            +
                line-height: 17.5pt;
         
     | 
| 
      
 1006 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 1007 
     | 
    
         
            +
                font-size: 16.0pt;
         
     | 
| 
      
 1008 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 1009 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 1010 
     | 
    
         
            +
              
         
     | 
| 
      
 1011 
     | 
    
         
            +
              p.zzSTDTitle1, li.zzSTDTitle1, div.zzSTDTitle1 {
         
     | 
| 
      
 1012 
     | 
    
         
            +
                margin-top: 0pt;
         
     | 
| 
      
 1013 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 1014 
     | 
    
         
            +
                margin-bottom: 18.0pt;
         
     | 
| 
      
 1015 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 1016 
     | 
    
         
            +
                line-height: 17.5pt;
         
     | 
| 
      
 1017 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 1018 
     | 
    
         
            +
                font-size: 16.0pt;
         
     | 
| 
      
 1019 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 1020 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 1021 
     | 
    
         
            +
              
         
     | 
| 
      
 1022 
     | 
    
         
            +
              p.Quote, li.Quote, div.Quote {
         
     | 
| 
      
 1023 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 1024 
     | 
    
         
            +
                margin-right: 36.0pt;
         
     | 
| 
      
 1025 
     | 
    
         
            +
                margin-bottom: 0cm;
         
     | 
| 
      
 1026 
     | 
    
         
            +
                margin-left: 36.0pt;
         
     | 
| 
      
 1027 
     | 
    
         
            +
                text-align: justify;
         
     | 
| 
      
 1028 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 1029 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 1030 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 1031 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 1032 
     | 
    
         
            +
              
         
     | 
| 
      
 1033 
     | 
    
         
            +
              p.QuoteAttribution {
         
     | 
| 
      
 1034 
     | 
    
         
            +
                text-align: right; }
         
     | 
| 
      
 1035 
     | 
    
         
            +
              
         
     | 
| 
      
 1036 
     | 
    
         
            +
              p.Admonition, li.Admonition, div.Admonition {
         
     | 
| 
      
 1037 
     | 
    
         
            +
                border: none;
         
     | 
| 
      
 1038 
     | 
    
         
            +
                padding: 0cm;
         
     | 
| 
      
 1039 
     | 
    
         
            +
                font-size: 12.0pt;
         
     | 
| 
      
 1040 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 1041 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 1042 
     | 
    
         
            +
              
         
     | 
| 
      
 1043 
     | 
    
         
            +
              p.Code, li.Code, div.Code {
         
     | 
| 
      
 1044 
     | 
    
         
            +
                margin: 0cm;
         
     | 
| 
      
 1045 
     | 
    
         
            +
                margin-bottom: .0001pt;
         
     | 
| 
      
 1046 
     | 
    
         
            +
                line-height: 10.0pt;
         
     | 
| 
      
 1047 
     | 
    
         
            +
                tab-stops: 20.15pt;
         
     | 
| 
      
 1048 
     | 
    
         
            +
                font-size: 9.0pt;
         
     | 
| 
      
 1049 
     | 
    
         
            +
                font-family: "Courier New", monospace; }
         
     | 
| 
      
 1050 
     | 
    
         
            +
              
         
     | 
| 
      
 1051 
     | 
    
         
            +
              p.Formula, li.Formula, div.Formula {
         
     | 
| 
      
 1052 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 1053 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 1054 
     | 
    
         
            +
                margin-bottom: 11.0pt;
         
     | 
| 
      
 1055 
     | 
    
         
            +
                margin-left: 20.15pt;
         
     | 
| 
      
 1056 
     | 
    
         
            +
                line-height: 12.0pt;
         
     | 
| 
      
 1057 
     | 
    
         
            +
                tab-stops: right 487.45pt;
         
     | 
| 
      
 1058 
     | 
    
         
            +
                font-size: 11.0pt;
         
     | 
| 
      
 1059 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 1060 
     | 
    
         
            +
              
         
     | 
| 
      
 1061 
     | 
    
         
            +
              table.dl {
         
     | 
| 
      
 1062 
     | 
    
         
            +
                margin-top: 0cm;
         
     | 
| 
      
 1063 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 1064 
     | 
    
         
            +
                margin-bottom: 11.0pt;
         
     | 
| 
      
 1065 
     | 
    
         
            +
                margin-left: 20.15pt; }
         
     | 
| 
      
 1066 
     | 
    
         
            +
              
         
     | 
| 
      
 1067 
     | 
    
         
            +
              .h2Annex {
         
     | 
| 
      
 1068 
     | 
    
         
            +
                margin-top: 3.0pt;
         
     | 
| 
      
 1069 
     | 
    
         
            +
                margin-right: 0cm;
         
     | 
| 
      
 1070 
     | 
    
         
            +
                margin-bottom: 12.0pt;
         
     | 
| 
      
 1071 
     | 
    
         
            +
                margin-left: 0cm;
         
     | 
| 
      
 1072 
     | 
    
         
            +
                text-indent: 0cm;
         
     | 
| 
      
 1073 
     | 
    
         
            +
                line-height: 12.5pt;
         
     | 
| 
      
 1074 
     | 
    
         
            +
                page-break-after: avoid;
         
     | 
| 
      
 1075 
     | 
    
         
            +
                tab-stops: 27.0pt 35.0pt;
         
     | 
| 
      
 1076 
     | 
    
         
            +
                font-size: 12.0pt;
         
     | 
| 
      
 1077 
     | 
    
         
            +
                font-family: "Cambria", serif;
         
     | 
| 
      
 1078 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 1079 
     | 
    
         
            +
              
         
     | 
| 
      
 1080 
     | 
    
         
            +
              ol {
         
     | 
| 
      
 1081 
     | 
    
         
            +
                margin-bottom: 0cm; }
         
     | 
| 
      
 1082 
     | 
    
         
            +
              
         
     | 
| 
      
 1083 
     | 
    
         
            +
              ul {
         
     | 
| 
      
 1084 
     | 
    
         
            +
                margin-bottom: 0cm; }
         
     | 
| 
      
 1085 
     | 
    
         
            +
              
         
     | 
| 
      
 1086 
     | 
    
         
            +
              table.MsoISOTable {
         
     | 
| 
      
 1087 
     | 
    
         
            +
                border-collapse: collapse;
         
     | 
| 
      
 1088 
     | 
    
         
            +
                border: solid windowtext 2pt;
         
     | 
| 
      
 1089 
     | 
    
         
            +
                font-size: 10.0pt;
         
     | 
| 
      
 1090 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 1091 
     | 
    
         
            +
              
         
     | 
| 
      
 1092 
     | 
    
         
            +
              table.MsoISOTable tr {
         
     | 
| 
      
 1093 
     | 
    
         
            +
                page-break-inside: avoid; }
         
     | 
| 
      
 1094 
     | 
    
         
            +
              
         
     | 
| 
      
 1095 
     | 
    
         
            +
              table.MsoISOTable th {
         
     | 
| 
      
 1096 
     | 
    
         
            +
                border: solid windowtext 1pt;
         
     | 
| 
      
 1097 
     | 
    
         
            +
                padding: 0cm 2.85pt 0cm 2.85pt; }
         
     | 
| 
      
 1098 
     | 
    
         
            +
              
         
     | 
| 
      
 1099 
     | 
    
         
            +
              table.MsoISOTable td {
         
     | 
| 
      
 1100 
     | 
    
         
            +
                border: solid windowtext 1pt;
         
     | 
| 
      
 1101 
     | 
    
         
            +
                padding: 0cm 2.85pt 0cm 2.85pt; }
         
     | 
| 
      
 1102 
     | 
    
         
            +
              
         
     | 
| 
      
 1103 
     | 
    
         
            +
              table.MsoTableGrid {
         
     | 
| 
      
 1104 
     | 
    
         
            +
                border: solid windowtext 1.0pt;
         
     | 
| 
      
 1105 
     | 
    
         
            +
                font-size: 10.0pt;
         
     | 
| 
      
 1106 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 1107 
     | 
    
         
            +
              
         
     | 
| 
      
 1108 
     | 
    
         
            +
              td {
         
     | 
| 
      
 1109 
     | 
    
         
            +
                page-break-inside: avoid; }
         
     | 
| 
      
 1110 
     | 
    
         
            +
              
         
     | 
| 
      
 1111 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 1112 
     | 
    
         
            +
                page-break-after: avoid; }
         
     | 
| 
      
 1113 
     | 
    
         
            +
              
         
     | 
| 
      
 1114 
     | 
    
         
            +
              span.stem {
         
     | 
| 
      
 1115 
     | 
    
         
            +
                font-family: "Cambria Math",serif;
         
     | 
| 
      
 1116 
     | 
    
         
            +
                font-style: italic; }
         
     | 
| 
      
 1117 
     | 
    
         
            +
              
         
     | 
| 
      
 1118 
     | 
    
         
            +
              div.formula {
         
     | 
| 
      
 1119 
     | 
    
         
            +
                tab-stops: right 487.45pt; }
         
     | 
| 
      
 1120 
     | 
    
         
            +
              
         
     | 
| 
      
 1121 
     | 
    
         
            +
              body {
         
     | 
| 
      
 1122 
     | 
    
         
            +
                tab-interval: 36.0pt; }
         
     | 
| 
      
 1123 
     | 
    
         
            +
              
         
     | 
| 
      
 1124 
     | 
    
         
            +
              dt {
         
     | 
| 
      
 1125 
     | 
    
         
            +
                page-break-inside: avoid;
         
     | 
| 
      
 1126 
     | 
    
         
            +
                page-break-after: avoid; }
         
     | 
| 
      
 1127 
     | 
    
         
            +
              
         
     | 
| 
      
 1128 
     | 
    
         
            +
              .coverpage_docnumber {
         
     | 
| 
      
 1129 
     | 
    
         
            +
                text-align: right;
         
     | 
| 
      
 1130 
     | 
    
         
            +
                font-size: 14.0pt;
         
     | 
| 
      
 1131 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 1132 
     | 
    
         
            +
              
         
     | 
| 
      
 1133 
     | 
    
         
            +
              .coverpage_techcommittee {
         
     | 
| 
      
 1134 
     | 
    
         
            +
                text-align: right; }
         
     | 
| 
      
 1135 
     | 
    
         
            +
              
         
     | 
| 
      
 1136 
     | 
    
         
            +
              .coverpage_docstage {
         
     | 
| 
      
 1137 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 1138 
     | 
    
         
            +
                font-size: 30.0pt;
         
     | 
| 
      
 1139 
     | 
    
         
            +
                color: #485094; }
         
     | 
| 
      
 1140 
     | 
    
         
            +
              
         
     | 
| 
      
 1141 
     | 
    
         
            +
              div.doctitle {
         
     | 
| 
      
 1142 
     | 
    
         
            +
                margin-top: 100.0pt;
         
     | 
| 
      
 1143 
     | 
    
         
            +
                text-align: left;
         
     | 
| 
      
 1144 
     | 
    
         
            +
                font-size: 16.0pt; }
         
     | 
| 
      
 1145 
     | 
    
         
            +
              
         
     | 
| 
      
 1146 
     | 
    
         
            +
              div.coverpage_warning {
         
     | 
| 
      
 1147 
     | 
    
         
            +
                border: solid windowtext 1.0pt #485094;
         
     | 
| 
      
 1148 
     | 
    
         
            +
                padding: 1.0pt 4.0pt 1.0pt 4.0pt #485094;
         
     | 
| 
      
 1149 
     | 
    
         
            +
                margin-left: 4.25pt;
         
     | 
| 
      
 1150 
     | 
    
         
            +
                margin-right: 4.25pt; }
         
     | 
| 
      
 1151 
     | 
    
         
            +
              
         
     | 
| 
      
 1152 
     | 
    
         
            +
              .coverpage_warning {
         
     | 
| 
      
 1153 
     | 
    
         
            +
                color: #485094;
         
     | 
| 
      
 1154 
     | 
    
         
            +
                font-size: 10.0pt; }
         
     | 
| 
      
 1155 
     | 
    
         
            +
              
         
     | 
| 
      
 1156 
     | 
    
         
            +
              .coverpage {
         
     | 
| 
      
 1157 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 1158 
     | 
    
         
            +
                margin: 2em 0; }
         
     | 
| 
      
 1159 
     | 
    
         
            +
              
         
     | 
| 
      
 1160 
     | 
    
         
            +
              .coverpage-logo {
         
     | 
| 
      
 1161 
     | 
    
         
            +
                color: #485094; }
         
     | 
| 
      
 1162 
     | 
    
         
            +
              
         
     | 
| 
      
 1163 
     | 
    
         
            +
              .coverpage-tc-name {
         
     | 
| 
      
 1164 
     | 
    
         
            +
                color: #485094;
         
     | 
| 
      
 1165 
     | 
    
         
            +
                font-size: 1.2em;
         
     | 
| 
      
 1166 
     | 
    
         
            +
                line-height: 1.2em;
         
     | 
| 
      
 1167 
     | 
    
         
            +
                margin: 0.25em 0; }
         
     | 
| 
      
 1168 
     | 
    
         
            +
              
         
     | 
| 
      
 1169 
     | 
    
         
            +
              .coverpage-doc-identity {
         
     | 
| 
      
 1170 
     | 
    
         
            +
                background-color: #485094;
         
     | 
| 
      
 1171 
     | 
    
         
            +
                color: white;
         
     | 
| 
      
 1172 
     | 
    
         
            +
                font-size: 2em;
         
     | 
| 
      
 1173 
     | 
    
         
            +
                line-height: 2em;
         
     | 
| 
      
 1174 
     | 
    
         
            +
                margin: 0.5em 0; }
         
     | 
| 
      
 1175 
     | 
    
         
            +
              
         
     | 
| 
      
 1176 
     | 
    
         
            +
              .coverpage-title {
         
     | 
| 
      
 1177 
     | 
    
         
            +
                font-weight: 400; }
         
     | 
| 
      
 1178 
     | 
    
         
            +
              
         
     | 
| 
      
 1179 
     | 
    
         
            +
              .coverpage-title .title-second {
         
     | 
| 
      
 1180 
     | 
    
         
            +
                display: none; }
         
     | 
| 
      
 1181 
     | 
    
         
            +
              
         
     | 
| 
      
 1182 
     | 
    
         
            +
              .coverpage-stage-block {
         
     | 
| 
      
 1183 
     | 
    
         
            +
                font-style: italic;
         
     | 
| 
      
 1184 
     | 
    
         
            +
                font-size: 1.25em;
         
     | 
| 
      
 1185 
     | 
    
         
            +
                font-weight: 600; }
         
     | 
| 
      
 1186 
     | 
    
         
            +
              
         
     | 
| 
      
 1187 
     | 
    
         
            +
              .coverpage-warning {
         
     | 
| 
      
 1188 
     | 
    
         
            +
                border-top: solid 1px #f36f36;
         
     | 
| 
      
 1189 
     | 
    
         
            +
                border-bottom: solid 1px #f36f36;
         
     | 
| 
      
 1190 
     | 
    
         
            +
                margin: 1em 2em;
         
     | 
| 
      
 1191 
     | 
    
         
            +
                color: #485094;
         
     | 
| 
      
 1192 
     | 
    
         
            +
                padding: 1em; }
         
     | 
| 
      
 1193 
     | 
    
         
            +
              
         
     | 
| 
      
 1194 
     | 
    
         
            +
              .coverpage-warning .title {
         
     | 
| 
      
 1195 
     | 
    
         
            +
                color: #f36f36;
         
     | 
| 
      
 1196 
     | 
    
         
            +
                font-weight: 500; }
         
     | 
| 
      
 1197 
     | 
    
         
            +
              
         
     | 
| 
      
 1198 
     | 
    
         
            +
              .coverpage-warning .content {
         
     | 
| 
      
 1199 
     | 
    
         
            +
                font-style: italic; }
         
     | 
| 
      
 1200 
     | 
    
         
            +
              
         
     | 
| 
      
 1201 
     | 
    
         
            +
              .copyright {
         
     | 
| 
      
 1202 
     | 
    
         
            +
                padding: 1em; }
         
     | 
| 
      
 1203 
     | 
    
         
            +
              
         
     | 
| 
      
 1204 
     | 
    
         
            +
              .copyright .name {
         
     | 
| 
      
 1205 
     | 
    
         
            +
                color: #485094;
         
     | 
| 
      
 1206 
     | 
    
         
            +
                font-weight: 600; }
         
     | 
| 
      
 1207 
     | 
    
         
            +
              
         
     | 
| 
      
 1208 
     | 
    
         
            +
              .copyright .address {
         
     | 
| 
      
 1209 
     | 
    
         
            +
                color: #485094; }
         
     | 
| 
      
 1210 
     | 
    
         
            +
              
         
     | 
| 
      
 1211 
     | 
    
         
            +
              div.rule {
         
     | 
| 
      
 1212 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 1213 
     | 
    
         
            +
                height: 1px;
         
     | 
| 
      
 1214 
     | 
    
         
            +
                background-color: #485094;
         
     | 
| 
      
 1215 
     | 
    
         
            +
                margin: 2em 0; }
         
     | 
| 
      
 1216 
     | 
    
         
            +
              
         
     | 
| 
      
 1217 
     | 
    
         
            +
              #toc-list ul {
         
     | 
| 
      
 1218 
     | 
    
         
            +
                margin-bottom: 0.25em; }
         
     | 
| 
      
 1219 
     | 
    
         
            +
              
         
     | 
| 
      
 1220 
     | 
    
         
            +
              #toc-list li {
         
     | 
| 
      
 1221 
     | 
    
         
            +
                list-style-type: none; }
         
     | 
| 
      
 1222 
     | 
    
         
            +
              
         
     | 
| 
      
 1223 
     | 
    
         
            +
              .MsoTocTextSpan {
         
     | 
| 
      
 1224 
     | 
    
         
            +
                color: windowtext;
         
     | 
| 
      
 1225 
     | 
    
         
            +
                display: none;
         
     | 
| 
      
 1226 
     | 
    
         
            +
                text-decoration: none;
         
     | 
| 
      
 1227 
     | 
    
         
            +
                text-underline: none; }
         
     | 
| 
      
 1228 
     | 
    
         
            +
              
         
     | 
| 
      
 1229 
     | 
    
         
            +
              a.TableFootnoteRef {
         
     | 
| 
      
 1230 
     | 
    
         
            +
                vertical-align: super; }
         
     | 
| 
      
 1231 
     | 
    
         
            +
              
         
     | 
| 
      
 1232 
     | 
    
         
            +
              aside {
         
     | 
| 
      
 1233 
     | 
    
         
            +
                font-size: 10.0pt; }
         
     | 
| 
      
 1234 
     | 
    
         
            +
              
         
     | 
| 
      
 1235 
     | 
    
         
            +
              /*
         
     | 
| 
      
 1236 
     | 
    
         
            +
              div.example {
         
     | 
| 
      
 1237 
     | 
    
         
            +
                  border:solid black .25pt;
         
     | 
| 
      
 1238 
     | 
    
         
            +
              
         
     | 
| 
      
 1239 
     | 
    
         
            +
                  padding:10pt;
         
     | 
| 
      
 1240 
     | 
    
         
            +
              
         
     | 
| 
      
 1241 
     | 
    
         
            +
                  margin:10pt;
         
     | 
| 
      
 1242 
     | 
    
         
            +
              
         
     | 
| 
      
 1243 
     | 
    
         
            +
              }
         
     | 
| 
      
 1244 
     | 
    
         
            +
              *//*
         
     | 
| 
      
 1245 
     | 
    
         
            +
              div.example {
         
     | 
| 
      
 1246 
     | 
    
         
            +
                margin-left: 70.9pt;
         
     | 
| 
      
 1247 
     | 
    
         
            +
                text-indent: -70.9pt; }
         
     | 
| 
      
 1248 
     | 
    
         
            +
              
         
     | 
| 
      
 1249 
     | 
    
         
            +
              p.example, li.example, div.example, td.example, td.example p {
         
     | 
| 
      
 1250 
     | 
    
         
            +
                margin: 0in;
         
     | 
| 
      
 1251 
     | 
    
         
            +
                margin-bottom: .0001pt;
         
     | 
| 
      
 1252 
     | 
    
         
            +
                font-size: 10.0pt;
         
     | 
| 
      
 1253 
     | 
    
         
            +
                font-family: "Cambria", serif; }
         
     | 
| 
      
 1254 
     | 
    
         
            +
              
         
     | 
| 
      
 1255 
     | 
    
         
            +
              span.note_label, span.example_label, td.example_label, td.note_label {
         
     | 
| 
      
 1256 
     | 
    
         
            +
                font-size: 10.0pt;
         
     | 
| 
      
 1257 
     | 
    
         
            +
                font-family: "Cambria", serif; }*/
         
     |