
    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_0f9949acaa6e10f97bb9827e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3cb2439322aaad5367973795.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c53d4b8183d1ea7299594488.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_24f441ab0ffb632c36fffb17.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9d5bd4fe3bb3d4976f0c82f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_959f72e4e1d8791e40b7a939.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_a63b16ebbcfd2a276e887596.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b8ec432b62d023f7ddc54a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_f55f3a16c74812963126b359.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_8dafd758452c30889e291742.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939941;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;}
.v1{vertical-align:30.240000px;}
.ls8{letter-spacing:-0.378600px;}
.ls2{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.341400px;}
.ls4{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.378600px;}
.ls6{letter-spacing:0.378720px;}
.ls7{letter-spacing:0.504000px;}
.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;}
}
.ws13{word-spacing:-84.618600px;}
.ws4{word-spacing:-84.600000px;}
.ws5{word-spacing:-84.240000px;}
.ws3{word-spacing:-83.880000px;}
.ws1{word-spacing:-27.000000px;}
.wsa{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.041280px;}
.wsb{word-spacing:-20.700000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.573760px;}
.ws11{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.272000px;}
.ws12{word-spacing:-16.128000px;}
.ws9{word-spacing:-13.500000px;}
.wse{word-spacing:-12.204000px;}
.wsf{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
._19{margin-left:-4.040880px;}
._14{margin-left:-3.032640px;}
._1{margin-left:-1.460880px;}
._0{width:1.212000px;}
._e{width:2.850480px;}
._18{width:4.239360px;}
._4{width:5.442480px;}
._3{width:6.697920px;}
._11{width:7.916880px;}
._13{width:9.010800px;}
._26{width:10.043520px;}
._b{width:11.148480px;}
._d{width:13.015200px;}
._8{width:14.077440px;}
._1c{width:15.477120px;}
._1b{width:16.627200px;}
._1d{width:18.111600px;}
._17{width:19.627920px;}
._c{width:22.352400px;}
._5{width:23.587200px;}
._6{width:24.682320px;}
._7{width:25.895040px;}
._34{width:26.968800px;}
._12{width:28.254720px;}
._a{width:29.597040px;}
._9{width:30.607920px;}
._35{width:34.651440px;}
._15{width:37.402560px;}
._16{width:39.425040px;}
._1e{width:40.544160px;}
._2{width:41.614560px;}
._1a{width:42.958560px;}
._20{width:45.321120px;}
._1f{width:46.360800px;}
._24{width:48.522240px;}
._25{width:50.096160px;}
._27{width:51.386400px;}
._10{width:53.286480px;}
._f{width:54.532080px;}
._29{width:60.803760px;}
._28{width:62.029440px;}
._2b{width:64.780560px;}
._33{width:67.420800px;}
._32{width:69.973200px;}
._23{width:71.295840px;}
._2f{width:72.446400px;}
._31{width:93.169440px;}
._30{width:94.209120px;}
._2e{width:143.405280px;}
._21{width:170.616000px;}
._22{width:171.713760px;}
._2c{width:174.489840px;}
._2a{width:184.569840px;}
._2d{width:313.878240px;}
.fc4{color:transparent;}
.fc3{color:rgb(20,20,19);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:84.384000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.800000px;}
.y2{bottom:4.320000px;}
.y6b{bottom:5.010000px;}
.y69{bottom:5.190000px;}
.y9{bottom:5.760000px;}
.y3{bottom:5.940000px;}
.y7e{bottom:6.450000px;}
.y7b{bottom:6.630000px;}
.y41{bottom:6.735000px;}
.y67{bottom:6.810000px;}
.y3d{bottom:7.455000px;}
.y3a{bottom:7.635000px;}
.y36{bottom:7.665000px;}
.y58{bottom:8.100000px;}
.y5e{bottom:8.280000px;}
.y63{bottom:8.820000px;}
.y8{bottom:9.000000px;}
.ya{bottom:9.540000px;}
.y65{bottom:10.590000px;}
.y34{bottom:11.235000px;}
.y5a{bottom:24.840000px;}
.y91{bottom:35.865000px;}
.y57{bottom:36.000000px;}
.y62{bottom:36.540000px;}
.y60{bottom:37.260000px;}
.y7{bottom:37.800000px;}
.y55{bottom:52.740000px;}
.y85{bottom:63.720000px;}
.y90{bottom:63.765000px;}
.y8c{bottom:65.745000px;}
.y88{bottom:79.785000px;}
.y54{bottom:80.460000px;}
.y84{bottom:91.440000px;}
.y8f{bottom:91.485000px;}
.ya6{bottom:91.656000px;}
.y8b{bottom:93.645000px;}
.y32{bottom:103.356000px;}
.y87{bottom:107.505000px;}
.y53{bottom:108.225000px;}
.y27{bottom:115.236000px;}
.y8a{bottom:121.365000px;}
.ya5{bottom:127.836000px;}
.y59{bottom:136.125000px;}
.y31{bottom:139.536000px;}
.y26{bottom:151.410000px;}
.ya4{bottom:164.010000px;}
.y30{bottom:175.710000px;}
.y5f{bottom:177.690000px;}
.y25{bottom:187.590000px;}
.ya3{bottom:200.370000px;}
.y61{bottom:206.850000px;}
.y2f{bottom:212.070000px;}
.y24{bottom:223.950000px;}
.y52{bottom:236.010000px;}
.ya2{bottom:236.550000px;}
.y2e{bottom:248.250000px;}
.y23{bottom:260.130000px;}
.y5d{bottom:265.170000px;}
.ya1{bottom:272.730000px;}
.y2d{bottom:284.430000px;}
.y5c{bottom:294.510000px;}
.y22{bottom:296.310000px;}
.ya0{bottom:308.910000px;}
.y2c{bottom:320.610000px;}
.y5b{bottom:323.670000px;}
.y21{bottom:332.490000px;}
.y9f{bottom:345.315000px;}
.y56{bottom:352.875000px;}
.y2b{bottom:356.835000px;}
.y20{bottom:368.715000px;}
.y9e{bottom:381.495000px;}
.y2a{bottom:393.195000px;}
.y1f{bottom:405.075000px;}
.y9d{bottom:417.675000px;}
.y51{bottom:426.495000px;}
.y29{bottom:429.375000px;}
.y1e{bottom:441.255000px;}
.y9c{bottom:453.855000px;}
.y28{bottom:460.875000px;}
.y33{bottom:461.340000px;}
.y50{bottom:462.675000px;}
.y1d{bottom:477.435000px;}
.y42{bottom:480.240000px;}
.y9b{bottom:490.035000px;}
.y3c{bottom:490.860000px;}
.y4f{bottom:498.855000px;}
.y3f{bottom:501.480000px;}
.y3b{bottom:512.100000px;}
.y1c{bottom:513.615000px;}
.y3e{bottom:523.080000px;}
.y9a{bottom:526.395000px;}
.y39{bottom:533.700000px;}
.y4e{bottom:535.035000px;}
.y40{bottom:544.320000px;}
.y1b{bottom:549.975000px;}
.y99{bottom:562.575000px;}
.y4d{bottom:571.395000px;}
.y1a{bottom:586.155000px;}
.y98{bottom:598.755000px;}
.y4c{bottom:607.605000px;}
.y19{bottom:622.365000px;}
.y97{bottom:634.965000px;}
.y44{bottom:641.160000px;}
.y4b{bottom:643.785000px;}
.y18{bottom:658.545000px;}
.y43{bottom:662.580000px;}
.y96{bottom:671.325000px;}
.y4a{bottom:679.965000px;}
.y17{bottom:694.905000px;}
.y95{bottom:707.505000px;}
.y49{bottom:716.325000px;}
.y16{bottom:731.085000px;}
.y94{bottom:743.685000px;}
.y48{bottom:752.505000px;}
.y15{bottom:767.265000px;}
.y38{bottom:770.220000px;}
.y93{bottom:779.865000px;}
.y47{bottom:788.685000px;}
.y37{bottom:791.640000px;}
.y14{bottom:803.445000px;}
.y35{bottom:813.060000px;}
.y92{bottom:816.225000px;}
.y46{bottom:824.865000px;}
.y86{bottom:836.565000px;}
.y13{bottom:839.625000px;}
.y45{bottom:856.545000px;}
.y64{bottom:864.000000px;}
.y12{bottom:876.030000px;}
.y82{bottom:896.580000px;}
.y76{bottom:898.020000px;}
.y11{bottom:912.210000px;}
.y75{bottom:912.420000px;}
.y81{bottom:915.660000px;}
.y74{bottom:927.180000px;}
.y80{bottom:935.100000px;}
.y73{bottom:943.740000px;}
.y10{bottom:948.390000px;}
.y8e{bottom:949.110000px;}
.y7f{bottom:954.360000px;}
.y72{bottom:958.140000px;}
.y71{bottom:972.720000px;}
.y7d{bottom:973.800000px;}
.y8d{bottom:978.270000px;}
.yf{bottom:984.570000px;}
.y70{bottom:989.460000px;}
.y7c{bottom:992.880000px;}
.y6f{bottom:1004.040000px;}
.y89{bottom:1007.430000px;}
.y7a{bottom:1012.140000px;}
.y6e{bottom:1018.260000px;}
.ye{bottom:1020.930000px;}
.y79{bottom:1031.220000px;}
.y6d{bottom:1035.360000px;}
.y83{bottom:1036.590000px;}
.y6c{bottom:1049.580000px;}
.y78{bottom:1050.480000px;}
.yd{bottom:1057.110000px;}
.y6a{bottom:1064.160000px;}
.y77{bottom:1069.740000px;}
.y68{bottom:1078.560000px;}
.yc{bottom:1093.290000px;}
.y66{bottom:1110.060000px;}
.yb{bottom:1129.470000px;}
.y6{bottom:1153.800000px;}
.y4{bottom:1173.420000px;}
.y1{bottom:1198.620000px;}
.h5{height:14.400000px;}
.h1a{height:17.820000px;}
.h19{height:18.000000px;}
.h2{height:21.420000px;}
.h1b{height:23.760000px;}
.h18{height:23.940000px;}
.he{height:26.460000px;}
.hf{height:26.640000px;}
.h13{height:27.720000px;}
.h12{height:27.756000px;}
.h14{height:27.900000px;}
.h16{height:30.420000px;}
.h7{height:30.960000px;}
.hd{height:31.140000px;}
.h4{height:52.998047px;}
.h11{height:55.620000px;}
.h15{height:56.880000px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hb{height:82.635820px;}
.h6{height:82.676953px;}
.h17{height:82.818281px;}
.hc{height:83.238047px;}
.ha{height:84.898125px;}
.h9{height:108.843750px;}
.h1c{height:111.096000px;}
.h10{height:172.470000px;}
.h1d{height:198.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:6.120000px;}
.w1c{width:7.020000px;}
.w7{width:7.200000px;}
.w1e{width:9.000000px;}
.w32{width:11.880000px;}
.w20{width:16.200000px;}
.w3b{width:21.780000px;}
.w25{width:38.340000px;}
.w3{width:44.100000px;}
.w1f{width:44.460000px;}
.w24{width:46.980000px;}
.w3e{width:47.160000px;}
.w2d{width:48.960000px;}
.w2e{width:50.580000px;}
.w18{width:53.100000px;}
.w34{width:54.000000px;}
.w36{width:56.700000px;}
.w6{width:63.036000px;}
.w29{width:64.260000px;}
.w2a{width:66.780000px;}
.w43{width:67.860000px;}
.w37{width:69.300000px;}
.w3d{width:71.280000px;}
.w16{width:72.900000px;}
.w13{width:76.500000px;}
.w33{width:79.740000px;}
.w35{width:80.100000px;}
.w22{width:81.180000px;}
.w26{width:84.060000px;}
.w38{width:91.440000px;}
.w3f{width:92.340000px;}
.w4a{width:99.000000px;}
.w3c{width:99.180000px;}
.w45{width:99.720000px;}
.w21{width:102.600000px;}
.w49{width:104.760000px;}
.w15{width:104.940000px;}
.w17{width:106.920000px;}
.w27{width:107.640000px;}
.w3a{width:108.000000px;}
.w39{width:119.880000px;}
.w46{width:127.800000px;}
.w47{width:129.420000px;}
.w41{width:129.960000px;}
.w40{width:136.620000px;}
.w28{width:141.840000px;}
.w2b{width:146.160000px;}
.wc{width:148.320000px;}
.wf{width:149.760000px;}
.w48{width:153.360000px;}
.wa{width:157.500000px;}
.w30{width:161.820000px;}
.w31{width:162.000000px;}
.w8{width:162.360000px;}
.w42{width:165.240000px;}
.w44{width:165.780000px;}
.w23{width:172.800000px;}
.w2c{width:173.880000px;}
.w2f{width:181.620000px;}
.wb{width:183.420000px;}
.w12{width:187.200000px;}
.w1d{width:189.000000px;}
.w19{width:201.135000px;}
.we{width:211.500000px;}
.w1b{width:243.750000px;}
.wd{width:248.760000px;}
.w9{width:253.440000px;}
.w10{width:256.500000px;}
.w14{width:256.860000px;}
.w1a{width:286.230000px;}
.w5{width:728.430000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x5{left:8.640000px;}
.x9{left:11.160000px;}
.x4{left:35.640000px;}
.x7{left:54.720000px;}
.x2{left:72.540000px;}
.x6{left:84.959987px;}
.x23{left:86.220000px;}
.x17{left:90.900000px;}
.x28{left:96.120000px;}
.xb{left:101.735987px;}
.x15{left:117.540000px;}
.x10{left:127.475987px;}
.x16{left:130.860000px;}
.x29{left:132.300000px;}
.x2a{left:139.140000px;}
.x2d{left:170.820000px;}
.x2b{left:175.500000px;}
.x30{left:178.740000px;}
.x2e{left:185.580000px;}
.x2c{left:190.440000px;}
.x31{left:193.680000px;}
.x2f{left:205.380000px;}
.xe{left:233.489987px;}
.x1e{left:239.040000px;}
.x20{left:243.540000px;}
.x3d{left:271.109987px;}
.x24{left:288.075000px;}
.x1f{left:317.700000px;}
.x21{left:323.820000px;}
.x14{left:329.400000px;}
.x18{left:345.060000px;}
.xd{left:359.174987px;}
.x13{left:363.600000px;}
.x19{left:366.300000px;}
.xf{left:373.574987px;}
.x32{left:375.840000px;}
.xc{left:383.114987px;}
.x33{left:400.680000px;}
.x34{left:413.820000px;}
.xa{left:446.474987px;}
.x39{left:483.120000px;}
.x36{left:494.460000px;}
.x35{left:496.620000px;}
.x38{left:501.660000px;}
.x37{left:520.920000px;}
.x1a{left:564.120000px;}
.x25{left:575.025000px;}
.x1c{left:592.560000px;}
.x1d{left:631.800000px;}
.x3a{left:651.600000px;}
.x3b{left:666.900000px;}
.x3c{left:680.040000px;}
.x1b{left:756.900000px;}
.x8{left:783.150000px;}
.x12{left:798.480000px;}
.x26{left:819.540000px;}
.x11{left:820.769987px;}
.x27{left:824.580000px;}
.x3{left:844.560000px;}
.x22{left:861.299987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.336533pt;}
.ls2{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.303467pt;}
.ls4{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.336533pt;}
.ls6{letter-spacing:0.336640pt;}
.ls7{letter-spacing:0.448000pt;}
.ws13{word-spacing:-75.216533pt;}
.ws4{word-spacing:-75.200000pt;}
.ws5{word-spacing:-74.880000pt;}
.ws3{word-spacing:-74.560000pt;}
.ws1{word-spacing:-24.000000pt;}
.wsa{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.031467pt;}
.ws7{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.703360pt;}
.wsb{word-spacing:-18.400000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.621120pt;}
.ws11{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.464000pt;}
.ws12{word-spacing:-14.336000pt;}
.ws9{word-spacing:-12.000000pt;}
.wse{word-spacing:-10.848000pt;}
.wsf{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
._19{margin-left:-3.591893pt;}
._14{margin-left:-2.695680pt;}
._1{margin-left:-1.298560pt;}
._0{width:1.077333pt;}
._e{width:2.533760pt;}
._18{width:3.768320pt;}
._4{width:4.837760pt;}
._3{width:5.953707pt;}
._11{width:7.037227pt;}
._13{width:8.009600pt;}
._26{width:8.927573pt;}
._b{width:9.909760pt;}
._d{width:11.569067pt;}
._8{width:12.513280pt;}
._1c{width:13.757440pt;}
._1b{width:14.779733pt;}
._1d{width:16.099200pt;}
._17{width:17.447040pt;}
._c{width:19.868800pt;}
._5{width:20.966400pt;}
._6{width:21.939840pt;}
._7{width:23.017813pt;}
._34{width:23.972267pt;}
._12{width:25.115307pt;}
._a{width:26.308480pt;}
._9{width:27.207040pt;}
._35{width:30.801280pt;}
._15{width:33.246720pt;}
._16{width:35.044480pt;}
._1e{width:36.039253pt;}
._2{width:36.990720pt;}
._1a{width:38.185387pt;}
._20{width:40.285440pt;}
._1f{width:41.209600pt;}
._24{width:43.130880pt;}
._25{width:44.529920pt;}
._27{width:45.676800pt;}
._10{width:47.365760pt;}
._f{width:48.472960pt;}
._29{width:54.047787pt;}
._28{width:55.137280pt;}
._2b{width:57.582720pt;}
._33{width:59.929600pt;}
._32{width:62.198400pt;}
._23{width:63.374080pt;}
._2f{width:64.396800pt;}
._31{width:82.817280pt;}
._30{width:83.741440pt;}
._2e{width:127.471360pt;}
._21{width:151.658667pt;}
._22{width:152.634453pt;}
._2c{width:155.102080pt;}
._2a{width:164.062080pt;}
._2d{width:279.002880pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:75.008000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.600000pt;}
.y2{bottom:3.840000pt;}
.y6b{bottom:4.453333pt;}
.y69{bottom:4.613333pt;}
.y9{bottom:5.120000pt;}
.y3{bottom:5.280000pt;}
.y7e{bottom:5.733333pt;}
.y7b{bottom:5.893333pt;}
.y41{bottom:5.986667pt;}
.y67{bottom:6.053333pt;}
.y3d{bottom:6.626667pt;}
.y3a{bottom:6.786667pt;}
.y36{bottom:6.813333pt;}
.y58{bottom:7.200000pt;}
.y5e{bottom:7.360000pt;}
.y63{bottom:7.840000pt;}
.y8{bottom:8.000000pt;}
.ya{bottom:8.480000pt;}
.y65{bottom:9.413333pt;}
.y34{bottom:9.986667pt;}
.y5a{bottom:22.080000pt;}
.y91{bottom:31.880000pt;}
.y57{bottom:32.000000pt;}
.y62{bottom:32.480000pt;}
.y60{bottom:33.120000pt;}
.y7{bottom:33.600000pt;}
.y55{bottom:46.880000pt;}
.y85{bottom:56.640000pt;}
.y90{bottom:56.680000pt;}
.y8c{bottom:58.440000pt;}
.y88{bottom:70.920000pt;}
.y54{bottom:71.520000pt;}
.y84{bottom:81.280000pt;}
.y8f{bottom:81.320000pt;}
.ya6{bottom:81.472000pt;}
.y8b{bottom:83.240000pt;}
.y32{bottom:91.872000pt;}
.y87{bottom:95.560000pt;}
.y53{bottom:96.200000pt;}
.y27{bottom:102.432000pt;}
.y8a{bottom:107.880000pt;}
.ya5{bottom:113.632000pt;}
.y59{bottom:121.000000pt;}
.y31{bottom:124.032000pt;}
.y26{bottom:134.586667pt;}
.ya4{bottom:145.786667pt;}
.y30{bottom:156.186667pt;}
.y5f{bottom:157.946667pt;}
.y25{bottom:166.746667pt;}
.ya3{bottom:178.106667pt;}
.y61{bottom:183.866667pt;}
.y2f{bottom:188.506667pt;}
.y24{bottom:199.066667pt;}
.y52{bottom:209.786667pt;}
.ya2{bottom:210.266667pt;}
.y2e{bottom:220.666667pt;}
.y23{bottom:231.226667pt;}
.y5d{bottom:235.706667pt;}
.ya1{bottom:242.426667pt;}
.y2d{bottom:252.826667pt;}
.y5c{bottom:261.786667pt;}
.y22{bottom:263.386667pt;}
.ya0{bottom:274.586667pt;}
.y2c{bottom:284.986667pt;}
.y5b{bottom:287.706667pt;}
.y21{bottom:295.546667pt;}
.y9f{bottom:306.946667pt;}
.y56{bottom:313.666667pt;}
.y2b{bottom:317.186667pt;}
.y20{bottom:327.746667pt;}
.y9e{bottom:339.106667pt;}
.y2a{bottom:349.506667pt;}
.y1f{bottom:360.066667pt;}
.y9d{bottom:371.266667pt;}
.y51{bottom:379.106667pt;}
.y29{bottom:381.666667pt;}
.y1e{bottom:392.226667pt;}
.y9c{bottom:403.426667pt;}
.y28{bottom:409.666667pt;}
.y33{bottom:410.080000pt;}
.y50{bottom:411.266667pt;}
.y1d{bottom:424.386667pt;}
.y42{bottom:426.880000pt;}
.y9b{bottom:435.586667pt;}
.y3c{bottom:436.320000pt;}
.y4f{bottom:443.426667pt;}
.y3f{bottom:445.760000pt;}
.y3b{bottom:455.200000pt;}
.y1c{bottom:456.546667pt;}
.y3e{bottom:464.960000pt;}
.y9a{bottom:467.906667pt;}
.y39{bottom:474.400000pt;}
.y4e{bottom:475.586667pt;}
.y40{bottom:483.840000pt;}
.y1b{bottom:488.866667pt;}
.y99{bottom:500.066667pt;}
.y4d{bottom:507.906667pt;}
.y1a{bottom:521.026667pt;}
.y98{bottom:532.226667pt;}
.y4c{bottom:540.093333pt;}
.y19{bottom:553.213333pt;}
.y97{bottom:564.413333pt;}
.y44{bottom:569.920000pt;}
.y4b{bottom:572.253333pt;}
.y18{bottom:585.373333pt;}
.y43{bottom:588.960000pt;}
.y96{bottom:596.733333pt;}
.y4a{bottom:604.413333pt;}
.y17{bottom:617.693333pt;}
.y95{bottom:628.893333pt;}
.y49{bottom:636.733333pt;}
.y16{bottom:649.853333pt;}
.y94{bottom:661.053333pt;}
.y48{bottom:668.893333pt;}
.y15{bottom:682.013333pt;}
.y38{bottom:684.640000pt;}
.y93{bottom:693.213333pt;}
.y47{bottom:701.053333pt;}
.y37{bottom:703.680000pt;}
.y14{bottom:714.173333pt;}
.y35{bottom:722.720000pt;}
.y92{bottom:725.533333pt;}
.y46{bottom:733.213333pt;}
.y86{bottom:743.613333pt;}
.y13{bottom:746.333333pt;}
.y45{bottom:761.373333pt;}
.y64{bottom:768.000000pt;}
.y12{bottom:778.693333pt;}
.y82{bottom:796.960000pt;}
.y76{bottom:798.240000pt;}
.y11{bottom:810.853333pt;}
.y75{bottom:811.040000pt;}
.y81{bottom:813.920000pt;}
.y74{bottom:824.160000pt;}
.y80{bottom:831.200000pt;}
.y73{bottom:838.880000pt;}
.y10{bottom:843.013333pt;}
.y8e{bottom:843.653333pt;}
.y7f{bottom:848.320000pt;}
.y72{bottom:851.680000pt;}
.y71{bottom:864.640000pt;}
.y7d{bottom:865.600000pt;}
.y8d{bottom:869.573333pt;}
.yf{bottom:875.173333pt;}
.y70{bottom:879.520000pt;}
.y7c{bottom:882.560000pt;}
.y6f{bottom:892.480000pt;}
.y89{bottom:895.493333pt;}
.y7a{bottom:899.680000pt;}
.y6e{bottom:905.120000pt;}
.ye{bottom:907.493333pt;}
.y79{bottom:916.640000pt;}
.y6d{bottom:920.320000pt;}
.y83{bottom:921.413333pt;}
.y6c{bottom:932.960000pt;}
.y78{bottom:933.760000pt;}
.yd{bottom:939.653333pt;}
.y6a{bottom:945.920000pt;}
.y77{bottom:950.880000pt;}
.y68{bottom:958.720000pt;}
.yc{bottom:971.813333pt;}
.y66{bottom:986.720000pt;}
.yb{bottom:1003.973333pt;}
.y6{bottom:1025.600000pt;}
.y4{bottom:1043.040000pt;}
.y1{bottom:1065.440000pt;}
.h5{height:12.800000pt;}
.h1a{height:15.840000pt;}
.h19{height:16.000000pt;}
.h2{height:19.040000pt;}
.h1b{height:21.120000pt;}
.h18{height:21.280000pt;}
.he{height:23.520000pt;}
.hf{height:23.680000pt;}
.h13{height:24.640000pt;}
.h12{height:24.672000pt;}
.h14{height:24.800000pt;}
.h16{height:27.040000pt;}
.h7{height:27.520000pt;}
.hd{height:27.680000pt;}
.h4{height:47.109375pt;}
.h11{height:49.440000pt;}
.h15{height:50.560000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hb{height:73.454062pt;}
.h6{height:73.490625pt;}
.h17{height:73.616250pt;}
.hc{height:73.989375pt;}
.ha{height:75.465000pt;}
.h9{height:96.750000pt;}
.h1c{height:98.752000pt;}
.h10{height:153.306667pt;}
.h1d{height:176.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:5.440000pt;}
.w1c{width:6.240000pt;}
.w7{width:6.400000pt;}
.w1e{width:8.000000pt;}
.w32{width:10.560000pt;}
.w20{width:14.400000pt;}
.w3b{width:19.360000pt;}
.w25{width:34.080000pt;}
.w3{width:39.200000pt;}
.w1f{width:39.520000pt;}
.w24{width:41.760000pt;}
.w3e{width:41.920000pt;}
.w2d{width:43.520000pt;}
.w2e{width:44.960000pt;}
.w18{width:47.200000pt;}
.w34{width:48.000000pt;}
.w36{width:50.400000pt;}
.w6{width:56.032000pt;}
.w29{width:57.120000pt;}
.w2a{width:59.360000pt;}
.w43{width:60.320000pt;}
.w37{width:61.600000pt;}
.w3d{width:63.360000pt;}
.w16{width:64.800000pt;}
.w13{width:68.000000pt;}
.w33{width:70.880000pt;}
.w35{width:71.200000pt;}
.w22{width:72.160000pt;}
.w26{width:74.720000pt;}
.w38{width:81.280000pt;}
.w3f{width:82.080000pt;}
.w4a{width:88.000000pt;}
.w3c{width:88.160000pt;}
.w45{width:88.640000pt;}
.w21{width:91.200000pt;}
.w49{width:93.120000pt;}
.w15{width:93.280000pt;}
.w17{width:95.040000pt;}
.w27{width:95.680000pt;}
.w3a{width:96.000000pt;}
.w39{width:106.560000pt;}
.w46{width:113.600000pt;}
.w47{width:115.040000pt;}
.w41{width:115.520000pt;}
.w40{width:121.440000pt;}
.w28{width:126.080000pt;}
.w2b{width:129.920000pt;}
.wc{width:131.840000pt;}
.wf{width:133.120000pt;}
.w48{width:136.320000pt;}
.wa{width:140.000000pt;}
.w30{width:143.840000pt;}
.w31{width:144.000000pt;}
.w8{width:144.320000pt;}
.w42{width:146.880000pt;}
.w44{width:147.360000pt;}
.w23{width:153.600000pt;}
.w2c{width:154.560000pt;}
.w2f{width:161.440000pt;}
.wb{width:163.040000pt;}
.w12{width:166.400000pt;}
.w1d{width:168.000000pt;}
.w19{width:178.786667pt;}
.we{width:188.000000pt;}
.w1b{width:216.666667pt;}
.wd{width:221.120000pt;}
.w9{width:225.280000pt;}
.w10{width:228.000000pt;}
.w14{width:228.320000pt;}
.w1a{width:254.426667pt;}
.w5{width:647.493333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x5{left:7.680000pt;}
.x9{left:9.920000pt;}
.x4{left:31.680000pt;}
.x7{left:48.640000pt;}
.x2{left:64.480000pt;}
.x6{left:75.519988pt;}
.x23{left:76.640000pt;}
.x17{left:80.800000pt;}
.x28{left:85.440000pt;}
.xb{left:90.431988pt;}
.x15{left:104.480000pt;}
.x10{left:113.311988pt;}
.x16{left:116.320000pt;}
.x29{left:117.600000pt;}
.x2a{left:123.680000pt;}
.x2d{left:151.840000pt;}
.x2b{left:156.000000pt;}
.x30{left:158.880000pt;}
.x2e{left:164.960000pt;}
.x2c{left:169.280000pt;}
.x31{left:172.160000pt;}
.x2f{left:182.560000pt;}
.xe{left:207.546655pt;}
.x1e{left:212.480000pt;}
.x20{left:216.480000pt;}
.x3d{left:240.986655pt;}
.x24{left:256.066667pt;}
.x1f{left:282.400000pt;}
.x21{left:287.840000pt;}
.x14{left:292.800000pt;}
.x18{left:306.720000pt;}
.xd{left:319.266655pt;}
.x13{left:323.200000pt;}
.x19{left:325.600000pt;}
.xf{left:332.066655pt;}
.x32{left:334.080000pt;}
.xc{left:340.546655pt;}
.x33{left:356.160000pt;}
.x34{left:367.840000pt;}
.xa{left:396.866655pt;}
.x39{left:429.440000pt;}
.x36{left:439.520000pt;}
.x35{left:441.440000pt;}
.x38{left:445.920000pt;}
.x37{left:463.040000pt;}
.x1a{left:501.440000pt;}
.x25{left:511.133333pt;}
.x1c{left:526.720000pt;}
.x1d{left:561.600000pt;}
.x3a{left:579.200000pt;}
.x3b{left:592.800000pt;}
.x3c{left:604.480000pt;}
.x1b{left:672.800000pt;}
.x8{left:696.133333pt;}
.x12{left:709.760000pt;}
.x26{left:728.480000pt;}
.x11{left:729.573322pt;}
.x27{left:732.960000pt;}
.x3{left:750.720000pt;}
.x22{left:765.599988pt;}
}




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