
    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_f20019fe5b7d12d3775d5b6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004395;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_58aabfee80bc23f14314b3cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_4b4f026c0f14073102e1880e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_506808c2e6709d712bcdffd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_d02ba6d3b26961546d3252bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_ffec9a2bfb541b2a309cbf4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_69da7d120c659ac57275f142.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_783af020d02b4ac799507890.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.600000px;}
.ls3{letter-spacing:-1.182000px;}
.ls9{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.504000px;}
.ls1{letter-spacing:-0.420000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000003px;}
.ls4{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.300000px;}
.lse{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.780000px;}
.ls0{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.852000px;}
.lsb{letter-spacing:5.100000px;}
.lsc{letter-spacing:8.700000px;}
.lsf{letter-spacing:21.240000px;}
.ls7{letter-spacing:39.960000px;}
.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;}
}
.ws2{word-spacing:-21.000000px;}
.ws7{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.100000px;}
.wsb{word-spacing:-16.878000px;}
.wsc{word-spacing:-16.800000px;}
.ws9{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.996000px;}
.ws6{word-spacing:-14.340000px;}
.ws1{word-spacing:-13.560000px;}
.ws4{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.ws3{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._22{margin-left:-2.214000px;}
._1{margin-left:-1.032000px;}
._0{width:1.200000px;}
._3{width:2.214000px;}
._2{width:3.558000px;}
._10{width:4.746000px;}
._9{width:6.048000px;}
._19{width:7.158000px;}
._d{width:8.286000px;}
._c{width:9.480000px;}
._15{width:10.614000px;}
._5{width:11.856000px;}
._6{width:13.146000px;}
._12{width:14.310000px;}
._1b{width:15.342000px;}
._a{width:18.084000px;}
._11{width:19.668000px;}
._17{width:20.736000px;}
._16{width:22.152000px;}
._1f{width:23.568000px;}
._8{width:25.458000px;}
._7{width:26.598000px;}
._b{width:28.020000px;}
._18{width:29.310000px;}
._1d{width:30.858000px;}
._1c{width:32.274000px;}
._23{width:33.432000px;}
._f{width:34.680000px;}
._24{width:36.078000px;}
._13{width:37.278000px;}
._14{width:38.586000px;}
._4{width:40.128000px;}
._e{width:41.334000px;}
._1a{width:42.618000px;}
._20{width:43.710000px;}
._27{width:45.636000px;}
._28{width:46.764000px;}
._2a{width:48.114000px;}
._21{width:49.962000px;}
._2c{width:52.008000px;}
._26{width:53.898000px;}
._2b{width:54.966000px;}
._1e{width:61.818000px;}
._29{width:64.086000px;}
._2d{width:77.544000px;}
._25{width:78.672000px;}
._2e{width:103.920000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.000000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:56.437500px;}
.y67{bottom:80.737500px;}
.y100{bottom:81.637500px;}
.ya3{bottom:88.237500px;}
.y26{bottom:92.737500px;}
.y40{bottom:95.437500px;}
.y92{bottom:97.537500px;}
.y66{bottom:99.637500px;}
.yff{bottom:105.637500px;}
.yc7{bottom:106.837500px;}
.ya2{bottom:109.837500px;}
.y25{bottom:112.837500px;}
.y91{bottom:116.437500px;}
.y65{bottom:118.837500px;}
.y24{bottom:123.637500px;}
.yc6{bottom:128.437500px;}
.yfe{bottom:129.337500px;}
.ye9{bottom:130.537500px;}
.ya1{bottom:131.737500px;}
.y3f{bottom:134.137500px;}
.y90{bottom:135.637500px;}
.y64{bottom:137.737500px;}
.y23{bottom:143.775000px;}
.yc5{bottom:150.375000px;}
.ye8{bottom:152.475000px;}
.yfd{bottom:153.075000px;}
.ya0{bottom:153.675000px;}
.y8f{bottom:154.575000px;}
.y22{bottom:154.875000px;}
.y63{bottom:156.675000px;}
.yc4{bottom:172.275000px;}
.y3e{bottom:172.575000px;}
.y8e{bottom:173.475000px;}
.ye7{bottom:174.075000px;}
.y21{bottom:174.975000px;}
.y62{bottom:175.575000px;}
.yfc{bottom:177.075000px;}
.y20{bottom:190.275000px;}
.y3d{bottom:191.475000px;}
.y8d{bottom:192.375000px;}
.yc3{bottom:193.875000px;}
.y61{bottom:194.775000px;}
.ye6{bottom:195.975000px;}
.y9f{bottom:197.175000px;}
.yfb{bottom:200.775000px;}
.y1f{bottom:205.875000px;}
.y3c{bottom:210.675000px;}
.y8c{bottom:211.575000px;}
.y60{bottom:213.675000px;}
.yc2{bottom:215.775000px;}
.ye5{bottom:217.875000px;}
.y9e{bottom:219.075000px;}
.y1e{bottom:221.175000px;}
.yfa{bottom:224.475000px;}
.y3b{bottom:229.575000px;}
.y8b{bottom:230.475000px;}
.y5f{bottom:232.575000px;}
.y1d{bottom:234.975000px;}
.yc1{bottom:237.675000px;}
.ye4{bottom:239.775000px;}
.y9d{bottom:240.975000px;}
.y3a{bottom:248.475000px;}
.y1c{bottom:248.775000px;}
.y8a{bottom:249.375000px;}
.y5e{bottom:251.475000px;}
.yc0{bottom:259.575000px;}
.ye3{bottom:261.375000px;}
.y1b{bottom:262.575000px;}
.y9c{bottom:262.875000px;}
.y39{bottom:267.375000px;}
.y89{bottom:268.275000px;}
.y5d{bottom:270.675000px;}
.yf9{bottom:272.175000px;}
.y1a{bottom:276.420000px;}
.ybf{bottom:281.220000px;}
.ye2{bottom:283.320000px;}
.y9b{bottom:284.520000px;}
.y38{bottom:286.620000px;}
.y88{bottom:287.520000px;}
.y5c{bottom:289.620000px;}
.y19{bottom:290.220000px;}
.yf8{bottom:295.920000px;}
.ybe{bottom:303.120000px;}
.y18{bottom:304.020000px;}
.ye1{bottom:305.220000px;}
.y37{bottom:305.520000px;}
.y87{bottom:306.420000px;}
.y5b{bottom:308.520000px;}
.y17{bottom:317.820000px;}
.yf7{bottom:319.920000px;}
.ybd{bottom:325.020000px;}
.y86{bottom:325.320000px;}
.ye0{bottom:326.820000px;}
.y9a{bottom:328.320000px;}
.y16{bottom:331.620000px;}
.y5a{bottom:339.420000px;}
.y36{bottom:342.120000px;}
.yf6{bottom:343.620000px;}
.y85{bottom:344.220000px;}
.y15{bottom:345.420000px;}
.ybc{bottom:346.920000px;}
.ydf{bottom:348.720000px;}
.y99{bottom:349.920000px;}
.y14{bottom:359.220000px;}
.y84{bottom:363.420000px;}
.yf5{bottom:367.320000px;}
.ybb{bottom:368.520000px;}
.y59{bottom:370.620000px;}
.y98{bottom:371.820000px;}
.y35{bottom:378.720000px;}
.y83{bottom:382.320000px;}
.y13{bottom:387.120000px;}
.y58{bottom:389.520000px;}
.yba{bottom:390.420000px;}
.yf4{bottom:391.320000px;}
.yde{bottom:392.520000px;}
.y97{bottom:393.720000px;}
.y82{bottom:401.220000px;}
.y57{bottom:408.420000px;}
.yb9{bottom:412.350000px;}
.ydd{bottom:414.150000px;}
.yf3{bottom:415.050000px;}
.y34{bottom:415.650000px;}
.y81{bottom:420.150000px;}
.y12{bottom:423.750000px;}
.y56{bottom:427.350000px;}
.yb8{bottom:434.250000px;}
.ydc{bottom:436.050000px;}
.y96{bottom:437.250000px;}
.yf2{bottom:438.750000px;}
.y80{bottom:439.350000px;}
.y55{bottom:446.550000px;}
.y33{bottom:452.550000px;}
.yb7{bottom:455.850000px;}
.ydb{bottom:457.950000px;}
.y7f{bottom:458.250000px;}
.y95{bottom:459.150000px;}
.y11{bottom:461.550000px;}
.yf1{bottom:462.750000px;}
.y7e{bottom:477.150000px;}
.y54{bottom:477.450000px;}
.yb6{bottom:477.750000px;}
.yda{bottom:479.850000px;}
.y94{bottom:481.050000px;}
.yf0{bottom:486.450000px;}
.y32{bottom:489.150000px;}
.y7d{bottom:496.050000px;}
.yb5{bottom:499.650000px;}
.y10{bottom:500.250000px;}
.yd9{bottom:501.450000px;}
.y93{bottom:502.950000px;}
.y53{bottom:508.350000px;}
.yef{bottom:510.150000px;}
.y7c{bottom:515.250000px;}
.yb4{bottom:521.250000px;}
.yd8{bottom:523.350000px;}
.yf{bottom:523.950000px;}
.y31{bottom:526.050000px;}
.y52{bottom:527.250000px;}
.y7b{bottom:534.150000px;}
.yb3{bottom:543.150000px;}
.yd7{bottom:545.250000px;}
.y51{bottom:546.495000px;}
.ye{bottom:547.995000px;}
.y7a{bottom:553.095000px;}
.yee{bottom:557.895000px;}
.y30{bottom:562.995000px;}
.yb2{bottom:565.095000px;}
.y50{bottom:565.395000px;}
.yd6{bottom:567.195000px;}
.y79{bottom:571.995000px;}
.yed{bottom:581.595000px;}
.y4f{bottom:584.295000px;}
.yd{bottom:586.695000px;}
.yb1{bottom:586.995000px;}
.yd5{bottom:588.795000px;}
.y78{bottom:591.195000px;}
.y2f{bottom:599.895000px;}
.y4e{bottom:603.195000px;}
.yec{bottom:605.595000px;}
.yb0{bottom:608.595000px;}
.y77{bottom:610.095000px;}
.yd4{bottom:610.695000px;}
.y4d{bottom:622.395000px;}
.yc{bottom:626.595000px;}
.y76{bottom:628.995000px;}
.yeb{bottom:629.295000px;}
.yaf{bottom:630.495000px;}
.yd3{bottom:632.595000px;}
.y2e{bottom:636.495000px;}
.y4c{bottom:641.295000px;}
.y75{bottom:647.895000px;}
.yae{bottom:652.395000px;}
.yea{bottom:652.995000px;}
.yd2{bottom:654.195000px;}
.y4b{bottom:660.195000px;}
.y74{bottom:667.095000px;}
.yb{bottom:667.395000px;}
.y2d{bottom:673.395000px;}
.yad{bottom:674.295000px;}
.yd1{bottom:676.095000px;}
.y4a{bottom:679.095000px;}
.y73{bottom:686.025000px;}
.yac{bottom:695.925000px;}
.yd0{bottom:698.025000px;}
.y49{bottom:698.325000px;}
.ya{bottom:704.325000px;}
.y72{bottom:704.925000px;}
.y2c{bottom:710.325000px;}
.y48{bottom:717.225000px;}
.yab{bottom:717.825000px;}
.ycf{bottom:719.925000px;}
.y71{bottom:723.825000px;}
.y47{bottom:736.125000px;}
.yaa{bottom:739.725000px;}
.y9{bottom:741.225000px;}
.yce{bottom:741.525000px;}
.y70{bottom:743.025000px;}
.y2b{bottom:747.225000px;}
.y46{bottom:755.025000px;}
.ya9{bottom:761.325000px;}
.y6f{bottom:761.925000px;}
.ycd{bottom:763.425000px;}
.y45{bottom:774.225000px;}
.y8{bottom:777.825000px;}
.y6e{bottom:780.825000px;}
.ya8{bottom:783.225000px;}
.y2a{bottom:783.825000px;}
.ycc{bottom:785.325000px;}
.y44{bottom:793.125000px;}
.y6d{bottom:799.725000px;}
.ya7{bottom:805.125000px;}
.ycb{bottom:807.225000px;}
.y43{bottom:812.025000px;}
.y7{bottom:815.625000px;}
.y6c{bottom:818.970000px;}
.y29{bottom:820.770000px;}
.ya6{bottom:827.070000px;}
.yca{bottom:828.870000px;}
.y42{bottom:830.970000px;}
.y6b{bottom:837.870000px;}
.ya5{bottom:848.670000px;}
.yc9{bottom:850.770000px;}
.y6{bottom:854.370000px;}
.y6a{bottom:856.770000px;}
.y28{bottom:857.670000px;}
.y41{bottom:862.170000px;}
.ya4{bottom:870.570000px;}
.yc8{bottom:872.670000px;}
.y69{bottom:875.670000px;}
.y5{bottom:893.370000px;}
.y27{bottom:894.570000px;}
.y68{bottom:894.870000px;}
.y3{bottom:914.670000px;}
.y2{bottom:934.770000px;}
.y1{bottom:953.100000px;}
.h9{height:29.443359px;}
.ha{height:35.332031px;}
.h2{height:49.570312px;}
.hb{height:54.421875px;}
.h3{height:58.886719px;}
.hd{height:59.167969px;}
.he{height:64.743164px;}
.h5{height:64.775391px;}
.hc{height:66.515625px;}
.h8{height:70.664062px;}
.h4{height:72.562500px;}
.h7{height:74.709375px;}
.h6{height:84.656250px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w2{width:680.399990px;}
.w0{width:680.400000px;}
.x0{left:0.000000px;}
.x1{left:76.537490px;}
.xb{left:119.137490px;}
.xa{left:129.637490px;}
.x8{left:154.574990px;}
.x4{left:174.974990px;}
.x5{left:202.274990px;}
.x6{left:234.119990px;}
.x7{left:237.119990px;}
.x3{left:288.419990px;}
.xc{left:441.194990px;}
.x9{left:448.694990px;}
.x2{left:595.469990px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.ls3{letter-spacing:-1.050667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000003pt;}
.ls4{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.693333pt;}
.ls0{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.757333pt;}
.lsb{letter-spacing:4.533333pt;}
.lsc{letter-spacing:7.733333pt;}
.lsf{letter-spacing:18.880000pt;}
.ls7{letter-spacing:35.520000pt;}
.ws2{word-spacing:-18.666667pt;}
.ws7{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.200000pt;}
.wsb{word-spacing:-15.002667pt;}
.wsc{word-spacing:-14.933333pt;}
.ws9{word-spacing:-14.666667pt;}
.ws8{word-spacing:-14.218667pt;}
.ws6{word-spacing:-12.746667pt;}
.ws1{word-spacing:-12.053333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._22{margin-left:-1.968000pt;}
._1{margin-left:-0.917333pt;}
._0{width:1.066667pt;}
._3{width:1.968000pt;}
._2{width:3.162667pt;}
._10{width:4.218667pt;}
._9{width:5.376000pt;}
._19{width:6.362667pt;}
._d{width:7.365333pt;}
._c{width:8.426667pt;}
._15{width:9.434667pt;}
._5{width:10.538667pt;}
._6{width:11.685333pt;}
._12{width:12.720000pt;}
._1b{width:13.637333pt;}
._a{width:16.074667pt;}
._11{width:17.482667pt;}
._17{width:18.432000pt;}
._16{width:19.690667pt;}
._1f{width:20.949333pt;}
._8{width:22.629333pt;}
._7{width:23.642667pt;}
._b{width:24.906667pt;}
._18{width:26.053333pt;}
._1d{width:27.429333pt;}
._1c{width:28.688000pt;}
._23{width:29.717333pt;}
._f{width:30.826667pt;}
._24{width:32.069333pt;}
._13{width:33.136000pt;}
._14{width:34.298667pt;}
._4{width:35.669333pt;}
._e{width:36.741333pt;}
._1a{width:37.882667pt;}
._20{width:38.853333pt;}
._27{width:40.565333pt;}
._28{width:41.568000pt;}
._2a{width:42.768000pt;}
._21{width:44.410667pt;}
._2c{width:46.229333pt;}
._26{width:47.909333pt;}
._2b{width:48.858667pt;}
._1e{width:54.949333pt;}
._29{width:56.965333pt;}
._2d{width:68.928000pt;}
._25{width:69.930667pt;}
._2e{width:92.373333pt;}
.fs5{font-size:26.666667pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.166667pt;}
.y67{bottom:71.766667pt;}
.y100{bottom:72.566667pt;}
.ya3{bottom:78.433333pt;}
.y26{bottom:82.433333pt;}
.y40{bottom:84.833333pt;}
.y92{bottom:86.700000pt;}
.y66{bottom:88.566667pt;}
.yff{bottom:93.900000pt;}
.yc7{bottom:94.966667pt;}
.ya2{bottom:97.633333pt;}
.y25{bottom:100.300000pt;}
.y91{bottom:103.500000pt;}
.y65{bottom:105.633333pt;}
.y24{bottom:109.900000pt;}
.yc6{bottom:114.166667pt;}
.yfe{bottom:114.966667pt;}
.ye9{bottom:116.033333pt;}
.ya1{bottom:117.100000pt;}
.y3f{bottom:119.233333pt;}
.y90{bottom:120.566667pt;}
.y64{bottom:122.433333pt;}
.y23{bottom:127.800000pt;}
.yc5{bottom:133.666667pt;}
.ye8{bottom:135.533333pt;}
.yfd{bottom:136.066667pt;}
.ya0{bottom:136.600000pt;}
.y8f{bottom:137.400000pt;}
.y22{bottom:137.666667pt;}
.y63{bottom:139.266667pt;}
.yc4{bottom:153.133333pt;}
.y3e{bottom:153.400000pt;}
.y8e{bottom:154.200000pt;}
.ye7{bottom:154.733333pt;}
.y21{bottom:155.533333pt;}
.y62{bottom:156.066667pt;}
.yfc{bottom:157.400000pt;}
.y20{bottom:169.133333pt;}
.y3d{bottom:170.200000pt;}
.y8d{bottom:171.000000pt;}
.yc3{bottom:172.333333pt;}
.y61{bottom:173.133333pt;}
.ye6{bottom:174.200000pt;}
.y9f{bottom:175.266667pt;}
.yfb{bottom:178.466667pt;}
.y1f{bottom:183.000000pt;}
.y3c{bottom:187.266667pt;}
.y8c{bottom:188.066667pt;}
.y60{bottom:189.933333pt;}
.yc2{bottom:191.800000pt;}
.ye5{bottom:193.666667pt;}
.y9e{bottom:194.733333pt;}
.y1e{bottom:196.600000pt;}
.yfa{bottom:199.533333pt;}
.y3b{bottom:204.066667pt;}
.y8b{bottom:204.866667pt;}
.y5f{bottom:206.733333pt;}
.y1d{bottom:208.866667pt;}
.yc1{bottom:211.266667pt;}
.ye4{bottom:213.133333pt;}
.y9d{bottom:214.200000pt;}
.y3a{bottom:220.866667pt;}
.y1c{bottom:221.133333pt;}
.y8a{bottom:221.666667pt;}
.y5e{bottom:223.533333pt;}
.yc0{bottom:230.733333pt;}
.ye3{bottom:232.333333pt;}
.y1b{bottom:233.400000pt;}
.y9c{bottom:233.666667pt;}
.y39{bottom:237.666667pt;}
.y89{bottom:238.466667pt;}
.y5d{bottom:240.600000pt;}
.yf9{bottom:241.933333pt;}
.y1a{bottom:245.706667pt;}
.ybf{bottom:249.973333pt;}
.ye2{bottom:251.840000pt;}
.y9b{bottom:252.906667pt;}
.y38{bottom:254.773333pt;}
.y88{bottom:255.573333pt;}
.y5c{bottom:257.440000pt;}
.y19{bottom:257.973333pt;}
.yf8{bottom:263.040000pt;}
.ybe{bottom:269.440000pt;}
.y18{bottom:270.240000pt;}
.ye1{bottom:271.306667pt;}
.y37{bottom:271.573333pt;}
.y87{bottom:272.373333pt;}
.y5b{bottom:274.240000pt;}
.y17{bottom:282.506667pt;}
.yf7{bottom:284.373333pt;}
.ybd{bottom:288.906667pt;}
.y86{bottom:289.173333pt;}
.ye0{bottom:290.506667pt;}
.y9a{bottom:291.840000pt;}
.y16{bottom:294.773333pt;}
.y5a{bottom:301.706667pt;}
.y36{bottom:304.106667pt;}
.yf6{bottom:305.440000pt;}
.y85{bottom:305.973333pt;}
.y15{bottom:307.040000pt;}
.ybc{bottom:308.373333pt;}
.ydf{bottom:309.973333pt;}
.y99{bottom:311.040000pt;}
.y14{bottom:319.306667pt;}
.y84{bottom:323.040000pt;}
.yf5{bottom:326.506667pt;}
.ybb{bottom:327.573333pt;}
.y59{bottom:329.440000pt;}
.y98{bottom:330.506667pt;}
.y35{bottom:336.640000pt;}
.y83{bottom:339.840000pt;}
.y13{bottom:344.106667pt;}
.y58{bottom:346.240000pt;}
.yba{bottom:347.040000pt;}
.yf4{bottom:347.840000pt;}
.yde{bottom:348.906667pt;}
.y97{bottom:349.973333pt;}
.y82{bottom:356.640000pt;}
.y57{bottom:363.040000pt;}
.yb9{bottom:366.533333pt;}
.ydd{bottom:368.133333pt;}
.yf3{bottom:368.933333pt;}
.y34{bottom:369.466667pt;}
.y81{bottom:373.466667pt;}
.y12{bottom:376.666667pt;}
.y56{bottom:379.866667pt;}
.yb8{bottom:386.000000pt;}
.ydc{bottom:387.600000pt;}
.y96{bottom:388.666667pt;}
.yf2{bottom:390.000000pt;}
.y80{bottom:390.533333pt;}
.y55{bottom:396.933333pt;}
.y33{bottom:402.266667pt;}
.yb7{bottom:405.200000pt;}
.ydb{bottom:407.066667pt;}
.y7f{bottom:407.333333pt;}
.y95{bottom:408.133333pt;}
.y11{bottom:410.266667pt;}
.yf1{bottom:411.333333pt;}
.y7e{bottom:424.133333pt;}
.y54{bottom:424.400000pt;}
.yb6{bottom:424.666667pt;}
.yda{bottom:426.533333pt;}
.y94{bottom:427.600000pt;}
.yf0{bottom:432.400000pt;}
.y32{bottom:434.800000pt;}
.y7d{bottom:440.933333pt;}
.yb5{bottom:444.133333pt;}
.y10{bottom:444.666667pt;}
.yd9{bottom:445.733333pt;}
.y93{bottom:447.066667pt;}
.y53{bottom:451.866667pt;}
.yef{bottom:453.466667pt;}
.y7c{bottom:458.000000pt;}
.yb4{bottom:463.333333pt;}
.yd8{bottom:465.200000pt;}
.yf{bottom:465.733333pt;}
.y31{bottom:467.600000pt;}
.y52{bottom:468.666667pt;}
.y7b{bottom:474.800000pt;}
.yb3{bottom:482.800000pt;}
.yd7{bottom:484.666667pt;}
.y51{bottom:485.773333pt;}
.ye{bottom:487.106667pt;}
.y7a{bottom:491.640000pt;}
.yee{bottom:495.906667pt;}
.y30{bottom:500.440000pt;}
.yb2{bottom:502.306667pt;}
.y50{bottom:502.573333pt;}
.yd6{bottom:504.173333pt;}
.y79{bottom:508.440000pt;}
.yed{bottom:516.973333pt;}
.y4f{bottom:519.373333pt;}
.yd{bottom:521.506667pt;}
.yb1{bottom:521.773333pt;}
.yd5{bottom:523.373333pt;}
.y78{bottom:525.506667pt;}
.y2f{bottom:533.240000pt;}
.y4e{bottom:536.173333pt;}
.yec{bottom:538.306667pt;}
.yb0{bottom:540.973333pt;}
.y77{bottom:542.306667pt;}
.yd4{bottom:542.840000pt;}
.y4d{bottom:553.240000pt;}
.yc{bottom:556.973333pt;}
.y76{bottom:559.106667pt;}
.yeb{bottom:559.373333pt;}
.yaf{bottom:560.440000pt;}
.yd3{bottom:562.306667pt;}
.y2e{bottom:565.773333pt;}
.y4c{bottom:570.040000pt;}
.y75{bottom:575.906667pt;}
.yae{bottom:579.906667pt;}
.yea{bottom:580.440000pt;}
.yd2{bottom:581.506667pt;}
.y4b{bottom:586.840000pt;}
.y74{bottom:592.973333pt;}
.yb{bottom:593.240000pt;}
.y2d{bottom:598.573333pt;}
.yad{bottom:599.373333pt;}
.yd1{bottom:600.973333pt;}
.y4a{bottom:603.640000pt;}
.y73{bottom:609.800000pt;}
.yac{bottom:618.600000pt;}
.yd0{bottom:620.466667pt;}
.y49{bottom:620.733333pt;}
.ya{bottom:626.066667pt;}
.y72{bottom:626.600000pt;}
.y2c{bottom:631.400000pt;}
.y48{bottom:637.533333pt;}
.yab{bottom:638.066667pt;}
.ycf{bottom:639.933333pt;}
.y71{bottom:643.400000pt;}
.y47{bottom:654.333333pt;}
.yaa{bottom:657.533333pt;}
.y9{bottom:658.866667pt;}
.yce{bottom:659.133333pt;}
.y70{bottom:660.466667pt;}
.y2b{bottom:664.200000pt;}
.y46{bottom:671.133333pt;}
.ya9{bottom:676.733333pt;}
.y6f{bottom:677.266667pt;}
.ycd{bottom:678.600000pt;}
.y45{bottom:688.200000pt;}
.y8{bottom:691.400000pt;}
.y6e{bottom:694.066667pt;}
.ya8{bottom:696.200000pt;}
.y2a{bottom:696.733333pt;}
.ycc{bottom:698.066667pt;}
.y44{bottom:705.000000pt;}
.y6d{bottom:710.866667pt;}
.ya7{bottom:715.666667pt;}
.ycb{bottom:717.533333pt;}
.y43{bottom:721.800000pt;}
.y7{bottom:725.000000pt;}
.y6c{bottom:727.973333pt;}
.y29{bottom:729.573333pt;}
.ya6{bottom:735.173333pt;}
.yca{bottom:736.773333pt;}
.y42{bottom:738.640000pt;}
.y6b{bottom:744.773333pt;}
.ya5{bottom:754.373333pt;}
.yc9{bottom:756.240000pt;}
.y6{bottom:759.440000pt;}
.y6a{bottom:761.573333pt;}
.y28{bottom:762.373333pt;}
.y41{bottom:766.373333pt;}
.ya4{bottom:773.840000pt;}
.yc8{bottom:775.706667pt;}
.y69{bottom:778.373333pt;}
.y5{bottom:794.106667pt;}
.y27{bottom:795.173333pt;}
.y68{bottom:795.440000pt;}
.y3{bottom:813.040000pt;}
.y2{bottom:830.906667pt;}
.y1{bottom:847.200000pt;}
.h9{height:26.171875pt;}
.ha{height:31.406250pt;}
.h2{height:44.062500pt;}
.hb{height:48.375000pt;}
.h3{height:52.343750pt;}
.hd{height:52.593750pt;}
.he{height:57.549479pt;}
.h5{height:57.578125pt;}
.hc{height:59.125000pt;}
.h8{height:62.812500pt;}
.h4{height:64.500000pt;}
.h7{height:66.408333pt;}
.h6{height:75.250000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w2{width:604.799991pt;}
.w0{width:604.800000pt;}
.x0{left:0.000000pt;}
.x1{left:68.033324pt;}
.xb{left:105.899991pt;}
.xa{left:115.233324pt;}
.x8{left:137.399991pt;}
.x4{left:155.533324pt;}
.x5{left:179.799991pt;}
.x6{left:208.106658pt;}
.x7{left:210.773324pt;}
.x3{left:256.373324pt;}
.xc{left:392.173324pt;}
.x9{left:398.839991pt;}
.x2{left:529.306658pt;}
}




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