
    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_a5dfbec9bce771451598a802.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.773438;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_0b2b9f088bdf6b6c66e1d0c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bc94b76e2c8036bc3642fa8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_83d8cd4ccdf5d876e973551c.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f7063f11431d6750d91498b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_a4a13b4c9fa61d8404f3c5b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_a12bce48e0683ef683b33561.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_7f3b52d7b0106dcceb28dbd8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.251228,0.250000,0.000001,0,0);-ms-transform:matrix(0.000000,-0.251228,0.250000,0.000001,0,0);-webkit-transform:matrix(0.000000,-0.251228,0.250000,0.000001,0,0);}
.m1{transform:matrix(0.248778,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.248778,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248778,0.000001,0.000000,0.250000,0,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.181200px;}
.ls6{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.106800px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108000px;}
.lse{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.152400px;}
.ls11{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:6.785280px;}
.ls4{letter-spacing:18.077344px;}
.ls3{letter-spacing:18.755334px;}
.lsa{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;}
}
.ws3{word-spacing:-108.000000px;}
.ws2{word-spacing:-27.432000px;}
.ws0{word-spacing:-23.940000px;}
.wse{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.712400px;}
.wsc{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.506480px;}
.wsf{word-spacing:-15.948000px;}
.wsd{word-spacing:-15.840000px;}
.ws9{word-spacing:-13.229520px;}
.ws4{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.991901px;}
.ws1{word-spacing:-11.609280px;}
.ws5{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-19.556464px;}
._10{margin-left:-18.433879px;}
._13{margin-left:-4.607520px;}
._5{margin-left:-3.378240px;}
._16{margin-left:-2.370720px;}
._0{margin-left:-1.339440px;}
._1{width:1.075200px;}
._12{width:2.321520px;}
._7{width:3.384000px;}
._9{width:4.615680px;}
._a{width:5.627040px;}
._3{width:6.837360px;}
._2{width:7.882560px;}
._4{width:8.898480px;}
._6{width:10.267200px;}
._b{width:11.297040px;}
._c{width:12.350640px;}
._e{width:13.645440px;}
._d{width:14.970240px;}
._8{width:18.149760px;}
._17{width:20.019120px;}
._18{width:21.189120px;}
._f{width:22.985280px;}
._15{width:24.405600px;}
._14{width:25.502400px;}
._1a{width:26.694720px;}
._1b{width:31.927680px;}
._1c{width:32.988240px;}
._19{width:69.154560px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:33.120000px;}
.fs5{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fsc{font-size:47.967606px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsb{font-size:66.189542px;}
.fsa{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:1.438926px;}
.y34{bottom:27.900000px;}
.y4{bottom:79.776000px;}
.y87{bottom:115.956000px;}
.y32{bottom:120.096000px;}
.y7e{bottom:124.236000px;}
.y8e{bottom:128.196000px;}
.yb6{bottom:132.696000px;}
.y86{bottom:134.856000px;}
.y31{bottom:138.996000px;}
.y7d{bottom:143.136000px;}
.y8d{bottom:147.276000px;}
.yb5{bottom:151.590000px;}
.y85{bottom:153.750000px;}
.y30{bottom:158.070000px;}
.y7c{bottom:162.210000px;}
.y8c{bottom:166.170000px;}
.yb4{bottom:170.490000px;}
.y84{bottom:172.830000px;}
.y2f{bottom:176.970000px;}
.y7b{bottom:181.110000px;}
.y8b{bottom:185.070000px;}
.yb3{bottom:189.570000px;}
.y83{bottom:191.730000px;}
.y2e{bottom:196.050000px;}
.y7a{bottom:200.190000px;}
.y8a{bottom:204.150000px;}
.yb2{bottom:208.470000px;}
.y82{bottom:210.810000px;}
.y2d{bottom:214.950000px;}
.y79{bottom:219.090000px;}
.y89{bottom:223.050000px;}
.yb1{bottom:227.550000px;}
.y81{bottom:229.710000px;}
.y2c{bottom:233.850000px;}
.y78{bottom:238.170000px;}
.y88{bottom:242.130000px;}
.yb0{bottom:246.450000px;}
.y80{bottom:248.610000px;}
.y2b{bottom:252.930000px;}
.y77{bottom:257.070000px;}
.yaf{bottom:265.350000px;}
.y7f{bottom:267.690000px;}
.y2a{bottom:271.830000px;}
.y76{bottom:275.970000px;}
.yae{bottom:284.430000px;}
.y63{bottom:286.590000px;}
.y29{bottom:290.910000px;}
.y75{bottom:295.050000px;}
.yad{bottom:303.330000px;}
.y62{bottom:305.670000px;}
.y28{bottom:309.810000px;}
.y74{bottom:313.950000px;}
.yac{bottom:322.455000px;}
.y61{bottom:324.615000px;}
.y27{bottom:328.755000px;}
.y73{bottom:333.075000px;}
.yab{bottom:341.355000px;}
.y60{bottom:343.695000px;}
.y26{bottom:347.835000px;}
.y72{bottom:351.975000px;}
.yaa{bottom:360.255000px;}
.y5f{bottom:362.595000px;}
.y36{bottom:364.944695px;}
.y25{bottom:366.735000px;}
.y71{bottom:370.875000px;}
.ya9{bottom:379.335000px;}
.y5e{bottom:381.495000px;}
.y24{bottom:385.815000px;}
.y70{bottom:389.955000px;}
.ya8{bottom:398.235000px;}
.y5d{bottom:400.575000px;}
.y23{bottom:404.715000px;}
.y6f{bottom:408.855000px;}
.ya7{bottom:417.315000px;}
.y5c{bottom:419.475000px;}
.y22{bottom:423.615000px;}
.y6e{bottom:427.935000px;}
.ya6{bottom:436.215000px;}
.y5b{bottom:438.555000px;}
.y21{bottom:442.695000px;}
.y6d{bottom:446.835000px;}
.ya5{bottom:455.115000px;}
.y5a{bottom:457.455000px;}
.y20{bottom:461.595000px;}
.y6c{bottom:465.735000px;}
.ya4{bottom:474.195000px;}
.y59{bottom:476.355000px;}
.y1f{bottom:480.675000px;}
.y6b{bottom:484.815000px;}
.ya3{bottom:493.095000px;}
.y58{bottom:495.435000px;}
.y6a{bottom:503.715000px;}
.ya2{bottom:512.175000px;}
.y57{bottom:514.335000px;}
.y1e{bottom:522.615000px;}
.y69{bottom:522.795000px;}
.ya1{bottom:531.075000px;}
.y56{bottom:533.415000px;}
.y68{bottom:541.695000px;}
.y1d{bottom:541.875000px;}
.ya0{bottom:549.975000px;}
.y55{bottom:552.315000px;}
.y67{bottom:560.595000px;}
.y1c{bottom:560.775000px;}
.y9f{bottom:569.085000px;}
.y54{bottom:571.245000px;}
.y1b{bottom:579.705000px;}
.y9e{bottom:587.985000px;}
.y53{bottom:590.325000px;}
.y66{bottom:598.605000px;}
.y1a{bottom:598.785000px;}
.y9d{bottom:607.065000px;}
.y52{bottom:609.225000px;}
.y19{bottom:617.685000px;}
.y9c{bottom:625.965000px;}
.y51{bottom:628.305000px;}
.y65{bottom:636.585000px;}
.y18{bottom:636.765000px;}
.y9b{bottom:645.045000px;}
.y50{bottom:647.205000px;}
.y17{bottom:655.665000px;}
.y9a{bottom:663.945000px;}
.y4f{bottom:666.105000px;}
.y64{bottom:670.425000px;}
.y16{bottom:674.565000px;}
.y99{bottom:682.845000px;}
.y4e{bottom:685.185000px;}
.y15{bottom:693.645000px;}
.y98{bottom:701.925000px;}
.y4d{bottom:704.085000px;}
.y14{bottom:712.545000px;}
.y97{bottom:720.825000px;}
.y33{bottom:721.905000px;}
.y4c{bottom:723.165000px;}
.y13{bottom:731.625000px;}
.y96{bottom:739.905000px;}
.y4b{bottom:742.065000px;}
.y35{bottom:750.012086px;}
.y12{bottom:750.525000px;}
.y95{bottom:758.805000px;}
.y4a{bottom:760.965000px;}
.y11{bottom:769.605000px;}
.y94{bottom:777.705000px;}
.y49{bottom:780.045000px;}
.y10{bottom:788.505000px;}
.y93{bottom:796.785000px;}
.y48{bottom:798.945000px;}
.y92{bottom:815.685000px;}
.y47{bottom:818.025000px;}
.yf{bottom:832.290000px;}
.y91{bottom:834.810000px;}
.y46{bottom:836.970000px;}
.ye{bottom:843.270000px;}
.y90{bottom:853.710000px;}
.y45{bottom:856.050000px;}
.yd{bottom:863.250000px;}
.y8f{bottom:874.770000px;}
.y44{bottom:874.950000px;}
.yc{bottom:878.910000px;}
.yb{bottom:891.510000px;}
.y43{bottom:893.850000px;}
.y42{bottom:912.930000px;}
.ya{bottom:915.090000px;}
.y41{bottom:931.830000px;}
.y9{bottom:935.790000px;}
.y40{bottom:950.910000px;}
.y8{bottom:958.290000px;}
.y3f{bottom:969.810000px;}
.y3e{bottom:988.710000px;}
.y7{bottom:989.610000px;}
.yb7{bottom:1007.610000px;}
.y3d{bottom:1007.790000px;}
.y6{bottom:1020.210000px;}
.y3c{bottom:1026.690000px;}
.y3b{bottom:1045.770000px;}
.y5{bottom:1047.030000px;}
.y3a{bottom:1064.670000px;}
.y3{bottom:1075.320000px;}
.y2{bottom:1103.220000px;}
.y39{bottom:1109.700000px;}
.y38{bottom:1123.560000px;}
.y1{bottom:1127.340000px;}
.h9{height:24.996094px;}
.h1{height:25.066406px;}
.h4{height:26.068359px;}
.h11{height:35.261367px;}
.ha{height:37.494141px;}
.h10{height:43.002209px;}
.hc{height:47.965781px;}
.h3{height:52.628906px;}
.h7{height:58.691602px;}
.hf{height:59.337890px;}
.hb{height:59.383125px;}
.h8{height:61.575820px;}
.h6{height:78.205078px;}
.h5{height:81.685547px;}
.h2{height:85.847344px;}
.he{height:380.207914px;}
.hd{height:408.315000px;}
.h0{height:1188.000000px;}
.w3{width:16.430695px;}
.w2{width:70.200000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:12.457259px;}
.xa{left:20.340000px;}
.xb{left:69.840000px;}
.xc{left:73.725000px;}
.x1{left:108.035986px;}
.x10{left:135.035986px;}
.x9{left:161.129986px;}
.x4{left:176.969986px;}
.x2{left:218.729986px;}
.x3{left:316.154986px;}
.x8{left:338.114986px;}
.x7{left:355.934986px;}
.x5{left:366.554986px;}
.xe{left:390.314986px;}
.xf{left:430.274986px;}
.x6{left:485.564986px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.135467pt;}
.ls11{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:6.031360pt;}
.ls4{letter-spacing:16.068750pt;}
.ls3{letter-spacing:16.671408pt;}
.lsa{letter-spacing:35.471360pt;}
.ws3{word-spacing:-96.000000pt;}
.ws2{word-spacing:-24.384000pt;}
.ws0{word-spacing:-21.280000pt;}
.wse{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.855467pt;}
.wsc{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.672427pt;}
.wsf{word-spacing:-14.176000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws9{word-spacing:-11.759573pt;}
.ws4{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.659468pt;}
.ws1{word-spacing:-10.319360pt;}
.ws5{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-17.383524pt;}
._10{margin-left:-16.385670pt;}
._13{margin-left:-4.095573pt;}
._5{margin-left:-3.002880pt;}
._16{margin-left:-2.107307pt;}
._0{margin-left:-1.190613pt;}
._1{width:0.955733pt;}
._12{width:2.063573pt;}
._7{width:3.008000pt;}
._9{width:4.102827pt;}
._a{width:5.001813pt;}
._3{width:6.077653pt;}
._2{width:7.006720pt;}
._4{width:7.909760pt;}
._6{width:9.126400pt;}
._b{width:10.041813pt;}
._c{width:10.978347pt;}
._e{width:12.129280pt;}
._d{width:13.306880pt;}
._8{width:16.133120pt;}
._17{width:17.794773pt;}
._18{width:18.834773pt;}
._f{width:20.431360pt;}
._15{width:21.693867pt;}
._14{width:22.668800pt;}
._1a{width:23.728640pt;}
._1b{width:28.380160pt;}
._1c{width:29.322880pt;}
._19{width:61.470720pt;}
.fs0{font-size:29.440000pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fsc{font-size:42.637872pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsb{font-size:58.835148pt;}
.fsa{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:1.279045pt;}
.y34{bottom:24.800000pt;}
.y4{bottom:70.912000pt;}
.y87{bottom:103.072000pt;}
.y32{bottom:106.752000pt;}
.y7e{bottom:110.432000pt;}
.y8e{bottom:113.952000pt;}
.yb6{bottom:117.952000pt;}
.y86{bottom:119.872000pt;}
.y31{bottom:123.552000pt;}
.y7d{bottom:127.232000pt;}
.y8d{bottom:130.912000pt;}
.yb5{bottom:134.746667pt;}
.y85{bottom:136.666667pt;}
.y30{bottom:140.506667pt;}
.y7c{bottom:144.186667pt;}
.y8c{bottom:147.706667pt;}
.yb4{bottom:151.546667pt;}
.y84{bottom:153.626667pt;}
.y2f{bottom:157.306667pt;}
.y7b{bottom:160.986667pt;}
.y8b{bottom:164.506667pt;}
.yb3{bottom:168.506667pt;}
.y83{bottom:170.426667pt;}
.y2e{bottom:174.266667pt;}
.y7a{bottom:177.946667pt;}
.y8a{bottom:181.466667pt;}
.yb2{bottom:185.306667pt;}
.y82{bottom:187.386667pt;}
.y2d{bottom:191.066667pt;}
.y79{bottom:194.746667pt;}
.y89{bottom:198.266667pt;}
.yb1{bottom:202.266667pt;}
.y81{bottom:204.186667pt;}
.y2c{bottom:207.866667pt;}
.y78{bottom:211.706667pt;}
.y88{bottom:215.226667pt;}
.yb0{bottom:219.066667pt;}
.y80{bottom:220.986667pt;}
.y2b{bottom:224.826667pt;}
.y77{bottom:228.506667pt;}
.yaf{bottom:235.866667pt;}
.y7f{bottom:237.946667pt;}
.y2a{bottom:241.626667pt;}
.y76{bottom:245.306667pt;}
.yae{bottom:252.826667pt;}
.y63{bottom:254.746667pt;}
.y29{bottom:258.586667pt;}
.y75{bottom:262.266667pt;}
.yad{bottom:269.626667pt;}
.y62{bottom:271.706667pt;}
.y28{bottom:275.386667pt;}
.y74{bottom:279.066667pt;}
.yac{bottom:286.626667pt;}
.y61{bottom:288.546667pt;}
.y27{bottom:292.226667pt;}
.y73{bottom:296.066667pt;}
.yab{bottom:303.426667pt;}
.y60{bottom:305.506667pt;}
.y26{bottom:309.186667pt;}
.y72{bottom:312.866667pt;}
.yaa{bottom:320.226667pt;}
.y5f{bottom:322.306667pt;}
.y36{bottom:324.395285pt;}
.y25{bottom:325.986667pt;}
.y71{bottom:329.666667pt;}
.ya9{bottom:337.186667pt;}
.y5e{bottom:339.106667pt;}
.y24{bottom:342.946667pt;}
.y70{bottom:346.626667pt;}
.ya8{bottom:353.986667pt;}
.y5d{bottom:356.066667pt;}
.y23{bottom:359.746667pt;}
.y6f{bottom:363.426667pt;}
.ya7{bottom:370.946667pt;}
.y5c{bottom:372.866667pt;}
.y22{bottom:376.546667pt;}
.y6e{bottom:380.386667pt;}
.ya6{bottom:387.746667pt;}
.y5b{bottom:389.826667pt;}
.y21{bottom:393.506667pt;}
.y6d{bottom:397.186667pt;}
.ya5{bottom:404.546667pt;}
.y5a{bottom:406.626667pt;}
.y20{bottom:410.306667pt;}
.y6c{bottom:413.986667pt;}
.ya4{bottom:421.506667pt;}
.y59{bottom:423.426667pt;}
.y1f{bottom:427.266667pt;}
.y6b{bottom:430.946667pt;}
.ya3{bottom:438.306667pt;}
.y58{bottom:440.386667pt;}
.y6a{bottom:447.746667pt;}
.ya2{bottom:455.266667pt;}
.y57{bottom:457.186667pt;}
.y1e{bottom:464.546667pt;}
.y69{bottom:464.706667pt;}
.ya1{bottom:472.066667pt;}
.y56{bottom:474.146667pt;}
.y68{bottom:481.506667pt;}
.y1d{bottom:481.666667pt;}
.ya0{bottom:488.866667pt;}
.y55{bottom:490.946667pt;}
.y67{bottom:498.306667pt;}
.y1c{bottom:498.466667pt;}
.y9f{bottom:505.853333pt;}
.y54{bottom:507.773333pt;}
.y1b{bottom:515.293333pt;}
.y9e{bottom:522.653333pt;}
.y53{bottom:524.733333pt;}
.y66{bottom:532.093333pt;}
.y1a{bottom:532.253333pt;}
.y9d{bottom:539.613333pt;}
.y52{bottom:541.533333pt;}
.y19{bottom:549.053333pt;}
.y9c{bottom:556.413333pt;}
.y51{bottom:558.493333pt;}
.y65{bottom:565.853333pt;}
.y18{bottom:566.013333pt;}
.y9b{bottom:573.373333pt;}
.y50{bottom:575.293333pt;}
.y17{bottom:582.813333pt;}
.y9a{bottom:590.173333pt;}
.y4f{bottom:592.093333pt;}
.y64{bottom:595.933333pt;}
.y16{bottom:599.613333pt;}
.y99{bottom:606.973333pt;}
.y4e{bottom:609.053333pt;}
.y15{bottom:616.573333pt;}
.y98{bottom:623.933333pt;}
.y4d{bottom:625.853333pt;}
.y14{bottom:633.373333pt;}
.y97{bottom:640.733333pt;}
.y33{bottom:641.693333pt;}
.y4c{bottom:642.813333pt;}
.y13{bottom:650.333333pt;}
.y96{bottom:657.693333pt;}
.y4b{bottom:659.613333pt;}
.y35{bottom:666.677410pt;}
.y12{bottom:667.133333pt;}
.y95{bottom:674.493333pt;}
.y4a{bottom:676.413333pt;}
.y11{bottom:684.093333pt;}
.y94{bottom:691.293333pt;}
.y49{bottom:693.373333pt;}
.y10{bottom:700.893333pt;}
.y93{bottom:708.253333pt;}
.y48{bottom:710.173333pt;}
.y92{bottom:725.053333pt;}
.y47{bottom:727.133333pt;}
.yf{bottom:739.813333pt;}
.y91{bottom:742.053333pt;}
.y46{bottom:743.973333pt;}
.ye{bottom:749.573333pt;}
.y90{bottom:758.853333pt;}
.y45{bottom:760.933333pt;}
.yd{bottom:767.333333pt;}
.y8f{bottom:777.573333pt;}
.y44{bottom:777.733333pt;}
.yc{bottom:781.253333pt;}
.yb{bottom:792.453333pt;}
.y43{bottom:794.533333pt;}
.y42{bottom:811.493333pt;}
.ya{bottom:813.413333pt;}
.y41{bottom:828.293333pt;}
.y9{bottom:831.813333pt;}
.y40{bottom:845.253333pt;}
.y8{bottom:851.813333pt;}
.y3f{bottom:862.053333pt;}
.y3e{bottom:878.853333pt;}
.y7{bottom:879.653333pt;}
.yb7{bottom:895.653333pt;}
.y3d{bottom:895.813333pt;}
.y6{bottom:906.853333pt;}
.y3c{bottom:912.613333pt;}
.y3b{bottom:929.573333pt;}
.y5{bottom:930.693333pt;}
.y3a{bottom:946.373333pt;}
.y3{bottom:955.840000pt;}
.y2{bottom:980.640000pt;}
.y39{bottom:986.400000pt;}
.y38{bottom:998.720000pt;}
.y1{bottom:1002.080000pt;}
.h9{height:22.218750pt;}
.h1{height:22.281250pt;}
.h4{height:23.171875pt;}
.h11{height:31.343437pt;}
.ha{height:33.328125pt;}
.h10{height:38.224186pt;}
.hc{height:42.636250pt;}
.h3{height:46.781250pt;}
.h7{height:52.170313pt;}
.hf{height:52.744791pt;}
.hb{height:52.785000pt;}
.h8{height:54.734062pt;}
.h6{height:69.515625pt;}
.h5{height:72.609375pt;}
.h2{height:76.308750pt;}
.he{height:337.962590pt;}
.hd{height:362.946667pt;}
.h0{height:1056.000000pt;}
.w3{width:14.605062pt;}
.w2{width:62.400000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:11.073119pt;}
.xa{left:18.080000pt;}
.xb{left:62.080000pt;}
.xc{left:65.533333pt;}
.x1{left:96.031988pt;}
.x10{left:120.031988pt;}
.x9{left:143.226655pt;}
.x4{left:157.306655pt;}
.x2{left:194.426655pt;}
.x3{left:281.026655pt;}
.x8{left:300.546655pt;}
.x7{left:316.386655pt;}
.x5{left:325.826655pt;}
.xe{left:346.946655pt;}
.xf{left:382.466655pt;}
.x6{left:431.613321pt;}
}




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