
    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_46d5ce48a85f29bdded796ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_7d0c267978cfc1e678a414b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_3dd996a87ced77837cce5b8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_9d33cb8f6ebcef99d886bc60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_aa4c9bc0f80cc3ef07411038.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ac78f0adae7790bdcf232fe6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e98f7674f35405e97c0c0094.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1888a0ac254d92a80b272017.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6dfcf02643b9deacf22cd71c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.752441;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.666000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:7.380000px;}
.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:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.274000px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-8.545680px;}
._7{margin-left:-7.407840px;}
._1{margin-left:-6.094080px;}
._4{margin-left:-3.444480px;}
._f{margin-left:-2.424240px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._b{width:2.160480px;}
._d{width:3.632640px;}
._c{width:4.902480px;}
._8{width:5.973840px;}
._1e{width:7.201440px;}
._e{width:8.216640px;}
._a{width:9.532800px;}
._17{width:10.642320px;}
._14{width:11.952000px;}
._9{width:13.430160px;}
._19{width:16.205040px;}
._1a{width:18.159840px;}
._18{width:19.406160px;}
._11{width:20.672400px;}
._10{width:21.692880px;}
._1b{width:22.898160px;}
._12{width:24.745680px;}
._13{width:26.729760px;}
._1d{width:28.625040px;}
._16{width:31.613040px;}
._15{width:32.628960px;}
._1c{width:58.495680px;}
._20{width:74.455920px;}
._1f{width:75.661200px;}
._6{width:202.500000px;}
._5{width:345.365760px;}
._3{width:631.448160px;}
.fc2{color:rgb(0,78,154);}
.fc1{color:rgb(15,17,21);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:5.760000px;}
.y9c{bottom:5.790000px;}
.y8d{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.ya5{bottom:6.840000px;}
.y86{bottom:7.740000px;}
.ya1{bottom:15.840000px;}
.ya3{bottom:18.900000px;}
.y88{bottom:25.560000px;}
.y8c{bottom:25.740000px;}
.ya4{bottom:29.700000px;}
.y9{bottom:51.120000px;}
.y7d{bottom:57.420000px;}
.y6{bottom:66.780000px;}
.y7c{bottom:73.080000px;}
.y30{bottom:106.740000px;}
.y2f{bottom:126.720000px;}
.y84{bottom:127.620000px;}
.y7f{bottom:138.420000px;}
.y6c{bottom:139.500000px;}
.y2e{bottom:146.520000px;}
.y4b{bottom:153.390000px;}
.y59{bottom:164.190000px;}
.y2d{bottom:166.350000px;}
.yb6{bottom:171.030000px;}
.y4a{bottom:174.270000px;}
.y2c{bottom:186.150000px;}
.y49{bottom:195.150000px;}
.y7e{bottom:197.850000px;}
.y6b{bottom:200.010000px;}
.y2b{bottom:205.950000px;}
.y83{bottom:206.850000px;}
.yb5{bottom:210.630000px;}
.y48{bottom:216.030000px;}
.y2a{bottom:225.930000px;}
.y71{bottom:244.830000px;}
.y29{bottom:245.730000px;}
.y82{bottom:246.630000px;}
.y70{bottom:264.630000px;}
.y28{bottom:265.530000px;}
.y6a{bottom:269.670000px;}
.yb4{bottom:270.210000px;}
.y27{bottom:285.330000px;}
.y69{bottom:290.550000px;}
.y47{bottom:297.750000px;}
.y58{bottom:304.050000px;}
.y26{bottom:305.130000px;}
.y68{bottom:311.430000px;}
.y25{bottom:325.110000px;}
.y81{bottom:326.010000px;}
.y67{bottom:332.310000px;}
.y46{bottom:338.430000px;}
.y24{bottom:344.910000px;}
.y51{bottom:347.070000px;}
.y23{bottom:364.710000px;}
.yb3{bottom:369.390000px;}
.y66{bottom:373.170000px;}
.y45{bottom:379.110000px;}
.y22{bottom:384.510000px;}
.y80{bottom:385.410000px;}
.y21{bottom:404.355000px;}
.y44{bottom:420.015000px;}
.y65{bottom:422.895000px;}
.y20{bottom:424.335000px;}
.y1f{bottom:444.135000px;}
.y64{bottom:463.575000px;}
.y1e{bottom:463.935000px;}
.ybe{bottom:468.615000px;}
.ya9{bottom:470.235000px;}
.y1d{bottom:483.735000px;}
.y57{bottom:484.815000px;}
.y43{bottom:489.495000px;}
.ya8{bottom:490.935000px;}
.y1c{bottom:503.535000px;}
.y63{bottom:504.435000px;}
.ya7{bottom:511.455000px;}
.y1b{bottom:523.515000px;}
.y42{bottom:530.355000px;}
.y1a{bottom:543.315000px;}
.y62{bottom:545.115000px;}
.ybd{bottom:547.995000px;}
.y41{bottom:551.235000px;}
.ya6{bottom:558.075000px;}
.yaf{bottom:560.595000px;}
.y19{bottom:563.115000px;}
.y50{bottom:566.355000px;}
.y40{bottom:572.115000px;}
.y31{bottom:582.915000px;}
.y9f{bottom:586.695000px;}
.y7b{bottom:591.195000px;}
.ya2{bottom:604.695000px;}
.y9e{bottom:607.215000px;}
.yb2{bottom:609.195000px;}
.y3f{bottom:612.795000px;}
.y61{bottom:614.775000px;}
.y18{bottom:622.695000px;}
.y56{bottom:623.595000px;}
.y9d{bottom:627.735000px;}
.y17{bottom:642.495000px;}
.y9b{bottom:648.435000px;}
.ya0{bottom:651.345000px;}
.y60{bottom:655.485000px;}
.y3e{bottom:662.685000px;}
.y16{bottom:664.485000px;}
.ybc{bottom:667.005000px;}
.y9a{bottom:668.985000px;}
.y4f{bottom:670.245000px;}
.y7a{bottom:679.605000px;}
.y15{bottom:684.465000px;}
.yae{bottom:688.605000px;}
.y99{bottom:689.505000px;}
.y5f{bottom:696.345000px;}
.y3d{bottom:703.365000px;}
.y14{bottom:704.265000px;}
.y98{bottom:710.205000px;}
.y13{bottom:724.065000px;}
.ybb{bottom:726.405000px;}
.yad{bottom:728.385000px;}
.y97{bottom:730.725000px;}
.y5e{bottom:737.025000px;}
.y12{bottom:743.865000px;}
.y3c{bottom:744.225000px;}
.y79{bottom:748.185000px;}
.y96{bottom:757.185000px;}
.y11{bottom:763.665000px;}
.yb1{bottom:767.985000px;}
.y55{bottom:769.245000px;}
.y95{bottom:776.985000px;}
.y5d{bottom:777.705000px;}
.y10{bottom:783.645000px;}
.y3b{bottom:784.905000px;}
.yba{bottom:785.985000px;}
.y4e{bottom:797.685000px;}
.yf{bottom:803.445000px;}
.y78{bottom:807.585000px;}
.y94{bottom:816.585000px;}
.y5c{bottom:818.565000px;}
.ye{bottom:823.245000px;}
.y91{bottom:825.225000px;}
.yd{bottom:843.045000px;}
.yb9{bottom:845.565000px;}
.yac{bottom:856.365000px;}
.yc{bottom:862.845000px;}
.y90{bottom:865.725000px;}
.y77{bottom:867.165000px;}
.y93{bottom:876.165000px;}
.y54{bottom:881.925000px;}
.yb{bottom:882.825000px;}
.y76{bottom:886.965000px;}
.ya{bottom:902.490000px;}
.y35{bottom:902.850000px;}
.y3a{bottom:905.010000px;}
.y8f{bottom:906.090000px;}
.yb8{bottom:924.810000px;}
.y4d{bottom:929.490000px;}
.y6f{bottom:931.470000px;}
.y92{bottom:935.790000px;}
.y34{bottom:943.710000px;}
.y8e{bottom:946.590000px;}
.y5b{bottom:947.670000px;}
.yb0{bottom:955.590000px;}
.y39{bottom:964.590000px;}
.y75{bottom:975.390000px;}
.yab{bottom:984.390000px;}
.y8b{bottom:986.910000px;}
.yb7{bottom:1004.190000px;}
.y6e{bottom:1011.750000px;}
.y74{bottom:1014.990000px;}
.y38{bottom:1023.990000px;}
.y8a{bottom:1027.410000px;}
.y6d{bottom:1032.810000px;}
.y73{bottom:1034.970000px;}
.y53{bottom:1041.810000px;}
.yaa{bottom:1043.970000px;}
.y4c{bottom:1062.690000px;}
.y5a{bottom:1066.650000px;}
.y87{bottom:1067.910000px;}
.y5{bottom:1068.270000px;}
.y37{bottom:1083.570000px;}
.y72{bottom:1103.370000px;}
.y4{bottom:1103.730000px;}
.y85{bottom:1108.230000px;}
.y3{bottom:1132.170000px;}
.y52{bottom:1142.070000px;}
.y36{bottom:1143.150000px;}
.y2{bottom:1160.640000px;}
.y33{bottom:1172.520000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1194.300000px;}
.he{height:19.800000px;}
.h10{height:19.836000px;}
.hf{height:19.980000px;}
.h6{height:21.780000px;}
.hb{height:39.600000px;}
.hd{height:39.636000px;}
.hc{height:39.780000px;}
.h9{height:41.726953px;}
.h8{height:42.164648px;}
.ha{height:43.506914px;}
.h12{height:44.236406px;}
.h13{height:45.900000px;}
.h11{height:45.936000px;}
.h7{height:46.251562px;}
.h3{height:46.736719px;}
.h4{height:50.800781px;}
.h2{height:54.864844px;}
.h5{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:47.160000px;}
.w5{width:50.580000px;}
.w3{width:51.336000px;}
.w9{width:64.836000px;}
.w8{width:64.980000px;}
.w14{width:69.300000px;}
.wa{width:77.220000px;}
.w15{width:77.796000px;}
.w10{width:79.200000px;}
.w13{width:79.776000px;}
.w7{width:80.280000px;}
.we{width:84.060000px;}
.w17{width:86.940000px;}
.wf{width:90.576000px;}
.w11{width:93.456000px;}
.w16{width:102.636000px;}
.wd{width:124.956000px;}
.w6{width:126.720000px;}
.w12{width:179.130000px;}
.wb{width:249.330000px;}
.w4{width:733.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x5{left:15.300000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.x7{left:64.079987px;}
.xa{left:65.339987px;}
.x26{left:66.419987px;}
.xf{left:72.719987px;}
.xb{left:81.179987px;}
.x29{left:86.615987px;}
.xe{left:87.875987px;}
.x12{left:94.715987px;}
.x4{left:106.056000px;}
.x14{left:138.636000px;}
.x1a{left:184.890000px;}
.x1b{left:232.950000px;}
.x20{left:246.090000px;}
.x15{left:266.115000px;}
.x21{left:326.595000px;}
.x16{left:347.115000px;}
.x1c{left:358.635000px;}
.x22{left:396.615000px;}
.x8{left:404.894987px;}
.x17{left:412.815000px;}
.x1d{left:443.415000px;}
.x6{left:473.144987px;}
.x23{left:475.125000px;}
.x18{left:478.365000px;}
.x9{left:479.984987px;}
.x13{left:484.484987px;}
.x27{left:485.564987px;}
.x10{left:491.864987px;}
.xc{left:500.324987px;}
.x28{left:505.364987px;}
.xd{left:506.984987px;}
.x11{left:513.824987px;}
.x1e{left:534.885000px;}
.x19{left:556.485000px;}
.x1f{left:614.805000px;}
.x24{left:659.490000px;}
.x25{left:747.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.592000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:6.560000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.688000pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-7.596160pt;}
._7{margin-left:-6.584747pt;}
._1{margin-left:-5.416960pt;}
._4{margin-left:-3.061760pt;}
._f{margin-left:-2.154880pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._b{width:1.920427pt;}
._d{width:3.229013pt;}
._c{width:4.357760pt;}
._8{width:5.310080pt;}
._1e{width:6.401280pt;}
._e{width:7.303680pt;}
._a{width:8.473600pt;}
._17{width:9.459840pt;}
._14{width:10.624000pt;}
._9{width:11.937920pt;}
._19{width:14.404480pt;}
._1a{width:16.142080pt;}
._18{width:17.249920pt;}
._11{width:18.375467pt;}
._10{width:19.282560pt;}
._1b{width:20.353920pt;}
._12{width:21.996160pt;}
._13{width:23.759787pt;}
._1d{width:25.444480pt;}
._16{width:28.100480pt;}
._15{width:29.003520pt;}
._1c{width:51.996160pt;}
._20{width:66.183040pt;}
._1f{width:67.254400pt;}
._6{width:180.000000pt;}
._5{width:306.991787pt;}
._3{width:561.287253pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:5.120000pt;}
.y9c{bottom:5.146667pt;}
.y8d{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.ya5{bottom:6.080000pt;}
.y86{bottom:6.880000pt;}
.ya1{bottom:14.080000pt;}
.ya3{bottom:16.800000pt;}
.y88{bottom:22.720000pt;}
.y8c{bottom:22.880000pt;}
.ya4{bottom:26.400000pt;}
.y9{bottom:45.440000pt;}
.y7d{bottom:51.040000pt;}
.y6{bottom:59.360000pt;}
.y7c{bottom:64.960000pt;}
.y30{bottom:94.880000pt;}
.y2f{bottom:112.640000pt;}
.y84{bottom:113.440000pt;}
.y7f{bottom:123.040000pt;}
.y6c{bottom:124.000000pt;}
.y2e{bottom:130.240000pt;}
.y4b{bottom:136.346667pt;}
.y59{bottom:145.946667pt;}
.y2d{bottom:147.866667pt;}
.yb6{bottom:152.026667pt;}
.y4a{bottom:154.906667pt;}
.y2c{bottom:165.466667pt;}
.y49{bottom:173.466667pt;}
.y7e{bottom:175.866667pt;}
.y6b{bottom:177.786667pt;}
.y2b{bottom:183.066667pt;}
.y83{bottom:183.866667pt;}
.yb5{bottom:187.226667pt;}
.y48{bottom:192.026667pt;}
.y2a{bottom:200.826667pt;}
.y71{bottom:217.626667pt;}
.y29{bottom:218.426667pt;}
.y82{bottom:219.226667pt;}
.y70{bottom:235.226667pt;}
.y28{bottom:236.026667pt;}
.y6a{bottom:239.706667pt;}
.yb4{bottom:240.186667pt;}
.y27{bottom:253.626667pt;}
.y69{bottom:258.266667pt;}
.y47{bottom:264.666667pt;}
.y58{bottom:270.266667pt;}
.y26{bottom:271.226667pt;}
.y68{bottom:276.826667pt;}
.y25{bottom:288.986667pt;}
.y81{bottom:289.786667pt;}
.y67{bottom:295.386667pt;}
.y46{bottom:300.826667pt;}
.y24{bottom:306.586667pt;}
.y51{bottom:308.506667pt;}
.y23{bottom:324.186667pt;}
.yb3{bottom:328.346667pt;}
.y66{bottom:331.706667pt;}
.y45{bottom:336.986667pt;}
.y22{bottom:341.786667pt;}
.y80{bottom:342.586667pt;}
.y21{bottom:359.426667pt;}
.y44{bottom:373.346667pt;}
.y65{bottom:375.906667pt;}
.y20{bottom:377.186667pt;}
.y1f{bottom:394.786667pt;}
.y64{bottom:412.066667pt;}
.y1e{bottom:412.386667pt;}
.ybe{bottom:416.546667pt;}
.ya9{bottom:417.986667pt;}
.y1d{bottom:429.986667pt;}
.y57{bottom:430.946667pt;}
.y43{bottom:435.106667pt;}
.ya8{bottom:436.386667pt;}
.y1c{bottom:447.586667pt;}
.y63{bottom:448.386667pt;}
.ya7{bottom:454.626667pt;}
.y1b{bottom:465.346667pt;}
.y42{bottom:471.426667pt;}
.y1a{bottom:482.946667pt;}
.y62{bottom:484.546667pt;}
.ybd{bottom:487.106667pt;}
.y41{bottom:489.986667pt;}
.ya6{bottom:496.066667pt;}
.yaf{bottom:498.306667pt;}
.y19{bottom:500.546667pt;}
.y50{bottom:503.426667pt;}
.y40{bottom:508.546667pt;}
.y31{bottom:518.146667pt;}
.y9f{bottom:521.506667pt;}
.y7b{bottom:525.506667pt;}
.ya2{bottom:537.506667pt;}
.y9e{bottom:539.746667pt;}
.yb2{bottom:541.506667pt;}
.y3f{bottom:544.706667pt;}
.y61{bottom:546.466667pt;}
.y18{bottom:553.506667pt;}
.y56{bottom:554.306667pt;}
.y9d{bottom:557.986667pt;}
.y17{bottom:571.106667pt;}
.y9b{bottom:576.386667pt;}
.ya0{bottom:578.973333pt;}
.y60{bottom:582.653333pt;}
.y3e{bottom:589.053333pt;}
.y16{bottom:590.653333pt;}
.ybc{bottom:592.893333pt;}
.y9a{bottom:594.653333pt;}
.y4f{bottom:595.773333pt;}
.y7a{bottom:604.093333pt;}
.y15{bottom:608.413333pt;}
.yae{bottom:612.093333pt;}
.y99{bottom:612.893333pt;}
.y5f{bottom:618.973333pt;}
.y3d{bottom:625.213333pt;}
.y14{bottom:626.013333pt;}
.y98{bottom:631.293333pt;}
.y13{bottom:643.613333pt;}
.ybb{bottom:645.693333pt;}
.yad{bottom:647.453333pt;}
.y97{bottom:649.533333pt;}
.y5e{bottom:655.133333pt;}
.y12{bottom:661.213333pt;}
.y3c{bottom:661.533333pt;}
.y79{bottom:665.053333pt;}
.y96{bottom:673.053333pt;}
.y11{bottom:678.813333pt;}
.yb1{bottom:682.653333pt;}
.y55{bottom:683.773333pt;}
.y95{bottom:690.653333pt;}
.y5d{bottom:691.293333pt;}
.y10{bottom:696.573333pt;}
.y3b{bottom:697.693333pt;}
.yba{bottom:698.653333pt;}
.y4e{bottom:709.053333pt;}
.yf{bottom:714.173333pt;}
.y78{bottom:717.853333pt;}
.y94{bottom:725.853333pt;}
.y5c{bottom:727.613333pt;}
.ye{bottom:731.773333pt;}
.y91{bottom:733.533333pt;}
.yd{bottom:749.373333pt;}
.yb9{bottom:751.613333pt;}
.yac{bottom:761.213333pt;}
.yc{bottom:766.973333pt;}
.y90{bottom:769.533333pt;}
.y77{bottom:770.813333pt;}
.y93{bottom:778.813333pt;}
.y54{bottom:783.933333pt;}
.yb{bottom:784.733333pt;}
.y76{bottom:788.413333pt;}
.ya{bottom:802.213333pt;}
.y35{bottom:802.533333pt;}
.y3a{bottom:804.453333pt;}
.y8f{bottom:805.413333pt;}
.yb8{bottom:822.053333pt;}
.y4d{bottom:826.213333pt;}
.y6f{bottom:827.973333pt;}
.y92{bottom:831.813333pt;}
.y34{bottom:838.853333pt;}
.y8e{bottom:841.413333pt;}
.y5b{bottom:842.373333pt;}
.yb0{bottom:849.413333pt;}
.y39{bottom:857.413333pt;}
.y75{bottom:867.013333pt;}
.yab{bottom:875.013333pt;}
.y8b{bottom:877.253333pt;}
.yb7{bottom:892.613333pt;}
.y6e{bottom:899.333333pt;}
.y74{bottom:902.213333pt;}
.y38{bottom:910.213333pt;}
.y8a{bottom:913.253333pt;}
.y6d{bottom:918.053333pt;}
.y73{bottom:919.973333pt;}
.y53{bottom:926.053333pt;}
.yaa{bottom:927.973333pt;}
.y4c{bottom:944.613333pt;}
.y5a{bottom:948.133333pt;}
.y87{bottom:949.253333pt;}
.y5{bottom:949.573333pt;}
.y37{bottom:963.173333pt;}
.y72{bottom:980.773333pt;}
.y4{bottom:981.093333pt;}
.y85{bottom:985.093333pt;}
.y3{bottom:1006.373333pt;}
.y52{bottom:1015.173333pt;}
.y36{bottom:1016.133333pt;}
.y2{bottom:1031.680000pt;}
.y33{bottom:1042.240000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1061.600000pt;}
.he{height:17.600000pt;}
.h10{height:17.632000pt;}
.hf{height:17.760000pt;}
.h6{height:19.360000pt;}
.hb{height:35.200000pt;}
.hd{height:35.232000pt;}
.hc{height:35.360000pt;}
.h9{height:37.090625pt;}
.h8{height:37.479688pt;}
.ha{height:38.672812pt;}
.h12{height:39.321250pt;}
.h13{height:40.800000pt;}
.h11{height:40.832000pt;}
.h7{height:41.112500pt;}
.h3{height:41.543750pt;}
.h4{height:45.156250pt;}
.h2{height:48.768750pt;}
.h5{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:41.920000pt;}
.w5{width:44.960000pt;}
.w3{width:45.632000pt;}
.w9{width:57.632000pt;}
.w8{width:57.760000pt;}
.w14{width:61.600000pt;}
.wa{width:68.640000pt;}
.w15{width:69.152000pt;}
.w10{width:70.400000pt;}
.w13{width:70.912000pt;}
.w7{width:71.360000pt;}
.we{width:74.720000pt;}
.w17{width:77.280000pt;}
.wf{width:80.512000pt;}
.w11{width:83.072000pt;}
.w16{width:91.232000pt;}
.wd{width:111.072000pt;}
.w6{width:112.640000pt;}
.w12{width:159.226667pt;}
.wb{width:221.626667pt;}
.w4{width:651.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x5{left:13.600000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x7{left:56.959988pt;}
.xa{left:58.079988pt;}
.x26{left:59.039988pt;}
.xf{left:64.639988pt;}
.xb{left:72.159988pt;}
.x29{left:76.991988pt;}
.xe{left:78.111988pt;}
.x12{left:84.191988pt;}
.x4{left:94.272000pt;}
.x14{left:123.232000pt;}
.x1a{left:164.346667pt;}
.x1b{left:207.066667pt;}
.x20{left:218.746667pt;}
.x15{left:236.546667pt;}
.x21{left:290.306667pt;}
.x16{left:308.546667pt;}
.x1c{left:318.786667pt;}
.x22{left:352.546667pt;}
.x8{left:359.906655pt;}
.x17{left:366.946667pt;}
.x1d{left:394.146667pt;}
.x6{left:420.573322pt;}
.x23{left:422.333333pt;}
.x18{left:425.213333pt;}
.x9{left:426.653322pt;}
.x13{left:430.653322pt;}
.x27{left:431.613322pt;}
.x10{left:437.213322pt;}
.xc{left:444.733322pt;}
.x28{left:449.213322pt;}
.xd{left:450.653322pt;}
.x11{left:456.733322pt;}
.x1e{left:475.453333pt;}
.x19{left:494.653333pt;}
.x1f{left:546.493333pt;}
.x24{left:586.213333pt;}
.x25{left:664.133333pt;}
}




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