
    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_0e4a42e7488979514d9cc3cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_9cae4f636f36b12909e97dea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_76fac332cc19ebbcb8dacc81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_a19a0f711cb77cb13ae27cf1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b667b6d4e664d0b2a9e59bc.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_29413f0c88c678b7f18fbe57.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_6193fc93719873dbca485474.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;}
.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);}
.v3{vertical-align:-21.600000px;}
.v1{vertical-align:-10.800000px;}
.v9{vertical-align:-9.360000px;}
.v7{vertical-align:-2.880000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v8{vertical-align:2.880000px;}
.v4{vertical-align:21.600000px;}
.v2{vertical-align:24.480000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsd{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:30.545280px;}
.ls9{letter-spacing:34.865280px;}
.lsc{letter-spacing:38.465280px;}
.ls8{letter-spacing:39.905280px;}
.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;}
}
.ws8{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.450800px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-4.968000px;}
._12{margin-left:-3.908160px;}
._4{margin-left:-2.450160px;}
._0{margin-left:-1.254240px;}
._2{width:1.374480px;}
._e{width:2.381520px;}
._3{width:3.466080px;}
._c{width:5.079600px;}
._d{width:6.274800px;}
._f{width:7.350480px;}
._a{width:8.722800px;}
._9{width:9.920880px;}
._8{width:10.995120px;}
._7{width:12.669120px;}
._1a{width:13.773600px;}
._13{width:14.904000px;}
._6{width:16.172160px;}
._14{width:17.635680px;}
._5{width:18.824400px;}
._1f{width:19.826160px;}
._15{width:21.660480px;}
._16{width:23.051520px;}
._19{width:25.060800px;}
._20{width:26.227680px;}
._b{width:27.310320px;}
._18{width:28.416960px;}
._17{width:29.538720px;}
._1e{width:30.938400px;}
._21{width:31.993920px;}
._22{width:37.028160px;}
._1b{width:38.088000px;}
._1c{width:39.881760px;}
._10{width:41.823840px;}
._1d{width:46.036800px;}
._1{width:1047.568800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:10.080000px;}
.y5{bottom:73.476000px;}
.y4{bottom:92.556000px;}
.y3d{bottom:121.896000px;}
.ybd{bottom:131.616000px;}
.y96{bottom:133.776000px;}
.ye3{bottom:134.136000px;}
.y3c{bottom:143.856000px;}
.y94{bottom:149.976000px;}
.ybc{bottom:153.570000px;}
.y6b{bottom:155.730000px;}
.ye2{bottom:156.090000px;}
.y3b{bottom:165.630000px;}
.y93{bottom:171.750000px;}
.ybb{bottom:175.350000px;}
.y6a{bottom:177.510000px;}
.ye1{bottom:177.870000px;}
.y3a{bottom:187.590000px;}
.y92{bottom:193.710000px;}
.yba{bottom:197.130000px;}
.y69{bottom:199.470000px;}
.ye0{bottom:199.830000px;}
.y39{bottom:209.370000px;}
.y91{bottom:215.490000px;}
.yb9{bottom:219.630000px;}
.y68{bottom:221.250000px;}
.ydf{bottom:221.610000px;}
.y38{bottom:231.150000px;}
.y90{bottom:237.450000px;}
.yb8{bottom:241.590000px;}
.y67{bottom:243.210000px;}
.yde{bottom:243.390000px;}
.y37{bottom:253.110000px;}
.y8f{bottom:259.230000px;}
.yb7{bottom:263.370000px;}
.y66{bottom:264.990000px;}
.ydd{bottom:265.350000px;}
.y36{bottom:274.890000px;}
.y8e{bottom:281.190000px;}
.yb6{bottom:285.150000px;}
.y65{bottom:286.950000px;}
.ydc{bottom:287.130000px;}
.y35{bottom:296.850000px;}
.y8d{bottom:302.970000px;}
.yb5{bottom:306.930000px;}
.y64{bottom:308.730000px;}
.ydb{bottom:309.090000px;}
.y34{bottom:318.630000px;}
.y8c{bottom:324.930000px;}
.yb4{bottom:328.890000px;}
.y63{bottom:330.510000px;}
.yda{bottom:330.870000px;}
.y33{bottom:340.275000px;}
.y8b{bottom:346.755000px;}
.yb3{bottom:350.715000px;}
.y62{bottom:352.515000px;}
.yd9{bottom:352.875000px;}
.y32{bottom:362.415000px;}
.y8a{bottom:368.535000px;}
.yb2{bottom:372.495000px;}
.y61{bottom:374.295000px;}
.yd8{bottom:374.655000px;}
.y31{bottom:380.415000px;}
.y89{bottom:390.495000px;}
.y30{bottom:394.275000px;}
.y60{bottom:396.255000px;}
.yd7{bottom:396.615000px;}
.y2f{bottom:409.575000px;}
.y88{bottom:412.275000px;}
.yb1{bottom:416.055000px;}
.y5f{bottom:418.035000px;}
.yd6{bottom:418.395000px;}
.y2e{bottom:428.115000px;}
.y87{bottom:433.875000px;}
.yb0{bottom:438.015000px;}
.y5e{bottom:439.995000px;}
.yd5{bottom:440.175000px;}
.y2d{bottom:445.755000px;}
.y86{bottom:456.555000px;}
.yaf{bottom:459.795000px;}
.y5d{bottom:461.775000px;}
.yd4{bottom:462.135000px;}
.y2c{bottom:463.035000px;}
.y85{bottom:478.335000px;}
.y2b{bottom:480.315000px;}
.yae{bottom:481.575000px;}
.y5c{bottom:483.735000px;}
.yd3{bottom:483.915000px;}
.y2a{bottom:497.775000px;}
.y84{bottom:500.295000px;}
.yad{bottom:503.355000px;}
.y5b{bottom:505.515000px;}
.yd2{bottom:505.875000px;}
.y29{bottom:515.055000px;}
.y83{bottom:522.075000px;}
.yac{bottom:526.035000px;}
.y5a{bottom:527.295000px;}
.yd1{bottom:527.655000px;}
.y28{bottom:532.515000px;}
.y82{bottom:544.575000px;}
.yab{bottom:547.815000px;}
.y59{bottom:549.255000px;}
.yd0{bottom:549.615000px;}
.y27{bottom:549.795000px;}
.y81{bottom:566.355000px;}
.y26{bottom:567.075000px;}
.yaa{bottom:570.315000px;}
.y58{bottom:570.675000px;}
.y95{bottom:571.035000px;}
.ycf{bottom:573.735000px;}
.y25{bottom:584.535000px;}
.y80{bottom:588.315000px;}
.ya9{bottom:592.095000px;}
.y57{bottom:592.995000px;}
.y24{bottom:601.815000px;}
.y7f{bottom:610.845000px;}
.ya8{bottom:614.085000px;}
.y56{bottom:614.805000px;}
.yce{bottom:615.165000px;}
.y23{bottom:619.125000px;}
.y7e{bottom:632.625000px;}
.ya7{bottom:635.865000px;}
.y22{bottom:636.585000px;}
.y55{bottom:636.765000px;}
.ycd{bottom:636.945000px;}
.y21{bottom:653.865000px;}
.y7d{bottom:654.585000px;}
.ya6{bottom:657.645000px;}
.y54{bottom:658.545000px;}
.ycc{bottom:658.905000px;}
.y20{bottom:671.325000px;}
.y7c{bottom:676.185000px;}
.ya5{bottom:679.425000px;}
.y53{bottom:680.505000px;}
.ycb{bottom:680.685000px;}
.y1f{bottom:688.605000px;}
.y7b{bottom:697.965000px;}
.ya4{bottom:701.385000px;}
.y52{bottom:702.285000px;}
.yca{bottom:702.645000px;}
.y1e{bottom:706.065000px;}
.y7a{bottom:720.825000px;}
.ya3{bottom:723.165000px;}
.y1d{bottom:723.345000px;}
.y51{bottom:724.065000px;}
.yc9{bottom:724.425000px;}
.y1c{bottom:740.805000px;}
.y79{bottom:742.605000px;}
.ya2{bottom:744.945000px;}
.y50{bottom:746.025000px;}
.yc8{bottom:746.385000px;}
.y1b{bottom:758.085000px;}
.y78{bottom:764.385000px;}
.ya1{bottom:767.445000px;}
.y4f{bottom:767.805000px;}
.yc7{bottom:768.165000px;}
.y1a{bottom:775.365000px;}
.y77{bottom:787.065000px;}
.ya0{bottom:789.405000px;}
.y4e{bottom:789.765000px;}
.yc6{bottom:790.125000px;}
.y19{bottom:792.825000px;}
.y76{bottom:809.025000px;}
.y18{bottom:810.105000px;}
.y4d{bottom:811.545000px;}
.y9f{bottom:811.905000px;}
.y17{bottom:827.565000px;}
.y75{bottom:831.345000px;}
.y4c{bottom:833.505000px;}
.y9e{bottom:833.685000px;}
.yc5{bottom:833.865000px;}
.y16{bottom:844.665000px;}
.y74{bottom:853.125000px;}
.y4b{bottom:855.285000px;}
.y9d{bottom:855.465000px;}
.yc4{bottom:855.645000px;}
.y15{bottom:862.485000px;}
.y73{bottom:875.850000px;}
.y4a{bottom:877.290000px;}
.y9c{bottom:877.470000px;}
.y14{bottom:881.250000px;}
.y72{bottom:897.630000px;}
.y13{bottom:898.530000px;}
.y49{bottom:899.070000px;}
.y9b{bottom:899.250000px;}
.yc3{bottom:899.430000px;}
.y71{bottom:920.130000px;}
.y48{bottom:921.030000px;}
.yc2{bottom:921.210000px;}
.y12{bottom:921.390000px;}
.y11{bottom:933.270000px;}
.y70{bottom:942.090000px;}
.y47{bottom:942.810000px;}
.y10{bottom:952.170000px;}
.y46{bottom:964.590000px;}
.y9a{bottom:964.770000px;}
.yc1{bottom:964.950000px;}
.yf{bottom:971.610000px;}
.y6f{bottom:986.370000px;}
.y45{bottom:986.550000px;}
.ye{bottom:990.690000px;}
.y44{bottom:1008.330000px;}
.yc0{bottom:1008.510000px;}
.yd{bottom:1009.770000px;}
.y6e{bottom:1030.110000px;}
.y43{bottom:1030.290000px;}
.yc{bottom:1032.270000px;}
.y6d{bottom:1051.710000px;}
.y99{bottom:1051.890000px;}
.y42{bottom:1052.070000px;}
.yb{bottom:1054.230000px;}
.ya{bottom:1071.330000px;}
.y6c{bottom:1073.670000px;}
.y98{bottom:1073.850000px;}
.y41{bottom:1074.030000px;}
.y9{bottom:1088.790000px;}
.y97{bottom:1095.450000px;}
.y40{bottom:1095.810000px;}
.y8{bottom:1106.070000px;}
.ybf{bottom:1117.590000px;}
.y3f{bottom:1117.770000px;}
.y7{bottom:1123.530000px;}
.ybe{bottom:1139.400000px;}
.y3e{bottom:1139.580000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1162.260000px;}
.y1{bottom:1179.000000px;}
.hc{height:28.115859px;}
.h2{height:29.880000px;}
.h14{height:33.683203px;}
.h13{height:34.036523px;}
.h5{height:36.768867px;}
.h1a{height:38.541094px;}
.h8{height:41.726953px;}
.h6{height:42.164648px;}
.h7{height:42.446953px;}
.hf{height:43.215117px;}
.h11{height:43.935117px;}
.h10{height:45.549492px;}
.h12{height:46.269492px;}
.h16{height:46.736719px;}
.h17{height:46.784531px;}
.he{height:47.901094px;}
.h19{height:48.224531px;}
.h15{height:49.341094px;}
.hd{height:49.715859px;}
.h3{height:50.414062px;}
.ha{height:50.488594px;}
.h18{height:50.781094px;}
.h4{height:52.066406px;}
.hb{height:53.944453px;}
.h9{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.900000px;}
.w3{width:616.605000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x1{left:108.036000px;}
.x9{left:123.155987px;}
.xc{left:125.495987px;}
.x11{left:134.855987px;}
.x5{left:138.275987px;}
.x12{left:140.075987px;}
.x13{left:160.949987px;}
.x10{left:162.029987px;}
.x3{left:171.930000px;}
.xd{left:176.789987px;}
.x7{left:189.929987px;}
.xb{left:285.014987px;}
.xa{left:370.874987px;}
.x6{left:398.954987px;}
.xf{left:418.574987px;}
.xe{left:420.194987px;}
.x8{left:446.474987px;}
.x4{left:785.129987px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v1{vertical-align:-9.600000pt;}
.v9{vertical-align:-8.320000pt;}
.v7{vertical-align:-2.560000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v8{vertical-align:2.560000pt;}
.v4{vertical-align:19.200000pt;}
.v2{vertical-align:21.760000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsd{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:27.151360pt;}
.ls9{letter-spacing:30.991360pt;}
.lsc{letter-spacing:34.191360pt;}
.ls8{letter-spacing:35.471360pt;}
.ws8{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.622933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-4.416000pt;}
._12{margin-left:-3.473920pt;}
._4{margin-left:-2.177920pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.221760pt;}
._e{width:2.116907pt;}
._3{width:3.080960pt;}
._c{width:4.515200pt;}
._d{width:5.577600pt;}
._f{width:6.533760pt;}
._a{width:7.753600pt;}
._9{width:8.818560pt;}
._8{width:9.773440pt;}
._7{width:11.261440pt;}
._1a{width:12.243200pt;}
._13{width:13.248000pt;}
._6{width:14.375253pt;}
._14{width:15.676160pt;}
._5{width:16.732800pt;}
._1f{width:17.623253pt;}
._15{width:19.253760pt;}
._16{width:20.490240pt;}
._19{width:22.276267pt;}
._20{width:23.313493pt;}
._b{width:24.275840pt;}
._18{width:25.259520pt;}
._17{width:26.256640pt;}
._1e{width:27.500800pt;}
._21{width:28.439040pt;}
._22{width:32.913920pt;}
._1b{width:33.856000pt;}
._1c{width:35.450453pt;}
._10{width:37.176747pt;}
._1d{width:40.921600pt;}
._1{width:931.172267pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.960000pt;}
.y5{bottom:65.312000pt;}
.y4{bottom:82.272000pt;}
.y3d{bottom:108.352000pt;}
.ybd{bottom:116.992000pt;}
.y96{bottom:118.912000pt;}
.ye3{bottom:119.232000pt;}
.y3c{bottom:127.872000pt;}
.y94{bottom:133.312000pt;}
.ybc{bottom:136.506667pt;}
.y6b{bottom:138.426667pt;}
.ye2{bottom:138.746667pt;}
.y3b{bottom:147.226667pt;}
.y93{bottom:152.666667pt;}
.ybb{bottom:155.866667pt;}
.y6a{bottom:157.786667pt;}
.ye1{bottom:158.106667pt;}
.y3a{bottom:166.746667pt;}
.y92{bottom:172.186667pt;}
.yba{bottom:175.226667pt;}
.y69{bottom:177.306667pt;}
.ye0{bottom:177.626667pt;}
.y39{bottom:186.106667pt;}
.y91{bottom:191.546667pt;}
.yb9{bottom:195.226667pt;}
.y68{bottom:196.666667pt;}
.ydf{bottom:196.986667pt;}
.y38{bottom:205.466667pt;}
.y90{bottom:211.066667pt;}
.yb8{bottom:214.746667pt;}
.y67{bottom:216.186667pt;}
.yde{bottom:216.346667pt;}
.y37{bottom:224.986667pt;}
.y8f{bottom:230.426667pt;}
.yb7{bottom:234.106667pt;}
.y66{bottom:235.546667pt;}
.ydd{bottom:235.866667pt;}
.y36{bottom:244.346667pt;}
.y8e{bottom:249.946667pt;}
.yb6{bottom:253.466667pt;}
.y65{bottom:255.066667pt;}
.ydc{bottom:255.226667pt;}
.y35{bottom:263.866667pt;}
.y8d{bottom:269.306667pt;}
.yb5{bottom:272.826667pt;}
.y64{bottom:274.426667pt;}
.ydb{bottom:274.746667pt;}
.y34{bottom:283.226667pt;}
.y8c{bottom:288.826667pt;}
.yb4{bottom:292.346667pt;}
.y63{bottom:293.786667pt;}
.yda{bottom:294.106667pt;}
.y33{bottom:302.466667pt;}
.y8b{bottom:308.226667pt;}
.yb3{bottom:311.746667pt;}
.y62{bottom:313.346667pt;}
.yd9{bottom:313.666667pt;}
.y32{bottom:322.146667pt;}
.y8a{bottom:327.586667pt;}
.yb2{bottom:331.106667pt;}
.y61{bottom:332.706667pt;}
.yd8{bottom:333.026667pt;}
.y31{bottom:338.146667pt;}
.y89{bottom:347.106667pt;}
.y30{bottom:350.466667pt;}
.y60{bottom:352.226667pt;}
.yd7{bottom:352.546667pt;}
.y2f{bottom:364.066667pt;}
.y88{bottom:366.466667pt;}
.yb1{bottom:369.826667pt;}
.y5f{bottom:371.586667pt;}
.yd6{bottom:371.906667pt;}
.y2e{bottom:380.546667pt;}
.y87{bottom:385.666667pt;}
.yb0{bottom:389.346667pt;}
.y5e{bottom:391.106667pt;}
.yd5{bottom:391.266667pt;}
.y2d{bottom:396.226667pt;}
.y86{bottom:405.826667pt;}
.yaf{bottom:408.706667pt;}
.y5d{bottom:410.466667pt;}
.yd4{bottom:410.786667pt;}
.y2c{bottom:411.586667pt;}
.y85{bottom:425.186667pt;}
.y2b{bottom:426.946667pt;}
.yae{bottom:428.066667pt;}
.y5c{bottom:429.986667pt;}
.yd3{bottom:430.146667pt;}
.y2a{bottom:442.466667pt;}
.y84{bottom:444.706667pt;}
.yad{bottom:447.426667pt;}
.y5b{bottom:449.346667pt;}
.yd2{bottom:449.666667pt;}
.y29{bottom:457.826667pt;}
.y83{bottom:464.066667pt;}
.yac{bottom:467.586667pt;}
.y5a{bottom:468.706667pt;}
.yd1{bottom:469.026667pt;}
.y28{bottom:473.346667pt;}
.y82{bottom:484.066667pt;}
.yab{bottom:486.946667pt;}
.y59{bottom:488.226667pt;}
.yd0{bottom:488.546667pt;}
.y27{bottom:488.706667pt;}
.y81{bottom:503.426667pt;}
.y26{bottom:504.066667pt;}
.yaa{bottom:506.946667pt;}
.y58{bottom:507.266667pt;}
.y95{bottom:507.586667pt;}
.ycf{bottom:509.986667pt;}
.y25{bottom:519.586667pt;}
.y80{bottom:522.946667pt;}
.ya9{bottom:526.306667pt;}
.y57{bottom:527.106667pt;}
.y24{bottom:534.946667pt;}
.y7f{bottom:542.973333pt;}
.ya8{bottom:545.853333pt;}
.y56{bottom:546.493333pt;}
.yce{bottom:546.813333pt;}
.y23{bottom:550.333333pt;}
.y7e{bottom:562.333333pt;}
.ya7{bottom:565.213333pt;}
.y22{bottom:565.853333pt;}
.y55{bottom:566.013333pt;}
.ycd{bottom:566.173333pt;}
.y21{bottom:581.213333pt;}
.y7d{bottom:581.853333pt;}
.ya6{bottom:584.573333pt;}
.y54{bottom:585.373333pt;}
.ycc{bottom:585.693333pt;}
.y20{bottom:596.733333pt;}
.y7c{bottom:601.053333pt;}
.ya5{bottom:603.933333pt;}
.y53{bottom:604.893333pt;}
.ycb{bottom:605.053333pt;}
.y1f{bottom:612.093333pt;}
.y7b{bottom:620.413333pt;}
.ya4{bottom:623.453333pt;}
.y52{bottom:624.253333pt;}
.yca{bottom:624.573333pt;}
.y1e{bottom:627.613333pt;}
.y7a{bottom:640.733333pt;}
.ya3{bottom:642.813333pt;}
.y1d{bottom:642.973333pt;}
.y51{bottom:643.613333pt;}
.yc9{bottom:643.933333pt;}
.y1c{bottom:658.493333pt;}
.y79{bottom:660.093333pt;}
.ya2{bottom:662.173333pt;}
.y50{bottom:663.133333pt;}
.yc8{bottom:663.453333pt;}
.y1b{bottom:673.853333pt;}
.y78{bottom:679.453333pt;}
.ya1{bottom:682.173333pt;}
.y4f{bottom:682.493333pt;}
.yc7{bottom:682.813333pt;}
.y1a{bottom:689.213333pt;}
.y77{bottom:699.613333pt;}
.ya0{bottom:701.693333pt;}
.y4e{bottom:702.013333pt;}
.yc6{bottom:702.333333pt;}
.y19{bottom:704.733333pt;}
.y76{bottom:719.133333pt;}
.y18{bottom:720.093333pt;}
.y4d{bottom:721.373333pt;}
.y9f{bottom:721.693333pt;}
.y17{bottom:735.613333pt;}
.y75{bottom:738.973333pt;}
.y4c{bottom:740.893333pt;}
.y9e{bottom:741.053333pt;}
.yc5{bottom:741.213333pt;}
.y16{bottom:750.813333pt;}
.y74{bottom:758.333333pt;}
.y4b{bottom:760.253333pt;}
.y9d{bottom:760.413333pt;}
.yc4{bottom:760.573333pt;}
.y15{bottom:766.653333pt;}
.y73{bottom:778.533333pt;}
.y4a{bottom:779.813333pt;}
.y9c{bottom:779.973333pt;}
.y14{bottom:783.333333pt;}
.y72{bottom:797.893333pt;}
.y13{bottom:798.693333pt;}
.y49{bottom:799.173333pt;}
.y9b{bottom:799.333333pt;}
.yc3{bottom:799.493333pt;}
.y71{bottom:817.893333pt;}
.y48{bottom:818.693333pt;}
.yc2{bottom:818.853333pt;}
.y12{bottom:819.013333pt;}
.y11{bottom:829.573333pt;}
.y70{bottom:837.413333pt;}
.y47{bottom:838.053333pt;}
.y10{bottom:846.373333pt;}
.y46{bottom:857.413333pt;}
.y9a{bottom:857.573333pt;}
.yc1{bottom:857.733333pt;}
.yf{bottom:863.653333pt;}
.y6f{bottom:876.773333pt;}
.y45{bottom:876.933333pt;}
.ye{bottom:880.613333pt;}
.y44{bottom:896.293333pt;}
.yc0{bottom:896.453333pt;}
.yd{bottom:897.573333pt;}
.y6e{bottom:915.653333pt;}
.y43{bottom:915.813333pt;}
.yc{bottom:917.573333pt;}
.y6d{bottom:934.853333pt;}
.y99{bottom:935.013333pt;}
.y42{bottom:935.173333pt;}
.yb{bottom:937.093333pt;}
.ya{bottom:952.293333pt;}
.y6c{bottom:954.373333pt;}
.y98{bottom:954.533333pt;}
.y41{bottom:954.693333pt;}
.y9{bottom:967.813333pt;}
.y97{bottom:973.733333pt;}
.y40{bottom:974.053333pt;}
.y8{bottom:983.173333pt;}
.ybf{bottom:993.413333pt;}
.y3f{bottom:993.573333pt;}
.y7{bottom:998.693333pt;}
.ybe{bottom:1012.800000pt;}
.y3e{bottom:1012.960000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1033.120000pt;}
.y1{bottom:1048.000000pt;}
.hc{height:24.991875pt;}
.h2{height:26.560000pt;}
.h14{height:29.940625pt;}
.h13{height:30.254687pt;}
.h5{height:32.683437pt;}
.h1a{height:34.258750pt;}
.h8{height:37.090625pt;}
.h6{height:37.479688pt;}
.h7{height:37.730625pt;}
.hf{height:38.413438pt;}
.h11{height:39.053438pt;}
.h10{height:40.488438pt;}
.h12{height:41.128438pt;}
.h16{height:41.543750pt;}
.h17{height:41.586250pt;}
.he{height:42.578750pt;}
.h19{height:42.866250pt;}
.h15{height:43.858750pt;}
.hd{height:44.191875pt;}
.h3{height:44.812500pt;}
.ha{height:44.878750pt;}
.h18{height:45.138750pt;}
.h4{height:46.281250pt;}
.hb{height:47.950625pt;}
.h9{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.800000pt;}
.w3{width:548.093333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x1{left:96.032000pt;}
.x9{left:109.471988pt;}
.xc{left:111.551988pt;}
.x11{left:119.871988pt;}
.x5{left:122.911988pt;}
.x12{left:124.511988pt;}
.x13{left:143.066655pt;}
.x10{left:144.026655pt;}
.x3{left:152.826667pt;}
.xd{left:157.146655pt;}
.x7{left:168.826655pt;}
.xb{left:253.346655pt;}
.xa{left:329.666655pt;}
.x6{left:354.626655pt;}
.xf{left:372.066655pt;}
.xe{left:373.506655pt;}
.x8{left:396.866655pt;}
.x4{left:697.893322pt;}
}




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