
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_fb0d786fe7aead8a16976058.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_37600394e8813e356e306204.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.782000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_87f9de250c5eb150c06eaaa3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3a15d695739387c5e207b77d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_774475e0d4e4b0c5debb9899.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5542210c3b01e0ef547c6a26.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_47585e12849ed967cc65b11b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2804e79309c52625687b8071.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.745000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_51692c88d9075e42f021c0e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_42ad30970a2746c515ad6678.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bf2e77a9e4303887e5da88b9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7945971be2ea4d6e675def54.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_230c75a85ee265d44bfe53b9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_37600394e8813e356e306204.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.782000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_87f9de250c5eb150c06eaaa3.woff2')format("woff");}.fff{font-family:fff;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_75115c258508b0f3c8e650af.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-15.969600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.400000px;}
.v2{vertical-align:15.984000px;}
.v4{vertical-align:17.754000px;}
.ls3{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.210000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls8{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.648000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws39{word-spacing:-15.660000px;}
.ws4{word-spacing:-15.012000px;}
.ws1{word-spacing:-14.400000px;}
.ws3{word-spacing:-13.344000px;}
.ws0{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.340800px;}
.ws4c{word-spacing:-3.744000px;}
.ws34{word-spacing:-2.970000px;}
.wsb{word-spacing:-2.898000px;}
.ws7{word-spacing:-2.640000px;}
.ws35{word-spacing:-2.214000px;}
.ws1c{word-spacing:-2.106000px;}
.ws3e{word-spacing:-1.458000px;}
.ws14{word-spacing:-1.428000px;}
.ws1b{word-spacing:-1.296000px;}
.ws40{word-spacing:-1.080000px;}
.ws30{word-spacing:-0.972000px;}
.ws26{word-spacing:-0.918000px;}
.wsf{word-spacing:-0.714000px;}
.ws4d{word-spacing:-0.576000px;}
.ws4b{word-spacing:-0.528000px;}
.ws3f{word-spacing:-0.432000px;}
.ws8{word-spacing:-0.168000px;}
.wsc{word-spacing:-0.084000px;}
.ws5{word-spacing:0.000000px;}
.ws1e{word-spacing:0.054000px;}
.ws13{word-spacing:0.210000px;}
.ws1f{word-spacing:0.486000px;}
.ws49{word-spacing:0.528000px;}
.ws2f{word-spacing:0.810000px;}
.wse{word-spacing:0.840000px;}
.ws3a{word-spacing:0.918000px;}
.ws1d{word-spacing:1.080000px;}
.ws23{word-spacing:1.350000px;}
.ws47{word-spacing:1.404000px;}
.ws2b{word-spacing:1.512000px;}
.ws2e{word-spacing:1.566000px;}
.ws11{word-spacing:1.680000px;}
.ws25{word-spacing:1.782000px;}
.ws1a{word-spacing:1.836000px;}
.ws2d{word-spacing:2.322000px;}
.ws29{word-spacing:2.376000px;}
.ws9{word-spacing:2.520000px;}
.ws46{word-spacing:2.808000px;}
.ws18{word-spacing:3.078000px;}
.ws38{word-spacing:3.834000px;}
.ws10{word-spacing:4.494000px;}
.ws24{word-spacing:4.968000px;}
.ws2a{word-spacing:5.076000px;}
.wsd{word-spacing:5.292000px;}
.ws41{word-spacing:5.562000px;}
.ws48{word-spacing:5.616000px;}
.ws19{word-spacing:5.886000px;}
.ws45{word-spacing:6.102000px;}
.ws32{word-spacing:6.372000px;}
.ws4a{word-spacing:6.384000px;}
.ws3d{word-spacing:7.344000px;}
.ws37{word-spacing:7.560000px;}
.ws3c{word-spacing:7.884000px;}
.ws28{word-spacing:7.938000px;}
.ws16{word-spacing:8.046000px;}
.ws3b{word-spacing:8.154000px;}
.ws36{word-spacing:8.208000px;}
.ws42{word-spacing:8.370000px;}
.ws15{word-spacing:8.484000px;}
.ws44{word-spacing:8.694000px;}
.ws21{word-spacing:9.018000px;}
.ws33{word-spacing:9.072000px;}
.ws27{word-spacing:9.396000px;}
.ws12{word-spacing:10.038000px;}
.ws43{word-spacing:10.044000px;}
.wsa{word-spacing:10.668000px;}
.ws20{word-spacing:15.066000px;}
.ws31{word-spacing:16.308000px;}
.ws17{word-spacing:17.172000px;}
.ws22{word-spacing:18.684000px;}
.ws2c{word-spacing:21.060000px;}
.ws6{word-spacing:202.656000px;}
._4{margin-left:-5.328000px;}
._8{margin-left:-3.704400px;}
._1{margin-left:-2.654400px;}
._7{margin-left:-1.629600px;}
._9{width:1.281000px;}
._3{width:2.697600px;}
._a{width:3.964800px;}
._e{width:5.351400px;}
._d{width:6.458400px;}
._5{width:7.606200px;}
._6{width:11.348400px;}
._c{width:16.426800px;}
._2{width:51.906000px;}
._0{width:798.186000px;}
._b{width:1163.076600px;}
.fc4{color:rgb(93,138,132);}
.fc3{color:rgb(59,75,167);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(244,114,22);}
.fc0{color:rgb(79,76,77);}
.fs3{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs4{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:22.381950px;}
.y1{bottom:46.871400px;}
.y3{bottom:47.797950px;}
.y6b{bottom:51.146400px;}
.y6c{bottom:51.282450px;}
.y6d{bottom:51.403950px;}
.y6a{bottom:114.643500px;}
.y69{bottom:149.892000px;}
.y35{bottom:152.108850px;}
.y34{bottom:168.604350px;}
.y68{bottom:185.140500px;}
.y33{bottom:197.857350px;}
.y67{bottom:201.637500px;}
.y32{bottom:214.352850px;}
.y66{bottom:218.134500px;}
.y31{bottom:230.848350px;}
.y65{bottom:234.631500px;}
.y30{bottom:247.343850px;}
.y64{bottom:251.128500px;}
.y2f{bottom:263.839350px;}
.y63{bottom:267.625500px;}
.y2e{bottom:280.334850px;}
.y62{bottom:284.122500px;}
.y2d{bottom:296.830350px;}
.y61{bottom:300.619500px;}
.y2c{bottom:313.325850px;}
.y60{bottom:317.116500px;}
.y2b{bottom:329.821350px;}
.y5f{bottom:333.613500px;}
.y2a{bottom:346.316850px;}
.y5e{bottom:350.110500px;}
.y29{bottom:362.812350px;}
.y5d{bottom:366.607500px;}
.y28{bottom:379.307850px;}
.y5c{bottom:383.104500px;}
.y5b{bottom:399.601500px;}
.y27{bottom:408.560850px;}
.y5a{bottom:416.098500px;}
.y26{bottom:425.056350px;}
.y59{bottom:432.595500px;}
.y58{bottom:449.092500px;}
.y25{bottom:450.056850px;}
.y57{bottom:465.589500px;}
.y24{bottom:466.552350px;}
.y23{bottom:483.047850px;}
.y22{bottom:499.543350px;}
.y56{bottom:500.838000px;}
.y21{bottom:516.038850px;}
.y55{bottom:517.335000px;}
.y20{bottom:532.534350px;}
.y1f{bottom:549.029850px;}
.y54{bottom:552.583500px;}
.y1e{bottom:565.525350px;}
.y53{bottom:569.080500px;}
.y1d{bottom:582.020850px;}
.y52{bottom:585.577500px;}
.y1c{bottom:598.516350px;}
.y51{bottom:602.074500px;}
.y1b{bottom:615.011850px;}
.y50{bottom:618.571500px;}
.y1a{bottom:631.507350px;}
.y4f{bottom:635.068500px;}
.y4e{bottom:651.565500px;}
.y19{bottom:666.007350px;}
.y4d{bottom:668.062500px;}
.y18{bottom:682.507350px;}
.y4c{bottom:684.559500px;}
.y17{bottom:699.007350px;}
.y4b{bottom:701.056500px;}
.y4a{bottom:717.610500px;}
.y49{bottom:734.107500px;}
.y16{bottom:734.135250px;}
.y48{bottom:750.604500px;}
.y15{bottom:752.759250px;}
.y47{bottom:767.101500px;}
.y46{bottom:783.598500px;}
.y14{bottom:787.885200px;}
.y45{bottom:800.095500px;}
.y13{bottom:804.385200px;}
.y44{bottom:816.592500px;}
.y75{bottom:821.101500px;}
.y12{bottom:824.881200px;}
.y7a{bottom:826.753500px;}
.y43{bottom:833.089500px;}
.y11{bottom:837.385200px;}
.y74{bottom:837.598500px;}
.y79{bottom:845.053500px;}
.y42{bottom:849.586500px;}
.y73{bottom:854.095500px;}
.y10{bottom:857.881200px;}
.y78{bottom:863.353500px;}
.y41{bottom:866.083500px;}
.yf{bottom:870.385200px;}
.y72{bottom:870.592500px;}
.y77{bottom:881.653500px;}
.ye{bottom:886.885200px;}
.y71{bottom:887.089500px;}
.y76{bottom:899.953500px;}
.y40{bottom:901.332000px;}
.y70{bottom:903.586500px;}
.yd{bottom:907.377600px;}
.y6f{bottom:920.083500px;}
.yc{bottom:936.385200px;}
.y3f{bottom:936.580500px;}
.yb{bottom:952.885200px;}
.y3e{bottom:953.077500px;}
.ya{bottom:969.385200px;}
.y3d{bottom:969.574500px;}
.y3c{bottom:986.071500px;}
.y9{bottom:1002.400200px;}
.y3b{bottom:1002.568500px;}
.y8{bottom:1018.897200px;}
.y3a{bottom:1019.065500px;}
.y7{bottom:1035.394200px;}
.y39{bottom:1035.562500px;}
.y6{bottom:1051.891200px;}
.y38{bottom:1052.059500px;}
.y5{bottom:1068.388200px;}
.y6e{bottom:1068.556500px;}
.y4{bottom:1084.885200px;}
.y37{bottom:1085.053500px;}
.y2{bottom:1121.037900px;}
.h8{height:30.121875px;}
.hc{height:31.080000px;}
.hd{height:33.600000px;}
.he{height:37.652344px;}
.h10{height:39.313477px;}
.h2{height:39.960000px;}
.h6{height:40.284000px;}
.h7{height:40.848000px;}
.h5{height:41.688000px;}
.h9{height:43.031250px;}
.hb{height:46.098075px;}
.ha{height:46.105875px;}
.hf{height:48.410156px;}
.h4{height:50.810156px;}
.h11{height:51.641109px;}
.h3{height:74.112000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x3{left:109.968600px;}
.x4{left:119.055150px;}
.xa{left:128.546550px;}
.x5{left:164.850750px;}
.x1{left:453.565200px;}
.x7{left:474.099000px;}
.xb{left:475.594500px;}
.x6{left:492.094500px;}
.x9{left:506.450700px;}
.x2{left:644.480700px;}
.x8{left:645.597150px;}
@media print{
.v3{vertical-align:-14.195200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.133333pt;}
.v2{vertical-align:14.208000pt;}
.v4{vertical-align:15.781333pt;}
.ls3{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.186667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls8{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.576000pt;}
.ws39{word-spacing:-13.920000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws1{word-spacing:-12.800000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws0{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.302933pt;}
.ws4c{word-spacing:-3.328000pt;}
.ws34{word-spacing:-2.640000pt;}
.wsb{word-spacing:-2.576000pt;}
.ws7{word-spacing:-2.346667pt;}
.ws35{word-spacing:-1.968000pt;}
.ws1c{word-spacing:-1.872000pt;}
.ws3e{word-spacing:-1.296000pt;}
.ws14{word-spacing:-1.269333pt;}
.ws1b{word-spacing:-1.152000pt;}
.ws40{word-spacing:-0.960000pt;}
.ws30{word-spacing:-0.864000pt;}
.ws26{word-spacing:-0.816000pt;}
.wsf{word-spacing:-0.634667pt;}
.ws4d{word-spacing:-0.512000pt;}
.ws4b{word-spacing:-0.469333pt;}
.ws3f{word-spacing:-0.384000pt;}
.ws8{word-spacing:-0.149333pt;}
.wsc{word-spacing:-0.074667pt;}
.ws5{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.048000pt;}
.ws13{word-spacing:0.186667pt;}
.ws1f{word-spacing:0.432000pt;}
.ws49{word-spacing:0.469333pt;}
.ws2f{word-spacing:0.720000pt;}
.wse{word-spacing:0.746667pt;}
.ws3a{word-spacing:0.816000pt;}
.ws1d{word-spacing:0.960000pt;}
.ws23{word-spacing:1.200000pt;}
.ws47{word-spacing:1.248000pt;}
.ws2b{word-spacing:1.344000pt;}
.ws2e{word-spacing:1.392000pt;}
.ws11{word-spacing:1.493333pt;}
.ws25{word-spacing:1.584000pt;}
.ws1a{word-spacing:1.632000pt;}
.ws2d{word-spacing:2.064000pt;}
.ws29{word-spacing:2.112000pt;}
.ws9{word-spacing:2.240000pt;}
.ws46{word-spacing:2.496000pt;}
.ws18{word-spacing:2.736000pt;}
.ws38{word-spacing:3.408000pt;}
.ws10{word-spacing:3.994667pt;}
.ws24{word-spacing:4.416000pt;}
.ws2a{word-spacing:4.512000pt;}
.wsd{word-spacing:4.704000pt;}
.ws41{word-spacing:4.944000pt;}
.ws48{word-spacing:4.992000pt;}
.ws19{word-spacing:5.232000pt;}
.ws45{word-spacing:5.424000pt;}
.ws32{word-spacing:5.664000pt;}
.ws4a{word-spacing:5.674667pt;}
.ws3d{word-spacing:6.528000pt;}
.ws37{word-spacing:6.720000pt;}
.ws3c{word-spacing:7.008000pt;}
.ws28{word-spacing:7.056000pt;}
.ws16{word-spacing:7.152000pt;}
.ws3b{word-spacing:7.248000pt;}
.ws36{word-spacing:7.296000pt;}
.ws42{word-spacing:7.440000pt;}
.ws15{word-spacing:7.541333pt;}
.ws44{word-spacing:7.728000pt;}
.ws21{word-spacing:8.016000pt;}
.ws33{word-spacing:8.064000pt;}
.ws27{word-spacing:8.352000pt;}
.ws12{word-spacing:8.922667pt;}
.ws43{word-spacing:8.928000pt;}
.wsa{word-spacing:9.482667pt;}
.ws20{word-spacing:13.392000pt;}
.ws31{word-spacing:14.496000pt;}
.ws17{word-spacing:15.264000pt;}
.ws22{word-spacing:16.608000pt;}
.ws2c{word-spacing:18.720000pt;}
.ws6{word-spacing:180.138667pt;}
._4{margin-left:-4.736000pt;}
._8{margin-left:-3.292800pt;}
._1{margin-left:-2.359467pt;}
._7{margin-left:-1.448533pt;}
._9{width:1.138667pt;}
._3{width:2.397867pt;}
._a{width:3.524267pt;}
._e{width:4.756800pt;}
._d{width:5.740800pt;}
._5{width:6.761067pt;}
._6{width:10.087467pt;}
._c{width:14.601600pt;}
._2{width:46.138667pt;}
._0{width:709.498667pt;}
._b{width:1033.845867pt;}
.fs3{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:19.895067pt;}
.y1{bottom:41.663467pt;}
.y3{bottom:42.487067pt;}
.y6b{bottom:45.463467pt;}
.y6c{bottom:45.584400pt;}
.y6d{bottom:45.692400pt;}
.y6a{bottom:101.905333pt;}
.y69{bottom:133.237333pt;}
.y35{bottom:135.207867pt;}
.y34{bottom:149.870533pt;}
.y68{bottom:164.569333pt;}
.y33{bottom:175.873200pt;}
.y67{bottom:179.233333pt;}
.y32{bottom:190.535867pt;}
.y66{bottom:193.897333pt;}
.y31{bottom:205.198533pt;}
.y65{bottom:208.561333pt;}
.y30{bottom:219.861200pt;}
.y64{bottom:223.225333pt;}
.y2f{bottom:234.523867pt;}
.y63{bottom:237.889333pt;}
.y2e{bottom:249.186533pt;}
.y62{bottom:252.553333pt;}
.y2d{bottom:263.849200pt;}
.y61{bottom:267.217333pt;}
.y2c{bottom:278.511867pt;}
.y60{bottom:281.881333pt;}
.y2b{bottom:293.174533pt;}
.y5f{bottom:296.545333pt;}
.y2a{bottom:307.837200pt;}
.y5e{bottom:311.209333pt;}
.y29{bottom:322.499867pt;}
.y5d{bottom:325.873333pt;}
.y28{bottom:337.162533pt;}
.y5c{bottom:340.537333pt;}
.y5b{bottom:355.201333pt;}
.y27{bottom:363.165200pt;}
.y5a{bottom:369.865333pt;}
.y26{bottom:377.827867pt;}
.y59{bottom:384.529333pt;}
.y58{bottom:399.193333pt;}
.y25{bottom:400.050533pt;}
.y57{bottom:413.857333pt;}
.y24{bottom:414.713200pt;}
.y23{bottom:429.375867pt;}
.y22{bottom:444.038533pt;}
.y56{bottom:445.189333pt;}
.y21{bottom:458.701200pt;}
.y55{bottom:459.853333pt;}
.y20{bottom:473.363867pt;}
.y1f{bottom:488.026533pt;}
.y54{bottom:491.185333pt;}
.y1e{bottom:502.689200pt;}
.y53{bottom:505.849333pt;}
.y1d{bottom:517.351867pt;}
.y52{bottom:520.513333pt;}
.y1c{bottom:532.014533pt;}
.y51{bottom:535.177333pt;}
.y1b{bottom:546.677200pt;}
.y50{bottom:549.841333pt;}
.y1a{bottom:561.339867pt;}
.y4f{bottom:564.505333pt;}
.y4e{bottom:579.169333pt;}
.y19{bottom:592.006533pt;}
.y4d{bottom:593.833333pt;}
.y18{bottom:606.673200pt;}
.y4c{bottom:608.497333pt;}
.y17{bottom:621.339867pt;}
.y4b{bottom:623.161333pt;}
.y4a{bottom:637.876000pt;}
.y49{bottom:652.540000pt;}
.y16{bottom:652.564667pt;}
.y48{bottom:667.204000pt;}
.y15{bottom:669.119333pt;}
.y47{bottom:681.868000pt;}
.y46{bottom:696.532000pt;}
.y14{bottom:700.342400pt;}
.y45{bottom:711.196000pt;}
.y13{bottom:715.009067pt;}
.y44{bottom:725.860000pt;}
.y75{bottom:729.868000pt;}
.y12{bottom:733.227733pt;}
.y7a{bottom:734.892000pt;}
.y43{bottom:740.524000pt;}
.y11{bottom:744.342400pt;}
.y74{bottom:744.532000pt;}
.y79{bottom:751.158667pt;}
.y42{bottom:755.188000pt;}
.y73{bottom:759.196000pt;}
.y10{bottom:762.561067pt;}
.y78{bottom:767.425333pt;}
.y41{bottom:769.852000pt;}
.yf{bottom:773.675733pt;}
.y72{bottom:773.860000pt;}
.y77{bottom:783.692000pt;}
.ye{bottom:788.342400pt;}
.y71{bottom:788.524000pt;}
.y76{bottom:799.958667pt;}
.y40{bottom:801.184000pt;}
.y70{bottom:803.188000pt;}
.yd{bottom:806.557867pt;}
.y6f{bottom:817.852000pt;}
.yc{bottom:832.342400pt;}
.y3f{bottom:832.516000pt;}
.yb{bottom:847.009067pt;}
.y3e{bottom:847.180000pt;}
.ya{bottom:861.675733pt;}
.y3d{bottom:861.844000pt;}
.y3c{bottom:876.508000pt;}
.y9{bottom:891.022400pt;}
.y3b{bottom:891.172000pt;}
.y8{bottom:905.686400pt;}
.y3a{bottom:905.836000pt;}
.y7{bottom:920.350400pt;}
.y39{bottom:920.500000pt;}
.y6{bottom:935.014400pt;}
.y38{bottom:935.164000pt;}
.y5{bottom:949.678400pt;}
.y6e{bottom:949.828000pt;}
.y4{bottom:964.342400pt;}
.y37{bottom:964.492000pt;}
.y2{bottom:996.478133pt;}
.h8{height:26.775000pt;}
.hc{height:27.626667pt;}
.hd{height:29.866667pt;}
.he{height:33.468750pt;}
.h10{height:34.945312pt;}
.h2{height:35.520000pt;}
.h6{height:35.808000pt;}
.h7{height:36.309333pt;}
.h5{height:37.056000pt;}
.h9{height:38.250000pt;}
.hb{height:40.976067pt;}
.ha{height:40.983000pt;}
.hf{height:43.031250pt;}
.h4{height:45.164583pt;}
.h11{height:45.903208pt;}
.h3{height:65.877333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x3{left:97.749867pt;}
.x4{left:105.826800pt;}
.xa{left:114.263600pt;}
.x5{left:146.534000pt;}
.x1{left:403.169067pt;}
.x7{left:421.421333pt;}
.xb{left:422.750667pt;}
.x6{left:437.417333pt;}
.x9{left:450.178400pt;}
.x2{left:572.871733pt;}
.x8{left:573.864133pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  