
    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_2c957cca54aed8db7a63846e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998047;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_e5cf41a161d737d9abafcf1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981445;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_e26991a248094fd8b0052a3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.211426;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_9253d575708eb24c978e6dde.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.193848;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_db06b3de5a442920f334b9fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999023;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_02ec64f494bdb1cdc4ddc7cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_865a5c542885b7d7f752f2ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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.120072px;}
.v2{vertical-align:-12.240144px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120005px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001395px;}
.ls7{letter-spacing:0.001494px;}
.ls5{letter-spacing:0.001499px;}
.ls2{letter-spacing:0.001530px;}
.ls4{letter-spacing:0.001566px;}
.ls3{letter-spacing:0.001634px;}
.ls9{letter-spacing:0.181130px;}
.ls0{letter-spacing:5.941125px;}
.ls8{letter-spacing:8.821192px;}
.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;}
}
.ws3{word-spacing:-13.498763px;}
.ws0{word-spacing:-13.312998px;}
.ws1{word-spacing:-12.058875px;}
.ws4{word-spacing:-8.279235px;}
.ws5{word-spacing:-7.559303px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-3.483522px;}
._2{margin-left:-2.342248px;}
._1{margin-left:-1.033483px;}
._0{width:1.016342px;}
._d{width:2.038175px;}
._7{width:3.088758px;}
._11{width:4.089981px;}
._5{width:5.538227px;}
._6{width:6.797060px;}
._12{width:7.882105px;}
._3{width:8.983297px;}
._4{width:10.557917px;}
._f{width:11.771722px;}
._19{width:13.154148px;}
._c{width:14.689962px;}
._10{width:16.031036px;}
._a{width:17.780817px;}
._b{width:18.813352px;}
._9{width:19.820451px;}
._8{width:21.267333px;}
._14{width:22.884995px;}
._15{width:24.662369px;}
._17{width:25.833751px;}
._18{width:27.322761px;}
._16{width:30.391160px;}
._1a{width:44.470455px;}
._13{width:45.823725px;}
._1b{width:54.114219px;}
.fc1{color:rgb(255,47,146);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.237210px;}
.fs4{font-size:33.116940px;}
.fs3{font-size:48.235500px;}
.fs0{font-size:53.995050px;}
.fs2{font-size:59.754600px;}
.fs1{font-size:71.993250px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.080024px;}
.y54{bottom:75.779983px;}
.ya1{bottom:78.840018px;}
.y2a{bottom:79.019988px;}
.yc2{bottom:91.980010px;}
.y53{bottom:95.039978px;}
.y29{bottom:97.200027px;}
.y115{bottom:102.600013px;}
.y52{bottom:108.180037px;}
.yf9{bottom:109.620003px;}
.yae{bottom:111.240005px;}
.y28{bottom:115.379997px;}
.y114{bottom:120.779983px;}
.y84{bottom:124.379997px;}
.yc6{bottom:125.820030px;}
.y51{bottom:127.440033px;}
.y27{bottom:133.560035px;}
.yf8{bottom:138.060035px;}
.y113{bottom:139.139991px;}
.y50{bottom:140.580024px;}
.yd3{bottom:142.019988px;}
.y77{bottom:143.639991px;}
.y26{bottom:151.740005px;}
.yc5{bottom:156.240005px;}
.y4f{bottom:156.779983px;}
.y112{bottom:157.320030px;}
.y76{bottom:159.840018px;}
.yd2{bottom:167.220016px;}
.y25{bottom:169.560035px;}
.yf7{bottom:172.080024px;}
.y4e{bottom:172.980010px;}
.ya0{bottom:174.420043px;}
.y111{bottom:175.499999px;}
.y75{bottom:176.039978px;}
.yd1{bottom:184.499999px;}
.y24{bottom:187.200027px;}
.y4d{bottom:189.180037px;}
.yf6{bottom:189.360008px;}
.y74{bottom:190.620003px;}
.yad{bottom:192.240005px;}
.yc4{bottom:192.600013px;}
.y110{bottom:193.680037px;}
.y9f{bottom:200.519988px;}
.yd0{bottom:201.779983px;}
.y23{bottom:205.019988px;}
.y4c{bottom:205.379997px;}
.yf5{bottom:206.639991px;}
.yb2{bottom:206.820030px;}
.yc1{bottom:208.440033px;}
.yc3{bottom:210.779983px;}
.y10f{bottom:211.860008px;}
.y73{bottom:212.220016px;}
.y9e{bottom:218.700027px;}
.ycf{bottom:218.879997px;}
.y22{bottom:221.220016px;}
.y83{bottom:221.580024px;}
.yc0{bottom:223.019988px;}
.yf4{bottom:223.920043px;}
.y4b{bottom:224.639991px;}
.yb1{bottom:229.139991px;}
.y10e{bottom:230.039978px;}
.y72{bottom:230.940033px;}
.yce{bottom:236.159980px;}
.y9d{bottom:236.879997px;}
.y21{bottom:237.420043px;}
.y4a{bottom:237.779983px;}
.yac{bottom:240.840018px;}
.yf3{bottom:241.200027px;}
.yb0{bottom:247.320030px;}
.y10d{bottom:248.399986px;}
.y71{bottom:249.840018px;}
.ycd{bottom:253.440033px;}
.y20{bottom:253.620003px;}
.y9c{bottom:255.060035px;}
.yab{bottom:255.420043px;}
.y49{bottom:257.039978px;}
.yf2{bottom:258.300041px;}
.ybf{bottom:261.720016px;}
.yaf{bottom:265.499999px;}
.y10c{bottom:266.580024px;}
.y70{bottom:268.560035px;}
.y1f{bottom:269.820030px;}
.y48{bottom:270.180037px;}
.ycc{bottom:270.720016px;}
.y9b{bottom:273.240005px;}
.yf1{bottom:275.580024px;}
.ybe{bottom:279.899986px;}
.yaa{bottom:283.680037px;}
.y10b{bottom:284.759994px;}
.y1e{bottom:286.019988px;}
.y82{bottom:286.379997px;}
.y6f{bottom:287.279983px;}
.ycb{bottom:287.999999px;}
.y47{bottom:289.440033px;}
.y9a{bottom:291.420043px;}
.yf0{bottom:292.860008px;}
.ybd{bottom:298.080024px;}
.ya9{bottom:301.860008px;}
.y1d{bottom:302.220016px;}
.y10a{bottom:302.940033px;}
.y46{bottom:304.019988px;}
.yca{bottom:305.279983px;}
.y81{bottom:305.639991px;}
.y6e{bottom:305.999999px;}
.y99{bottom:309.779983px;}
.yef{bottom:310.139991px;}
.ybc{bottom:316.259994px;}
.y1c{bottom:318.420009px;}
.y80{bottom:320.220016px;}
.y109{bottom:321.120003px;}
.yc9{bottom:322.379997px;}
.y6d{bottom:324.720016px;}
.yee{bottom:327.420009px;}
.y98{bottom:327.960022px;}
.y45{bottom:334.439998px;}
.y1b{bottom:334.620003px;}
.ya8{bottom:338.400021px;}
.y108{bottom:339.480010px;}
.yc8{bottom:339.660015px;}
.y6c{bottom:343.439998px;}
.yed{bottom:344.700027px;}
.y97{bottom:346.140025px;}
.y7f{bottom:347.939998px;}
.y1a{bottom:350.640025px;}
.ybb{bottom:352.800006px;}
.y44{bottom:353.160015px;}
.ya7{bottom:356.580024px;}
.yc7{bottom:356.939998px;}
.y107{bottom:357.660015px;}
.yec{bottom:361.800006px;}
.y6b{bottom:362.340018px;}
.y96{bottom:364.319996px;}
.y7e{bottom:366.120003px;}
.y19{bottom:366.840018px;}
.yba{bottom:370.980010px;}
.y43{bottom:371.879997px;}
.ya6{bottom:374.759994px;}
.y106{bottom:375.840018px;}
.yeb{bottom:379.080024px;}
.y6a{bottom:381.060000px;}
.y95{bottom:381.960022px;}
.y18{bottom:383.040012px;}
.y7d{bottom:384.480010px;}
.yb9{bottom:389.160015px;}
.y42{bottom:390.600013px;}
.ya5{bottom:392.939998px;}
.y105{bottom:394.020023px;}
.yea{bottom:396.360008px;}
.y17{bottom:399.240005px;}
.y69{bottom:399.780017px;}
.y7c{bottom:402.660015px;}
.yb8{bottom:407.340018px;}
.y41{bottom:409.499999px;}
.ya4{bottom:411.300006px;}
.y104{bottom:412.200027px;}
.ye9{bottom:413.640025px;}
.y16{bottom:415.439998px;}
.y94{bottom:416.520023px;}
.y68{bottom:418.499999px;}
.y7b{bottom:420.840018px;}
.yb7{bottom:425.520023px;}
.y40{bottom:428.220016px;}
.ya3{bottom:429.480010px;}
.y103{bottom:430.379997px;}
.ye8{bottom:430.920009px;}
.y15{bottom:431.640025px;}
.y93{bottom:433.800006px;}
.y67{bottom:437.220016px;}
.y7a{bottom:439.020023px;}
.yb6{bottom:443.700027px;}
.y3f{bottom:446.939998px;}
.ya2{bottom:447.660015px;}
.y14{bottom:447.840018px;}
.ye7{bottom:448.200027px;}
.y102{bottom:448.740005px;}
.y92{bottom:451.080024px;}
.y66{bottom:455.939998px;}
.y79{bottom:457.200027px;}
.yb5{bottom:461.879997px;}
.y13{bottom:464.040012px;}
.ye6{bottom:465.300006px;}
.y3e{bottom:465.840018px;}
.y101{bottom:466.920009px;}
.y91{bottom:468.180004px;}
.y65{bottom:474.840018px;}
.y78{bottom:475.560000px;}
.y12{bottom:480.240005px;}
.yb4{bottom:481.319996px;}
.ye5{bottom:482.580024px;}
.y3d{bottom:484.020023px;}
.y100{bottom:485.100013px;}
.y90{bottom:485.460022px;}
.y64{bottom:493.560000px;}
.y11{bottom:496.439998px;}
.ye4{bottom:499.860008px;}
.yb3{bottom:500.759994px;}
.y3c{bottom:502.200027px;}
.y8f{bottom:503.280017px;}
.y63{bottom:512.280017px;}
.y10{bottom:512.640025px;}
.ye3{bottom:517.140025px;}
.y3b{bottom:520.560000px;}
.y8e{bottom:521.460022px;}
.yf{bottom:528.840018px;}
.y62{bottom:530.999999px;}
.ye2{bottom:534.420009px;}
.y3a{bottom:538.740005px;}
.y8d{bottom:539.819996px;}
.ye{bottom:545.400021px;}
.y61{bottom:549.720016px;}
.ye1{bottom:551.700027px;}
.y39{bottom:556.920009px;}
.y8c{bottom:557.999999px;}
.yd{bottom:562.319996px;}
.y60{bottom:568.439998px;}
.ye0{bottom:568.800006px;}
.y38{bottom:575.100013px;}
.y8b{bottom:576.180004px;}
.yc{bottom:578.520023px;}
.ydf{bottom:586.080024px;}
.y5f{bottom:587.340018px;}
.y37{bottom:593.280017px;}
.y8a{bottom:594.360008px;}
.yb{bottom:596.700027px;}
.yde{bottom:603.360008px;}
.y5e{bottom:606.060018px;}
.y36{bottom:611.640008px;}
.y89{bottom:612.540012px;}
.ya{bottom:614.160015px;}
.ydd{bottom:620.640008px;}
.y5d{bottom:624.780017px;}
.y35{bottom:629.820013px;}
.y88{bottom:630.900003px;}
.y9{bottom:633.420009px;}
.ydc{bottom:637.920009px;}
.y5c{bottom:643.500016px;}
.y34{bottom:648.000016px;}
.y87{bottom:649.080007px;}
.y8{bottom:652.140008px;}
.ydb{bottom:655.200009px;}
.y5b{bottom:662.220016px;}
.y33{bottom:666.180004px;}
.y86{bottom:667.260012px;}
.yda{bottom:672.300006px;}
.y7{bottom:675.180004px;}
.y5a{bottom:680.940015px;}
.y32{bottom:684.360008px;}
.y85{bottom:684.900003px;}
.yff{bottom:685.440015px;}
.yd9{bottom:689.580007px;}
.y6{bottom:698.040012px;}
.y59{bottom:699.840018px;}
.y31{bottom:702.540012px;}
.yfe{bottom:703.620003px;}
.yd8{bottom:706.860008px;}
.y58{bottom:718.560018px;}
.y5{bottom:720.900003px;}
.yfd{bottom:721.800006px;}
.yd7{bottom:724.140008px;}
.y57{bottom:737.280017px;}
.y30{bottom:739.080007px;}
.yfc{bottom:740.160015px;}
.yd6{bottom:741.420009px;}
.y4{bottom:743.760012px;}
.y56{bottom:756.000008px;}
.y2f{bottom:757.260012px;}
.yfb{bottom:758.340010px;}
.yd5{bottom:758.700009px;}
.y3{bottom:766.620010px;}
.y55{bottom:774.720007px;}
.y2e{bottom:775.440007px;}
.yd4{bottom:775.800006px;}
.yfa{bottom:775.980010px;}
.y2{bottom:789.660015px;}
.y2d{bottom:792.720007px;}
.y2c{bottom:809.460013px;}
.y2b{bottom:826.200009px;}
.ha{height:32.627350px;}
.hc{height:32.627354px;}
.hb{height:32.627624px;}
.h6{height:37.848852px;}
.h8{height:40.786300px;}
.h2{height:42.368186px;}
.h7{height:44.867494px;}
.h5{height:46.887521px;}
.hd{height:49.275756px;}
.h4{height:50.224888px;}
.h3{height:54.381620px;}
.h9{height:60.849764px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x1{left:72.360000px;}
.x2{left:93.599997px;}
.x3{left:334.980011px;}
.x6{left:513.360008px;}
.x7{left:520.199993px;}
.x5{left:542.160015px;}
.x4{left:557.100014px;}
@media print{
.v3{vertical-align:-13.440064pt;}
.v2{vertical-align:-10.880128pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440004pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001240pt;}
.ls7{letter-spacing:0.001328pt;}
.ls5{letter-spacing:0.001332pt;}
.ls2{letter-spacing:0.001360pt;}
.ls4{letter-spacing:0.001392pt;}
.ls3{letter-spacing:0.001452pt;}
.ls9{letter-spacing:0.161004pt;}
.ls0{letter-spacing:5.281000pt;}
.ls8{letter-spacing:7.841060pt;}
.ws3{word-spacing:-11.998900pt;}
.ws0{word-spacing:-11.833776pt;}
.ws1{word-spacing:-10.719000pt;}
.ws4{word-spacing:-7.359320pt;}
.ws5{word-spacing:-6.719380pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-3.096464pt;}
._2{margin-left:-2.081998pt;}
._1{margin-left:-0.918652pt;}
._0{width:0.903415pt;}
._d{width:1.811711pt;}
._7{width:2.745563pt;}
._11{width:3.635539pt;}
._5{width:4.922868pt;}
._6{width:6.041831pt;}
._12{width:7.006316pt;}
._3{width:7.985153pt;}
._4{width:9.384815pt;}
._f{width:10.463753pt;}
._19{width:11.692576pt;}
._c{width:13.057744pt;}
._10{width:14.249810pt;}
._a{width:15.805170pt;}
._b{width:16.722980pt;}
._9{width:17.618179pt;}
._8{width:18.904296pt;}
._14{width:20.342218pt;}
._15{width:21.922106pt;}
._17{width:22.963334pt;}
._18{width:24.286898pt;}
._16{width:27.014364pt;}
._1a{width:39.529293pt;}
._13{width:40.732200pt;}
._1b{width:48.101528pt;}
.fs5{font-size:26.877520pt;}
.fs4{font-size:29.437280pt;}
.fs3{font-size:42.876000pt;}
.fs0{font-size:47.995600pt;}
.fs2{font-size:53.115200pt;}
.fs1{font-size:63.994000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:32.960021pt;}
.y54{bottom:67.359985pt;}
.ya1{bottom:70.080016pt;}
.y2a{bottom:70.239989pt;}
.yc2{bottom:81.760009pt;}
.y53{bottom:84.479980pt;}
.y29{bottom:86.400024pt;}
.y115{bottom:91.200011pt;}
.y52{bottom:96.160033pt;}
.yf9{bottom:97.440002pt;}
.yae{bottom:98.880004pt;}
.y28{bottom:102.559997pt;}
.y114{bottom:107.359985pt;}
.y84{bottom:110.559997pt;}
.yc6{bottom:111.840026pt;}
.y51{bottom:113.280029pt;}
.y27{bottom:118.720031pt;}
.yf8{bottom:122.720031pt;}
.y113{bottom:123.679992pt;}
.y50{bottom:124.960021pt;}
.yd3{bottom:126.239989pt;}
.y77{bottom:127.679992pt;}
.y26{bottom:134.880004pt;}
.yc5{bottom:138.880004pt;}
.y4f{bottom:139.359985pt;}
.y112{bottom:139.840026pt;}
.y76{bottom:142.080016pt;}
.yd2{bottom:148.640014pt;}
.y25{bottom:150.720031pt;}
.yf7{bottom:152.960021pt;}
.y4e{bottom:153.760009pt;}
.ya0{bottom:155.040038pt;}
.y111{bottom:155.999999pt;}
.y75{bottom:156.479980pt;}
.yd1{bottom:163.999999pt;}
.y24{bottom:166.400024pt;}
.y4d{bottom:168.160033pt;}
.yf6{bottom:168.320007pt;}
.y74{bottom:169.440002pt;}
.yad{bottom:170.880004pt;}
.yc4{bottom:171.200011pt;}
.y110{bottom:172.160033pt;}
.y9f{bottom:178.239989pt;}
.yd0{bottom:179.359985pt;}
.y23{bottom:182.239989pt;}
.y4c{bottom:182.559997pt;}
.yf5{bottom:183.679992pt;}
.yb2{bottom:183.840026pt;}
.yc1{bottom:185.280029pt;}
.yc3{bottom:187.359985pt;}
.y10f{bottom:188.320007pt;}
.y73{bottom:188.640014pt;}
.y9e{bottom:194.400024pt;}
.ycf{bottom:194.559997pt;}
.y22{bottom:196.640014pt;}
.y83{bottom:196.960021pt;}
.yc0{bottom:198.239989pt;}
.yf4{bottom:199.040038pt;}
.y4b{bottom:199.679992pt;}
.yb1{bottom:203.679992pt;}
.y10e{bottom:204.479980pt;}
.y72{bottom:205.280029pt;}
.yce{bottom:209.919982pt;}
.y9d{bottom:210.559997pt;}
.y21{bottom:211.040038pt;}
.y4a{bottom:211.359985pt;}
.yac{bottom:214.080016pt;}
.yf3{bottom:214.400024pt;}
.yb0{bottom:219.840026pt;}
.y10d{bottom:220.799987pt;}
.y71{bottom:222.080016pt;}
.ycd{bottom:225.280029pt;}
.y20{bottom:225.440002pt;}
.y9c{bottom:226.720031pt;}
.yab{bottom:227.040038pt;}
.y49{bottom:228.479980pt;}
.yf2{bottom:229.600036pt;}
.ybf{bottom:232.640014pt;}
.yaf{bottom:235.999999pt;}
.y10c{bottom:236.960021pt;}
.y70{bottom:238.720031pt;}
.y1f{bottom:239.840026pt;}
.y48{bottom:240.160033pt;}
.ycc{bottom:240.640014pt;}
.y9b{bottom:242.880004pt;}
.yf1{bottom:244.960021pt;}
.ybe{bottom:248.799987pt;}
.yaa{bottom:252.160033pt;}
.y10b{bottom:253.119994pt;}
.y1e{bottom:254.239989pt;}
.y82{bottom:254.559997pt;}
.y6f{bottom:255.359985pt;}
.ycb{bottom:255.999999pt;}
.y47{bottom:257.280029pt;}
.y9a{bottom:259.040038pt;}
.yf0{bottom:260.320007pt;}
.ybd{bottom:264.960021pt;}
.ya9{bottom:268.320007pt;}
.y1d{bottom:268.640014pt;}
.y10a{bottom:269.280029pt;}
.y46{bottom:270.239989pt;}
.yca{bottom:271.359985pt;}
.y81{bottom:271.679992pt;}
.y6e{bottom:271.999999pt;}
.y99{bottom:275.359985pt;}
.yef{bottom:275.679992pt;}
.ybc{bottom:281.119994pt;}
.y1c{bottom:283.040008pt;}
.y80{bottom:284.640014pt;}
.y109{bottom:285.440002pt;}
.yc9{bottom:286.559997pt;}
.y6d{bottom:288.640014pt;}
.yee{bottom:291.040008pt;}
.y98{bottom:291.520019pt;}
.y45{bottom:297.279998pt;}
.y1b{bottom:297.440002pt;}
.ya8{bottom:300.800018pt;}
.y108{bottom:301.760009pt;}
.yc8{bottom:301.920013pt;}
.y6c{bottom:305.279998pt;}
.yed{bottom:306.400024pt;}
.y97{bottom:307.680022pt;}
.y7f{bottom:309.279998pt;}
.y1a{bottom:311.680022pt;}
.ybb{bottom:313.600005pt;}
.y44{bottom:313.920013pt;}
.ya7{bottom:316.960021pt;}
.yc7{bottom:317.279998pt;}
.y107{bottom:317.920013pt;}
.yec{bottom:321.600005pt;}
.y6b{bottom:322.080016pt;}
.y96{bottom:323.839996pt;}
.y7e{bottom:325.440002pt;}
.y19{bottom:326.080016pt;}
.yba{bottom:329.760009pt;}
.y43{bottom:330.559997pt;}
.ya6{bottom:333.119994pt;}
.y106{bottom:334.080016pt;}
.yeb{bottom:336.960021pt;}
.y6a{bottom:338.720000pt;}
.y95{bottom:339.520019pt;}
.y18{bottom:340.480010pt;}
.y7d{bottom:341.760009pt;}
.yb9{bottom:345.920013pt;}
.y42{bottom:347.200011pt;}
.ya5{bottom:349.279998pt;}
.y105{bottom:350.240020pt;}
.yea{bottom:352.320007pt;}
.y17{bottom:354.880004pt;}
.y69{bottom:355.360015pt;}
.y7c{bottom:357.920013pt;}
.yb8{bottom:362.080016pt;}
.y41{bottom:363.999999pt;}
.ya4{bottom:365.600005pt;}
.y104{bottom:366.400024pt;}
.ye9{bottom:367.680022pt;}
.y16{bottom:369.279998pt;}
.y94{bottom:370.240020pt;}
.y68{bottom:371.999999pt;}
.y7b{bottom:374.080016pt;}
.yb7{bottom:378.240020pt;}
.y40{bottom:380.640014pt;}
.ya3{bottom:381.760009pt;}
.y103{bottom:382.559997pt;}
.ye8{bottom:383.040008pt;}
.y15{bottom:383.680022pt;}
.y93{bottom:385.600005pt;}
.y67{bottom:388.640014pt;}
.y7a{bottom:390.240020pt;}
.yb6{bottom:394.400024pt;}
.y3f{bottom:397.279998pt;}
.ya2{bottom:397.920013pt;}
.y14{bottom:398.080016pt;}
.ye7{bottom:398.400024pt;}
.y102{bottom:398.880004pt;}
.y92{bottom:400.960021pt;}
.y66{bottom:405.279998pt;}
.y79{bottom:406.400024pt;}
.yb5{bottom:410.559997pt;}
.y13{bottom:412.480010pt;}
.ye6{bottom:413.600005pt;}
.y3e{bottom:414.080016pt;}
.y101{bottom:415.040008pt;}
.y91{bottom:416.160003pt;}
.y65{bottom:422.080016pt;}
.y78{bottom:422.720000pt;}
.y12{bottom:426.880004pt;}
.yb4{bottom:427.839996pt;}
.ye5{bottom:428.960021pt;}
.y3d{bottom:430.240020pt;}
.y100{bottom:431.200011pt;}
.y90{bottom:431.520019pt;}
.y64{bottom:438.720000pt;}
.y11{bottom:441.279998pt;}
.ye4{bottom:444.320007pt;}
.yb3{bottom:445.119994pt;}
.y3c{bottom:446.400024pt;}
.y8f{bottom:447.360015pt;}
.y63{bottom:455.360015pt;}
.y10{bottom:455.680022pt;}
.ye3{bottom:459.680022pt;}
.y3b{bottom:462.720000pt;}
.y8e{bottom:463.520019pt;}
.yf{bottom:470.080016pt;}
.y62{bottom:471.999999pt;}
.ye2{bottom:475.040008pt;}
.y3a{bottom:478.880004pt;}
.y8d{bottom:479.839996pt;}
.ye{bottom:484.800018pt;}
.y61{bottom:488.640014pt;}
.ye1{bottom:490.400024pt;}
.y39{bottom:495.040008pt;}
.y8c{bottom:495.999999pt;}
.yd{bottom:499.839996pt;}
.y60{bottom:505.279998pt;}
.ye0{bottom:505.600005pt;}
.y38{bottom:511.200011pt;}
.y8b{bottom:512.160003pt;}
.yc{bottom:514.240020pt;}
.ydf{bottom:520.960021pt;}
.y5f{bottom:522.080016pt;}
.y37{bottom:527.360015pt;}
.y8a{bottom:528.320007pt;}
.yb{bottom:530.400024pt;}
.yde{bottom:536.320007pt;}
.y5e{bottom:538.720016pt;}
.y36{bottom:543.680007pt;}
.y89{bottom:544.480010pt;}
.ya{bottom:545.920013pt;}
.ydd{bottom:551.680007pt;}
.y5d{bottom:555.360015pt;}
.y35{bottom:559.840011pt;}
.y88{bottom:560.800002pt;}
.y9{bottom:563.040008pt;}
.ydc{bottom:567.040008pt;}
.y5c{bottom:572.000014pt;}
.y34{bottom:576.000014pt;}
.y87{bottom:576.960006pt;}
.y8{bottom:579.680007pt;}
.ydb{bottom:582.400008pt;}
.y5b{bottom:588.640014pt;}
.y33{bottom:592.160003pt;}
.y86{bottom:593.120010pt;}
.yda{bottom:597.600005pt;}
.y7{bottom:600.160003pt;}
.y5a{bottom:605.280013pt;}
.y32{bottom:608.320007pt;}
.y85{bottom:608.800002pt;}
.yff{bottom:609.280013pt;}
.yd9{bottom:612.960006pt;}
.y6{bottom:620.480010pt;}
.y59{bottom:622.080016pt;}
.y31{bottom:624.480010pt;}
.yfe{bottom:625.440002pt;}
.yd8{bottom:628.320007pt;}
.y58{bottom:638.720016pt;}
.y5{bottom:640.800002pt;}
.yfd{bottom:641.600005pt;}
.yd7{bottom:643.680007pt;}
.y57{bottom:655.360015pt;}
.y30{bottom:656.960006pt;}
.yfc{bottom:657.920013pt;}
.yd6{bottom:659.040008pt;}
.y4{bottom:661.120010pt;}
.y56{bottom:672.000007pt;}
.y2f{bottom:673.120010pt;}
.yfb{bottom:674.080009pt;}
.yd5{bottom:674.400008pt;}
.y3{bottom:681.440009pt;}
.y55{bottom:688.640006pt;}
.y2e{bottom:689.280006pt;}
.yd4{bottom:689.600005pt;}
.yfa{bottom:689.760009pt;}
.y2{bottom:701.920013pt;}
.y2d{bottom:704.640006pt;}
.y2c{bottom:719.520011pt;}
.y2b{bottom:734.400008pt;}
.ha{height:29.002089pt;}
.hc{height:29.002093pt;}
.hb{height:29.002333pt;}
.h6{height:33.643424pt;}
.h8{height:36.254489pt;}
.h2{height:37.660610pt;}
.h7{height:39.882217pt;}
.h5{height:41.677796pt;}
.hd{height:43.800672pt;}
.h4{height:44.644345pt;}
.h3{height:48.339218pt;}
.h9{height:54.088679pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x1{left:64.320000pt;}
.x2{left:83.199997pt;}
.x3{left:297.760010pt;}
.x6{left:456.320007pt;}
.x7{left:462.399994pt;}
.x5{left:481.920013pt;}
.x4{left:495.200012pt;}
}




    .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; }
  