
    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_8fb630964f394bea5f4d5e6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_aef86a5d65d1622770f5232c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d957489817db88912d7b97c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.995117;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_e287e6aa6aa89facfa269111.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.215332;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_17b0f7dd31f9c4894a535148.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_49b5ef871ed865671cdc240c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v4{vertical-align:-15.120072px;}
.v2{vertical-align:-12.239870px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001395px;}
.ls3{letter-spacing:0.001494px;}
.ls4{letter-spacing:0.001499px;}
.ls5{letter-spacing:0.001535px;}
.ls6{letter-spacing:0.001566px;}
.ls7{letter-spacing:0.044926px;}
.ls8{letter-spacing:0.181139px;}
.lse{letter-spacing:0.181273px;}
.lsa{letter-spacing:0.181278px;}
.lsf{letter-spacing:4.501237px;}
.ls9{letter-spacing:6.661287px;}
.lsd{letter-spacing:9.541215px;}
.ls0{letter-spacing:10.261229px;}
.lsc{letter-spacing:12.421246px;}
.lsb{letter-spacing:14.581192px;}
.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;}
}
.ws6{word-spacing:-13.543688px;}
.ws2{word-spacing:-13.498763px;}
.ws0{word-spacing:-13.312998px;}
.ws1{word-spacing:-12.058875px;}
.ws4{word-spacing:-8.279235px;}
.ws5{word-spacing:-7.559303px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-3.961906px;}
._6{margin-left:-2.617530px;}
._1{margin-left:-1.033483px;}
._0{width:1.009593px;}
._5{width:2.162872px;}
._3{width:3.175253px;}
._2{width:4.219150px;}
._4{width:5.253780px;}
._b{width:6.388629px;}
._d{width:7.639786px;}
._9{width:8.827097px;}
._8{width:10.082727px;}
._e{width:11.511142px;}
._1c{width:13.604107px;}
._12{width:15.071145px;}
._a{width:16.254337px;}
._14{width:17.625538px;}
._17{width:18.678014px;}
._1b{width:19.733825px;}
._1a{width:20.960353px;}
._18{width:22.463279px;}
._15{width:24.223813px;}
._13{width:25.671155px;}
._10{width:26.882754px;}
._f{width:27.960366px;}
._1f{width:29.156733px;}
._16{width:30.391160px;}
._19{width:31.918107px;}
._1e{width:33.213778px;}
._1d{width:35.657528px;}
._11{width:36.826101px;}
._c{width:45.722237px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(38,38,38);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.237210px;}
.fs5{font-size:33.116940px;}
.fs2{font-size:48.235500px;}
.fs1{font-size:53.995050px;}
.fs3{font-size:59.754600px;}
.fs0{font-size:71.993250px;}
.y0{bottom:0.000000px;}
.y2{bottom:37.080024px;}
.y2a{bottom:75.779983px;}
.y8d{bottom:78.840018px;}
.yec{bottom:85.860008px;}
.y29{bottom:91.980010px;}
.yc3{bottom:92.340018px;}
.y58{bottom:95.039978px;}
.yeb{bottom:103.139991px;}
.y52{bottom:108.180037px;}
.ya2{bottom:108.539978px;}
.y28{bottom:111.240005px;}
.yea{bottom:120.420043px;}
.yc2{bottom:120.779983px;}
.y7a{bottom:124.379997px;}
.y27{bottom:124.740005px;}
.y10e{bottom:127.259994px;}
.y51{bottom:127.440033px;}
.ye9{bottom:137.700027px;}
.ya1{bottom:138.060035px;}
.yc1{bottom:139.139991px;}
.y57{bottom:140.580024px;}
.ya0{bottom:140.940033px;}
.y50{bottom:143.639991px;}
.y10d{bottom:145.259994px;}
.ye8{bottom:154.800041px;}
.y9b{bottom:156.240005px;}
.y26{bottom:156.779983px;}
.y9c{bottom:157.139991px;}
.yc0{bottom:157.320030px;}
.y4f{bottom:159.840018px;}
.y10c{bottom:163.259994px;}
.ybc{bottom:168.120003px;}
.ye7{bottom:172.080024px;}
.y4e{bottom:172.980010px;}
.y79{bottom:173.340018px;}
.y9a{bottom:174.420043px;}
.y25{bottom:175.139991px;}
.ybf{bottom:175.499999px;}
.y98{bottom:176.039978px;}
.y10b{bottom:181.259994px;}
.ybb{bottom:185.399986px;}
.y56{bottom:189.180037px;}
.ye6{bottom:189.360008px;}
.y94{bottom:189.539978px;}
.y4d{bottom:192.240005px;}
.y99{bottom:192.600013px;}
.y24{bottom:193.320030px;}
.ybe{bottom:193.680037px;}
.y10a{bottom:199.259994px;}
.yba{bottom:202.680037px;}
.y4c{bottom:205.379997px;}
.y97{bottom:205.740005px;}
.ye5{bottom:206.639991px;}
.y55{bottom:208.440033px;}
.y93{bottom:210.779983px;}
.y23{bottom:211.499999px;}
.y78{bottom:211.860008px;}
.y109{bottom:217.259994px;}
.yb9{bottom:219.960022px;}
.y4b{bottom:221.580024px;}
.y54{bottom:221.940033px;}
.ye4{bottom:223.920043px;}
.y95{bottom:224.639991px;}
.y92{bottom:229.139991px;}
.y22{bottom:229.680037px;}
.y77{bottom:230.039978px;}
.y108{bottom:235.259994px;}
.yb8{bottom:237.240005px;}
.y89{bottom:237.779983px;}
.y4a{bottom:240.840018px;}
.ye3{bottom:241.200027px;}
.y91{bottom:247.320030px;}
.y21{bottom:247.860008px;}
.y76{bottom:248.399986px;}
.y53{bottom:248.940033px;}
.y107{bottom:253.259994px;}
.y88{bottom:253.980010px;}
.y49{bottom:254.340018px;}
.yb7{bottom:255.060035px;}
.y9f{bottom:257.039978px;}
.ye2{bottom:258.300041px;}
.y90{bottom:265.499999px;}
.y20{bottom:266.039978px;}
.y75{bottom:266.580024px;}
.y87{bottom:270.180037px;}
.y106{bottom:271.259994px;}
.y8c{bottom:273.240005px;}
.ye1{bottom:275.580024px;}
.y48{bottom:283.680037px;}
.y1f{bottom:284.399986px;}
.y74{bottom:284.759994px;}
.y86{bottom:286.379997px;}
.y8b{bottom:286.740005px;}
.y105{bottom:289.259994px;}
.y9e{bottom:289.440033px;}
.yb6{bottom:291.420043px;}
.ye0{bottom:292.860008px;}
.y47{bottom:301.860008px;}
.y1e{bottom:302.220016px;}
.y85{bottom:302.580024px;}
.y73{bottom:302.940033px;}
.y104{bottom:307.259994px;}
.yb5{bottom:309.600013px;}
.ydf{bottom:310.139991px;}
.y1d{bottom:318.420009px;}
.y84{bottom:318.780017px;}
.y46{bottom:320.220016px;}
.y72{bottom:321.120003px;}
.y103{bottom:325.259994px;}
.yde{bottom:327.420009px;}
.yb4{bottom:327.780017px;}
.y1c{bottom:334.620003px;}
.y83{bottom:334.800006px;}
.y8f{bottom:337.860008px;}
.y45{bottom:338.400021px;}
.y71{bottom:339.480010px;}
.y102{bottom:343.259994px;}
.ydd{bottom:344.700027px;}
.yb3{bottom:346.140025px;}
.y1b{bottom:350.640025px;}
.y82{bottom:350.999999px;}
.y8e{bottom:351.360008px;}
.y44{bottom:356.580024px;}
.y70{bottom:357.660015px;}
.y101{bottom:361.259994px;}
.ydc{bottom:361.800006px;}
.yb2{bottom:364.319996px;}
.y1a{bottom:366.840018px;}
.y81{bottom:367.200027px;}
.y9d{bottom:367.560000px;}
.y43{bottom:374.759994px;}
.y8a{bottom:375.300006px;}
.y6f{bottom:375.840018px;}
.ydb{bottom:379.080024px;}
.y100{bottom:379.259994px;}
.yb1{bottom:382.499999px;}
.y19{bottom:383.040012px;}
.y80{bottom:383.400021px;}
.y42{bottom:392.939998px;}
.y6e{bottom:394.020023px;}
.yda{bottom:396.360008px;}
.yff{bottom:397.259994px;}
.y18{bottom:399.240005px;}
.y7f{bottom:399.600013px;}
.yb0{bottom:400.680004px;}
.y41{bottom:411.300006px;}
.y6d{bottom:412.200027px;}
.yd9{bottom:413.640025px;}
.yfe{bottom:415.259994px;}
.y17{bottom:415.439998px;}
.y7e{bottom:415.800006px;}
.yaf{bottom:418.860008px;}
.y40{bottom:429.480010px;}
.y6c{bottom:430.379997px;}
.yd8{bottom:430.920009px;}
.y16{bottom:431.640025px;}
.y7d{bottom:431.999999px;}
.yfd{bottom:433.259994px;}
.yae{bottom:437.040012px;}
.y3f{bottom:447.660015px;}
.y15{bottom:447.840018px;}
.yd7{bottom:448.200027px;}
.y6b{bottom:448.740005px;}
.y7c{bottom:451.259994px;}
.yad{bottom:455.400021px;}
.y14{bottom:464.040012px;}
.y7b{bottom:464.759994px;}
.yd6{bottom:465.300006px;}
.y3e{bottom:465.840018px;}
.y6a{bottom:466.920009px;}
.yfc{bottom:469.259994px;}
.yac{bottom:473.580024px;}
.y13{bottom:480.240005px;}
.yd5{bottom:482.580024px;}
.y3d{bottom:484.020023px;}
.y69{bottom:485.100013px;}
.yfb{bottom:487.259994px;}
.yab{bottom:491.759994px;}
.y12{bottom:496.439998px;}
.yd4{bottom:499.860008px;}
.y3c{bottom:502.200027px;}
.y68{bottom:503.280017px;}
.yfa{bottom:505.259994px;}
.yaa{bottom:509.400021px;}
.y11{bottom:512.640025px;}
.yd3{bottom:517.140025px;}
.y3b{bottom:520.560000px;}
.y67{bottom:521.460022px;}
.yf9{bottom:523.259994px;}
.ya9{bottom:526.680004px;}
.y10{bottom:528.840018px;}
.yd2{bottom:534.420009px;}
.y3a{bottom:538.740005px;}
.y66{bottom:539.819996px;}
.yf8{bottom:541.259994px;}
.ya8{bottom:543.960022px;}
.yf{bottom:545.400021px;}
.yd1{bottom:551.700027px;}
.y39{bottom:556.920009px;}
.y65{bottom:557.999999px;}
.yf7{bottom:559.259994px;}
.ya7{bottom:561.240005px;}
.ye{bottom:562.319996px;}
.yd0{bottom:568.800006px;}
.y38{bottom:575.100013px;}
.y64{bottom:576.180004px;}
.yf6{bottom:577.259994px;}
.ya6{bottom:578.340018px;}
.yd{bottom:578.520023px;}
.ycf{bottom:586.080024px;}
.y37{bottom:593.280017px;}
.ybd{bottom:593.819996px;}
.y63{bottom:594.360008px;}
.yf5{bottom:595.259994px;}
.ya5{bottom:595.620003px;}
.yc{bottom:596.700027px;}
.yce{bottom:603.360008px;}
.y36{bottom:611.640008px;}
.y62{bottom:612.540012px;}
.ya4{bottom:612.900003px;}
.yf4{bottom:613.260012px;}
.yb{bottom:614.160015px;}
.ycd{bottom:620.640008px;}
.y35{bottom:629.820013px;}
.ya3{bottom:630.180004px;}
.y96{bottom:630.360008px;}
.y61{bottom:630.900003px;}
.yf3{bottom:631.260012px;}
.ya{bottom:633.420009px;}
.ycc{bottom:637.920009px;}
.y34{bottom:648.000016px;}
.y60{bottom:649.080007px;}
.yf2{bottom:649.260012px;}
.y9{bottom:652.140008px;}
.ycb{bottom:655.200009px;}
.y33{bottom:666.180004px;}
.y5f{bottom:667.260012px;}
.yca{bottom:672.300006px;}
.y8{bottom:675.180004px;}
.y32{bottom:684.360008px;}
.yf1{bottom:685.260012px;}
.y5e{bottom:685.440015px;}
.yc9{bottom:689.580007px;}
.y7{bottom:698.040012px;}
.y31{bottom:702.540012px;}
.yf0{bottom:703.260012px;}
.y5d{bottom:703.620003px;}
.yc8{bottom:706.860008px;}
.y6{bottom:720.900003px;}
.yef{bottom:721.260012px;}
.y5c{bottom:721.800006px;}
.yc7{bottom:724.140008px;}
.y30{bottom:739.080007px;}
.yee{bottom:739.260012px;}
.y5b{bottom:740.160015px;}
.yc6{bottom:741.420009px;}
.y5{bottom:743.760012px;}
.y2f{bottom:757.260012px;}
.y5a{bottom:758.340010px;}
.yc5{bottom:758.700009px;}
.y4{bottom:766.620010px;}
.yed{bottom:775.260012px;}
.y2e{bottom:775.440007px;}
.yc4{bottom:775.800006px;}
.y59{bottom:775.980010px;}
.y3{bottom:789.660015px;}
.y2d{bottom:792.720007px;}
.y2c{bottom:809.460013px;}
.y1{bottom:823.140008px;}
.y2b{bottom:826.200009px;}
.hd{height:32.627350px;}
.hc{height:32.627354px;}
.h10{height:32.627485px;}
.hb{height:32.627624px;}
.hf{height:32.627629px;}
.h8{height:37.848852px;}
.he{height:41.524514px;}
.h3{height:42.368186px;}
.ha{height:44.867494px;}
.h7{height:46.887521px;}
.h9{height:49.275756px;}
.h2{height:49.987501px;}
.h6{height:50.224888px;}
.h4{height:55.365903px;}
.h5{height:55.848852px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x1{left:72.360000px;}
.x2{left:93.599997px;}
.x8{left:178.740006px;}
.x3{left:221.219999px;}
.x4{left:262.439999px;}
.x5{left:426.060001px;}
.x7{left:542.160015px;}
.x6{left:557.100014px;}
@media print{
.v4{vertical-align:-13.440064pt;}
.v2{vertical-align:-10.879884pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001240pt;}
.ls3{letter-spacing:0.001328pt;}
.ls4{letter-spacing:0.001332pt;}
.ls5{letter-spacing:0.001364pt;}
.ls6{letter-spacing:0.001392pt;}
.ls7{letter-spacing:0.039934pt;}
.ls8{letter-spacing:0.161012pt;}
.lse{letter-spacing:0.161132pt;}
.lsa{letter-spacing:0.161136pt;}
.lsf{letter-spacing:4.001100pt;}
.ls9{letter-spacing:5.921144pt;}
.lsd{letter-spacing:8.481080pt;}
.ls0{letter-spacing:9.121092pt;}
.lsc{letter-spacing:11.041108pt;}
.lsb{letter-spacing:12.961060pt;}
.ws6{word-spacing:-12.038834pt;}
.ws2{word-spacing:-11.998900pt;}
.ws0{word-spacing:-11.833776pt;}
.ws1{word-spacing:-10.719000pt;}
.ws4{word-spacing:-7.359320pt;}
.ws5{word-spacing:-6.719380pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-3.521694pt;}
._6{margin-left:-2.326693pt;}
._1{margin-left:-0.918652pt;}
._0{width:0.897416pt;}
._5{width:1.922553pt;}
._3{width:2.822447pt;}
._2{width:3.750356pt;}
._4{width:4.670027pt;}
._b{width:5.678782pt;}
._d{width:6.790920pt;}
._9{width:7.846308pt;}
._8{width:8.962424pt;}
._e{width:10.232127pt;}
._1c{width:12.092539pt;}
._12{width:13.396573pt;}
._a{width:14.448300pt;}
._14{width:15.667145pt;}
._17{width:16.602679pt;}
._1b{width:17.541177pt;}
._1a{width:18.631425pt;}
._18{width:19.967359pt;}
._15{width:21.532278pt;}
._13{width:22.818805pt;}
._10{width:23.895781pt;}
._f{width:24.853659pt;}
._1f{width:25.917096pt;}
._16{width:27.014364pt;}
._19{width:28.371651pt;}
._1e{width:29.523358pt;}
._1d{width:31.695581pt;}
._11{width:32.734312pt;}
._c{width:40.641988pt;}
.fs4{font-size:26.877520pt;}
.fs5{font-size:29.437280pt;}
.fs2{font-size:42.876000pt;}
.fs1{font-size:47.995600pt;}
.fs3{font-size:53.115200pt;}
.fs0{font-size:63.994000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:32.960021pt;}
.y2a{bottom:67.359985pt;}
.y8d{bottom:70.080016pt;}
.yec{bottom:76.320007pt;}
.y29{bottom:81.760009pt;}
.yc3{bottom:82.080016pt;}
.y58{bottom:84.479980pt;}
.yeb{bottom:91.679992pt;}
.y52{bottom:96.160033pt;}
.ya2{bottom:96.479980pt;}
.y28{bottom:98.880004pt;}
.yea{bottom:107.040038pt;}
.yc2{bottom:107.359985pt;}
.y7a{bottom:110.559997pt;}
.y27{bottom:110.880004pt;}
.y10e{bottom:113.119994pt;}
.y51{bottom:113.280029pt;}
.ye9{bottom:122.400024pt;}
.ya1{bottom:122.720031pt;}
.yc1{bottom:123.679992pt;}
.y57{bottom:124.960021pt;}
.ya0{bottom:125.280029pt;}
.y50{bottom:127.679992pt;}
.y10d{bottom:129.119994pt;}
.ye8{bottom:137.600036pt;}
.y9b{bottom:138.880004pt;}
.y26{bottom:139.359985pt;}
.y9c{bottom:139.679992pt;}
.yc0{bottom:139.840026pt;}
.y4f{bottom:142.080016pt;}
.y10c{bottom:145.119994pt;}
.ybc{bottom:149.440002pt;}
.ye7{bottom:152.960021pt;}
.y4e{bottom:153.760009pt;}
.y79{bottom:154.080016pt;}
.y9a{bottom:155.040038pt;}
.y25{bottom:155.679992pt;}
.ybf{bottom:155.999999pt;}
.y98{bottom:156.479980pt;}
.y10b{bottom:161.119994pt;}
.ybb{bottom:164.799987pt;}
.y56{bottom:168.160033pt;}
.ye6{bottom:168.320007pt;}
.y94{bottom:168.479980pt;}
.y4d{bottom:170.880004pt;}
.y99{bottom:171.200011pt;}
.y24{bottom:171.840026pt;}
.ybe{bottom:172.160033pt;}
.y10a{bottom:177.119994pt;}
.yba{bottom:180.160033pt;}
.y4c{bottom:182.559997pt;}
.y97{bottom:182.880004pt;}
.ye5{bottom:183.679992pt;}
.y55{bottom:185.280029pt;}
.y93{bottom:187.359985pt;}
.y23{bottom:187.999999pt;}
.y78{bottom:188.320007pt;}
.y109{bottom:193.119994pt;}
.yb9{bottom:195.520019pt;}
.y4b{bottom:196.960021pt;}
.y54{bottom:197.280029pt;}
.ye4{bottom:199.040038pt;}
.y95{bottom:199.679992pt;}
.y92{bottom:203.679992pt;}
.y22{bottom:204.160033pt;}
.y77{bottom:204.479980pt;}
.y108{bottom:209.119994pt;}
.yb8{bottom:210.880004pt;}
.y89{bottom:211.359985pt;}
.y4a{bottom:214.080016pt;}
.ye3{bottom:214.400024pt;}
.y91{bottom:219.840026pt;}
.y21{bottom:220.320007pt;}
.y76{bottom:220.799987pt;}
.y53{bottom:221.280029pt;}
.y107{bottom:225.119994pt;}
.y88{bottom:225.760009pt;}
.y49{bottom:226.080016pt;}
.yb7{bottom:226.720031pt;}
.y9f{bottom:228.479980pt;}
.ye2{bottom:229.600036pt;}
.y90{bottom:235.999999pt;}
.y20{bottom:236.479980pt;}
.y75{bottom:236.960021pt;}
.y87{bottom:240.160033pt;}
.y106{bottom:241.119994pt;}
.y8c{bottom:242.880004pt;}
.ye1{bottom:244.960021pt;}
.y48{bottom:252.160033pt;}
.y1f{bottom:252.799987pt;}
.y74{bottom:253.119994pt;}
.y86{bottom:254.559997pt;}
.y8b{bottom:254.880004pt;}
.y105{bottom:257.119994pt;}
.y9e{bottom:257.280029pt;}
.yb6{bottom:259.040038pt;}
.ye0{bottom:260.320007pt;}
.y47{bottom:268.320007pt;}
.y1e{bottom:268.640014pt;}
.y85{bottom:268.960021pt;}
.y73{bottom:269.280029pt;}
.y104{bottom:273.119994pt;}
.yb5{bottom:275.200011pt;}
.ydf{bottom:275.679992pt;}
.y1d{bottom:283.040008pt;}
.y84{bottom:283.360015pt;}
.y46{bottom:284.640014pt;}
.y72{bottom:285.440002pt;}
.y103{bottom:289.119994pt;}
.yde{bottom:291.040008pt;}
.yb4{bottom:291.360015pt;}
.y1c{bottom:297.440002pt;}
.y83{bottom:297.600005pt;}
.y8f{bottom:300.320007pt;}
.y45{bottom:300.800018pt;}
.y71{bottom:301.760009pt;}
.y102{bottom:305.119994pt;}
.ydd{bottom:306.400024pt;}
.yb3{bottom:307.680022pt;}
.y1b{bottom:311.680022pt;}
.y82{bottom:311.999999pt;}
.y8e{bottom:312.320007pt;}
.y44{bottom:316.960021pt;}
.y70{bottom:317.920013pt;}
.y101{bottom:321.119994pt;}
.ydc{bottom:321.600005pt;}
.yb2{bottom:323.839996pt;}
.y1a{bottom:326.080016pt;}
.y81{bottom:326.400024pt;}
.y9d{bottom:326.720000pt;}
.y43{bottom:333.119994pt;}
.y8a{bottom:333.600005pt;}
.y6f{bottom:334.080016pt;}
.ydb{bottom:336.960021pt;}
.y100{bottom:337.119994pt;}
.yb1{bottom:339.999999pt;}
.y19{bottom:340.480010pt;}
.y80{bottom:340.800018pt;}
.y42{bottom:349.279998pt;}
.y6e{bottom:350.240020pt;}
.yda{bottom:352.320007pt;}
.yff{bottom:353.119994pt;}
.y18{bottom:354.880004pt;}
.y7f{bottom:355.200011pt;}
.yb0{bottom:356.160003pt;}
.y41{bottom:365.600005pt;}
.y6d{bottom:366.400024pt;}
.yd9{bottom:367.680022pt;}
.yfe{bottom:369.119994pt;}
.y17{bottom:369.279998pt;}
.y7e{bottom:369.600005pt;}
.yaf{bottom:372.320007pt;}
.y40{bottom:381.760009pt;}
.y6c{bottom:382.559997pt;}
.yd8{bottom:383.040008pt;}
.y16{bottom:383.680022pt;}
.y7d{bottom:383.999999pt;}
.yfd{bottom:385.119994pt;}
.yae{bottom:388.480010pt;}
.y3f{bottom:397.920013pt;}
.y15{bottom:398.080016pt;}
.yd7{bottom:398.400024pt;}
.y6b{bottom:398.880004pt;}
.y7c{bottom:401.119994pt;}
.yad{bottom:404.800018pt;}
.y14{bottom:412.480010pt;}
.y7b{bottom:413.119994pt;}
.yd6{bottom:413.600005pt;}
.y3e{bottom:414.080016pt;}
.y6a{bottom:415.040008pt;}
.yfc{bottom:417.119994pt;}
.yac{bottom:420.960021pt;}
.y13{bottom:426.880004pt;}
.yd5{bottom:428.960021pt;}
.y3d{bottom:430.240020pt;}
.y69{bottom:431.200011pt;}
.yfb{bottom:433.119994pt;}
.yab{bottom:437.119994pt;}
.y12{bottom:441.279998pt;}
.yd4{bottom:444.320007pt;}
.y3c{bottom:446.400024pt;}
.y68{bottom:447.360015pt;}
.yfa{bottom:449.119994pt;}
.yaa{bottom:452.800018pt;}
.y11{bottom:455.680022pt;}
.yd3{bottom:459.680022pt;}
.y3b{bottom:462.720000pt;}
.y67{bottom:463.520019pt;}
.yf9{bottom:465.119994pt;}
.ya9{bottom:468.160003pt;}
.y10{bottom:470.080016pt;}
.yd2{bottom:475.040008pt;}
.y3a{bottom:478.880004pt;}
.y66{bottom:479.839996pt;}
.yf8{bottom:481.119994pt;}
.ya8{bottom:483.520019pt;}
.yf{bottom:484.800018pt;}
.yd1{bottom:490.400024pt;}
.y39{bottom:495.040008pt;}
.y65{bottom:495.999999pt;}
.yf7{bottom:497.119994pt;}
.ya7{bottom:498.880004pt;}
.ye{bottom:499.839996pt;}
.yd0{bottom:505.600005pt;}
.y38{bottom:511.200011pt;}
.y64{bottom:512.160003pt;}
.yf6{bottom:513.119994pt;}
.ya6{bottom:514.080016pt;}
.yd{bottom:514.240020pt;}
.ycf{bottom:520.960021pt;}
.y37{bottom:527.360015pt;}
.ybd{bottom:527.839996pt;}
.y63{bottom:528.320007pt;}
.yf5{bottom:529.119994pt;}
.ya5{bottom:529.440002pt;}
.yc{bottom:530.400024pt;}
.yce{bottom:536.320007pt;}
.y36{bottom:543.680007pt;}
.y62{bottom:544.480010pt;}
.ya4{bottom:544.800002pt;}
.yf4{bottom:545.120010pt;}
.yb{bottom:545.920013pt;}
.ycd{bottom:551.680007pt;}
.y35{bottom:559.840011pt;}
.ya3{bottom:560.160003pt;}
.y96{bottom:560.320007pt;}
.y61{bottom:560.800002pt;}
.yf3{bottom:561.120010pt;}
.ya{bottom:563.040008pt;}
.ycc{bottom:567.040008pt;}
.y34{bottom:576.000014pt;}
.y60{bottom:576.960006pt;}
.yf2{bottom:577.120010pt;}
.y9{bottom:579.680007pt;}
.ycb{bottom:582.400008pt;}
.y33{bottom:592.160003pt;}
.y5f{bottom:593.120010pt;}
.yca{bottom:597.600005pt;}
.y8{bottom:600.160003pt;}
.y32{bottom:608.320007pt;}
.yf1{bottom:609.120010pt;}
.y5e{bottom:609.280013pt;}
.yc9{bottom:612.960006pt;}
.y7{bottom:620.480010pt;}
.y31{bottom:624.480010pt;}
.yf0{bottom:625.120010pt;}
.y5d{bottom:625.440002pt;}
.yc8{bottom:628.320007pt;}
.y6{bottom:640.800002pt;}
.yef{bottom:641.120010pt;}
.y5c{bottom:641.600005pt;}
.yc7{bottom:643.680007pt;}
.y30{bottom:656.960006pt;}
.yee{bottom:657.120010pt;}
.y5b{bottom:657.920013pt;}
.yc6{bottom:659.040008pt;}
.y5{bottom:661.120010pt;}
.y2f{bottom:673.120010pt;}
.y5a{bottom:674.080009pt;}
.yc5{bottom:674.400008pt;}
.y4{bottom:681.440009pt;}
.yed{bottom:689.120010pt;}
.y2e{bottom:689.280006pt;}
.yc4{bottom:689.600005pt;}
.y59{bottom:689.760009pt;}
.y3{bottom:701.920013pt;}
.y2d{bottom:704.640006pt;}
.y2c{bottom:719.520011pt;}
.y1{bottom:731.680007pt;}
.y2b{bottom:734.400008pt;}
.hd{height:29.002089pt;}
.hc{height:29.002093pt;}
.h10{height:29.002209pt;}
.hb{height:29.002333pt;}
.hf{height:29.002337pt;}
.h8{height:33.643424pt;}
.he{height:36.910679pt;}
.h3{height:37.660610pt;}
.ha{height:39.882217pt;}
.h7{height:41.677796pt;}
.h9{height:43.800672pt;}
.h2{height:44.433334pt;}
.h6{height:44.644345pt;}
.h4{height:49.214136pt;}
.h5{height:49.643424pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x1{left:64.320000pt;}
.x2{left:83.199997pt;}
.x8{left:158.880005pt;}
.x3{left:196.639999pt;}
.x4{left:233.279999pt;}
.x5{left:378.720001pt;}
.x7{left:481.920013pt;}
.x6{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; }
  