
    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_a00ba6d6f9b7ec5b4b1b9476.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_69dc0dbd2802a2d4637aa9d6.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_9c735ef09fe33d4bbd3066c8.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_286a9ce2ccdede14d99a2b7d.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_02ec64f494bdb1cdc4ddc7cc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1a8db549187e204559b649e3.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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.239869px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.119933px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001395px;}
.ls4{letter-spacing:0.001494px;}
.ls0{letter-spacing:0.001499px;}
.ls5{letter-spacing:0.001530px;}
.ls3{letter-spacing:0.001566px;}
.ls6{letter-spacing:0.001633px;}
.ls7{letter-spacing:8.101323px;}
.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;}
.ws2{word-spacing:-12.058875px;}
.ws4{word-spacing:-8.279235px;}
.ws5{word-spacing:-7.559303px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-3.728772px;}
._9{margin-left:-2.164757px;}
._1{margin-left:-1.033483px;}
._0{width:1.047558px;}
._3{width:2.359394px;}
._2{width:3.376485px;}
._4{width:4.561760px;}
._f{width:6.073883px;}
._5{width:7.684141px;}
._6{width:8.833503px;}
._c{width:10.022833px;}
._e{width:11.031045px;}
._10{width:12.204147px;}
._14{width:13.274372px;}
._8{width:14.294289px;}
._7{width:15.428765px;}
._15{width:16.925008px;}
._a{width:18.099241px;}
._13{width:19.482300px;}
._16{width:20.918871px;}
._19{width:22.538715px;}
._18{width:23.565676px;}
._12{width:24.590949px;}
._11{width:25.695949px;}
._1b{width:27.570030px;}
._1c{width:28.604300px;}
._17{width:30.605027px;}
._1a{width:36.699622px;}
._d{width:45.823725px;}
.fc1{color:rgb(70,120,134);}
.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;}
.y29{bottom:75.779983px;}
.y95{bottom:78.840018px;}
.yfc{bottom:83.340018px;}
.y52{bottom:91.980010px;}
.y28{bottom:95.039978px;}
.yfb{bottom:101.519988px;}
.yf3{bottom:102.600013px;}
.y51{bottom:108.180037px;}
.y27{bottom:109.620003px;}
.y73{bottom:111.240005px;}
.yfa{bottom:119.879997px;}
.yf2{bottom:120.779983px;}
.ya6{bottom:124.379997px;}
.y50{bottom:127.440033px;}
.yf9{bottom:138.060035px;}
.yf1{bottom:139.139991px;}
.y4f{bottom:140.580024px;}
.ya5{bottom:143.639991px;}
.y26{bottom:144.720016px;}
.yf8{bottom:156.240005px;}
.y4e{bottom:156.779983px;}
.yf0{bottom:157.320030px;}
.y72{bottom:159.840018px;}
.y25{bottom:162.899986px;}
.y94{bottom:172.980010px;}
.yf7{bottom:174.420043px;}
.yef{bottom:175.499999px;}
.y4d{bottom:176.039978px;}
.y24{bottom:181.080024px;}
.y4c{bottom:189.180037px;}
.y71{bottom:192.240005px;}
.yf6{bottom:192.600013px;}
.yee{bottom:193.680037px;}
.y23{bottom:199.259994px;}
.y4b{bottom:205.379997px;}
.y93{bottom:208.440033px;}
.yf5{bottom:210.779983px;}
.yed{bottom:211.860008px;}
.y22{bottom:217.620003px;}
.y4a{bottom:221.580024px;}
.yce{bottom:223.019988px;}
.y92{bottom:224.639991px;}
.yf4{bottom:229.139991px;}
.yec{bottom:230.039978px;}
.y21{bottom:235.800041px;}
.y49{bottom:237.779983px;}
.y91{bottom:239.220016px;}
.y70{bottom:240.840018px;}
.ycd{bottom:247.320030px;}
.yeb{bottom:248.399986px;}
.y20{bottom:253.620003px;}
.yb0{bottom:253.980010px;}
.y6f{bottom:255.420043px;}
.y48{bottom:257.039978px;}
.ya4{bottom:265.499999px;}
.y90{bottom:266.039978px;}
.yea{bottom:266.580024px;}
.ycc{bottom:268.200027px;}
.y1f{bottom:269.820030px;}
.y47{bottom:273.240005px;}
.y6e{bottom:280.259994px;}
.ya3{bottom:283.680037px;}
.y8f{bottom:284.039978px;}
.ye9{bottom:284.759994px;}
.y1e{bottom:286.019988px;}
.ycb{bottom:286.560035px;}
.y46{bottom:287.820030px;}
.yaf{bottom:289.440033px;}
.y6d{bottom:297.539978px;}
.ya2{bottom:301.860008px;}
.y8e{bottom:302.039978px;}
.y1d{bottom:302.220016px;}
.yae{bottom:302.580024px;}
.ye8{bottom:302.940033px;}
.yca{bottom:304.740005px;}
.y45{bottom:313.560035px;}
.y6c{bottom:315.360008px;}
.y1c{bottom:318.420009px;}
.yad{bottom:318.780017px;}
.y8d{bottom:320.040012px;}
.ya1{bottom:320.220016px;}
.ye7{bottom:321.120003px;}
.yc9{bottom:322.920009px;}
.y44{bottom:332.280017px;}
.y6b{bottom:333.540012px;}
.y1b{bottom:334.620003px;}
.yac{bottom:336.420009px;}
.y8c{bottom:338.040012px;}
.ya0{bottom:338.400021px;}
.ye6{bottom:339.480010px;}
.yc8{bottom:341.100013px;}
.y1a{bottom:350.640025px;}
.y43{bottom:350.999999px;}
.y6a{bottom:351.720016px;}
.y8b{bottom:356.040012px;}
.y9f{bottom:356.580024px;}
.yab{bottom:357.480010px;}
.ye5{bottom:357.660015px;}
.yc7{bottom:359.280017px;}
.y19{bottom:366.840018px;}
.y42{bottom:369.720016px;}
.y69{bottom:369.900021px;}
.y8a{bottom:374.040012px;}
.y9e{bottom:374.759994px;}
.yaa{bottom:375.480010px;}
.ye4{bottom:375.840018px;}
.yc6{bottom:377.640025px;}
.y18{bottom:383.040012px;}
.y68{bottom:388.080024px;}
.y41{bottom:388.439998px;}
.y89{bottom:392.040012px;}
.y9d{bottom:392.939998px;}
.ya9{bottom:393.480010px;}
.ye3{bottom:394.020023px;}
.yc5{bottom:395.819996px;}
.y17{bottom:399.240005px;}
.y67{bottom:406.439998px;}
.y40{bottom:407.340018px;}
.y88{bottom:410.040012px;}
.y9c{bottom:411.300006px;}
.ya8{bottom:411.480010px;}
.ye2{bottom:412.200027px;}
.yc4{bottom:413.999999px;}
.y16{bottom:415.439998px;}
.y66{bottom:424.620003px;}
.y3f{bottom:426.060000px;}
.y87{bottom:428.040012px;}
.y9b{bottom:429.480010px;}
.ye1{bottom:430.379997px;}
.y15{bottom:431.640025px;}
.yc3{bottom:432.180004px;}
.y65{bottom:442.800006px;}
.y3e{bottom:444.780017px;}
.y86{bottom:446.040012px;}
.ya7{bottom:447.480010px;}
.y9a{bottom:447.660015px;}
.y14{bottom:447.840018px;}
.ye0{bottom:448.740005px;}
.yc2{bottom:450.360008px;}
.y64{bottom:460.980010px;}
.y3d{bottom:463.499999px;}
.y13{bottom:464.040012px;}
.y99{bottom:465.840018px;}
.ydf{bottom:466.920009px;}
.yc1{bottom:468.540012px;}
.y63{bottom:479.160015px;}
.y12{bottom:480.240005px;}
.y85{bottom:482.040012px;}
.y3c{bottom:482.220016px;}
.y98{bottom:484.020023px;}
.yde{bottom:485.100013px;}
.yc0{bottom:486.900021px;}
.y11{bottom:496.439998px;}
.y62{bottom:497.520023px;}
.y84{bottom:499.860008px;}
.y3b{bottom:500.939998px;}
.y97{bottom:502.200027px;}
.ydd{bottom:503.280017px;}
.ybf{bottom:505.080024px;}
.y10{bottom:512.640025px;}
.y61{bottom:515.700027px;}
.y83{bottom:517.140025px;}
.y3a{bottom:519.840018px;}
.y96{bottom:520.560000px;}
.ydc{bottom:521.460022px;}
.ybe{bottom:523.259994px;}
.yf{bottom:528.840018px;}
.y60{bottom:533.879997px;}
.y82{bottom:534.420009px;}
.y39{bottom:538.740005px;}
.ydb{bottom:539.819996px;}
.ybd{bottom:541.439998px;}
.ye{bottom:545.400021px;}
.y81{bottom:551.700027px;}
.y5f{bottom:552.060000px;}
.y38{bottom:556.920009px;}
.yda{bottom:557.999999px;}
.ybc{bottom:559.259994px;}
.yd{bottom:562.319996px;}
.y80{bottom:568.800006px;}
.y5e{bottom:570.240005px;}
.y37{bottom:575.100013px;}
.yd9{bottom:576.180004px;}
.ybb{bottom:577.259994px;}
.yc{bottom:578.520023px;}
.y7f{bottom:586.080024px;}
.y5d{bottom:588.600013px;}
.y36{bottom:593.280017px;}
.yd8{bottom:594.360008px;}
.yba{bottom:595.259994px;}
.yb{bottom:596.700027px;}
.y7e{bottom:603.360008px;}
.y5c{bottom:606.780017px;}
.y35{bottom:611.640008px;}
.yd7{bottom:612.540012px;}
.yb9{bottom:613.260012px;}
.ya{bottom:614.160015px;}
.y7d{bottom:620.640008px;}
.y5b{bottom:624.780017px;}
.y34{bottom:629.820013px;}
.yd6{bottom:630.900003px;}
.yb8{bottom:631.260012px;}
.y9{bottom:633.420009px;}
.y7c{bottom:637.920009px;}
.y5a{bottom:643.500016px;}
.y33{bottom:648.000016px;}
.yd5{bottom:649.080007px;}
.yb7{bottom:649.260012px;}
.y8{bottom:652.140008px;}
.y7b{bottom:655.200009px;}
.y59{bottom:662.220016px;}
.y32{bottom:666.180004px;}
.yb6{bottom:667.260012px;}
.y7a{bottom:672.300006px;}
.y7{bottom:675.180004px;}
.y58{bottom:680.940015px;}
.y31{bottom:684.360008px;}
.yb5{bottom:685.260012px;}
.yd4{bottom:685.440015px;}
.y79{bottom:689.580007px;}
.y6{bottom:698.040012px;}
.y57{bottom:699.840018px;}
.y30{bottom:702.540012px;}
.yb4{bottom:703.260012px;}
.yd3{bottom:703.620003px;}
.y78{bottom:706.860008px;}
.y56{bottom:718.560018px;}
.y5{bottom:720.900003px;}
.yb3{bottom:721.260012px;}
.yd2{bottom:721.800006px;}
.y77{bottom:724.140008px;}
.y55{bottom:737.280017px;}
.y2f{bottom:739.080007px;}
.yb2{bottom:739.260012px;}
.yd1{bottom:740.160015px;}
.y76{bottom:741.420009px;}
.y4{bottom:743.760012px;}
.y54{bottom:756.000008px;}
.y2e{bottom:757.260012px;}
.yd0{bottom:758.340010px;}
.y75{bottom:758.700009px;}
.y3{bottom:766.620010px;}
.y53{bottom:774.720007px;}
.yb1{bottom:775.260012px;}
.y2d{bottom:775.440007px;}
.y74{bottom:775.800006px;}
.ycf{bottom:775.980010px;}
.y2{bottom:789.660015px;}
.y2c{bottom:792.720007px;}
.y2b{bottom:809.460013px;}
.y2a{bottom:826.200009px;}
.ha{height:32.627350px;}
.hb{height:32.627354px;}
.h9{height:32.627624px;}
.h6{height:37.848852px;}
.hc{height:40.786300px;}
.h2{height:42.368186px;}
.h7{height:44.867494px;}
.h5{height:46.887521px;}
.h4{height:50.224888px;}
.h3{height:54.381620px;}
.h8{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:358.019989px;}
.x5{left:542.160015px;}
.x4{left:557.100014px;}
@media print{
.v3{vertical-align:-13.440064pt;}
.v2{vertical-align:-10.879884pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.439940pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001240pt;}
.ls4{letter-spacing:0.001328pt;}
.ls0{letter-spacing:0.001332pt;}
.ls5{letter-spacing:0.001360pt;}
.ls3{letter-spacing:0.001392pt;}
.ls6{letter-spacing:0.001452pt;}
.ls7{letter-spacing:7.201176pt;}
.ws3{word-spacing:-11.998900pt;}
.ws0{word-spacing:-11.833776pt;}
.ws2{word-spacing:-10.719000pt;}
.ws4{word-spacing:-7.359320pt;}
.ws5{word-spacing:-6.719380pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-3.314464pt;}
._9{margin-left:-1.924228pt;}
._1{margin-left:-0.918652pt;}
._0{width:0.931162pt;}
._3{width:2.097239pt;}
._2{width:3.001320pt;}
._4{width:4.054898pt;}
._f{width:5.399007pt;}
._5{width:6.830348pt;}
._6{width:7.852003pt;}
._c{width:8.909185pt;}
._e{width:9.805373pt;}
._10{width:10.848130pt;}
._14{width:11.799442pt;}
._8{width:12.706034pt;}
._7{width:13.714458pt;}
._15{width:15.044451pt;}
._a{width:16.088214pt;}
._13{width:17.317600pt;}
._16{width:18.594552pt;}
._19{width:20.034413pt;}
._18{width:20.947267pt;}
._12{width:21.858621pt;}
._11{width:22.840844pt;}
._1b{width:24.506693pt;}
._1c{width:25.426044pt;}
._17{width:27.204468pt;}
._1a{width:32.621887pt;}
._d{width:40.732200pt;}
.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;}
.y29{bottom:67.359985pt;}
.y95{bottom:70.080016pt;}
.yfc{bottom:74.080016pt;}
.y52{bottom:81.760009pt;}
.y28{bottom:84.479980pt;}
.yfb{bottom:90.239989pt;}
.yf3{bottom:91.200011pt;}
.y51{bottom:96.160033pt;}
.y27{bottom:97.440002pt;}
.y73{bottom:98.880004pt;}
.yfa{bottom:106.559997pt;}
.yf2{bottom:107.359985pt;}
.ya6{bottom:110.559997pt;}
.y50{bottom:113.280029pt;}
.yf9{bottom:122.720031pt;}
.yf1{bottom:123.679992pt;}
.y4f{bottom:124.960021pt;}
.ya5{bottom:127.679992pt;}
.y26{bottom:128.640014pt;}
.yf8{bottom:138.880004pt;}
.y4e{bottom:139.359985pt;}
.yf0{bottom:139.840026pt;}
.y72{bottom:142.080016pt;}
.y25{bottom:144.799987pt;}
.y94{bottom:153.760009pt;}
.yf7{bottom:155.040038pt;}
.yef{bottom:155.999999pt;}
.y4d{bottom:156.479980pt;}
.y24{bottom:160.960021pt;}
.y4c{bottom:168.160033pt;}
.y71{bottom:170.880004pt;}
.yf6{bottom:171.200011pt;}
.yee{bottom:172.160033pt;}
.y23{bottom:177.119994pt;}
.y4b{bottom:182.559997pt;}
.y93{bottom:185.280029pt;}
.yf5{bottom:187.359985pt;}
.yed{bottom:188.320007pt;}
.y22{bottom:193.440002pt;}
.y4a{bottom:196.960021pt;}
.yce{bottom:198.239989pt;}
.y92{bottom:199.679992pt;}
.yf4{bottom:203.679992pt;}
.yec{bottom:204.479980pt;}
.y21{bottom:209.600036pt;}
.y49{bottom:211.359985pt;}
.y91{bottom:212.640014pt;}
.y70{bottom:214.080016pt;}
.ycd{bottom:219.840026pt;}
.yeb{bottom:220.799987pt;}
.y20{bottom:225.440002pt;}
.yb0{bottom:225.760009pt;}
.y6f{bottom:227.040038pt;}
.y48{bottom:228.479980pt;}
.ya4{bottom:235.999999pt;}
.y90{bottom:236.479980pt;}
.yea{bottom:236.960021pt;}
.ycc{bottom:238.400024pt;}
.y1f{bottom:239.840026pt;}
.y47{bottom:242.880004pt;}
.y6e{bottom:249.119994pt;}
.ya3{bottom:252.160033pt;}
.y8f{bottom:252.479980pt;}
.ye9{bottom:253.119994pt;}
.y1e{bottom:254.239989pt;}
.ycb{bottom:254.720031pt;}
.y46{bottom:255.840026pt;}
.yaf{bottom:257.280029pt;}
.y6d{bottom:264.479980pt;}
.ya2{bottom:268.320007pt;}
.y8e{bottom:268.479980pt;}
.y1d{bottom:268.640014pt;}
.yae{bottom:268.960021pt;}
.ye8{bottom:269.280029pt;}
.yca{bottom:270.880004pt;}
.y45{bottom:278.720031pt;}
.y6c{bottom:280.320007pt;}
.y1c{bottom:283.040008pt;}
.yad{bottom:283.360015pt;}
.y8d{bottom:284.480010pt;}
.ya1{bottom:284.640014pt;}
.ye7{bottom:285.440002pt;}
.yc9{bottom:287.040008pt;}
.y44{bottom:295.360015pt;}
.y6b{bottom:296.480010pt;}
.y1b{bottom:297.440002pt;}
.yac{bottom:299.040008pt;}
.y8c{bottom:300.480010pt;}
.ya0{bottom:300.800018pt;}
.ye6{bottom:301.760009pt;}
.yc8{bottom:303.200011pt;}
.y1a{bottom:311.680022pt;}
.y43{bottom:311.999999pt;}
.y6a{bottom:312.640014pt;}
.y8b{bottom:316.480010pt;}
.y9f{bottom:316.960021pt;}
.yab{bottom:317.760009pt;}
.ye5{bottom:317.920013pt;}
.yc7{bottom:319.360015pt;}
.y19{bottom:326.080016pt;}
.y42{bottom:328.640014pt;}
.y69{bottom:328.800018pt;}
.y8a{bottom:332.480010pt;}
.y9e{bottom:333.119994pt;}
.yaa{bottom:333.760009pt;}
.ye4{bottom:334.080016pt;}
.yc6{bottom:335.680022pt;}
.y18{bottom:340.480010pt;}
.y68{bottom:344.960021pt;}
.y41{bottom:345.279998pt;}
.y89{bottom:348.480010pt;}
.y9d{bottom:349.279998pt;}
.ya9{bottom:349.760009pt;}
.ye3{bottom:350.240020pt;}
.yc5{bottom:351.839996pt;}
.y17{bottom:354.880004pt;}
.y67{bottom:361.279998pt;}
.y40{bottom:362.080016pt;}
.y88{bottom:364.480010pt;}
.y9c{bottom:365.600005pt;}
.ya8{bottom:365.760009pt;}
.ye2{bottom:366.400024pt;}
.yc4{bottom:367.999999pt;}
.y16{bottom:369.279998pt;}
.y66{bottom:377.440002pt;}
.y3f{bottom:378.720000pt;}
.y87{bottom:380.480010pt;}
.y9b{bottom:381.760009pt;}
.ye1{bottom:382.559997pt;}
.y15{bottom:383.680022pt;}
.yc3{bottom:384.160003pt;}
.y65{bottom:393.600005pt;}
.y3e{bottom:395.360015pt;}
.y86{bottom:396.480010pt;}
.ya7{bottom:397.760009pt;}
.y9a{bottom:397.920013pt;}
.y14{bottom:398.080016pt;}
.ye0{bottom:398.880004pt;}
.yc2{bottom:400.320007pt;}
.y64{bottom:409.760009pt;}
.y3d{bottom:411.999999pt;}
.y13{bottom:412.480010pt;}
.y99{bottom:414.080016pt;}
.ydf{bottom:415.040008pt;}
.yc1{bottom:416.480010pt;}
.y63{bottom:425.920013pt;}
.y12{bottom:426.880004pt;}
.y85{bottom:428.480010pt;}
.y3c{bottom:428.640014pt;}
.y98{bottom:430.240020pt;}
.yde{bottom:431.200011pt;}
.yc0{bottom:432.800018pt;}
.y11{bottom:441.279998pt;}
.y62{bottom:442.240020pt;}
.y84{bottom:444.320007pt;}
.y3b{bottom:445.279998pt;}
.y97{bottom:446.400024pt;}
.ydd{bottom:447.360015pt;}
.ybf{bottom:448.960021pt;}
.y10{bottom:455.680022pt;}
.y61{bottom:458.400024pt;}
.y83{bottom:459.680022pt;}
.y3a{bottom:462.080016pt;}
.y96{bottom:462.720000pt;}
.ydc{bottom:463.520019pt;}
.ybe{bottom:465.119994pt;}
.yf{bottom:470.080016pt;}
.y60{bottom:474.559997pt;}
.y82{bottom:475.040008pt;}
.y39{bottom:478.880004pt;}
.ydb{bottom:479.839996pt;}
.ybd{bottom:481.279998pt;}
.ye{bottom:484.800018pt;}
.y81{bottom:490.400024pt;}
.y5f{bottom:490.720000pt;}
.y38{bottom:495.040008pt;}
.yda{bottom:495.999999pt;}
.ybc{bottom:497.119994pt;}
.yd{bottom:499.839996pt;}
.y80{bottom:505.600005pt;}
.y5e{bottom:506.880004pt;}
.y37{bottom:511.200011pt;}
.yd9{bottom:512.160003pt;}
.ybb{bottom:513.119994pt;}
.yc{bottom:514.240020pt;}
.y7f{bottom:520.960021pt;}
.y5d{bottom:523.200011pt;}
.y36{bottom:527.360015pt;}
.yd8{bottom:528.320007pt;}
.yba{bottom:529.119994pt;}
.yb{bottom:530.400024pt;}
.y7e{bottom:536.320007pt;}
.y5c{bottom:539.360015pt;}
.y35{bottom:543.680007pt;}
.yd7{bottom:544.480010pt;}
.yb9{bottom:545.120010pt;}
.ya{bottom:545.920013pt;}
.y7d{bottom:551.680007pt;}
.y5b{bottom:555.360015pt;}
.y34{bottom:559.840011pt;}
.yd6{bottom:560.800002pt;}
.yb8{bottom:561.120010pt;}
.y9{bottom:563.040008pt;}
.y7c{bottom:567.040008pt;}
.y5a{bottom:572.000014pt;}
.y33{bottom:576.000014pt;}
.yd5{bottom:576.960006pt;}
.yb7{bottom:577.120010pt;}
.y8{bottom:579.680007pt;}
.y7b{bottom:582.400008pt;}
.y59{bottom:588.640014pt;}
.y32{bottom:592.160003pt;}
.yb6{bottom:593.120010pt;}
.y7a{bottom:597.600005pt;}
.y7{bottom:600.160003pt;}
.y58{bottom:605.280013pt;}
.y31{bottom:608.320007pt;}
.yb5{bottom:609.120010pt;}
.yd4{bottom:609.280013pt;}
.y79{bottom:612.960006pt;}
.y6{bottom:620.480010pt;}
.y57{bottom:622.080016pt;}
.y30{bottom:624.480010pt;}
.yb4{bottom:625.120010pt;}
.yd3{bottom:625.440002pt;}
.y78{bottom:628.320007pt;}
.y56{bottom:638.720016pt;}
.y5{bottom:640.800002pt;}
.yb3{bottom:641.120010pt;}
.yd2{bottom:641.600005pt;}
.y77{bottom:643.680007pt;}
.y55{bottom:655.360015pt;}
.y2f{bottom:656.960006pt;}
.yb2{bottom:657.120010pt;}
.yd1{bottom:657.920013pt;}
.y76{bottom:659.040008pt;}
.y4{bottom:661.120010pt;}
.y54{bottom:672.000007pt;}
.y2e{bottom:673.120010pt;}
.yd0{bottom:674.080009pt;}
.y75{bottom:674.400008pt;}
.y3{bottom:681.440009pt;}
.y53{bottom:688.640006pt;}
.yb1{bottom:689.120010pt;}
.y2d{bottom:689.280006pt;}
.y74{bottom:689.600005pt;}
.ycf{bottom:689.760009pt;}
.y2{bottom:701.920013pt;}
.y2c{bottom:704.640006pt;}
.y2b{bottom:719.520011pt;}
.y2a{bottom:734.400008pt;}
.ha{height:29.002089pt;}
.hb{height:29.002093pt;}
.h9{height:29.002333pt;}
.h6{height:33.643424pt;}
.hc{height:36.254489pt;}
.h2{height:37.660610pt;}
.h7{height:39.882217pt;}
.h5{height:41.677796pt;}
.h4{height:44.644345pt;}
.h3{height:48.339218pt;}
.h8{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:318.239990pt;}
.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; }
  