
    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_1441962122db47c5f0404740.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_335a6721153dde9a44022ec1.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_a30736416e8da9a7dfe6ea33.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5d2436291ee5fbe5f74105ad.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_e7de343b23c14e1a93bdd011.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_5dbfaef5b504c02adb1ab583.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fbdd9bdb7244b74e2d128bcc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v2{vertical-align:-32.400000px;}
.v3{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.800000px;}
.v1{vertical-align:32.400000px;}
.v4{vertical-align:43.200000px;}
.ls5{letter-spacing:-4.392000px;}
.lsd{letter-spacing:-3.600000px;}
.ls25{letter-spacing:-3.168000px;}
.ls7{letter-spacing:-2.808000px;}
.ls3{letter-spacing:-2.334000px;}
.ls8{letter-spacing:-2.016000px;}
.ls4{letter-spacing:-1.584000px;}
.ls6{letter-spacing:-1.224000px;}
.ls1e{letter-spacing:-1.194000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.028800px;}
.ls11{letter-spacing:-0.021600px;}
.ls12{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.028800px;}
.ls16{letter-spacing:0.120000px;}
.ls29{letter-spacing:0.180000px;}
.lse{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.948000px;}
.lsf{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.128000px;}
.ls15{letter-spacing:1.224000px;}
.ls30{letter-spacing:1.284000px;}
.ls9{letter-spacing:1.584000px;}
.ls0{letter-spacing:1.800000px;}
.lsa{letter-spacing:1.860000px;}
.ls2e{letter-spacing:2.016000px;}
.lsb{letter-spacing:2.196000px;}
.ls1d{letter-spacing:2.404800px;}
.ls1b{letter-spacing:2.464800px;}
.ls10{letter-spacing:2.700000px;}
.ls2b{letter-spacing:3.540000px;}
.lsc{letter-spacing:3.600000px;}
.ls1f{letter-spacing:4.032000px;}
.ls24{letter-spacing:4.548000px;}
.ls22{letter-spacing:4.608000px;}
.ls23{letter-spacing:4.668000px;}
.ls20{letter-spacing:4.788000px;}
.ls1{letter-spacing:4.824000px;}
.ls27{letter-spacing:5.184000px;}
.ls31{letter-spacing:7.200000px;}
.ls1a{letter-spacing:7.380000px;}
.ls32{letter-spacing:10.740000px;}
.ls2d{letter-spacing:14.520000px;}
.ls18{letter-spacing:20.700000px;}
.ls2c{letter-spacing:26.784000px;}
.ls2a{letter-spacing:34.134000px;}
.ls28{letter-spacing:62.934000px;}
.ls26{letter-spacing:846.900000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws15{word-spacing:-23.184000px;}
.ws12{word-spacing:-22.032000px;}
.ws9{word-spacing:-21.600000px;}
.wsa{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.224000px;}
.ws11{word-spacing:-18.432000px;}
.ws0{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.568000px;}
.ws16{word-spacing:-17.208000px;}
.ws5{word-spacing:-16.776000px;}
.ws3{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.228800px;}
.wse{word-spacing:-16.178400px;}
.ws6{word-spacing:-15.192000px;}
.ws14{word-spacing:-14.832000px;}
.wsc{word-spacing:-14.400000px;}
.ws4{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-11.700000px;}
.ws8{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.046800px;}
.ws7{word-spacing:0.000000px;}
._33{margin-left:-34.461750px;}
._9{margin-left:-33.432000px;}
._a{margin-left:-31.182750px;}
._29{margin-left:-26.796750px;}
._2f{margin-left:-24.204000px;}
._d{margin-left:-22.710000px;}
._e{margin-left:-19.367250px;}
._8{margin-left:-16.460250px;}
._27{margin-left:-15.290850px;}
._1a{margin-left:-12.909300px;}
._2a{margin-left:-8.547000px;}
._1e{margin-left:-6.863250px;}
._5{margin-left:-5.472000px;}
._6{margin-left:-3.852000px;}
._2{margin-left:-2.532000px;}
._1{margin-left:-1.524000px;}
._0{width:1.080000px;}
._3{width:2.406750px;}
._b{width:3.437250px;}
._4{width:4.488000px;}
._f{width:5.519250px;}
._11{width:6.593250px;}
._21{width:7.598850px;}
._7{width:8.600550px;}
._14{width:10.593750px;}
._12{width:11.766000px;}
._1b{width:13.498500px;}
._13{width:14.551500px;}
._1d{width:16.530750px;}
._24{width:19.404000px;}
._28{width:20.798250px;}
._1f{width:21.953250px;}
._20{width:23.516250px;}
._17{width:25.150500px;}
._26{width:26.533650px;}
._19{width:27.785250px;}
._18{width:28.884000px;}
._22{width:31.026750px;}
._10{width:32.550000px;}
._25{width:34.261500px;}
._15{width:36.069750px;}
._23{width:39.780000px;}
._30{width:41.645250px;}
._c{width:43.350000px;}
._2b{width:46.620750px;}
._16{width:47.703750px;}
._31{width:51.018000px;}
._32{width:54.117750px;}
._2d{width:65.370000px;}
._2e{width:67.829250px;}
._2c{width:69.288750px;}
._1c{width:2324.700000px;}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(0,127,127);}
.fc1{color:rgb(0,128,128);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:46.800000px;}
.fs1{font-size:61.200000px;}
.fs5{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.150000px;}
.fs2{font-size:190.950000px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.600000px;}
.y76{bottom:4.500000px;}
.y74{bottom:4.530000px;}
.y25{bottom:45.937500px;}
.y4d{bottom:88.237500px;}
.ya6{bottom:90.937500px;}
.y72{bottom:95.475000px;}
.y99{bottom:103.575000px;}
.yc7{bottom:106.275000px;}
.yaa{bottom:110.775000px;}
.y4c{bottom:113.475000px;}
.y81{bottom:116.175000px;}
.y91{bottom:117.075000px;}
.y71{bottom:121.575000px;}
.y98{bottom:128.775000px;}
.ya9{bottom:131.475000px;}
.y80{bottom:136.875000px;}
.y4b{bottom:139.575000px;}
.y90{bottom:142.275000px;}
.y70{bottom:146.812500px;}
.y97{bottom:154.005000px;}
.yc6{bottom:157.620000px;}
.y4a{bottom:164.805000px;}
.y8f{bottom:167.505000px;}
.y6f{bottom:172.005000px;}
.ybd{bottom:173.805000px;}
.y96{bottom:180.120000px;}
.yc5{bottom:182.805000px;}
.y49{bottom:190.005000px;}
.y8e{bottom:193.620000px;}
.y6e{bottom:198.150000px;}
.y21{bottom:199.950000px;}
.y95{bottom:205.350000px;}
.yc4{bottom:208.050000px;}
.y48{bottom:216.150000px;}
.ybc{bottom:217.050000px;}
.y8d{bottom:218.850000px;}
.y6d{bottom:223.350000px;}
.y20{bottom:225.150000px;}
.y94{bottom:230.550000px;}
.yc3{bottom:234.150000px;}
.y47{bottom:241.350000px;}
.y8c{bottom:244.050000px;}
.y6c{bottom:248.550000px;}
.y1f{bottom:250.380000px;}
.y93{bottom:256.695000px;}
.yc2{bottom:259.380000px;}
.ybb{bottom:261.195000px;}
.y46{bottom:266.580000px;}
.y8b{bottom:270.195000px;}
.y6b{bottom:274.695000px;}
.y92{bottom:281.880000px;}
.yc1{bottom:284.580000px;}
.yba{bottom:286.380000px;}
.y45{bottom:292.695000px;}
.y1e{bottom:294.495000px;}
.y8a{bottom:295.380000px;}
.y6a{bottom:299.880000px;}
.ya5{bottom:308.925000px;}
.yc0{bottom:310.725000px;}
.yb9{bottom:311.625000px;}
.y44{bottom:317.925000px;}
.y1d{bottom:319.725000px;}
.y89{bottom:320.625000px;}
.y69{bottom:325.125000px;}
.ybf{bottom:335.925000px;}
.yb8{bottom:337.725000px;}
.y43{bottom:343.125000px;}
.y1c{bottom:344.925000px;}
.y88{bottom:346.725000px;}
.y7f{bottom:361.155000px;}
.y42{bottom:369.255000px;}
.y1b{bottom:371.070000px;}
.y87{bottom:371.955000px;}
.yb7{bottom:380.955000px;}
.y7e{bottom:386.370000px;}
.ybe{bottom:387.255000px;}
.y41{bottom:394.455000px;}
.y1a{bottom:396.255000px;}
.y86{bottom:397.155000px;}
.y7d{bottom:411.600000px;}
.y68{bottom:412.500000px;}
.y40{bottom:419.700000px;}
.y19{bottom:421.500000px;}
.y85{bottom:423.300000px;}
.yb6{bottom:424.200000px;}
.y67{bottom:437.700000px;}
.y3f{bottom:445.800000px;}
.y18{bottom:447.600000px;}
.y84{bottom:448.500000px;}
.yb5{bottom:450.300000px;}
.y7c{bottom:455.700000px;}
.y66{bottom:463.830000px;}
.y3e{bottom:471.030000px;}
.y17{bottom:472.830000px;}
.y83{bottom:473.745000px;}
.yb4{bottom:475.530000px;}
.y7b{bottom:480.945000px;}
.y65{bottom:489.030000px;}
.y3d{bottom:496.230000px;}
.y16{bottom:498.030000px;}
.yb3{bottom:500.730000px;}
.y7a{bottom:506.130000px;}
.y82{bottom:513.375000px;}
.y64{bottom:514.275000px;}
.y3c{bottom:522.375000px;}
.y15{bottom:524.175000px;}
.yb2{bottom:526.875000px;}
.y79{bottom:532.275000px;}
.y63{bottom:540.375000px;}
.y3b{bottom:547.575000px;}
.y62{bottom:565.605000px;}
.y14{bottom:569.205000px;}
.yb1{bottom:570.105000px;}
.y78{bottom:571.905000px;}
.y3a{bottom:572.820000px;}
.y61{bottom:590.820000px;}
.ya8{bottom:591.705000px;}
.y77{bottom:594.405000px;}
.y13{bottom:595.320000px;}
.y39{bottom:598.905000px;}
.yb0{bottom:613.350000px;}
.y60{bottom:616.950000px;}
.y12{bottom:620.550000px;}
.y38{bottom:624.150000px;}
.ya4{bottom:628.650000px;}
.ya7{bottom:631.350000px;}
.y75{bottom:639.450000px;}
.y5f{bottom:642.150000px;}
.y37{bottom:649.350000px;}
.ya3{bottom:653.850000px;}
.y73{bottom:662.850000px;}
.y11{bottom:663.750000px;}
.yaf{bottom:664.650000px;}
.y5e{bottom:667.380000px;}
.y36{bottom:675.480000px;}
.y10{bottom:689.880000px;}
.y5d{bottom:693.480000px;}
.ya2{bottom:697.980000px;}
.y35{bottom:700.695000px;}
.yae{bottom:715.980000px;}
.y5c{bottom:718.725000px;}
.ya1{bottom:723.225000px;}
.y34{bottom:725.925000px;}
.yf{bottom:733.125000px;}
.yad{bottom:741.225000px;}
.y5b{bottom:743.925000px;}
.ya0{bottom:748.425000px;}
.y33{bottom:752.025000px;}
.ye{bottom:758.325000px;}
.yac{bottom:766.425000px;}
.y5a{bottom:770.070000px;}
.y9f{bottom:774.570000px;}
.y32{bottom:777.255000px;}
.yd{bottom:792.570000px;}
.y59{bottom:795.255000px;}
.y9e{bottom:799.755000px;}
.y31{bottom:802.455000px;}
.yc{bottom:809.670000px;}
.y58{bottom:820.455000px;}
.y30{bottom:828.600000px;}
.yab{bottom:835.800000px;}
.yb{bottom:843.000000px;}
.y57{bottom:846.600000px;}
.y2f{bottom:853.800000px;}
.y56{bottom:871.800000px;}
.ya{bottom:879.045000px;}
.y9d{bottom:887.130000px;}
.y55{bottom:897.045000px;}
.y9{bottom:904.230000px;}
.y2e{bottom:905.130000px;}
.y9c{bottom:912.330000px;}
.y54{bottom:923.130000px;}
.y2d{bottom:930.375000px;}
.y9b{bottom:937.575000px;}
.y53{bottom:948.375000px;}
.y8{bottom:950.175000px;}
.y2c{bottom:955.575000px;}
.y9a{bottom:963.675000px;}
.y52{bottom:973.575000px;}
.y7{bottom:980.820000px;}
.y2b{bottom:981.705000px;}
.y51{bottom:999.705000px;}
.y2a{bottom:1006.920000px;}
.y50{bottom:1024.920000px;}
.y6{bottom:1027.605000px;}
.y29{bottom:1032.150000px;}
.y4f{bottom:1050.150000px;}
.y5{bottom:1053.750000px;}
.y28{bottom:1058.250000px;}
.y4{bottom:1074.450000px;}
.y4e{bottom:1076.250000px;}
.y27{bottom:1083.495000px;}
.y3{bottom:1101.495000px;}
.y26{bottom:1126.695000px;}
.y2{bottom:1145.625000px;}
.y24{bottom:1152.825000px;}
.y1{bottom:1167.225000px;}
.y23{bottom:1178.025000px;}
.hb{height:17.100000px;}
.h12{height:22.500000px;}
.h10{height:22.537500px;}
.ha{height:45.931641px;}
.h3{height:60.064453px;}
.hc{height:61.678125px;}
.h13{height:63.597656px;}
.h11{height:65.306250px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h2{height:72.562500px;}
.h19{height:74.004654px;}
.h15{height:74.044102px;}
.he{height:74.104102px;}
.hf{height:74.224102px;}
.h14{height:78.271641px;}
.hd{height:78.331641px;}
.h18{height:78.391641px;}
.h17{height:78.451641px;}
.h16{height:78.511641px;}
.h9{height:79.505625px;}
.h8{height:79.565625px;}
.h7{height:108.994922px;}
.h4{height:187.313745px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:118.912500px;}
.w3{width:216.225000px;}
.w4{width:217.125000px;}
.w0{width:893.700000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x9{left:7.215000px;}
.x10{left:22.537500px;}
.x12{left:29.737500px;}
.x11{left:47.767500px;}
.x14{left:62.167500px;}
.xf{left:69.375000px;}
.xd{left:71.160000px;}
.x1{left:74.775000px;}
.x13{left:77.475000px;}
.x15{left:83.760000px;}
.x1a{left:91.875000px;}
.x6{left:96.412500px;}
.x1c{left:101.812500px;}
.xb{left:108.112500px;}
.x7{left:117.112500px;}
.xa{left:122.512500px;}
.xc{left:338.745000px;}
.xe{left:554.970000px;}
.x5{left:590.100000px;}
.x16{left:646.875000px;}
.x19{left:653.175000px;}
.x18{left:658.575000px;}
.x3{left:672.975000px;}
.x4{left:697.320000px;}
.x8{left:700.905000px;}
.x1b{left:707.220000px;}
.x17{left:745.050000px;}
.x2{left:819.825000px;}
@media print{
.v2{vertical-align:-28.800000pt;}
.v3{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.600000pt;}
.v1{vertical-align:28.800000pt;}
.v4{vertical-align:38.400000pt;}
.ls5{letter-spacing:-3.904000pt;}
.lsd{letter-spacing:-3.200000pt;}
.ls25{letter-spacing:-2.816000pt;}
.ls7{letter-spacing:-2.496000pt;}
.ls3{letter-spacing:-2.074667pt;}
.ls8{letter-spacing:-1.792000pt;}
.ls4{letter-spacing:-1.408000pt;}
.ls6{letter-spacing:-1.088000pt;}
.ls1e{letter-spacing:-1.061333pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.025600pt;}
.ls11{letter-spacing:-0.019200pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.025600pt;}
.ls16{letter-spacing:0.106667pt;}
.ls29{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.842667pt;}
.lsf{letter-spacing:0.896000pt;}
.ls19{letter-spacing:1.002667pt;}
.ls15{letter-spacing:1.088000pt;}
.ls30{letter-spacing:1.141333pt;}
.ls9{letter-spacing:1.408000pt;}
.ls0{letter-spacing:1.600000pt;}
.lsa{letter-spacing:1.653333pt;}
.ls2e{letter-spacing:1.792000pt;}
.lsb{letter-spacing:1.952000pt;}
.ls1d{letter-spacing:2.137600pt;}
.ls1b{letter-spacing:2.190933pt;}
.ls10{letter-spacing:2.400000pt;}
.ls2b{letter-spacing:3.146667pt;}
.lsc{letter-spacing:3.200000pt;}
.ls1f{letter-spacing:3.584000pt;}
.ls24{letter-spacing:4.042667pt;}
.ls22{letter-spacing:4.096000pt;}
.ls23{letter-spacing:4.149333pt;}
.ls20{letter-spacing:4.256000pt;}
.ls1{letter-spacing:4.288000pt;}
.ls27{letter-spacing:4.608000pt;}
.ls31{letter-spacing:6.400000pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls32{letter-spacing:9.546667pt;}
.ls2d{letter-spacing:12.906667pt;}
.ls18{letter-spacing:18.400000pt;}
.ls2c{letter-spacing:23.808000pt;}
.ls2a{letter-spacing:30.341333pt;}
.ls28{letter-spacing:55.941333pt;}
.ls26{letter-spacing:752.800000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws15{word-spacing:-20.608000pt;}
.ws12{word-spacing:-19.584000pt;}
.ws9{word-spacing:-19.200000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.088000pt;}
.ws11{word-spacing:-16.384000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.616000pt;}
.ws16{word-spacing:-15.296000pt;}
.ws5{word-spacing:-14.912000pt;}
.ws3{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.425600pt;}
.wse{word-spacing:-14.380800pt;}
.ws6{word-spacing:-13.504000pt;}
.ws14{word-spacing:-13.184000pt;}
.wsc{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws8{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.041600pt;}
.ws7{word-spacing:0.000000pt;}
._33{margin-left:-30.632667pt;}
._9{margin-left:-29.717333pt;}
._a{margin-left:-27.718000pt;}
._29{margin-left:-23.819333pt;}
._2f{margin-left:-21.514667pt;}
._d{margin-left:-20.186667pt;}
._e{margin-left:-17.215333pt;}
._8{margin-left:-14.631333pt;}
._27{margin-left:-13.591867pt;}
._1a{margin-left:-11.474933pt;}
._2a{margin-left:-7.597333pt;}
._1e{margin-left:-6.100667pt;}
._5{margin-left:-4.864000pt;}
._6{margin-left:-3.424000pt;}
._2{margin-left:-2.250667pt;}
._1{margin-left:-1.354667pt;}
._0{width:0.960000pt;}
._3{width:2.139333pt;}
._b{width:3.055333pt;}
._4{width:3.989333pt;}
._f{width:4.906000pt;}
._11{width:5.860667pt;}
._21{width:6.754533pt;}
._7{width:7.644933pt;}
._14{width:9.416667pt;}
._12{width:10.458667pt;}
._1b{width:11.998667pt;}
._13{width:12.934667pt;}
._1d{width:14.694000pt;}
._24{width:17.248000pt;}
._28{width:18.487333pt;}
._1f{width:19.514000pt;}
._20{width:20.903333pt;}
._17{width:22.356000pt;}
._26{width:23.585467pt;}
._19{width:24.698000pt;}
._18{width:25.674667pt;}
._22{width:27.579333pt;}
._10{width:28.933333pt;}
._25{width:30.454667pt;}
._15{width:32.062000pt;}
._23{width:35.360000pt;}
._30{width:37.018000pt;}
._c{width:38.533333pt;}
._2b{width:41.440667pt;}
._16{width:42.403333pt;}
._31{width:45.349333pt;}
._32{width:48.104667pt;}
._2d{width:58.106667pt;}
._2e{width:60.292667pt;}
._2c{width:61.590000pt;}
._1c{width:2066.400000pt;}
.fs4{font-size:41.600000pt;}
.fs1{font-size:54.400000pt;}
.fs5{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.133333pt;}
.fs2{font-size:169.733333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:3.200000pt;}
.y76{bottom:4.000000pt;}
.y74{bottom:4.026667pt;}
.y25{bottom:40.833333pt;}
.y4d{bottom:78.433333pt;}
.ya6{bottom:80.833333pt;}
.y72{bottom:84.866667pt;}
.y99{bottom:92.066667pt;}
.yc7{bottom:94.466667pt;}
.yaa{bottom:98.466667pt;}
.y4c{bottom:100.866667pt;}
.y81{bottom:103.266667pt;}
.y91{bottom:104.066667pt;}
.y71{bottom:108.066667pt;}
.y98{bottom:114.466667pt;}
.ya9{bottom:116.866667pt;}
.y80{bottom:121.666667pt;}
.y4b{bottom:124.066667pt;}
.y90{bottom:126.466667pt;}
.y70{bottom:130.500000pt;}
.y97{bottom:136.893333pt;}
.yc6{bottom:140.106667pt;}
.y4a{bottom:146.493333pt;}
.y8f{bottom:148.893333pt;}
.y6f{bottom:152.893333pt;}
.ybd{bottom:154.493333pt;}
.y96{bottom:160.106667pt;}
.yc5{bottom:162.493333pt;}
.y49{bottom:168.893333pt;}
.y8e{bottom:172.106667pt;}
.y6e{bottom:176.133333pt;}
.y21{bottom:177.733333pt;}
.y95{bottom:182.533333pt;}
.yc4{bottom:184.933333pt;}
.y48{bottom:192.133333pt;}
.ybc{bottom:192.933333pt;}
.y8d{bottom:194.533333pt;}
.y6d{bottom:198.533333pt;}
.y20{bottom:200.133333pt;}
.y94{bottom:204.933333pt;}
.yc3{bottom:208.133333pt;}
.y47{bottom:214.533333pt;}
.y8c{bottom:216.933333pt;}
.y6c{bottom:220.933333pt;}
.y1f{bottom:222.560000pt;}
.y93{bottom:228.173333pt;}
.yc2{bottom:230.560000pt;}
.ybb{bottom:232.173333pt;}
.y46{bottom:236.960000pt;}
.y8b{bottom:240.173333pt;}
.y6b{bottom:244.173333pt;}
.y92{bottom:250.560000pt;}
.yc1{bottom:252.960000pt;}
.yba{bottom:254.560000pt;}
.y45{bottom:260.173333pt;}
.y1e{bottom:261.773333pt;}
.y8a{bottom:262.560000pt;}
.y6a{bottom:266.560000pt;}
.ya5{bottom:274.600000pt;}
.yc0{bottom:276.200000pt;}
.yb9{bottom:277.000000pt;}
.y44{bottom:282.600000pt;}
.y1d{bottom:284.200000pt;}
.y89{bottom:285.000000pt;}
.y69{bottom:289.000000pt;}
.ybf{bottom:298.600000pt;}
.yb8{bottom:300.200000pt;}
.y43{bottom:305.000000pt;}
.y1c{bottom:306.600000pt;}
.y88{bottom:308.200000pt;}
.y7f{bottom:321.026667pt;}
.y42{bottom:328.226667pt;}
.y1b{bottom:329.840000pt;}
.y87{bottom:330.626667pt;}
.yb7{bottom:338.626667pt;}
.y7e{bottom:343.440000pt;}
.ybe{bottom:344.226667pt;}
.y41{bottom:350.626667pt;}
.y1a{bottom:352.226667pt;}
.y86{bottom:353.026667pt;}
.y7d{bottom:365.866667pt;}
.y68{bottom:366.666667pt;}
.y40{bottom:373.066667pt;}
.y19{bottom:374.666667pt;}
.y85{bottom:376.266667pt;}
.yb6{bottom:377.066667pt;}
.y67{bottom:389.066667pt;}
.y3f{bottom:396.266667pt;}
.y18{bottom:397.866667pt;}
.y84{bottom:398.666667pt;}
.yb5{bottom:400.266667pt;}
.y7c{bottom:405.066667pt;}
.y66{bottom:412.293333pt;}
.y3e{bottom:418.693333pt;}
.y17{bottom:420.293333pt;}
.y83{bottom:421.106667pt;}
.yb4{bottom:422.693333pt;}
.y7b{bottom:427.506667pt;}
.y65{bottom:434.693333pt;}
.y3d{bottom:441.093333pt;}
.y16{bottom:442.693333pt;}
.yb3{bottom:445.093333pt;}
.y7a{bottom:449.893333pt;}
.y82{bottom:456.333333pt;}
.y64{bottom:457.133333pt;}
.y3c{bottom:464.333333pt;}
.y15{bottom:465.933333pt;}
.yb2{bottom:468.333333pt;}
.y79{bottom:473.133333pt;}
.y63{bottom:480.333333pt;}
.y3b{bottom:486.733333pt;}
.y62{bottom:502.760000pt;}
.y14{bottom:505.960000pt;}
.yb1{bottom:506.760000pt;}
.y78{bottom:508.360000pt;}
.y3a{bottom:509.173333pt;}
.y61{bottom:525.173333pt;}
.ya8{bottom:525.960000pt;}
.y77{bottom:528.360000pt;}
.y13{bottom:529.173333pt;}
.y39{bottom:532.360000pt;}
.yb0{bottom:545.200000pt;}
.y60{bottom:548.400000pt;}
.y12{bottom:551.600000pt;}
.y38{bottom:554.800000pt;}
.ya4{bottom:558.800000pt;}
.ya7{bottom:561.200000pt;}
.y75{bottom:568.400000pt;}
.y5f{bottom:570.800000pt;}
.y37{bottom:577.200000pt;}
.ya3{bottom:581.200000pt;}
.y73{bottom:589.200000pt;}
.y11{bottom:590.000000pt;}
.yaf{bottom:590.800000pt;}
.y5e{bottom:593.226667pt;}
.y36{bottom:600.426667pt;}
.y10{bottom:613.226667pt;}
.y5d{bottom:616.426667pt;}
.ya2{bottom:620.426667pt;}
.y35{bottom:622.840000pt;}
.yae{bottom:636.426667pt;}
.y5c{bottom:638.866667pt;}
.ya1{bottom:642.866667pt;}
.y34{bottom:645.266667pt;}
.yf{bottom:651.666667pt;}
.yad{bottom:658.866667pt;}
.y5b{bottom:661.266667pt;}
.ya0{bottom:665.266667pt;}
.y33{bottom:668.466667pt;}
.ye{bottom:674.066667pt;}
.yac{bottom:681.266667pt;}
.y5a{bottom:684.506667pt;}
.y9f{bottom:688.506667pt;}
.y32{bottom:690.893333pt;}
.yd{bottom:704.506667pt;}
.y59{bottom:706.893333pt;}
.y9e{bottom:710.893333pt;}
.y31{bottom:713.293333pt;}
.yc{bottom:719.706667pt;}
.y58{bottom:729.293333pt;}
.y30{bottom:736.533333pt;}
.yab{bottom:742.933333pt;}
.yb{bottom:749.333333pt;}
.y57{bottom:752.533333pt;}
.y2f{bottom:758.933333pt;}
.y56{bottom:774.933333pt;}
.ya{bottom:781.373333pt;}
.y9d{bottom:788.560000pt;}
.y55{bottom:797.373333pt;}
.y9{bottom:803.760000pt;}
.y2e{bottom:804.560000pt;}
.y9c{bottom:810.960000pt;}
.y54{bottom:820.560000pt;}
.y2d{bottom:827.000000pt;}
.y9b{bottom:833.400000pt;}
.y53{bottom:843.000000pt;}
.y8{bottom:844.600000pt;}
.y2c{bottom:849.400000pt;}
.y9a{bottom:856.600000pt;}
.y52{bottom:865.400000pt;}
.y7{bottom:871.840000pt;}
.y2b{bottom:872.626667pt;}
.y51{bottom:888.626667pt;}
.y2a{bottom:895.040000pt;}
.y50{bottom:911.040000pt;}
.y6{bottom:913.426667pt;}
.y29{bottom:917.466667pt;}
.y4f{bottom:933.466667pt;}
.y5{bottom:936.666667pt;}
.y28{bottom:940.666667pt;}
.y4{bottom:955.066667pt;}
.y4e{bottom:956.666667pt;}
.y27{bottom:963.106667pt;}
.y3{bottom:979.106667pt;}
.y26{bottom:1001.506667pt;}
.y2{bottom:1018.333333pt;}
.y24{bottom:1024.733333pt;}
.y1{bottom:1037.533333pt;}
.y23{bottom:1047.133333pt;}
.hb{height:15.200000pt;}
.h12{height:20.000000pt;}
.h10{height:20.033333pt;}
.ha{height:40.828125pt;}
.h3{height:53.390625pt;}
.hc{height:54.825000pt;}
.h13{height:56.531250pt;}
.h11{height:58.050000pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h2{height:64.500000pt;}
.h19{height:65.781915pt;}
.h15{height:65.816979pt;}
.he{height:65.870313pt;}
.hf{height:65.976979pt;}
.h14{height:69.574792pt;}
.hd{height:69.628125pt;}
.h18{height:69.681458pt;}
.h17{height:69.734792pt;}
.h16{height:69.788125pt;}
.h9{height:70.671667pt;}
.h8{height:70.725000pt;}
.h7{height:96.884375pt;}
.h4{height:166.501107pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:105.700000pt;}
.w3{width:192.200000pt;}
.w4{width:193.000000pt;}
.w0{width:794.400000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x9{left:6.413333pt;}
.x10{left:20.033333pt;}
.x12{left:26.433333pt;}
.x11{left:42.460000pt;}
.x14{left:55.260000pt;}
.xf{left:61.666667pt;}
.xd{left:63.253333pt;}
.x1{left:66.466667pt;}
.x13{left:68.866667pt;}
.x15{left:74.453333pt;}
.x1a{left:81.666667pt;}
.x6{left:85.700000pt;}
.x1c{left:90.500000pt;}
.xb{left:96.100000pt;}
.x7{left:104.100000pt;}
.xa{left:108.900000pt;}
.xc{left:301.106667pt;}
.xe{left:493.306667pt;}
.x5{left:524.533333pt;}
.x16{left:575.000000pt;}
.x19{left:580.600000pt;}
.x18{left:585.400000pt;}
.x3{left:598.200000pt;}
.x4{left:619.840000pt;}
.x8{left:623.026667pt;}
.x1b{left:628.640000pt;}
.x17{left:662.266667pt;}
.x2{left:728.733333pt;}
}




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