
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ffc44ac80557ff6266a3a4e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8b2d022a0bbe4d4076417486.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_6948447f600feedebe425038.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_68fdbffb9777215d1c2c37fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_c2120a285c6b3673365ae4c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_d82a37e91e9a766d1f765948.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_34ccb3a36c45fd594917353a.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0cbd5dd2b72618b8d61a819d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f0a97369e248d176c0a7ac46.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.329590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1578a9efc375d1b2298206dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls29{letter-spacing:-0.477600px;}
.ls11{letter-spacing:-0.444600px;}
.ls24{letter-spacing:-0.186600px;}
.ls36{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.156000px;}
.ls13{letter-spacing:-0.121200px;}
.ls28{letter-spacing:-0.117600px;}
.lsd{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.084600px;}
.ls31{letter-spacing:-0.060600px;}
.ls26{letter-spacing:-0.051840px;}
.ls12{letter-spacing:-0.031800px;}
.ls25{letter-spacing:-0.003240px;}
.lsc{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.011160px;}
.ls2{letter-spacing:0.014760px;}
.ls1f{letter-spacing:0.047520px;}
.ls1a{letter-spacing:0.048960px;}
.lse{letter-spacing:0.057000px;}
.ls8{letter-spacing:0.060480px;}
.ls2d{letter-spacing:0.060600px;}
.ls18{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2f{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.093600px;}
.ls2a{letter-spacing:0.099720px;}
.ls7{letter-spacing:0.107640px;}
.ls3{letter-spacing:0.138600px;}
.ls23{letter-spacing:0.173400px;}
.ls2c{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.453600px;}
.ls17{letter-spacing:1.173600px;}
.ls33{letter-spacing:1.893600px;}
.ls9{letter-spacing:2.253600px;}
.ls6{letter-spacing:2.613600px;}
.ls1d{letter-spacing:2.973600px;}
.ls16{letter-spacing:3.333600px;}
.ls1c{letter-spacing:4.773600px;}
.ls32{letter-spacing:5.133600px;}
.ls22{letter-spacing:5.853600px;}
.ls30{letter-spacing:6.240000px;}
.ls1e{letter-spacing:6.933600px;}
.ls5{letter-spacing:8.373600px;}
.ls1b{letter-spacing:8.486640px;}
.ls21{letter-spacing:9.813600px;}
.ls27{letter-spacing:9.840000px;}
.lsa{letter-spacing:10.173600px;}
.ls35{letter-spacing:48.446640px;}
.ls15{letter-spacing:51.525360px;}
.ls20{letter-spacing:54.926640px;}
.ls2e{letter-spacing:58.166640px;}
.ls19{letter-spacing:63.566640px;}
.ls34{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsf{word-spacing:-60.120000px;}
.ws14{word-spacing:-60.068160px;}
.ws12{word-spacing:-44.758080px;}
.ws10{word-spacing:-44.562960px;}
.ws11{word-spacing:-44.507520px;}
.ws13{word-spacing:-44.423520px;}
.ws1{word-spacing:-18.453600px;}
.ws6{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.490360px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.300800px;}
.ws3{word-spacing:-13.283400px;}
.wsd{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.108800px;}
.ws4{word-spacing:-13.070400px;}
.wsa{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.748800px;}
.ws0{word-spacing:-9.810000px;}
.ws18{word-spacing:-8.614200px;}
.ws7{word-spacing:-8.553600px;}
.wse{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:55.784880px;}
._f{margin-left:-5.331324px;}
._1{margin-left:-4.283640px;}
._9{margin-left:-3.246600px;}
._a{margin-left:-2.102243px;}
._0{margin-left:-1.020000px;}
._2{width:1.010364px;}
._6{width:2.476837px;}
._14{width:3.564119px;}
._7{width:4.577443px;}
._8{width:6.057666px;}
._5{width:7.167601px;}
._3{width:8.176200px;}
._4{width:9.999962px;}
._13{width:11.054522px;}
._11{width:12.141323px;}
._12{width:14.718047px;}
._c{width:18.096120px;}
._b{width:19.238400px;}
._10{width:22.682160px;}
._e{width:23.980680px;}
._d{width:25.310520px;}
._15{width:27.955800px;}
._16{width:29.579040px;}
._17{width:44.909640px;}
._18{width:46.172160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y51{bottom:129.630000px;}
.ya3{bottom:151.680000px;}
.y7d{bottom:155.100000px;}
.y50{bottom:165.180000px;}
.y27{bottom:166.080000px;}
.ya2{bottom:169.320000px;}
.y7c{bottom:172.650000px;}
.y4f{bottom:182.820000px;}
.y26{bottom:183.630000px;}
.ya1{bottom:186.870000px;}
.y7b{bottom:190.200000px;}
.y25{bottom:201.270000px;}
.y7a{bottom:207.840000px;}
.ya0{bottom:213.420000px;}
.y4e{bottom:218.370000px;}
.y24{bottom:218.820000px;}
.y79{bottom:225.390000px;}
.y9f{bottom:231.060000px;}
.y4d{bottom:235.920000px;}
.y23{bottom:236.370000px;}
.y78{bottom:242.940000px;}
.y4c{bottom:253.560000px;}
.y22{bottom:254.010000px;}
.y9e{bottom:257.610000px;}
.y77{bottom:260.580000px;}
.y21{bottom:271.560000px;}
.y9d{bottom:275.250000px;}
.y76{bottom:278.130000px;}
.y4b{bottom:280.110000px;}
.y20{bottom:289.200000px;}
.y9c{bottom:292.800000px;}
.y75{bottom:295.770000px;}
.y1f{bottom:306.750000px;}
.y74{bottom:313.320000px;}
.y4a{bottom:315.750000px;}
.y9b{bottom:319.350000px;}
.y1e{bottom:324.300000px;}
.y73{bottom:330.870000px;}
.y49{bottom:333.300000px;}
.y9a{bottom:336.990000px;}
.y1d{bottom:341.940000px;}
.y72{bottom:357.780000px;}
.y99{bottom:363.540000px;}
.y48{bottom:368.850000px;}
.y1c{bottom:377.490000px;}
.y98{bottom:381.090000px;}
.y47{bottom:386.490000px;}
.y1b{bottom:395.130000px;}
.y46{bottom:404.040000px;}
.y71{bottom:406.110000px;}
.y97{bottom:407.730000px;}
.y1a{bottom:412.680000px;}
.y45{bottom:421.680000px;}
.y70{bottom:423.660000px;}
.y96{bottom:425.280000px;}
.y19{bottom:430.230000px;}
.y18{bottom:447.870000px;}
.y95{bottom:451.920000px;}
.y44{bottom:457.230000px;}
.y6f{bottom:459.300000px;}
.y17{bottom:474.810000px;}
.y6e{bottom:476.880000px;}
.y94{bottom:478.500000px;}
.y6d{bottom:494.430000px;}
.y93{bottom:496.050000px;}
.y43{bottom:501.450000px;}
.y6c{bottom:512.070000px;}
.y92{bottom:522.690000px;}
.y16{bottom:523.410000px;}
.y6b{bottom:529.620000px;}
.y42{bottom:537.000000px;}
.y91{bottom:540.240000px;}
.y6a{bottom:547.260000px;}
.y90{bottom:557.880000px;}
.y15{bottom:560.400000px;}
.y69{bottom:564.810000px;}
.y41{bottom:572.640000px;}
.y8f{bottom:575.430000px;}
.y14{bottom:577.950000px;}
.y68{bottom:582.360000px;}
.y13{bottom:595.590000px;}
.y8e{bottom:601.980000px;}
.y40{bottom:608.550000px;}
.y12{bottom:613.140000px;}
.y67{bottom:618.000000px;}
.y8d{bottom:619.620000px;}
.y11{bottom:630.780000px;}
.y66{bottom:635.550000px;}
.y3f{bottom:646.170000px;}
.y8c{bottom:646.530000px;}
.y10{bottom:648.330000px;}
.y65{bottom:662.190000px;}
.y3e{bottom:663.720000px;}
.yf{bottom:665.880000px;}
.y3d{bottom:681.270000px;}
.ye{bottom:683.520000px;}
.y8b{bottom:694.770000px;}
.y64{bottom:697.740000px;}
.y3c{bottom:698.910000px;}
.yd{bottom:701.070000px;}
.y63{bottom:715.290000px;}
.yc{bottom:718.710000px;}
.y8a{bottom:721.680000px;}
.y3b{bottom:725.460000px;}
.yb{bottom:736.260000px;}
.y62{bottom:750.930000px;}
.ya{bottom:753.810000px;}
.y89{bottom:758.670000px;}
.y3a{bottom:763.980000px;}
.y61{bottom:768.480000px;}
.y88{bottom:776.310000px;}
.y9{bottom:780.720000px;}
.y39{bottom:781.620000px;}
.y60{bottom:786.030000px;}
.y38{bottom:799.170000px;}
.y87{bottom:811.860000px;}
.y37{bottom:817.620000px;}
.y5f{bottom:821.670000px;}
.y8{bottom:829.050000px;}
.y86{bottom:829.500000px;}
.y36{bottom:835.170000px;}
.y85{bottom:847.050000px;}
.y5e{bottom:848.220000px;}
.y35{bottom:853.620000px;}
.y7{bottom:864.600000px;}
.y34{bottom:871.170000px;}
.y84{bottom:873.960000px;}
.y5d{bottom:883.860000px;}
.y33{bottom:889.620000px;}
.y6{bottom:900.240000px;}
.y5c{bottom:901.410000px;}
.y32{bottom:907.170000px;}
.y83{bottom:911.310000px;}
.y5b{bottom:918.960000px;}
.y5{bottom:935.790000px;}
.y5a{bottom:936.600000px;}
.y31{bottom:946.950000px;}
.y59{bottom:954.150000px;}
.y82{bottom:959.550000px;}
.y4{bottom:971.700000px;}
.y81{bottom:977.190000px;}
.y30{bottom:984.030000px;}
.y58{bottom:989.790000px;}
.y80{bottom:994.740000px;}
.y2f{bottom:1001.580000px;}
.y57{bottom:1007.340000px;}
.y3{bottom:1009.980000px;}
.y7f{bottom:1012.320000px;}
.y2e{bottom:1028.520000px;}
.y56{bottom:1033.920000px;}
.y7e{bottom:1047.960000px;}
.ya6{bottom:1060.920000px;}
.y2d{bottom:1065.510000px;}
.y55{bottom:1069.560000px;}
.ya5{bottom:1078.560000px;}
.y2c{bottom:1083.150000px;}
.y54{bottom:1087.110000px;}
.ya4{bottom:1096.110000px;}
.y2b{bottom:1100.700000px;}
.y53{bottom:1122.750000px;}
.y2a{bottom:1127.610000px;}
.y52{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h6{height:52.311445px;}
.h5{height:55.779258px;}
.hc{height:57.323320px;}
.h9{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:64.875586px;}
.h8{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x6{left:78.659987px;}
.x4{left:95.039987px;}
.x5{left:122.039987px;}
.x2{left:202.799987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls29{letter-spacing:-0.424533pt;}
.ls11{letter-spacing:-0.395200pt;}
.ls24{letter-spacing:-0.165867pt;}
.ls36{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.138667pt;}
.ls13{letter-spacing:-0.107733pt;}
.ls28{letter-spacing:-0.104533pt;}
.lsd{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.075200pt;}
.ls31{letter-spacing:-0.053867pt;}
.ls26{letter-spacing:-0.046080pt;}
.ls12{letter-spacing:-0.028267pt;}
.ls25{letter-spacing:-0.002880pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.009920pt;}
.ls2{letter-spacing:0.013120pt;}
.ls1f{letter-spacing:0.042240pt;}
.ls1a{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.050667pt;}
.ls8{letter-spacing:0.053760pt;}
.ls2d{letter-spacing:0.053867pt;}
.ls18{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2f{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls2a{letter-spacing:0.088640pt;}
.ls7{letter-spacing:0.095680pt;}
.ls3{letter-spacing:0.123200pt;}
.ls23{letter-spacing:0.154133pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.403200pt;}
.ls17{letter-spacing:1.043200pt;}
.ls33{letter-spacing:1.683200pt;}
.ls9{letter-spacing:2.003200pt;}
.ls6{letter-spacing:2.323200pt;}
.ls1d{letter-spacing:2.643200pt;}
.ls16{letter-spacing:2.963200pt;}
.ls1c{letter-spacing:4.243200pt;}
.ls32{letter-spacing:4.563200pt;}
.ls22{letter-spacing:5.203200pt;}
.ls30{letter-spacing:5.546667pt;}
.ls1e{letter-spacing:6.163200pt;}
.ls5{letter-spacing:7.443200pt;}
.ls1b{letter-spacing:7.543680pt;}
.ls21{letter-spacing:8.723200pt;}
.ls27{letter-spacing:8.746667pt;}
.lsa{letter-spacing:9.043200pt;}
.ls35{letter-spacing:43.063680pt;}
.ls15{letter-spacing:45.800320pt;}
.ls20{letter-spacing:48.823680pt;}
.ls2e{letter-spacing:51.703680pt;}
.ls19{letter-spacing:56.503680pt;}
.ls34{letter-spacing:72.503680pt;}
.wsf{word-spacing:-53.440000pt;}
.ws14{word-spacing:-53.393920pt;}
.ws12{word-spacing:-39.784960pt;}
.ws10{word-spacing:-39.611520pt;}
.ws11{word-spacing:-39.562240pt;}
.ws13{word-spacing:-39.487573pt;}
.ws1{word-spacing:-16.403200pt;}
.ws6{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.880320pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.822933pt;}
.ws3{word-spacing:-11.807467pt;}
.wsd{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.652267pt;}
.ws4{word-spacing:-11.618133pt;}
.wsa{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.332267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws18{word-spacing:-7.657067pt;}
.ws7{word-spacing:-7.603200pt;}
.wse{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:49.586560pt;}
._f{margin-left:-4.738955pt;}
._1{margin-left:-3.807680pt;}
._9{margin-left:-2.885867pt;}
._a{margin-left:-1.868661pt;}
._0{margin-left:-0.906667pt;}
._2{width:0.898101pt;}
._6{width:2.201633pt;}
._14{width:3.168106pt;}
._7{width:4.068839pt;}
._8{width:5.384592pt;}
._5{width:6.371201pt;}
._3{width:7.267733pt;}
._4{width:8.888855pt;}
._13{width:9.826242pt;}
._11{width:10.792287pt;}
._12{width:13.082708pt;}
._c{width:16.085440pt;}
._b{width:17.100800pt;}
._10{width:20.161920pt;}
._e{width:21.316160pt;}
._d{width:22.498240pt;}
._15{width:24.849600pt;}
._16{width:26.292480pt;}
._17{width:39.919680pt;}
._18{width:41.041920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y51{bottom:115.226667pt;}
.ya3{bottom:134.826667pt;}
.y7d{bottom:137.866667pt;}
.y50{bottom:146.826667pt;}
.y27{bottom:147.626667pt;}
.ya2{bottom:150.506667pt;}
.y7c{bottom:153.466667pt;}
.y4f{bottom:162.506667pt;}
.y26{bottom:163.226667pt;}
.ya1{bottom:166.106667pt;}
.y7b{bottom:169.066667pt;}
.y25{bottom:178.906667pt;}
.y7a{bottom:184.746667pt;}
.ya0{bottom:189.706667pt;}
.y4e{bottom:194.106667pt;}
.y24{bottom:194.506667pt;}
.y79{bottom:200.346667pt;}
.y9f{bottom:205.386667pt;}
.y4d{bottom:209.706667pt;}
.y23{bottom:210.106667pt;}
.y78{bottom:215.946667pt;}
.y4c{bottom:225.386667pt;}
.y22{bottom:225.786667pt;}
.y9e{bottom:228.986667pt;}
.y77{bottom:231.626667pt;}
.y21{bottom:241.386667pt;}
.y9d{bottom:244.666667pt;}
.y76{bottom:247.226667pt;}
.y4b{bottom:248.986667pt;}
.y20{bottom:257.066667pt;}
.y9c{bottom:260.266667pt;}
.y75{bottom:262.906667pt;}
.y1f{bottom:272.666667pt;}
.y74{bottom:278.506667pt;}
.y4a{bottom:280.666667pt;}
.y9b{bottom:283.866667pt;}
.y1e{bottom:288.266667pt;}
.y73{bottom:294.106667pt;}
.y49{bottom:296.266667pt;}
.y9a{bottom:299.546667pt;}
.y1d{bottom:303.946667pt;}
.y72{bottom:318.026667pt;}
.y99{bottom:323.146667pt;}
.y48{bottom:327.866667pt;}
.y1c{bottom:335.546667pt;}
.y98{bottom:338.746667pt;}
.y47{bottom:343.546667pt;}
.y1b{bottom:351.226667pt;}
.y46{bottom:359.146667pt;}
.y71{bottom:360.986667pt;}
.y97{bottom:362.426667pt;}
.y1a{bottom:366.826667pt;}
.y45{bottom:374.826667pt;}
.y70{bottom:376.586667pt;}
.y96{bottom:378.026667pt;}
.y19{bottom:382.426667pt;}
.y18{bottom:398.106667pt;}
.y95{bottom:401.706667pt;}
.y44{bottom:406.426667pt;}
.y6f{bottom:408.266667pt;}
.y17{bottom:422.053333pt;}
.y6e{bottom:423.893333pt;}
.y94{bottom:425.333333pt;}
.y6d{bottom:439.493333pt;}
.y93{bottom:440.933333pt;}
.y43{bottom:445.733333pt;}
.y6c{bottom:455.173333pt;}
.y92{bottom:464.613333pt;}
.y16{bottom:465.253333pt;}
.y6b{bottom:470.773333pt;}
.y42{bottom:477.333333pt;}
.y91{bottom:480.213333pt;}
.y6a{bottom:486.453333pt;}
.y90{bottom:495.893333pt;}
.y15{bottom:498.133333pt;}
.y69{bottom:502.053333pt;}
.y41{bottom:509.013333pt;}
.y8f{bottom:511.493333pt;}
.y14{bottom:513.733333pt;}
.y68{bottom:517.653333pt;}
.y13{bottom:529.413333pt;}
.y8e{bottom:535.093333pt;}
.y40{bottom:540.933333pt;}
.y12{bottom:545.013333pt;}
.y67{bottom:549.333333pt;}
.y8d{bottom:550.773333pt;}
.y11{bottom:560.693333pt;}
.y66{bottom:564.933333pt;}
.y3f{bottom:574.373333pt;}
.y8c{bottom:574.693333pt;}
.y10{bottom:576.293333pt;}
.y65{bottom:588.613333pt;}
.y3e{bottom:589.973333pt;}
.yf{bottom:591.893333pt;}
.y3d{bottom:605.573333pt;}
.ye{bottom:607.573333pt;}
.y8b{bottom:617.573333pt;}
.y64{bottom:620.213333pt;}
.y3c{bottom:621.253333pt;}
.yd{bottom:623.173333pt;}
.y63{bottom:635.813333pt;}
.yc{bottom:638.853333pt;}
.y8a{bottom:641.493333pt;}
.y3b{bottom:644.853333pt;}
.yb{bottom:654.453333pt;}
.y62{bottom:667.493333pt;}
.ya{bottom:670.053333pt;}
.y89{bottom:674.373333pt;}
.y3a{bottom:679.093333pt;}
.y61{bottom:683.093333pt;}
.y88{bottom:690.053333pt;}
.y9{bottom:693.973333pt;}
.y39{bottom:694.773333pt;}
.y60{bottom:698.693333pt;}
.y38{bottom:710.373333pt;}
.y87{bottom:721.653333pt;}
.y37{bottom:726.773333pt;}
.y5f{bottom:730.373333pt;}
.y8{bottom:736.933333pt;}
.y86{bottom:737.333333pt;}
.y36{bottom:742.373333pt;}
.y85{bottom:752.933333pt;}
.y5e{bottom:753.973333pt;}
.y35{bottom:758.773333pt;}
.y7{bottom:768.533333pt;}
.y34{bottom:774.373333pt;}
.y84{bottom:776.853333pt;}
.y5d{bottom:785.653333pt;}
.y33{bottom:790.773333pt;}
.y6{bottom:800.213333pt;}
.y5c{bottom:801.253333pt;}
.y32{bottom:806.373333pt;}
.y83{bottom:810.053333pt;}
.y5b{bottom:816.853333pt;}
.y5{bottom:831.813333pt;}
.y5a{bottom:832.533333pt;}
.y31{bottom:841.733333pt;}
.y59{bottom:848.133333pt;}
.y82{bottom:852.933333pt;}
.y4{bottom:863.733333pt;}
.y81{bottom:868.613333pt;}
.y30{bottom:874.693333pt;}
.y58{bottom:879.813333pt;}
.y80{bottom:884.213333pt;}
.y2f{bottom:890.293333pt;}
.y57{bottom:895.413333pt;}
.y3{bottom:897.760000pt;}
.y7f{bottom:899.840000pt;}
.y2e{bottom:914.240000pt;}
.y56{bottom:919.040000pt;}
.y7e{bottom:931.520000pt;}
.ya6{bottom:943.040000pt;}
.y2d{bottom:947.120000pt;}
.y55{bottom:950.720000pt;}
.ya5{bottom:958.720000pt;}
.y2c{bottom:962.800000pt;}
.y54{bottom:966.320000pt;}
.ya4{bottom:974.320000pt;}
.y2b{bottom:978.400000pt;}
.y53{bottom:998.000000pt;}
.y2a{bottom:1002.320000pt;}
.y52{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h6{height:46.499062pt;}
.h5{height:49.581562pt;}
.hc{height:50.954062pt;}
.h9{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:57.667187pt;}
.h8{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x6{left:69.919988pt;}
.x4{left:84.479988pt;}
.x5{left:108.479988pt;}
.x2{left:180.266655pt;}
.x3{left:704.053322pt;}
}




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